Datasets:
Card: bump to 2026-08, finish rebrand (fix broken load paths geoip-locations -> ip-locations, drop GeoIP branding/tag, prodipdata.com links, add trademark disclaimer)
Browse files
README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
license: cc-by-4.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
pretty_name: "ProdIPData — Monthly IPv4
|
| 6 |
tags:
|
| 7 |
- ip-geolocation
|
| 8 |
- ipv4
|
|
@@ -18,16 +18,14 @@ size_categories:
|
|
| 18 |
- 10M<n<100M
|
| 19 |
---
|
| 20 |
|
| 21 |
-
|
| 22 |
-
# ProdIPData — Monthly IPv4 IP Geolocation Dataset
|
| 23 |
-
|
| 24 |
|
| 25 |
A free, monthly dataset of the **routed IPv4 address space** at **`/24` granularity** — one row per `/24` prefix — covering geolocation, network/ASN, ownership, registry and risk attributes. Maintained by **ProdIPData** and mirrored from **https://prodipdata.com**. Licensed **CC BY 4.0** (free to use, including commercially, with attribution).
|
| 26 |
|
|
|
|
| 27 |
|
| 28 |
## What's in each row (`/24` prefix)
|
| 29 |
|
| 30 |
-
|
| 31 |
| Group | Fields |
|
| 32 |
| --- | --- |
|
| 33 |
| **Geolocation** | `CountryCode`, `ContinentCode`, `IsInEU`, `RegionName` (ISO 3166-2), `CityName`, `Latitude`, `Longitude`, `AccuracyRadius`, `TimeZone` |
|
|
@@ -36,68 +34,55 @@ A free, monthly dataset of the **routed IPv4 address space** at **`/24` granular
|
|
| 36 |
| **Registry (RIR)** | `RIR` (ARIN/RIPE/APNIC/LACNIC/AFRINIC), `RIRAllocationDate`, `RIRStatus` |
|
| 37 |
| **Risk signals** | `HasC2`, `C2Malwares`, `IsTor`, `Anonymization`, bogon flags |
|
| 38 |
|
| 39 |
-
|
| 40 |
Key column: `IP24Prefix` (e.g. `8.8.8.0/24`).
|
| 41 |
|
| 42 |
-
|
| 43 |
## Coverage
|
| 44 |
|
| 45 |
-
|
| 46 |
- **14M+** routed `/24` prefixes · **240+** countries · **~3.7B** IPv4 addresses represented
|
| 47 |
- Coordinates spatially validated against public-domain **Natural Earth** boundaries (~99.97% country-level match)
|
| 48 |
-
- Updated **monthly**; each release is tagged by month (`YYYY-MM`)
|
| 49 |
-
|
| 50 |
|
| 51 |
## Load it
|
| 52 |
|
| 53 |
-
|
| 54 |
```python
|
| 55 |
# pandas — read straight from the Hub
|
| 56 |
import pandas as pd
|
| 57 |
df = pd.read_parquet(
|
| 58 |
-
"hf://datasets/ProdIPData/ip-locations/prefix_attributes_2026-
|
| 59 |
)
|
| 60 |
|
| 61 |
-
|
| 62 |
# duckdb (query without loading it all into memory)
|
| 63 |
import duckdb
|
| 64 |
duckdb.sql("""
|
| 65 |
SELECT CountryCode, COUNT(*) AS prefixes
|
| 66 |
-
FROM 'prefix_attributes_2026-
|
| 67 |
GROUP BY 1 ORDER BY 2 DESC LIMIT 10
|
| 68 |
""").show()
|
| 69 |
|
| 70 |
-
|
| 71 |
# Hugging Face datasets
|
| 72 |
from datasets import load_dataset
|
| 73 |
ds = load_dataset("ProdIPData/ip-locations")
|
| 74 |
```
|
| 75 |
|
| 76 |
-
|
| 77 |
## Formats
|
| 78 |
|
| 79 |
-
|
| 80 |
-
Also published as **CSV** and **MMDB** (MaxMind DB compatible format) at https://prodipdata.com/downloads.html. The site additionally offers an in-browser **Prefix Lookup** (resolves any IP/•`/24` client-side, nothing sent to a server) and density / region maps.
|
| 81 |
-
|
| 82 |
|
| 83 |
## Limitations
|
| 84 |
|
| 85 |
-
|
| 86 |
-
-
|
| 87 |
-
- **Low-confidence blocks fall back to country-level centroids.** For example `8.8.8.8` resolves to the US geographic centre, not Mountain View. The `AccuracyRadius` field (in km) now makes this precision **explicit**, so country-level fallbacks are visible rather than implied.
|
| 88 |
- `/24` granularity: attributes describe the block, not individual hosts.
|
| 89 |
|
| 90 |
-
|
| 91 |
## Attribution
|
| 92 |
|
| 93 |
-
|
| 94 |
Please credit **ProdIPData (prodipdata.com)** under **CC BY 4.0**. Country/region boundaries © **Natural Earth** (public domain).
|
| 95 |
|
| 96 |
-
|
| 97 |
-
MaxMind and GeoIP are registered trademarks of MaxMind, Inc. ProdIPData is not affiliated with or endorsed by MaxMind.
|
| 98 |
-
|
| 99 |
-
|
| 100 |
- Website: https://prodipdata.com
|
| 101 |
- Downloads: https://prodipdata.com/downloads.html
|
| 102 |
- Methodology: https://prodipdata.com/methodology.html
|
|
|
|
| 103 |
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: cc-by-4.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
+
pretty_name: "ProdIPData — Monthly IPv4 Geolocation Dataset"
|
| 6 |
tags:
|
| 7 |
- ip-geolocation
|
| 8 |
- ipv4
|
|
|
|
| 18 |
- 10M<n<100M
|
| 19 |
---
|
| 20 |
|
| 21 |
+
# ProdIPData — Monthly IPv4 Geolocation Dataset
|
|
|
|
|
|
|
| 22 |
|
| 23 |
A free, monthly dataset of the **routed IPv4 address space** at **`/24` granularity** — one row per `/24` prefix — covering geolocation, network/ASN, ownership, registry and risk attributes. Maintained by **ProdIPData** and mirrored from **https://prodipdata.com**. Licensed **CC BY 4.0** (free to use, including commercially, with attribution).
|
| 24 |
|
| 25 |
+
**Current release: `2026-08`**
|
| 26 |
|
| 27 |
## What's in each row (`/24` prefix)
|
| 28 |
|
|
|
|
| 29 |
| Group | Fields |
|
| 30 |
| --- | --- |
|
| 31 |
| **Geolocation** | `CountryCode`, `ContinentCode`, `IsInEU`, `RegionName` (ISO 3166-2), `CityName`, `Latitude`, `Longitude`, `AccuracyRadius`, `TimeZone` |
|
|
|
|
| 34 |
| **Registry (RIR)** | `RIR` (ARIN/RIPE/APNIC/LACNIC/AFRINIC), `RIRAllocationDate`, `RIRStatus` |
|
| 35 |
| **Risk signals** | `HasC2`, `C2Malwares`, `IsTor`, `Anonymization`, bogon flags |
|
| 36 |
|
|
|
|
| 37 |
Key column: `IP24Prefix` (e.g. `8.8.8.0/24`).
|
| 38 |
|
|
|
|
| 39 |
## Coverage
|
| 40 |
|
|
|
|
| 41 |
- **14M+** routed `/24` prefixes · **240+** countries · **~3.7B** IPv4 addresses represented
|
| 42 |
- Coordinates spatially validated against public-domain **Natural Earth** boundaries (~99.97% country-level match)
|
| 43 |
+
- Updated **monthly**; each release is tagged by month (`YYYY-MM`) and kept, so the history accumulates
|
|
|
|
| 44 |
|
| 45 |
## Load it
|
| 46 |
|
|
|
|
| 47 |
```python
|
| 48 |
# pandas — read straight from the Hub
|
| 49 |
import pandas as pd
|
| 50 |
df = pd.read_parquet(
|
| 51 |
+
"hf://datasets/ProdIPData/ip-locations/prefix_attributes_2026-08_iso-ALL.parquet"
|
| 52 |
)
|
| 53 |
|
|
|
|
| 54 |
# duckdb (query without loading it all into memory)
|
| 55 |
import duckdb
|
| 56 |
duckdb.sql("""
|
| 57 |
SELECT CountryCode, COUNT(*) AS prefixes
|
| 58 |
+
FROM 'prefix_attributes_2026-08_iso-ALL.parquet'
|
| 59 |
GROUP BY 1 ORDER BY 2 DESC LIMIT 10
|
| 60 |
""").show()
|
| 61 |
|
|
|
|
| 62 |
# Hugging Face datasets
|
| 63 |
from datasets import load_dataset
|
| 64 |
ds = load_dataset("ProdIPData/ip-locations")
|
| 65 |
```
|
| 66 |
|
|
|
|
| 67 |
## Formats
|
| 68 |
|
| 69 |
+
Also published as **CSV** and **MMDB** (MaxMind DB compatible) at https://prodipdata.com/downloads.html. The site additionally offers an in-browser **Prefix Lookup** (resolves any IP/`/24` client-side, nothing sent to a server) and density / region maps.
|
|
|
|
|
|
|
| 70 |
|
| 71 |
## Limitations
|
| 72 |
|
| 73 |
+
- Geolocation is **derived** from MaxMind, the RIRs and other upstream sources merged monthly — it is a **snapshot, not real-time**, and only as accurate as those sources.
|
| 74 |
+
- **Low-confidence blocks fall back to country-level centroids.** For example `8.8.8.8` resolves to the US geographic centre, not Mountain View. The `AccuracyRadius` field (in km) makes this precision **explicit**, so country-level fallbacks are visible rather than implied.
|
|
|
|
| 75 |
- `/24` granularity: attributes describe the block, not individual hosts.
|
| 76 |
|
|
|
|
| 77 |
## Attribution
|
| 78 |
|
|
|
|
| 79 |
Please credit **ProdIPData (prodipdata.com)** under **CC BY 4.0**. Country/region boundaries © **Natural Earth** (public domain).
|
| 80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
- Website: https://prodipdata.com
|
| 82 |
- Downloads: https://prodipdata.com/downloads.html
|
| 83 |
- Methodology: https://prodipdata.com/methodology.html
|
| 84 |
+
- Contact: contact@prodipdata.com
|
| 85 |
|
| 86 |
+
---
|
| 87 |
+
|
| 88 |
+
MaxMind and GeoIP are registered trademarks of MaxMind, Inc. ProdIPData is not affiliated with or endorsed by MaxMind.
|