Determine the country, region, city, latitude, and longitude associated with IP addresses worldwide. Uses the MaxMind GeoIP or GeoLite City or GeoLite Country (free) database which needs to be downloaded separately from http://www.maxmind.com/app/geolite
Keen IO is an analytics API for modern developers. Track any event: signups, upgrades, impressions, purchases, powerups, errors, shares... Keen IO stores events in arbitrary JSON format, automatically ingesting any new events and rich custom properties you send. Our elegant query APIs make it...
More information
A Helper module to simplify using the free MaxMind GeoIP database using the MaxMind API and caching the files from the CDN of MaxMind
Simple demo:
var ip = "213.140.15.199";
var city = FreeGeoIP2.FindCityOrDefault(ip);
var country = FreeGeoIP2.FindCountryOrDefault(ip);
var asn =...
More information