| # UAV-GeoLoc | |
| This repo contains the large-vocabulary datasets for our paper *UAV-GeoLoc: A Large-vocabulary Dataset and Geometry-Transformed | |
| Method for UAV Geo-Localization*. Given a top-down UAV image, retrieve a corresponding satellite image patch to infer the UAV's location. | |
| ## π¦ Usage && Dataset Structure | |
| ### β¬οΈ Download Instructions | |
| You need to download all parts of a category (e.g., all `Country.zip.00X` files) **before extraction**. | |
| #### 1. Clone the repository with Git LFS enabled: | |
| ```bash | |
| git lfs install | |
| git clone https://huggingface.co/datasets/RingoWRW97/UAV-GeoLoc | |
| ``` | |
| #### 2.combine and extract the files | |
| ```bash | |
| # For Country | |
| cat Country.zip.* > Country.zip | |
| unzip Country.zip | |
| # For Terrain | |
| cat Terrain.zip.* > Terrain.zip | |
| unzip Terrain.zip | |
| # For Rot | |
| unzip Rot.zip | |
| ``` | |
| ### πΌοΈ Dataset Structure | |
| Each folder under Country or Terrain (e.g., USA, Italy, Japan, etc.) contains *N* scenes for that region. Each scene is structured as follows: | |
| Country/ | |
| βββ Australia/ | |
| βββββCity(Sydney) | |
| βββββββRegion | |
| βββββββββ DB / (Satellite Map) | |
| βββββββββ query / (24 dir,including height 100:150:25, heading 0:360:45) | |
| βββββββββ semi_positive.json | |
| βββββββββ positive.json | |
| βββ Brazil/ | |
| βββ USA/ | |
| βββ ... | |
| ### ποΈ Index.zip (Train/Val/Test Splits) | |
| The dataset includes a compressed file `Index.zip` that contains various .txt files used to define training, validation, and test splits across different components of the dataset. | |
| After extracting `Index.zip`, the structure looks like: | |
| Index/ | |
| βββ train.txt | |
| βββ train_all.txt | |
| βββ train_country.txt | |
| βββ train_db.txt | |
| βββ train_db_all.txt | |
| βββ train_db_country.txt | |
| βββ train_query.txt | |
| βββ train_query_all.txt | |
| βββ train_query_country.txt | |
| βββ train_query_test.txt | |
| βββ val.txt | |
| βββ val_all.txt | |
| βββ val_country.txt | |
| βββ val_db.txt | |
| βββ val_db_country.txt | |
| βββ val_query.txt | |
| βββ val_query_country.txt | |
| βββ test.txt | |
| βββ test_all.txt | |
| βββ test_country.txt | |
| βββ test_db.txt | |
| βββ test_query.txt | |
| Each file defines a specific subset of the dataset used for: | |
| - `*_query.txt`: UAV query images | |
| - `*_db.txt`: Reference DB images | |
| - `*_country.txt`: only train on `country` class | |
| - `*.txt`: only train on `terrain` class | |
| - `*_all.txt`: Union of all images in a given category | |
| ## πΈ Result on Rot | |
|  | |
| βFireβ denotes results trained on our proposed dataset. βBoxβ indicates that the model is trained with the LPN method. | |
| ## π License | |
| This dataset is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0). | |
| Any modification of the dataset is strictly prohibited. The imagery was collected using Google Earth Studio, and appropriate attribution to Google must be provided in any derivative work or publication. | |