CoolFace
Datasetpublic

0xRafie/asean-geolocation

ASEAN Geolocation ASEAN Geolocation is an image dataset for country-level geolocation across the 11 ASEAN countries. It is designed for image classification, visual geolocation, and explainable geolocation research. The dataset contains 4850 images organized by country label. Images are provided at their original aspect ratios; model-specific resizing and normalization should be handled during preprocessing. Dataset summary Task: country-level image… See the full description on the dataset page: https://huggingface.co/datasets/0xRafie/asean-geolocation.

sourceHugging Faceotherupdated 4mo agoView on Hugging Face
0likes55downloads
Dataset Card

ASEAN Geolocation

ASEAN Geolocation is an image dataset for country-level geolocation across the 11 ASEAN countries. It is designed for image classification, visual geolocation, and explainable geolocation research.

The dataset contains 4850 images organized by country label. Images are provided at their original aspect ratios; model-specific resizing and normalization should be handled during preprocessing.

Dataset summary

  • Task: country-level image classification / image geolocation
  • Countries: 11 ASEAN countries
  • Images: 4850
  • Labels: ISO-style country code, country name, and integer class label
  • Image format: mixed original image formats and aspect ratios

Dataset composition

The public dataset is organized by country. Public filenames are source-free to avoid filename-based source shortcuts.

Country codeCountryImages
THThailand500
SGSingapore500
MYMalaysia500
IDIndonesia500
PHPhilippines500
KHCambodia350
MMMyanmar350
LALaos500
VNVietnam500
BNBrunei300
TLTimor-Leste350
Total4850

Data fields

The public metadata file is metadata.csv with the following columns:

ColumnTypeDescription
file_namestringRelative path to the image file.
country_codestringCountry code label.
country_namestringHuman-readable country name.
labelintegerInteger class label.

The current label order is:

LabelCountry codeCountry
0THThailand
1SGSingapore
2MYMalaysia
3IDIndonesia
4PHPhilippines
5KHCambodia
6MMMyanmar
7LALaos
8VNVietnam
9BNBrunei
10TLTimor-Leste

Directory structure

text
README.md
metadata.csv
images/
  BN/
    BN_000001.jpg
    ...
  ID/
    ID_000001.jpg
    ...
  ...

Intended uses

  • Country-level image geolocation.
  • Image classification benchmarks for ASEAN countries.
  • Explainable geolocation experiments.
  • Visual geography and regional representation studies.

Out-of-scope uses

  • Identifying exact image locations.
  • Surveillance, person identification, or face recognition.
  • Demographic or sensitive-attribute inference.
  • Legal, safety-critical, or high-stakes decision making.

Limitations and biases

This dataset is a curated benchmark, not an exhaustive or statistically representative sample of each country. Images may overrepresent urban, roadside, tourist, or web-visible scenes. Visual domain differences may remain even though public filenames and public metadata do not expose per-image source information.

The dataset is intended for country-level geolocation research. It should not be interpreted as a complete representation of people, places, cultures, or environments in any country.

Loading example

python
from pathlib import Path
import pandas as pd
from PIL import Image

root = Path("hf_publish/asean-geolocation")
metadata = pd.read_csv(root / "metadata.csv")

row = metadata.iloc[0]
image = Image.open(root / row["file_name"])
label = row["country_code"]

Citation

If you use this dataset, please cite it as:

bibtex
@dataset{ekaputra_asean_geolocation_2026,
  title     = {ASEAN Geolocation},
  author    = {Ekaputra, Danish Rafie},
  year      = {2026},
  publisher = {Hugging Face},
  url       = {https://huggingface.co/datasets/0xRafie/asean-geolocation},
  note      = {Country-level image geolocation dataset covering 11 ASEAN countries}
}

License and usage

This dataset is provided for research and educational use as a curated benchmark for country-level image geolocation. The metadata, labels, and dataset organization are provided by Danish Rafie Ekaputra.

The image files were assembled from mixed public and street-level imagery sources and may remain subject to their original copyrights, licenses, and platform terms. Users are responsible for ensuring that their use complies with applicable laws, source terms, and institutional policies.

Do not use this dataset for surveillance, person identification, demographic inference, or safety-critical decision making.