From bacaff53314c2e8544c72c59a9bf3b6918aa3592 Mon Sep 17 00:00:00 2001 From: Joel Brown Date: Tue, 19 Aug 2014 15:23:27 -0700 Subject: [PATCH] Update parameters with layer_by_sql and extent. Add xml config example for mssql. --- OGR.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/OGR.md b/OGR.md index 584afda..3e3d91a 100644 --- a/OGR.md +++ b/OGR.md @@ -23,9 +23,12 @@ To check if the ogr plugin built and was installed correctly, try the usual Pyth | base | string | base path where to search for file parameter | | | layer | string | name of the layer to display (a single ogr datasource can contain multiple layers) | | | layer_by_index | integer | index of the layer to display, this becomes mandatory if no "layer" parameter is specified | | -| multiple_geometries | boolean | wheter to use multiple different objects or a single one when dealing with multi-objects (this is mainly related to how the label are used in the map, one label for a multi-polygon or one label for each polygon of a multi-polygon)| false | +| layer_by_sql | string | SQL statement to execute against the OGR-datasource. The result set is used as the layer definition.| +| multiple_geometries | boolean | whether to use multiple different objects or a single one when dealing with multi-objects (this is mainly related to how the label are used in the map, one label for a multi-polygon or one label for each polygon of a multi-polygon)| false | | encoding | string | internal file encoding | utf-8 | | string | string | optional (replaces *file* parameter) string of literal OGR-datasource data, like GeoJSON | +| extent | string | maximum extent of the layer. should be provided when an extent cannot be automatically determined by OGR | + # Usage @@ -87,6 +90,19 @@ However the best way to discover the layer names is to use the OGR provided util ``` +```xml + + mssql_style + + + ogr + MSSQL:server=localhost;database=gis;trusted_connection=yes + SELECT * FROM dbo.planet_osm_line + -180,-90,180,89.99 + + +``` + ## C++ Plugin datasource initialization example code can be found on PluginArchitecture.