217.646.487 images with lat lon coordinates from Flickr. This repo is a filtered version of
https://huggingface.co/datasets/bigdata-pw/Flickr for all rows containing a valid lat lon pair.
Load the data (2s on my system) with DuckDB:
import duckdb
df = duckdb.sql("""
SELECT CAST(latitude AS DOUBLE) AS latitude,
CAST(longitude AS DOUBLE) AS longitude
FROM 'reduced_flickr_data/*.parquet'
""").df()
df… See the full description on the dataset page:
https://huggingface.co/datasets/do-me/Flickr-Geo.