geoiplocations commited on
Commit
80bd3c0
·
verified ·
1 Parent(s): 57d5662

Rebrand dataset card: GeoIP Locations -> ProdIPData, new domain prodipdata.com

Browse files
Files changed (1) hide show
  1. README.md +33 -12
README.md CHANGED
@@ -2,9 +2,8 @@
2
  license: cc-by-4.0
3
  language:
4
  - en
5
- pretty_name: "GeoIP Locations — Monthly IPv4 GeoIP Dataset"
6
  tags:
7
- - geoip
8
  - ip-geolocation
9
  - ipv4
10
  - ip-address
@@ -19,12 +18,16 @@ size_categories:
19
  - 10M<n<100M
20
  ---
21
 
22
- # GeoIP Locations — Monthly IPv4 GeoIP Dataset
23
 
24
- 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://geoiplocations.com**. Licensed **CC BY 4.0** (free to use, including commercially, with attribution).
 
 
 
 
25
 
26
  ## What's in each row (`/24` prefix)
27
 
 
28
  | Group | Fields |
29
  | --- | --- |
30
  | **Geolocation** | `CountryCode`, `ContinentCode`, `IsInEU`, `RegionName` (ISO 3166-2), `CityName`, `Latitude`, `Longitude`, `AccuracyRadius`, `TimeZone` |
@@ -33,23 +36,29 @@ A free, monthly dataset of the **routed IPv4 address space** at **`/24` granular
33
  | **Registry (RIR)** | `RIR` (ARIN/RIPE/APNIC/LACNIC/AFRINIC), `RIRAllocationDate`, `RIRStatus` |
34
  | **Risk signals** | `HasC2`, `C2Malwares`, `IsTor`, `Anonymization`, bogon flags |
35
 
 
36
  Key column: `IP24Prefix` (e.g. `8.8.8.0/24`).
37
 
 
38
  ## Coverage
39
 
 
40
  - **14M+** routed `/24` prefixes · **240+** countries · **~3.7B** IPv4 addresses represented
41
  - Coordinates spatially validated against public-domain **Natural Earth** boundaries (~99.97% country-level match)
42
  - Updated **monthly**; each release is tagged by month (`YYYY-MM`)
43
 
 
44
  ## Load it
45
 
 
46
  ```python
47
  # pandas — read straight from the Hub
48
  import pandas as pd
49
  df = pd.read_parquet(
50
- "hf://datasets/ProdIPData/geoip-locations/prefix_attributes_2026-07_iso-ALL.parquet"
51
  )
52
 
 
53
  # duckdb (query without loading it all into memory)
54
  import duckdb
55
  duckdb.sql("""
@@ -58,25 +67,37 @@ duckdb.sql("""
58
  GROUP BY 1 ORDER BY 2 DESC LIMIT 10
59
  """).show()
60
 
 
61
  # Hugging Face datasets
62
  from datasets import load_dataset
63
- ds = load_dataset("ProdIPData/geoip-locations")
64
  ```
65
 
 
66
  ## Formats
67
 
68
- Also published as **CSV** and **MMDB** (MaxMind-compatible) at https://geoiplocations.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.
 
 
69
 
70
  ## Limitations
71
 
72
- - 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.
 
73
  - **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.
74
  - `/24` granularity: attributes describe the block, not individual hosts.
75
 
 
76
  ## Attribution
77
 
78
- Please credit **ProdIPData / GeoIP Locations (geoiplocations.com)** under **CC BY 4.0**. Country/region boundaries © **Natural Earth** (public domain).
79
 
80
- - Website: https://geoiplocations.com
81
- - Downloads: https://geoiplocations.com/downloads.html
82
- - Methodology: https://geoiplocations.com/methodology.html
 
 
 
 
 
 
 
 
2
  license: cc-by-4.0
3
  language:
4
  - en
5
+ pretty_name: "ProdIPData — Monthly IPv4 IP Geolocation Dataset"
6
  tags:
 
7
  - ip-geolocation
8
  - ipv4
9
  - ip-address
 
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
  | **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-07_iso-ALL.parquet"
59
  )
60
 
61
+
62
  # duckdb (query without loading it all into memory)
63
  import duckdb
64
  duckdb.sql("""
 
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
+ - Geolocation is **derived** from upstream sources including MaxMind and the RIRs, merged monthly — it is a **snapshot, not real-time**, and only as accurate as those sources.
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
+