Skip to content

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:

  • id
  • geometry
  • properties.name
  • properties.address
  • properties.function
  • properties.height
  • properties.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.