shapefileexport

This configuration is optional when using the plugin Gis_DataSource_Shapefile_Export.

  • 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
<columnNamesFrom
xsd:string
ColumnName
SimpleColumnName
PrintName
ShortName
>
optional
</columnNamesFrom>
Choice: Choose only ONE of the following
<shapefileExportWhiteList
<tag
xsd:string
value
optional
=
string
internal
optional
=
boolean
>
requiredmax. unbounded
</tag>
>
required

Deprecated (11.01.2021): Use exportAllowList instead.

</shapefileExportWhiteList>
<shapefileExportBlackList
<tag
xsd:string
value
optional
=
string
internal
optional
=
boolean
>
requiredmax. unbounded
</tag>
>
required

Deprecated (11.01.2021): Use exportDenyList instead.

</shapefileExportBlackList>
Choice End
Choice: Choose only ONE of the following
<exportAllowList
<tag
xsd:string
value
optional
=
string
internal
optional
=
boolean
>
requiredmax. unbounded
</tag>
>
required
</exportAllowList>
<exportDenyList
<tag
xsd:string
value
optional
=
string
internal
optional
=
boolean
>
requiredmax. unbounded
</tag>
>
required
</exportDenyList>
Choice End
<exportAllObjectsDenyList
<tag
xsd:string
value
optional
=
string
internal
optional
=
boolean
>
requiredmax. unbounded
</tag>
>
optional
</exportAllObjectsDenyList>
<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:
      columnNamesFrom: "ColumnName"
      shapefileExportWhiteList:
      - value: "text"
        internal: true
        name: "text"
      - value: "text"
        internal: true
        name: "text"
      shapefileExportBlackList:
      - value: "text"
        internal: true
        name: "text"
      - value: "text"
        internal: true
        name: "text"
      exportAllowList:
      - value: "text"
        internal: true
        name: "text"
      - value: "text"
        internal: true
        name: "text"
      exportDenyList:
      - value: "text"
        internal: true
        name: "text"
      - value: "text"
        internal: true
        name: "text"
      exportAllObjectsDenyList:
      - value: "text"
        internal: true
        name: "text"
      - value: "text"
        internal: true
        name: "text"
      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>
  <columnNamesFrom>ColumnName</columnNamesFrom>
  <shapefileExportWhiteList>
    <tag value="text" internal="true">text</tag>
    <tag value="text" internal="true">text</tag>
  </shapefileExportWhiteList>
  <shapefileExportBlackList>
    <tag value="text" internal="true">text</tag>
    <tag value="text" internal="true">text</tag>
  </shapefileExportBlackList>
  <exportAllowList>
    <tag value="text" internal="true">text</tag>
    <tag value="text" internal="true">text</tag>
  </exportAllowList>
  <exportDenyList>
    <tag value="text" internal="true">text</tag>
    <tag value="text" internal="true">text</tag>
  </exportDenyList>
  <exportAllObjectsDenyList>
    <tag value="text" internal="true">text</tag>
    <tag value="text" internal="true">text</tag>
  </exportAllObjectsDenyList>
  <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>