Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
License:
File size: 4,085 Bytes
5edf38f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90991bb
 
5edf38f
90991bb
 
5edf38f
 
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
---
license: apache-2.0
dataset_info:
  features:
  - name: condition
    dtype: image
  - name: lat
    dtype: float64
  - name: lon
    dtype: float64
  - name: heading
    dtype: float64
  - name: elevation
    dtype: float64
  - name: panoid
    dtype: string
  - name: theta
    dtype: int64
  - name: phi
    dtype: int64
  - name: fov
    dtype: int64
  splits:
  - name: train
    num_bytes: 4626868770.85
    num_examples: 99825
  download_size: 4740521476
  dataset_size: 4626868770.85
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Satellite to GroundScape - Large-scale Consistent Ground View Generation from Satellite Views

[**🌐 Homepage**](https://gdaosu.github.io/sat2groundscape/) |  [**📖 arXiv**](https://arxiv.org/abs/2504.15786)

## Introduction
Generating consistent ground-view images from satellite imagery is challenging, primarily due to the large discrepancies in viewing angles and resolution between satellite and ground-level domains. Previous efforts mainly concentrated on single-view generation, often resulting in inconsistencies across neighboring ground views. In this work, we propose a novel cross-view synthesis approach designed to overcome these challenges by ensuring consistency across ground-view images generated from satellite views. Our method, based on a fixed latent diffusion model, introduces two conditioning modules: satellite-guided denoising, which extracts high-level scene layout to guide the denoising process, and satellite-temporal denoising, which captures camera motion to maintain consistency across multiple generated views. We further contribute a large-scale satellite-ground dataset containing over 100,000 perspective pairs to facilitate extensive ground scene or video generation. Experimental results demonstrate that our approach outperforms existing methods on perceptual and temporal metrics, achieving high photorealism and consistency in multi-view outputs.

## Description
The Sat2GroundScape contains 99,825 pairs of satellite-ground data in perspective format. Including:
  * <strong>condition</strong>: [256x256x3] satellite rgb texture, rendered from ground-level camera.
  * <strong>lat, lon</strong>: latitude, longtitude of the ground image.  
  * <strong>elevation</strong>: elevation (meters) of the ground image
  * <strong>heading</strong>: the heading (degrees) of the ground image in panaroma format.
  * <strong>pano_id</strong>: used for downloading corresponding GT ground-view image in panaroma format.
  * <strong>theta,phi,fov</strong>: used for cropping out the perspective image from the panaroma image with theta,phi for cropping center, fov for cropping range. 

## Downloading Ground-view panaroma image 
Each GT ground-view image is associated with a unique ID, pano_id. Please refer to https://github.com/robolyst/streetview for downloading the original ground-view image (512x1024x3).

```
from streetview import get_streetview
image = get_streetview(
    pano_id="z80QZ1_QgCbYwj7RrmlS0Q",
    api_key=GOOGLE_MAPS_API_KEY,
)
image.save("image.jpg", "jpeg")
```

## Panaroma to Perspective
Given theta, phi, fov, we can crop the perspective image from the panaroma image. Please refer to https://github.com/fuenwang/Equirec2Perspec.

```
import os
import cv2 
import Equirec2Perspec as E2P 

if __name__ == '__main__':
    equ = E2P.Equirectangular('src/image.jpg')    # Load equirectangular image
    
    #
    # FOV unit is degree 
    # theta is z-axis angle(right direction is positive, left direction is negative)
    # phi is y-axis angle(up direction positive, down direction negative)
    # height and width is output image dimension 
    #
    img = equ.GetPerspective(60, 0, 0, 720, 1080) # Specify parameters(FOV, theta, phi, height, width)
```



## Citation
**BibTex:**
```bibtex
@article{xu2025satellite,
  title={Satellite to GroundScape--Large-scale Consistent Ground View Generation from Satellite Views},
  author={Xu, Ningli and Qin, Rongjun},
  journal={arXiv preprint arXiv:2504.15786},
  year={2025}
}
```