The Geo.metro attribute is supposed to use "Google metro codes":
Google metro code; similar to but not exactly Nielsen DMAs. See Appendix A for a link to the codes.
Appendix A directs us to https://developers.google.com/google-ads/api/data/geotargets, which provides a downloadable CSV of Google's geo targets.
However, the page makes no obvious mention of "metro codes", and inspecting the CSV suggests that none of the "Target Types" correspond to a metro code similar to Nielsen DMAs.
select "Target Type", count(*) as count
from "geotargets-2026-07-16.csv"
where "Country Code" = 'US'
group by "Target Type"
order by count
;
┌────────────────────────┬───────┐
│ Target Type │ count │
│ varchar │ int64 │
├────────────────────────┼───────┤
│ Country │ 1 │
│ District │ 1 │
│ Region │ 2 │
│ City Region │ 4 │
│ Borough │ 41 │
│ State │ 51 │
│ National Park │ 57 │
│ Colloquial Area │ 97 │
│ University │ 169 │
│ Airport │ 174 │
│ Congressional District │ 684 │
│ Municipality │ 1947 │
│ County │ 3098 │
│ Neighborhood │ 4911 │
│ City │ 19676 │
│ Postal Code │ 33371 │
└────────────────────────┴───────┘
It's unclear how this field should be used.
The
Geo.metroattribute is supposed to use "Google metro codes":Appendix A directs us to https://developers.google.com/google-ads/api/data/geotargets, which provides a downloadable CSV of Google's geo targets.
However, the page makes no obvious mention of "metro codes", and inspecting the CSV suggests that none of the "Target Types" correspond to a metro code similar to Nielsen DMAs.
It's unclear how this field should be used.