Compare commits

..

4 Commits

Author SHA1 Message Date
0ea0d77192 Merge pull request 'minor fix of xsi:schemaLocation' (#2) from awinkler/musdb-md-xm-xsls:master into master
Reviewed-on: #2
Reviewed-by: Joshua Ramon Enslin <joshua@jrenslin.de>
2023-02-28 18:49:47 +01:00
1450d9eaae fixed xsi:schemaLocation
Signed-off-by: Alexander Winkler <winkler@zib.de>
2023-02-28 17:29:26 +01:00
05e0ba9e51 fixed xsi:schemaLocation
Signed-off-by: Alexander Winkler <winkler@zib.de>
2023-02-28 17:27:12 +01:00
a32d94a2f5 fixed xsi:schemaLocation
Currently, the export generates (erroneously, I guess) an `xmlns:schemaLocation` namespace and consequently doesn't link the gml schema properly. I've changed the attributes in `lido:lidoWrap` to fix this issue.

Signed-off-by: Alexander Winkler <winkler@zib.de>
2023-02-28 17:18:51 +01:00
3 changed files with 1966 additions and 1966 deletions

View File

@ -4,7 +4,7 @@
xmlns:gml="http://www.opengis.net/gml">
<xsl:output method="xml" omit-xml-declaration="no" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<lido:lidoWrap xmlns:lido="http://www.lido-schema.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.lido-schema.org http://www.lido-schema.org/schema/v1.1/lido-v1.1.xsd" xmlns:gml="http://www.opengis.net/gml" xmlns:schemaLocation="http://schemas.opengis.net/gml/3.1.1/base/feature.xsd">
<lido:lidoWrap xmlns:lido="http://www.lido-schema.org" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.lido-schema.org http://www.lido-schema.org/schema/v1.1/lido-v1.1.xsd http://www.opengis.net/gml http://schemas.opengis.net/gml/3.1.1/base/feature.xsd">
<xsl:apply-templates select="/root"/>
</lido:lidoWrap>
</xsl:template>

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@
xmlns:gml="http://www.opengis.net/gml">
<xsl:output method="xml" omit-xml-declaration="no" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<lido:lidoWrap xmlns:lido="http://www.lido-schema.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.lido-schema.org http://www.lido-schema.org/schema/v1.1/lido-v1.1.xsd" xmlns:gml="http://www.opengis.net/gml" xmlns:schemaLocation="http://schemas.opengis.net/gml/3.1.1/base/feature.xsd">
<lido:lidoWrap xmlns:lido="http://www.lido-schema.org" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.lido-schema.org http://www.lido-schema.org/schema/v1.1/lido-v1.1.xsd http://www.opengis.net/gml http://schemas.opengis.net/gml/3.1.1/base/feature.xsd">
<xsl:apply-templates select="/root"/>
</lido:lidoWrap>
</xsl:template>