├── .gitignore ├── LICENSE ├── README.md ├── doc ├── 0.0-前言.md ├── 0.1-引言.md ├── 1.0-范围.md ├── 10.0-可视化参数模块.md ├── 11.0-元数据模块.md ├── 12.0-基础数据结构模块.md ├── 2.0-规范性引用文件.md ├── 3.0-术语和定义.md ├── 4.0-缩略语和符号.md ├── 5.0-Geo3DML构成.md ├── 6.0-三维数据包模块.md ├── 7.0-地质要素模块.md ├── 8.0-几何数据模块.md ├── 9.0-属性场数据模块.md ├── README.md ├── pictures │ ├── 10-21.png │ ├── 10-22.png │ ├── 10-23.png │ ├── 10-24.png │ ├── 10-25.png │ ├── 10-26.png │ ├── 10-27.png │ ├── 10-28.png │ ├── 10-29.png │ ├── 11-30.png │ ├── 11-31.png │ ├── 11-32.png │ ├── 11-33.png │ ├── 11-34.png │ ├── 4-1.png │ ├── 4-2.png │ ├── 5-3.png │ ├── 5-4.png │ ├── 6-10.png │ ├── 6-5.png │ ├── 6-6.png │ ├── 6-7.png │ ├── 6-8.png │ ├── 6-9.png │ ├── 7-11.png │ ├── 7-12.png │ ├── 8-13.png │ ├── 8-14.png │ ├── 8-15.png │ ├── 8-16.png │ ├── 8-17.png │ ├── 8-18.png │ ├── 8-19.png │ └── 9-20.png ├── 参考文献.md ├── 附录A-Geo3DML-XML-Schema.md ├── 附录B-Geo3DML示例数据.md └── 附录C-Base64编码解码参考实现.md ├── examples └── data │ ├── README.md │ ├── example.png │ ├── map_drill.xml │ ├── map_section.xml │ ├── map_stratum.xml │ ├── model_Volume_1.xml │ ├── model_Volume_2.xml │ ├── model_drill.xml │ ├── model_section.xml │ ├── project.xml │ └── 岩石.jpg └── xsd ├── Geo3DML.xsd ├── Geo3DMap.xsd ├── Geo3DModel.xsd ├── Geo3DStyle.xsd ├── Geo3DStyleLib.xsd ├── GeoBasicTypes.xsd ├── GeoFeature.xsd ├── GeoFeatureClass.xsd ├── GeoGeometry.xsd ├── GeoMetaData.xsd ├── GeoProperty.xsd └── base64.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/README.md -------------------------------------------------------------------------------- /doc/0.0-前言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/0.0-前言.md -------------------------------------------------------------------------------- /doc/0.1-引言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/0.1-引言.md -------------------------------------------------------------------------------- /doc/1.0-范围.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/1.0-范围.md -------------------------------------------------------------------------------- /doc/10.0-可视化参数模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/10.0-可视化参数模块.md -------------------------------------------------------------------------------- /doc/11.0-元数据模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/11.0-元数据模块.md -------------------------------------------------------------------------------- /doc/12.0-基础数据结构模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/12.0-基础数据结构模块.md -------------------------------------------------------------------------------- /doc/2.0-规范性引用文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/2.0-规范性引用文件.md -------------------------------------------------------------------------------- /doc/3.0-术语和定义.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/3.0-术语和定义.md -------------------------------------------------------------------------------- /doc/4.0-缩略语和符号.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/4.0-缩略语和符号.md -------------------------------------------------------------------------------- /doc/5.0-Geo3DML构成.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/5.0-Geo3DML构成.md -------------------------------------------------------------------------------- /doc/6.0-三维数据包模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/6.0-三维数据包模块.md -------------------------------------------------------------------------------- /doc/7.0-地质要素模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/7.0-地质要素模块.md -------------------------------------------------------------------------------- /doc/8.0-几何数据模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/8.0-几何数据模块.md -------------------------------------------------------------------------------- /doc/9.0-属性场数据模块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/9.0-属性场数据模块.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/pictures/10-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-21.png -------------------------------------------------------------------------------- /doc/pictures/10-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-22.png -------------------------------------------------------------------------------- /doc/pictures/10-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-23.png -------------------------------------------------------------------------------- /doc/pictures/10-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-24.png -------------------------------------------------------------------------------- /doc/pictures/10-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-25.png -------------------------------------------------------------------------------- /doc/pictures/10-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-26.png -------------------------------------------------------------------------------- /doc/pictures/10-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-27.png -------------------------------------------------------------------------------- /doc/pictures/10-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-28.png -------------------------------------------------------------------------------- /doc/pictures/10-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/10-29.png -------------------------------------------------------------------------------- /doc/pictures/11-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/11-30.png -------------------------------------------------------------------------------- /doc/pictures/11-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/11-31.png -------------------------------------------------------------------------------- /doc/pictures/11-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/11-32.png -------------------------------------------------------------------------------- /doc/pictures/11-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/11-33.png -------------------------------------------------------------------------------- /doc/pictures/11-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/11-34.png -------------------------------------------------------------------------------- /doc/pictures/4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/4-1.png -------------------------------------------------------------------------------- /doc/pictures/4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/4-2.png -------------------------------------------------------------------------------- /doc/pictures/5-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/5-3.png -------------------------------------------------------------------------------- /doc/pictures/5-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/5-4.png -------------------------------------------------------------------------------- /doc/pictures/6-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/6-10.png -------------------------------------------------------------------------------- /doc/pictures/6-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/6-5.png -------------------------------------------------------------------------------- /doc/pictures/6-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/6-6.png -------------------------------------------------------------------------------- /doc/pictures/6-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/6-7.png -------------------------------------------------------------------------------- /doc/pictures/6-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/6-8.png -------------------------------------------------------------------------------- /doc/pictures/6-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/6-9.png -------------------------------------------------------------------------------- /doc/pictures/7-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/7-11.png -------------------------------------------------------------------------------- /doc/pictures/7-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/7-12.png -------------------------------------------------------------------------------- /doc/pictures/8-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/8-13.png -------------------------------------------------------------------------------- /doc/pictures/8-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/8-14.png -------------------------------------------------------------------------------- /doc/pictures/8-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/8-15.png -------------------------------------------------------------------------------- /doc/pictures/8-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/8-16.png -------------------------------------------------------------------------------- /doc/pictures/8-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/8-17.png -------------------------------------------------------------------------------- /doc/pictures/8-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/8-18.png -------------------------------------------------------------------------------- /doc/pictures/8-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/8-19.png -------------------------------------------------------------------------------- /doc/pictures/9-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/pictures/9-20.png -------------------------------------------------------------------------------- /doc/参考文献.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/参考文献.md -------------------------------------------------------------------------------- /doc/附录A-Geo3DML-XML-Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/附录A-Geo3DML-XML-Schema.md -------------------------------------------------------------------------------- /doc/附录B-Geo3DML示例数据.md: -------------------------------------------------------------------------------- 1 | # 附录B:Geo3DML示例数据 2 | 3 | **(资料性附录)** 4 | 5 | 见examples目录。 -------------------------------------------------------------------------------- /doc/附录C-Base64编码解码参考实现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/doc/附录C-Base64编码解码参考实现.md -------------------------------------------------------------------------------- /examples/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/README.md -------------------------------------------------------------------------------- /examples/data/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/example.png -------------------------------------------------------------------------------- /examples/data/map_drill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/map_drill.xml -------------------------------------------------------------------------------- /examples/data/map_section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/map_section.xml -------------------------------------------------------------------------------- /examples/data/map_stratum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/map_stratum.xml -------------------------------------------------------------------------------- /examples/data/model_Volume_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/model_Volume_1.xml -------------------------------------------------------------------------------- /examples/data/model_Volume_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/model_Volume_2.xml -------------------------------------------------------------------------------- /examples/data/model_drill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/model_drill.xml -------------------------------------------------------------------------------- /examples/data/model_section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/model_section.xml -------------------------------------------------------------------------------- /examples/data/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/project.xml -------------------------------------------------------------------------------- /examples/data/岩石.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/examples/data/岩石.jpg -------------------------------------------------------------------------------- /xsd/Geo3DML.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/Geo3DML.xsd -------------------------------------------------------------------------------- /xsd/Geo3DMap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/Geo3DMap.xsd -------------------------------------------------------------------------------- /xsd/Geo3DModel.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/Geo3DModel.xsd -------------------------------------------------------------------------------- /xsd/Geo3DStyle.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/Geo3DStyle.xsd -------------------------------------------------------------------------------- /xsd/Geo3DStyleLib.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/Geo3DStyleLib.xsd -------------------------------------------------------------------------------- /xsd/GeoBasicTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/GeoBasicTypes.xsd -------------------------------------------------------------------------------- /xsd/GeoFeature.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/GeoFeature.xsd -------------------------------------------------------------------------------- /xsd/GeoFeatureClass.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/GeoFeatureClass.xsd -------------------------------------------------------------------------------- /xsd/GeoGeometry.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/GeoGeometry.xsd -------------------------------------------------------------------------------- /xsd/GeoMetaData.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/GeoMetaData.xsd -------------------------------------------------------------------------------- /xsd/GeoProperty.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/GeoProperty.xsd -------------------------------------------------------------------------------- /xsd/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuZixing/Geo3DML/HEAD/xsd/base64.h --------------------------------------------------------------------------------