shapefileexport Configuration

This configuration is optional.

No dedicated Cadenza feature requires this configuration.

  • Documentation

  • YAML Format

  • XML Format

Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets.
<shapefileExportConfig
>
required
<mappings
>
optional
<mapping
>
optionalmax. unbounded
<sourceSystem
<authority
>
required
string
</authority>
>
required
</sourceSystem>
<targetSystem
<wkt
>
required
string
</wkt>
>
required
</targetSystem>
</mapping>
</mappings>
</shapefileExportConfig>
This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
cadenzaconfig:
  settings:
    shapefileexport:
      mappings:
      - sourceSystem:
          authority: "text"
        targetSystem:
          wkt: "text"
      - sourceSystem:
          authority: "text"
        targetSystem:
          wkt: "text"

Filename: shapefileexport-config.xml

This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<shapefileExportConfig>
  <mappings>
    <mapping>
      <sourceSystem>
        <authority>text</authority>
      </sourceSystem>
      <targetSystem>
        <wkt>text</wkt>
      </targetSystem>
    </mapping>
    <mapping>
      <sourceSystem>
        <authority>text</authority>
      </sourceSystem>
      <targetSystem>
        <wkt>text</wkt>
      </targetSystem>
    </mapping>
  </mappings>
</shapefileExportConfig>