Skip to content

Layer definition elements unused in WMS GetCapabilities response #115

@jfbourgon

Description

@jfbourgon

Layer definition elements (title, abstract) are not properly rendered in WMS GetCapabilities response.

Following layer definition

layers = {
   hrdtm = {
        type = "simplesourceconf"
        name = "hrdtm"
        title = "High Resolution Digital Terain Model (HRDTM)"
        abstract = "High Resolution Digital Terain Model generated from LiDAR"
        source = {
            ...

will produce the following output.

<Layer queryable="false">
   <Name>hrdtm</Name>
   <Title>hrdtm</Title>
   <Abstract>hrdtm</Abstract>
...

Faulty code seems to be:

Name = Some(layerName),
Title = layerName,
Abstract = Some(layerName),

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions