-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitem.json
More file actions
102 lines (102 loc) · 2.1 KB
/
item.json
File metadata and controls
102 lines (102 loc) · 2.1 KB
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
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/table/v1.2.0/schema.json",
"https://stac-extensions.github.io/vector/v0.1.0/schema.json"
],
"type": "Feature",
"id": "berlin-buildings-2023",
"bbox": [
13.37,
52.5,
13.43,
52.54
],
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
13.37,
52.5
],
[
13.43,
52.5
],
[
13.43,
52.54
],
[
13.37,
52.54
],
[
13.37,
52.5
]
]
]
},
"properties": {
"datetime": "2023-06-01T00:00:00Z",
"vector:geometry_types": [
"Polygon",
"MultiPolygon"
],
"vector:mmu": 4,
"vector:reference_scale": 1000
},
"links": [
{
"href": "https://example.com/examples/item.json",
"rel": "self"
}
],
"assets": {
"data": {
"href": "https://example.com/examples/berlin-buildings-2023.gpkg",
"type": "application/geopackage+sqlite3",
"title": "Building Footprints (GeoPackage)",
"roles": [
"data"
],
"table:row_count": 42385,
"table:primary_geometry": "geometry",
"table:columns": [
{
"name": "geometry",
"description": "Building footprint",
"type": "geometry",
"vector:geometry_types": [
"Polygon",
"MultiPolygon"
],
"vector:mmu": 4,
"vector:reference_scale": 1000
},
{
"name": "building_id",
"description": "Unique building identifier",
"type": "int64"
},
{
"name": "height",
"description": "Building height in meters",
"type": "float"
},
{
"name": "floors",
"description": "Number of above-ground floors",
"type": "int32"
},
{
"name": "year_built",
"description": "Year the building was constructed",
"type": "int32"
}
]
}
}
}