EVOLUTION-MANAGER
Edit File: drv_vrt.html
<html> <head> <title>Virtual Format</title> </head> <body bgcolor="#ffffff"> <h1>Virtual Format</h1> OGR Virtual Format is a driver that transforms features read from other drivers based on criteria specified in an XML control file. It is primarily used to derive spatial layers from flat tables with spatial information in attribute columns. It can also be used to associate coordinate system information with a datasource, merge layers from different datasources into a single data source, or even just to provide an anchor file for access to non-file oriented datasources.<p> The virtual files are currently normally prepared by hand.<p> <h2>Creation Issues</h2> Before GDAL 1.7.0, the OGR VRT driver was read-only.<p> Since GDAL 1.7.0, the CreateFeature(), SetFeature() and DeleteFeature() operations are supported on a layer of a VRT dataset, if the following conditions are met : <ul> <li>the VRT dataset is opened in update mode</li> <li>the underlying source layer supports those operations</li> <li>the <i>SrcLayer</i> element is used (as opposed to the <i>SrcSQL</i> element)</li> <li>the FID of the VRT features is the same as the FID of the source features, that is to say, the <i>FID</i> element is not specified</li> </ul><p> <h1>Virtual File Format</h1> The root element of the XML control file is <b>OGRVRTDataSource</b>. It has an <b>OGRVRTLayer</b> (or <b>OGRVRTWarpedLayer</b> or <b>OGRVRTUnionLayer</b> starting with GDAL 1.10.0) child for each layer in the virtual datasource, and a <b>Metadata</b> element.<p> A <a href="http://svn.osgeo.org/gdal/trunk/gdal/data/ogrvrt.xsd">XML schema of the OGR VRT format</a> is available. Starting with GDAL 1.11, when GDAL is configured with libXML2 support, that schema will be used to validate the VRT documents. Non-conformities will be reported only as warnings. That validation can be disabled by setting the GDAL_XML_VALIDATION configuration option to NO.<p> <p> <b>Metadata</b> (optional): (GDAL >= 2.0) This element contains a list of metadata name/value pairs associated with the dataset as a whole. It has <MDI> (metadata item) subelements which have a "key" attribute and the value as the data of the element. The Metadata element can be repeated multiple times, in which case it must be accompanied with a "domain" attribute to indicate the name of the metadata domain. </p> A <b>OGRVRTLayer</b> element should have a <b>name</b> attribute with the layer name, and may have the following subelements: <ul> <li> <b>SrcDataSource</b> (mandatory): The value is the name of the datasource that this layer will be derived from. The element may optionally have a <b>relativeToVRT</b> attribute which defaults to "0", but if "1" indicates that the source datasource should be interpreted as relative to the virtual file. This can be any OGR supported dataset, including ODBC, CSV, etc. The element may also have a <b>shared</b> attribute to control whether the datasource should be opened in shared mode. Defaults to OFF for SrcLayer use and ON for SrcSQL use.</li> <br> <li> <b>OpenOptions</b> (optional): (GDAL >= 2.0) This element may list a number of open options as child elements of the form <OOI key="key_name">value_name</OOI></li> <br> <li> <b>Metadata</b> (optional): (GDAL >= 2.0) This element contains a list of metadata name/value pairs associated with the layer as a whole. It has <MDI> (metadata item) subelements which have a "key" attribute and the value as the data of the element. The Metadata element can be repeated multiple times, in which case it must be accompanied with a "domain" attribute to indicate the name of the metadata domain. </li> <br> <li> <b>SrcLayer</b> (optional): The value is the name of the layer on the source data source from which this virtual layer should be derived. If this element isn't provided, then the SrcSQL element must be provided.</li> <br> <li> <b>SrcSQL</b> (optional): An SQL statement to execute to generate the desired layer result. This should be provided instead of the SrcLayer for statement derived results. Some limitations may apply for SQL derived layers. Starting with OGR 1.10, an optional <b>dialect</b> attribute can be specified on the SrcSQL element to specify which SQL "dialect" should be used : possible values are currently <a href="ogr_sql.html">OGRSQL</a> or <a href="ogr_sql_sqlite.html">SQLITE</a>. If <i>dialect</i> is not specified, the default dialect of the datasource will be used.</li> <br> <li> <b>FID</b> (optional): Name of the attribute column from which the FID of features should be derived. If not provided, the FID of the source features will be used directly. The layer will report the FID column name only if it is also reported as a regular field. Starting with GDAL 2.0, a "name" attribute can be specified on the FID element so that the FID column name is always reported.</li> <br> <li> <b>Style</b> (optional): Name of the attribute column from which the style of features should be derived. If not provided, the style of the source features will be used directly.</li> <br> <li> <b>GeometryType</b> (optional): The geometry type to be assigned to the layer. If not provided it will be taken from the source layer. The value should be one of "wkbNone", "wkbUnknown", "wkbPoint", "wkbLineString", "wkbPolygon", "wkbMultiPoint", "wkbMultiLineString", "wkbMultiPolygon", or "wkbGeometryCollection". Optionally "25D" may be appended to mark it as including Z coordinates. Defaults to "wkbUnknown" indicating that any geometry type is allowed.</li> <br> <li> <b>LayerSRS</b> (optional): The value of this element is the spatial reference to use for the layer. If not provided, it is inherited from the source layer. The value may be WKT or any other input that is accepted by the OGRSpatialReference::SetUserInput() method. If the value is NULL, then no SRS will be used for the layer.</li> <br> <li> <b>GeometryField</b> (optional): This element is used to define how the geometry for features should be derived.<br> If not provided the geometry of the source feature is copied directly.<br> The type of geometry encoding is indicated with the <b>encoding</b> attribute which may have the value "WKT", "WKB" or "PointFromColumns".<br> If the encoding is "WKT" or "WKB" then the <b>field</b> attribute will have the name of the field containing the WKT or WKB geometry.<br> If the encoding is "PointFromColumns" then the <b>x</b>, <b>y</b>, <b>z</b> and <b>m</b> attributes will have the names of the columns to be used for the X, Y, Z and M coordinates. The <b>z</b> and <b>m</b> attributes are optional (m only supported since OGR 2.1.1).<br> The optional <b>reportSrcColumn</b> attribute can be used to specify whether the source geometry fields (the fields set in the <b>field</b>, <b>x</b>, <b>y</b>, <b>z</b>, <b>m</b> attributes) should be reported as fields of the VRT layer. It defaults to TRUE. If set to FALSE, the source geometry fields will only be used to build the geometry of the features of the VRT layer.</li> <p> Starting with OGR 1.11, the GeometryField element can be repeated as many times as necessary to create multiple geometry fields. It accepts a <b>name</b> attribute (recommended) that will be used to define the VRT geometry field name. When <b>encoding</b> is not specified, the <b>field</b> attribute will be used to determine the corresponding geometry field name in the source layer. If neither <b>encoding</b> nor <b>field</b> are specified, it is assumed that the name of source geometry field is the value of the <b>name</b> attribute. </p> <p> Starting with GDAL 2.0, the optional <b>nullable</b> attribute can be used to specify whether the geometry field is nullable. It defaults to "true".</li> </p> <p> When several geometry fields are used, the following child elements of <b>GeometryField</b> can be defined to explicitly set the geometry type, SRS, source region, or extent. <ul> <li><b>GeometryType</b> (optional) : same syntax as OGRVRTLayer-level <b>GeometryType</b>.</li> <li><b>SRS</b> (optional) : same syntax as OGRVRTLayer-level <b>LayerSRS</b> (note SRS vs LayerSRS)</li> <li><b>SrcRegion</b> (optional) : same syntax as OGRVRTLayer-level <b>SrcRegion</b></li> <li><b>ExtentXMin</b>, <b>ExtentYMin</b>, <b>ExtentXMax</b> and <b>ExtentXMax</b> (optional) : same syntax as OGRVRTLayer-level elements of same name</li> </ul> </p> <p>If no <b>GeometryField</b> element is specified, all the geometry fields of the source layer will be exposed by the VRT layer. In order not to expose any geometry field of the source layer, you need to specify OGRVRTLayer-level <b>GeometryType</b> element to wkbNone. </p> <br> <li> <b>SrcRegion</b> (optional, from GDAL 1.7.0) : This element is used to define an initial spatial filter for the source features. This spatial filter will be combined with any spatial filter explicitly set on the VRT layer with the SetSpatialFilter() method. The value of the element must be a valid WKT string defining a polygon. An optional <b>clip</b> attribute can be set to "TRUE" to clip the geometries to the source region, otherwise the source geometries are not modified.</li> <br> <li> <b>Field</b> (optional, from GDAL 1.7.0): One or more attribute fields may be defined with Field elements. If no Field elements are defined, the fields of the source layer/sql will be defined on the VRT layer. The Field may have the following attributes: <ul> <li> <b>name</b> (required): the name of the field. <li> <b>type</b>: the field type, one of "Integer", "IntegerList", "Real", "RealList", "String", "StringList", "Binary", "Date", "Time", or "DateTime". Defaults to "String". <li> <b>subtype</b>: (GDAL >= 2.0) the field subtype, one of "None", "Boolean", "Int16", "Float32". Defaults to "None". <li> <b>width</b>: the field width. Defaults to unknown. <li> <b>precision</b>: the field width. Defaults to zero. <li> <b>src</b>: the name of the source field to be copied to this one. Defaults to the value of "name". <li> <b>nullable</b> (GDAL >= 2.0) can be used to specify whether the field is nullable. It defaults to "true".</li> </ul> </li> <br> <li> <b>FeatureCount</b> (optional, from GDAL 1.10.0) : This element is used to define the feature count of the layer (when no spatial or attribute filter is set). This can be useful on static data, when getting the feature count from the source layer is slow.</li> <br> <li> <b>ExtentXMin</b>, <b>ExtentYMin</b>, <b>ExtentXMax</b> and <b>ExtentXMax</b> (optional, from GDAL 1.10.0) : Those elements are used to define the extent of the layer. This can be useful on static data, when getting the extent from the source layer is slow.</li> <br> </ul> <p> A <b>OGRVRTWarpedLayer</b> element (GDAL >= 1.10.0) is used to do on-the-fly reprojection of a source layer. It may have the following subelements: <ul> <li> <b>OGRVRTLayer</b>, <b>OGRVRTWarpedLayer</b> or <b>OGRVRTUnionLayer</b> (mandatory): the source layer to reproject.</li> <br> <li> <b>SrcSRS</b> (optional): The value of this element is the spatial reference to use for the layer before reprojection. If not specified, it is deduced from the source layer.</li> <br> <li> <b>TargetSRS</b> (mandatory): The value of this element is the spatial reference to use for the layer after reprojection. </li> <br> <li> <b>ExtentXMin</b>, <b>ExtentYMin</b>, <b>ExtentXMax</b> and <b>ExtentXMax</b> (optional, from GDAL 1.10.0) : Those elements are used to define the extent of the layer. This can be useful on static data, when getting the extent from the source layer is slow.</li> <br> <li> <b>WarpedGeomFieldName</b> (optional, from GDAL 1.11) : The value of this element is the geometry field name of the source layer to wrap. If not specified, the first geometry field will be used. If there are several geometry fields, only the one matching WarpedGeomFieldName will be warped; the other ones will be untouched.</li> <br> </ul> <p> A <b>OGRVRTUnionLayer</b> element (GDAL >= 1.10.0) is used to concatenate the content of source layers. It should have a <b>name</b> and may have the following subelements: <ul> <li> <b>OGRVRTLayer</b>, <b>OGRVRTWarpedLayer</b> or <b>OGRVRTUnionLayer</b> (mandatory and may be repeated): a source layer to add in the union.</li> <br> <li> <b>PreserveSrcFID</b> (optional) : may be ON or OFF. If set to ON, the FID from the source layer will be used, otherwise a counter will be used. Defaults to OFF.</li> <br> <li> <b>SourceLayerFieldName</b> (optional) : if specified, an additional field (named with the value of SourceLayerFieldName) will be added in the layer field definition. For each feature, the value of this field will be set with the name of the layer from which the feature comes from.</li> <br> <li> <b>GeometryType</b> (optional) : see above for the syntax. If not specified, the geometry type will be deduced from the geometry type of all source layers.</li> <br> <li> <b>LayerSRS</b> (optional) : see above for the syntax. If not specified, the SRS will be the SRS of the first source layer.</li> <br> <li> <b>FieldStrategy</b> (optional, exclusive with <b>Field</b> or <b>GeometryField</b>) : may be <b>FirstLayer</b> to use the fields from the first layer found, <b>Union</b> to use a super-set of all the fields from all source layers, or <b>Intersection</b> to use a sub-set of all the common fields from all source layers. Defaults to <b>Union</b>.</li> <br> <li> <b>Field</b> (optional, exclusive with <b>FieldStrategy</b>) : see above for the syntax. Note: the src attribute is not supported in the context of a OGRVRTUnionLayer element (field names are assumed to be identical).</li> <br> <li> <b>GeometryField</b> (optional, exclusive with <b>FieldStrategy</b>, GDAL >= 1.11) : the <b>name</b> attribute and the following sub-elements <b>GeometryType</b>, <b>SRS</b> and <b>Extent[X|Y][Min|Max]</b> are available.</li> <br> <li> <b>FeatureCount</b> (optional) : see above for the syntax</li> <br> <li> <b>ExtentXMin</b>, <b>ExtentYMin</b>, <b>ExtentXMax</b> and <b>ExtentXMax</b> (optional) : see above for the syntax</li> <br> </ul> <h2>Example: ODBC Point Layer</h2> In the following example (disease.ovf) the worms table from the ODBC database DISEASE is used to form a spatial layer. The virtual file uses the "x" and "y" columns to get the spatial location. It also marks the layer as a point layer, and as being in the WGS84 coordinate system.<p> <pre><OGRVRTDataSource> <OGRVRTLayer name="worms"> <SrcDataSource>ODBC:DISEASE,worms</SrcDataSource> <SrcLayer>worms</SrcLayer> <GeometryType>wkbPoint</GeometryType> <LayerSRS>WGS84</LayerSRS> <GeometryField encoding="PointFromColumns" x="x" y="y"/> </OGRVRTLayer> </OGRVRTDataSource> </pre> <h2>Example: Renaming attributes</h2> It can be useful in some circumstances to be able to rename the field names from a source layer to other names. This is particularly true when you want to transcode to a format whose schema is fixed, such as GPX (<name>, <desc>, etc.). This can be accomplished using SQL this way:<p> <pre><OGRVRTDataSource> <OGRVRTLayer name="remapped_layer"> <SrcDataSource>your_source.shp</SrcDataSource> <SrcSQL>SELECT src_field_1 AS name, src_field_2 AS desc FROM your_source_layer_name</SrcSQL> </OGRVRTLayer> </OGRVRTDataSource> </pre> This can also be accomplished (from GDAL 1.7.0) using explicit field definitions: <pre> <OGRVRTDataSource> <OGRVRTLayer name="remapped_layer"> <SrcDataSource>your_source.shp</SrcDataSource> <SrcLayer>your_source</SrcSQL> <Field name="name" src="src_field_1" /> <Field name="desc" src="src_field_2" type="String" width="45" /> </OGRVRTLayer> </OGRVRTDataSource> </pre> <h2>Example: Transparent spatial filtering (GDAL >= 1.7.0)</h2> The following example will only return features from the source layer that intersect the (0,40)-(10,50) region. Furthermore, returned geometries will be clipped to fit into that region.<p> <pre><OGRVRTDataSource> <OGRVRTLayer name="source"> <SrcDataSource>source.shp</SrcDataSource> <SrcRegion clip="true">POLYGON((0 40,10 40,10 50,0 50,0 40))</SrcRegion> </OGRVRTLayer> </OGRVRTDataSource> </pre> <h2>Example: Reprojected layer (GDAL >= 1.10.0)</h2> The following example will return the source.shp layer reprojected to EPSG:4326.<p> <pre><OGRVRTDataSource> <OGRVRTWarpedLayer> <OGRVRTLayer name="source"> <SrcDataSource>source.shp</SrcDataSource> </OGRVRTLayer> <TargetSRS>EPSG:4326</TargetSRS> </OGRVRTWarpedLayer> </OGRVRTDataSource> </pre> <h2>Example: Union layer (GDAL >= 1.10.0)</h2> The following example will return a layer that is the concatenation of source1.shp and source2.shp.<p> <pre><OGRVRTDataSource> <OGRVRTUnionLayer name="unionLayer"> <OGRVRTLayer name="source1"> <SrcDataSource>source1.shp</SrcDataSource> </OGRVRTLayer> <OGRVRTLayer name="source2"> <SrcDataSource>source2.shp</SrcDataSource> </OGRVRTLayer> </OGRVRTUnionLayer> </OGRVRTDataSource> </pre> <h2>Example: SQLite/Spatialite SQL dialect (GDAL >=1.10.0)</h2> The following example will return four different layers which are generated in a fly from the same polygon shapefile. The first one is the shapefile layer as it stands. The second layer gives simplified polygons by applying SpatiaLite function "Simplify" with parameter tolerance=10. In the third layer the original geometries are replaced by their convex hulls. In the fourth layer SpatiaLite function PointOnSurface is used for replacing the original geometries by points which are inside the corresponding source polygons. Note that for using the last three layers of this VRT file GDAL must be compiled with SQLite and SpatiaLite.<p> <pre> <OGRVRTDataSource> <OGRVRTLayer name="polygons"> <SrcDataSource>polygons.shp</SrcDataSource> </OGRVRTLayer> <OGRVRTLayer name="polygons_as_simplified"> <SrcDataSource>polygons.shp</SrcDataSource> <SrcSQL dialect="sqlite">SELECT Simplify(geometry,10) from polygons</SrcSQL> </OGRVRTLayer> <OGRVRTLayer name="polygons_as_hulls"> <SrcDataSource>polygons.shp</SrcDataSource> <SrcSQL dialect="sqlite">SELECT ConvexHull(geometry) from polygons</SrcSQL> </OGRVRTLayer> <OGRVRTLayer name="polygons_as_points"> <SrcDataSource>polygons.shp</SrcDataSource> <SrcSQL dialect="sqlite">SELECT PointOnSurface(geometry) from polygons</SrcSQL> </OGRVRTLayer> </OGRVRTDataSource> </pre> <h2>Example: Multiple geometry fields (GDAL >= 1.11)</h2> <p> The following example will expose all the attribute and geometry fields of the source layer: </p> <pre><OGRVRTDataSource> <OGRVRTLayer name="test"> <SrcDataSource>PG:dbname=testdb</SrcDataSource> </OGRVRTLayer> </OGRVRTDataSource> </pre> <p> To expose only part (or all!) of the fields: </p> <pre><OGRVRTDataSource> <OGRVRTLayer name="other_test"> <SrcDataSource>PG:dbname=testdb</SrcDataSource> <SrcLayer>test</SrcLayer> <GeometryField name="pg_geom_field_1" /> <GeometryField name="vrt_geom_field_2" field="pg_geom_field_2"> <GeometryType>wkbPolygon</GeometryType> <SRS>EPSG:4326</SRS> <ExtentXMin>-180</ExtentXMin> <ExtentYMin>-90</ExtentYMin> <ExtentXMax>180</ExtentXMax> <ExtentYMax>90</ExtentYMax> </GeometryField> <Field name="vrt_field_1" src="src_field_1" /> </OGRVRTLayer>w </OGRVRTDataSource> </pre> To reproject the 'pg_geom_field_2' geometry field to EPSG:4326:<p> <pre><OGRVRTDataSource> <OGRVRTWarpedLayer> <OGRVRTLayer name="other_test"> <SrcDataSource>PG:dbname=testdb</SrcDataSource> </OGRVRTLayer> <WarpedGeomFieldName>pg_geom_field_2</WarpedGeomFieldName> <TargetSRS>EPSG:32631</TargetSRS> </OGRVRTWarpedLayer> </OGRVRTDataSource> </pre> To make the union of several multi-geometry layers and keep only a few of them:<p> <pre><OGRVRTDataSource> <OGRVRTUnionLayer name="unionLayer"> <OGRVRTLayer name="source1"> <SrcDataSource>PG:dbname=testdb</SrcDataSource> </OGRVRTLayer> <OGRVRTLayer name="source2"> <SrcDataSource>PG:dbname=testdb</SrcDataSource> </OGRVRTLayer> <GeometryField name="pg_geom_field_2"> <GeometryType>wkbPolygon</GeometryType> <SRS>EPSG:4326</SRS> <ExtentXMin>-180</ExtentXMin> <ExtentYMin>-90</ExtentYMin> <ExtentXMax>180</ExtentXMax> <ExtentYMax>90</ExtentYMax> </GeometryField> <GeometryField name="pg_geom_field_3" /> <Field name="src_field_1" /> </OGRVRTUnionLayer> </OGRVRTDataSource> </pre> <h2>Other Notes</h2> <ul> <li> When the <i>GeometryField</i> is "WKT" spatial filtering is applied after extracting all rows from the source datasource. Essentially that means there is no fast spatial filtering on WKT derived geometries. <p> <li> When the <i>GeometryField</i> is "PointFromColumns", and a <i>SrcLayer</i> (as opposed to <i>SrcSQL</i>) is used, and a spatial filter is in effect on the virtual layer then the spatial filter will be internally translated into an attribute filter on the X and Y columns in the <i>SrcLayer</i>. In cases where fast spatial filtering is important it can be helpful to index the X and Y columns in the source datastore, if that is possible. For instance if the source is an RDBMS. You can turn off that feature by setting the <i>useSpatialSubquery</i> attribute of the GeometryField element to FALSE.<p> </ul> </body> </html>