GeoMeters Data Dictionary
FreshGeoMeters are region-specific popularity rankings that reflect user interest in titles and people within specific geographic markets. They follow the same structure as the global Meters datasets but are scoped to individual countries or regional groupings.
Datasets
| Dataset | Scope | Size per Region |
|---|---|---|
geo_title_meter_v1 | All title types | Top 1,000 per region |
geo_tv_meter_v1 | TV shows only | Top 1,000 per region |
geo_movie_meter_v1 | Movies only | Top 1,000 per region |
geo_star_meter_v1 | Names (people) | Top 1,000 per region |
Each dataset contains multiple records per day — one record per rank position per region.
Record Structure
All four geo meter datasets share the same field structure:
| Field | Type | Description |
|---|---|---|
rank | integer | Rank within this region (1 = most popular) |
titleId or nameId | string | IMDb ID of the entity |
area | string | Region or country code |
date | string | Date of this ranking snapshot (YYYY-MM-DD) |
geo_title_meter_v1 Example
json
{ "rank": 1, "titleId": "tt15398776", "area": "US", "date": "2026-05-08" }
{ "rank": 2, "titleId": "tt0903747", "area": "US", "date": "2026-05-08" }
{ "rank": 1, "titleId": "tt0468569", "area": "IN", "date": "2026-05-08" }
{ "rank": 2, "titleId": "tt1877830", "area": "IN", "date": "2026-05-08" }geo_star_meter_v1 Example
json
{ "rank": 1, "nameId": "nm0425005", "area": "US", "date": "2026-05-08" }
{ "rank": 2, "nameId": "nm1165110", "area": "US", "date": "2026-05-08" }
{ "rank": 1, "nameId": "nm2225369", "area": "IN", "date": "2026-05-08" }Available Areas
Regional Groupings
| Code | Region |
|---|---|
APAC | Asia-Pacific |
EMEA | Europe, Middle East, and Africa |
NA | North America |
LATAM | Latin America |
Individual Countries
| Code | Country | Code | Country |
|---|---|---|---|
AU | Australia | JP | Japan |
BR | Brazil | KR | South Korea |
CA | Canada | MX | Mexico |
DE | Germany | US | United States |
ES | Spain | GB | United Kingdom |
FR | France | IN | India |
IT | Italy |
Querying in Athena
GeoMeter data is well-suited for Athena queries. The area column allows you to filter or group by region directly in SQL.
Example — top 10 titles in the United States today:
sql
SELECT rank, titleId, date
FROM geo_title_meter_v1
WHERE area = 'US'
AND date = '2026-05-08'
ORDER BY rank ASC
LIMIT 10;Example — compare top title across regions:
sql
SELECT area, titleId, rank
FROM geo_title_meter_v1
WHERE rank = 1
AND date = '2026-05-08'
ORDER BY area;See the full Querying in Athena page for DDL table definitions and more complex query patterns.