Remote Sensing Foundation Models
Collection
Self-contained models for easy loading • 28 items • Updated • 2
Maps a geographic coordinate (lat, lon) to a learned embedding via a learnable
Spherical Voronoi partition of S² with global semantic tokens. ECCV 2026.
Daniel Cher, Hamza Iqbal, Eric Xing, Brian Wei, Nathan Jacobs — Washington University in St. Louis (MVRL).
import torch
from tte import TTE
model = TTE.from_pretrained("MVRL/TTE").eval()
coords = torch.tensor([[37.77, -122.42],
[-3.12, 60.02]])
emb = model.encode(coords)
Image backbone used during training (not needed here): frozen SSL4EO-S12 MAE ViT-L/16.
@inproceedings{cher2026tte,
title = {Tessellating the Earth: Learnable Spherical Voronoi Partitions for Location Encoding},
author = {Cher, Daniel and Iqbal, Hamza and Xing, Eric and Wei, Brian and Jacobs, Nathan},
booktitle = {European Conference on Computer Vision (ECCV)},
year = {2026}
}