Skip to content

Commit

Permalink
moved to version 1.4 of the i-UR ADE
Browse files Browse the repository at this point in the history
clausnagel committed Feb 11, 2021
1 parent d794d4e commit cef31ae
Showing 159 changed files with 14,042 additions and 1,881 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ The Java module for enabling the Importer/Exporter tool to store i-UR ADE data a
has been manually implemented against the `ADEExtension` interface and plugin mechanism of the Importer/Exporter.
The `ADEExtension` interface has been introduced with [version 4.0](https://github.com/3dcitydb/3dcitydb/releases/tag/v4.0.0)
of the 3D City Database. The [TestADE repository](https://github.com/3dcitydb/extension-test-ade) demonstrates the
implementation of an artifical ADE and may serve as template for implementing extensions for your own ADEs.
implementation of an artificial ADE and may serve as template for implementing extensions for your own ADEs.

The Java module for parsing and writing i-UR ADE enriched datasets is implemented as extension for the open source
CityGML library citygml4j. More information can be found [here](https://github.com/citygml4j/iur-ade-citygml4j).
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@ plugins {
}

group 'org.citydb.ade'
version '1.0.0'
version '1.4.0'
description 'i-Urban Revitalization ADE extension for the 3DCityDB'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
}

configurations {
@@ -26,10 +26,10 @@ repositories {
}

dependencies {
implementation 'org.citydb:impexp-client:4.3.0-b20200807.1607'
implementation 'org.citygml4j.ade:iur-ade-citygml4j:1.0.0'
implementation 'org.citydb:impexp-client:4.3.0-b20210211-1117'
implementation 'org.citygml4j.ade:iur-ade-citygml4j:1.4.0'

citygml4j('org.citygml4j.ade:iur-ade-citygml4j:1.0.0') {
citygml4j('org.citygml4j.ade:iur-ade-citygml4j:1.4.0') {
transitive = false
}
}
9 changes: 5 additions & 4 deletions resources/ade-manager/UrbanRevitalizationADE.xsd
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/1.3" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/1.3" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.3">
<xs:import namespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/urg/1.3" schemaLocation="schemas/statisticalGrid.xsd"/>
<xs:import namespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/uro/1.3" schemaLocation="schemas/urbanObject.xsd"/>
<xs:import namespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/urf/1.3" schemaLocation="schemas/urbanFunction.xsd"/>
<xs:schema xmlns="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/1.4" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/1.4" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.4">
<xs:import namespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/urg/1.4" schemaLocation="schemas/statisticalGrid.xsd"/>
<xs:import namespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/uro/1.4" schemaLocation="schemas/urbanObject.xsd"/>
<xs:import namespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/urf/1.4" schemaLocation="schemas/urbanFunction.xsd"/>
<xs:import namespace="http://www.kantei.go.jp/jp/singi/tiiki/toshisaisei/itoshisaisei/iur/urt/1.4" schemaLocation="schemas/publicTransit.xsd"/>
</xs:schema>
Loading

0 comments on commit cef31ae

Please sign in to comment.