Dataset Viewer
Auto-converted to Parquet Duplicate
images
imagewidth (px)
1.02k
1.02k
metadata
dict
results
imagewidth (px)
1.02k
1.02k
{ "corners": [ [ 17.090606689453125, 51.14317120049778 ], [ 17.09197998046875, 51.14317120049778 ], [ 17.09197998046875, 51.14403276295328 ], [ 17.090606689453125, 51.14403276295328 ] ], "tile_coords": [ 143517, 87593, 18 ...
{ "corners": [ [ 16.99310302734375, 51.13196942517759 ], [ 16.994476318359375, 51.13196942517759 ], [ 16.994476318359375, 51.132831196692784 ], [ 16.99310302734375, 51.132831196692784 ] ], "tile_coords": [ 143446, 87606, 1...
{ "corners": [ [ 16.977996826171875, 51.08972291811633 ], [ 16.9793701171875, 51.08972291811633 ], [ 16.9793701171875, 51.09058547778529 ], [ 16.977996826171875, 51.09058547778529 ] ], "tile_coords": [ 143435, 87655, 18 ...
{ "corners": [ [ 17.052154541015625, 51.147478851968536 ], [ 17.05352783203125, 51.147478851968536 ], [ 17.05352783203125, 51.1483403340212 ], [ 17.052154541015625, 51.1483403340212 ] ], "tile_coords": [ 143489, 87588, 18 ...
{ "corners": [ [ 17.101593017578125, 51.08799775051612 ], [ 17.10296630859375, 51.08799775051612 ], [ 17.10296630859375, 51.088860342359965 ], [ 17.101593017578125, 51.088860342359965 ] ], "tile_coords": [ 143525, 87657, 1...
{ "corners": [ [ 17.03704833984375, 51.12248887705868 ], [ 17.038421630859375, 51.12248887705868 ], [ 17.038421630859375, 51.12335082548443 ], [ 17.03704833984375, 51.12335082548443 ] ], "tile_coords": [ 143478, 87617, 18 ...
{ "corners": [ [ 16.98486328125, 51.147478851968536 ], [ 16.986236572265625, 51.147478851968536 ], [ 16.986236572265625, 51.1483403340212 ], [ 16.98486328125, 51.1483403340212 ] ], "tile_coords": [ 143440, 87588, 18 ], ...
{ "corners": [ [ 17.107086181640625, 51.15264750308282 ], [ 17.10845947265625, 51.15264750308282 ], [ 17.10845947265625, 51.15350888865556 ], [ 17.107086181640625, 51.15350888865556 ] ], "tile_coords": [ 143529, 87582, 18 ...
{ "corners": [ [ 16.939544677734375, 51.144894309327995 ], [ 16.94091796875, 51.144894309327995 ], [ 16.94091796875, 51.14575583962204 ], [ 16.939544677734375, 51.14575583962204 ] ], "tile_coords": [ 143407, 87591, 18 ],...
{ "corners": [ [ 16.90521240234375, 51.10697105503077 ], [ 16.906585693359375, 51.10697105503077 ], [ 16.906585693359375, 51.107833292973915 ], [ 16.90521240234375, 51.107833292973915 ] ], "tile_coords": [ 143382, 87635, 1...
{ "corners": [ [ 17.11395263671875, 51.07678259253652 ], [ 17.115325927734375, 51.07678259253652 ], [ 17.115325927734375, 51.077645393527305 ], [ 17.11395263671875, 51.077645393527305 ] ], "tile_coords": [ 143534, 87670, 1...
End of preview. Expand in Data Studio

Dataset Card for Satellite Trees Wroclaw 2024

The Satellite Trees Wroclaw 2024 dataset contains high-resolution satellite imagery and metadata of trees in Wroclaw, Poland, collected in 2024. The dataset is organized into three main directories: images, metadata, and results.

  • images/: Contains orthophotomaps of different regions in Wroclaw.
  • metadata/: Contains JSON files with metadata for each tile, including information about the trees in the corresponding satellite images.
  • results/: Contains examples of results with trees painted on each image. (using the center of tree and radius derived from area)

This dataset can be used for various tasks such as tree detection, classification, and other geospatial tasks!

Dataset Details

Metadata Description

Each JSON file in the metadata/ directory contains information about the trees in the corresponding satellite image tile. Structure of json object:

  • tile_coords: list of x, y, z of tile from specified orthophotomaps.
  • tile_metadata:
    • bbox: bounding box of a tile "bbox = left,bottom,right,top"
    • resolution: resulution in pixels of image
    • crs: coordinate reference system
    • edge_in_meters: how many meters does the edge of tile has.
  • corners: list of corners of a tile in order: left-bottom, left-top, right-top, right-bottom. [Longitute, Latitude]
  • trees: list of tree details from specified source
    • height: Height of the tree.
    • e: Eccentricity of the tree. (not confirmed!)
    • volume: Volume of the tree. m^3
    • area: Area covered by the tree. m^2
    • latitude: Latitude coordinate of the tree.
    • longitude: Longitude coordinate of the tree.
  • transformed_trees: list of trees after transformation to image space in pixels with radius calculated from area.
    • latitude: Latitude coordinate of the tree.
    • longitude: Longitude coordinate of the tree.
    • x: X-coordinate in the image space.
    • y: Y-coordinate in the image space.
    • radius: Radius of the tree in pixels, calculated from the area.

Metadata Example

{
    "tile_coords": [
        143378,
        87608,
        18
    ],
    "tile_metadata": {
        "bbox": [
            16.89971923828125,
            51.13024583390033,
            16.901092529296875,
            51.131107637580136
        ],
        "resolution": 1024,
        "crs": "CRS:84",
        "edge_in_meters": 96
    },
    "corners": [
        [
            16.89971923828125,
            51.13024583390033
        ],
        [
            16.901092529296875,
            51.13024583390033
        ],
        [
            16.901092529296875,
            51.131107637580136
        ],
        [
            16.89971923828125,
            51.131107637580136
        ]
    ],
    "trees": [
        {
            "height": 8.05,
            "e": 1.2,
            "volume": 239.54,
            "area": 27,
            "latitude": 51.13105191475769,
            "longitude": 16.89974462238265
        },
        {
            "height": 9.49,
            "e": 1.27,
            "volume": 311.35,
            "area": 62,
            "latitude": 51.13101159452683,
            "longitude": 16.899798270669734
        },
        ...
    ],
    "transformed_trees": [
        {
            "latitude": 51.13105191475769,
            "longitude": 16.89974462238265,
            "x": 18,
            "y": 66,
            "radius": 31
        },
        {
            "latitude": 51.13101159452683,
            "longitude": 16.899798270669734,
            "x": 58,
            "y": 114,
            "radius": 47
        },
        ...
    ]
}

Of course you can extract more info about trees and place them into the image by iterating through the original trees list and modifying the transformed one.

Dataset Sources

Dataset Creation

Dataset was generated by iterating the maximum possible zoom of tile for chosen orthophotomaps (zoom: 18) in x and y directions. We downloaded each tile as an image with 1024x1024 resolution. We calculated the lat long coordinates for futher calculations. After having corners of tile we could get trees details from public api. We had to make some transformations to be able to draw trees on the images.

Annotation process

We believe that ground truth annotations are legit. (More inside github repository) GIS Wroclaw Trees data

Authors

  • Filip Strózik
  • Dawid Wolkiewicz
  • Izabela Majchrowska
Downloads last month
18