Hmmm... Given that I took IP addresses, looked them up in the MaxMind database and returned this JSON object (sample):
{'area_code': 410,
'city': 'Hampstead',
'country_code': 'US',
'country_code3': 'USA',
'country_name': 'United States',
'dma_code': 512,
'latitude': 39.6161994934082,
'longitude': -76.82579803466797,
'metro_code': 512,
'postal_code': '21074',
'region': 'MD',
'region_name': 'Maryland',
'time_zone': 'America/New_York'}
What's the easiest way to visualize this on a United States Choropleth map? Do you know of any shape files that have precision beyond the state level but don't use county codes? Can I map this data to county codes somehow? Should I try to use the lat / long via a hexbin?
Sorry for all the questions, hope something comes to mind.
Thanks!