Inputs¶
jug_lca_buildings accepts building data in GeoJSON format.
Input format¶
The input must be a GeoJSON FeatureCollection.
Each feature represents a building.
Required fields¶
Each feature should include:
idgeometryproperties.nameproperties.addressproperties.functionproperties.heightproperties.year_of_construction
Example structure¶
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": "bldg_1",
"geometry": {
"type": "Polygon",
"coordinates": [...]
},
"properties": {
"name": "Building A",
"address": "Sample address",
"function": "residential",
"height": 12,
"year_of_construction": 2005
}
}
]
}
Notes¶
- Geometry must be valid GeoJSON.
- Missing required fields may result in validation errors.
- Input size may affect execution time.