官术网_书友最值得收藏!

Filtering data with CQL

Another vendor parameter is cql_filter. It allows users to add filters to requests using Extended Common Query Language (ECQL).

In the previous recipes, you created filters using the OGC filter XML standard. ECQL lets you create filters in an easier text format and in a much more compact way. A CQL filter is a list of phrases similar to the where clauses in SQL, each separated by the combiner words AND or OR.

Note

CQL was originally used for catalog systems. GeoServer uses an extension for CQL, allowing the full representation of OGC filters in the text form. This extension is called ECQL.

ECQL lets you use several operators and functions. For more information, you can read the documents available at the following URLs:

In this recipe, we will create a map with a filter on income_grp, which is very similar to the previous one. Your result should look like the following screenshot:

Tip

You can find the full source code for this recipe in the ch01_wmsCQLFilter.html file.

How to do it…

  1. Copy the file used in the first recipe to a new file and name it wfsCQLFilter.html in the same folder. Insert a new sld variable and populate it as shown in the following lines:
      <script type="text/javascript" src="http://openlayers.org/api/2.13.1/OpenLayers.js"></script>
      <script type="text/javascript">
        function init() {
          var sld = '<StyledLayerDescriptor version="1.0.0">';
          sld+= '<NamedLayer>';
          sld+= '<Name>NaturalEarth:countries</Name>';
          sld+= '<UserStyle>';
          sld+= '<IsDefault>1</IsDefault>';
          sld+= '<FeatureTypeStyle>';
          sld+= '<Rule>';
          sld+= '<PolygonSymbolizer>';
          sld+= '<Stroke>';
          sld+= '<CssParameter name="stroke">#000000</CssParameter>';
          sld+= '<CssParameter name="stroke-width">1</CssParameter>';
          sld+= '</Stroke>';
          sld+= '<Fill>';
          sld+= '<CssParameter name="fill">#FFFFCC</CssParameter>';
          sld+= '<CssParameter name="fill-opacity">0.65</CssParameter>';
          sld+= '</Fill>';
          sld+= '</PolygonSymbolizer>';
          sld+= '</Rule>';
          sld+= '</FeatureTypeStyle>';
          sld+= '</UserStyle>';
          sld+= '</NamedLayer>';
          sld+= '</StyledLayerDescriptor>';
  2. After the Blue Marble layer, add a new WMS layer:
          new OpenLayers.Layer.WMS("countries",
            "http://localhost/geoserver/wms",{
              layers: "NaturalEarth:countries",
              format: "image/png",
              transparent: true,
              CQL_FILTER: "income_grp = '1. High income: OECD' OR income_grp ='2. High income: nonOECD'",
              sld_body: sld
              })
  3. Save the file and point your browser to it. You should get a map that looks like the one shown in the introduction to this recipe.

How it works…

As with the vendor parameter for reprojection, the use of CQL filters is really easy. You can add one when you create the Layer object and insert the textual representation of the filter, that is, a string. In this filter, we want to select high income countries; two different values match the condition, so we use the logical operator OR to join them:

CQL_FILTER: "income_grp = '1. High income: OECD' OR income_grp ='2. High income: nonOECD'",

Then, we add an sld_body parameter and assign the content of the variable sld to it. This is not a filter requirement; we just want to override the default style for the countries' layers, so we use the WMS option to send a Styled Layer Descriptor (SLD) description of drawing rules to GeoServer:

sld_body: sld

Of course, we need to create an actual SLD document and insert it into the sld variable before creating the countries layer. We do this by adding a well-formed XML code line by line to the sld variable. You will note that we're creating exactly the same symbology used in the Using WFS spatial filters recipe:

var sld = '<StyledLayerDescriptor version="1.0.0">';
…
sld+= '<PolygonSymbolizer>';
sld+= '<Stroke>';
sld+= '<CssParameter name="stroke">#000000</CssParameter>';
sld+= '<CssParameter name="stroke-width">1</CssParameter>';
sld+= '</Stroke>';
sld+= '<Fill>';
sld+= '<CssParameter name="fill">#FFFFCC</CssParameter>';
sld+= '<CssParameter name="fill-opacity">0.65</CssParameter>';
sld+= '</Fill>';
sld+= '</PolygonSymbolizer>';
…

This is just a small peek at SLD. If you are curious about the standard, you can find the official papers for SLD at schemas at http://schemas.opengis.net/sld/.

主站蜘蛛池模板: 石棉县| 玛纳斯县| 鄱阳县| 栖霞市| 河池市| 济阳县| 湖南省| 隆子县| 彭阳县| 股票| 张家港市| 大足县| 大足县| 陆丰市| 临桂县| 津市市| 登封市| 林口县| 盘锦市| 西乡县| 阳曲县| 天津市| 东方市| 肥城市| 通榆县| 庆城县| 通海县| 龙川县| 正蓝旗| 西昌市| 巴彦淖尔市| 阿勒泰市| 洪雅县| 偏关县| 大渡口区| 庆云县| 呼伦贝尔市| 鲁甸县| 富锦市| 海南省| 襄垣县|