refactor: excel parse

This commit is contained in:
Blizzard
2026-04-16 10:01:11 +08:00
parent 680ecc320f
commit f62f95ec02
7941 changed files with 2899112 additions and 0 deletions
@@ -0,0 +1,47 @@
<?xml version="1.0"?>
<!--
/******************************************************************************
* $Id$
*
* Project: GDAL
* Purpose: Schema of vdv-452.xml
* Author: Even Rouault, <even.rouault at spatialys.com>
*
**********************************************************************
* Copyright (c) 2015, Even Rouault
*
* SPDX-License-Identifier: MIT
****************************************************************************/
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Layers">
<xs:complexType>
<xs:sequence>
<xs:element name="Layer" type="LayerType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="LayerType">
<xs:sequence>
<xs:element name="Field" type="FieldType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="name_en" type="xs:string"/>
<xs:attribute name="name_de" type="xs:string"/>
<xs:attribute name="num" type="xs:integer" use="optional"/>
</xs:complexType>
<xs:complexType name="FieldType">
<xs:attribute name="name_en" type="xs:string"/>
<xs:attribute name="name_de" type="xs:string"/>
<xs:attribute name="type">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="num"/>
<xs:enumeration value="char"/>
<xs:enumeration value="boolean"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="width" type="xs:nonNegativeInteger"/>
<xs:attribute name="cond" type="xs:string" use="optional"/>
</xs:complexType>
</xs:schema>