The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.
πΎ UK Farm Assets Embeddings v1
Algorithmic attribution of UK agricultural field to farming assets. Generated with help of AlphaEarth embeddings, to ensure rich context capture with help of EO features.
π Live sample map
Explore a synthetic 500-parcel demo in the interactive map below.
Each parcel is colored by confidence of attribution to its farm.
(Demo is synthetic for illustration; full dataset embeddings & farm IDs are included here in tabular form.)
π¦ Dataset contents
Each row corresponds to one parcel centroid.
Main fields:
parcel_idβ unique parcel identifierfarm_idβ farm grouping (cluster of parcels operated as one asset)lat,lonβ centroid coordinates (EPSG:4326)area_haβ parcel area in hectaresvecβ [256-D float32 embedding] (L2-normalized AlphaEarth vector)confidenceβ probability that the parcel attribution to this farm is correctprovenanceβ JSON with model + parameters (e.g., embed_dim, months_back, scales)
Format: Parquet shards (for efficient loading).
π§βπ» Usage in Python
Load with π€ Datasets:
from datasets import load_dataset
import numpy as np
ds = load_dataset("EmbeddingsOG/uk-farm-assets-embeddings-v1", split="train")
row = ds[0]
print("Parcel:", row["parcel_id"], "Farm:", row["farm_id"])
print("Lat/Lon:", row["lat"], row["lon"], "Area:", row["area_ha"], "ha")
vec = np.array(row["vec"], dtype=np.float32)
print("Embedding shape:", vec.shape) # (256,)
- Downloads last month
- 3