1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
| {
| "type": "CityJSON_Extension",
| "name": "PipeLine",
| "uri": "http://www.smartearth.cn/extension.schema. PipeLine.json",
| "version": "1.0.0",
| "description": "Extension for PipeLine model",
| "extraCityObjects": {
| "+PipeLine": {
| "allOf": [
| {
| "$ref": "../cityobjects.schema.json#/_AbstractCityObject"
| },
| {
| "properties": {
| "type": {
| "enum": [
| "+PipeLine"
| ]
| },
| "topLevel": {
| "type": "boolean"
| },
| "attributes": {
| "type": "object",
| "properties": {
| "function": {
| "type": "string"
| },
| "bs": {
| "type": "object",
| "description": "标识",
| "properties": {
| "qqwybs": {
| "type": "string",
| "description": "全球唯一编码"
| },
| "hydm": {
| "type": "string",
| "description": "行业代码"
| },
| "fldm": {
| "type": "string",
| "description": "分类代码"
| },
| "mc": {
| "type": "string",
| "description": "名称"
| }
| }
| },
| "zt": {
| "type": "object",
| "description": "状态",
| "properties": {
| "ztgb": {
| "type": "string",
| "description": "状态改变"
| }
| }
| },
| "sk": {
| "type": "object",
| "description": "时空",
| "properties": {
| "cssj": {
| "type": "string",
| "description": "产生时间"
| },
| "gxsj": {
| "type": "string",
| "description": "更新时间"
| },
| "xwsj": {
| "type": "string",
| "description": "消亡时间"
| }
| }
| },
| "ssxzq": {
| "type": "string",
| "description": "所属行政区域"
| }
| }
| },
| "children": {
| "type": "array",
| "items": {
| "type": "string"
| }
| },
| "geometry": {
| "type": "array",
| "items": {
| "oneOf": [
| {
| "$ref": "geomprimitives.schema.json#/MultiPoint"
| },
| {
| "$ref": "geomprimitives.schema.json#/MultiLineString"
| },
| {
| "$ref": "geomprimitives.schema.json#/MultiSurface"
| },
| {
| "$ref": "geomprimitives.schema.json#/CompositeSurface"
| },
| {
| "$ref": "geomprimitives.schema.json#/Solid"
| },
| {
| "$ref": "geomprimitives.schema.json#/CompositeSolid"
| },
| {
| "$ref": "geomprimitives.schema.json#/MultiSolid"
| },
| {
| "$ref": "geomtemplates.schema.json#/GeometryInstance"
| }
| ]
| }
| }
| },
| "required": [
| "type",
| "topLevel",
| "geometry"
| ]
| }
| ]
| }
| }
| }
|
|