IP2Location™ LITE IP-COUNTRY-REGION-CITY-LATITUDE-LONGITUDE-ZIPCODE Database

Einführung

IP2Location LITE Database

Diese Datenbank bietet eine Lösung, mit der Sie in wenigen einfachen Schritten Land, Region oder Bundesland, Stadt, Breite, Länge und Postleitzahl für jede IP-Adresse ermitteln können. Rufen Sie zunächst die IP-Adresse aus dem Netzwerkprotokoll oder der serverseitigen Variablen des Webservers ab. Übersetzen Sie anschließend die IP-Adresse in eine IP-Nummer im Dezimalformat, um die Datenbankabfrage zu beschleunigen. Suchen Sie abschließend die IP-Nummer aus der IP2Location ™ -Datenbank in umgekehrter Reihenfolge, um den genauen geografischen Standort zu ermitteln.

Es ist kostenlos für den persönlichen oder kommerziellen Gebrauch, wobei eine Namensnennung erforderlich ist, indem die Verwendung dieser Daten wie folgt angegeben wird:

Bitte besorgen Sie sich die Commercial Edition, wenn Sie hohe Datengenauigkeit, mehr Datensätze und Kundensupport suchen. Bitte besuchen Sie die Produktvergleichsseite für weitere Informationen.

Let's explore this database which provides a valuable resource of geolocation data for free now!

Sign Up For Free

Eigenschaften

Übersetzt die IP-Adresse in Land, Region oder Bundesland, Stadt, Breiten- und Längengrad sowie die US-Postleitzahl.

Aktuelle Version March 2024
Nächste Aktualisierung April 2024
IPv4 Datenbankgröße BIN: 81.33 MB
CSV: 304.27 MB (2,983,740 Reihen)
IPv6 Datenbankgröße BIN: 146.97 MB
CSV: 602.06 MB (4,687,620 Reihen)
Array Binär (BIN)
ASCII-Textdatei (CSV)

Datenbankfelder

Name Art Beschreibung
ip_from INT (10) / DECIMAL (39,0)†† Erste IP-Adresse zeigt Netblock.
ip_to INT (10) / DECIMAL (39,0)†† Letzte IP-Adresse zeigt Netblock.
country_code CHAR(2) Zweistelliger Ländercode basierend auf ISO 3166.
country_name VARCHAR(64) Ländername basierend auf ISO 3166.
region_name VARCHAR(128) Name der Region oder des Bundesstaates.
city_name VARCHAR(128) Stadtname.
latitude DOUBLE††† Breitengrad der Stadt. Standardmäßig der Breitengrad der Hauptstadt, wenn die Stadt unbekannt ist.
longitude DOUBLE††† Stadtlänge. Standardmäßig Längengrad der Hauptstadt, wenn die Stadt unbekannt ist.
zip_code VARCHAR(30) Postleitzahl.

IPv4
†† IPv6
††† Latitude and Longitude are often near the center of population. These values are not precise and should not be used to identify a particular address or household.

Datenbank-Setup

Im Folgenden finden Sie die Schritte zum Einrichten der Datenbank für IPv4- und IPv6-Daten.

Datenbank erstellen
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_db9`(
	`ip_from` INT(10) UNSIGNED,
	`ip_to` INT(10) UNSIGNED,
	`country_code` CHAR(2),
	`country_name` VARCHAR(64),
	`region_name` VARCHAR(128),
	`city_name` VARCHAR(128),
	`latitude` DOUBLE,
	`longitude` DOUBLE,
	`zip_code` VARCHAR(30),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Datenbank importieren
LOAD DATA LOCAL
	INFILE 'IP2LOCATION-LITE-DB9.CSV'
INTO TABLE
	`ip2location_db9`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
Datenbank erstellen
CREATE DATABASE ip2location
GO

USE ip2location
GO

CREATE TABLE [ip2location].[dbo].[ip2location_db9](
	[ip_from] bigint NOT NULL,
	[ip_to] bigint NOT NULL,
	[country_code] nvarchar(2) NOT NULL,
	[country_name] nvarchar(64) NOT NULL,
	[region_name] nvarchar(128) NOT NULL,
	[city_name] nvarchar(128) NOT NULL,
	[latitude] float NOT NULL,
	[longitude] float NOT NULL,
	[zip_code] nvarchar(30) NOT NULL
) ON [PRIMARY]
GO

CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_db9]([ip_to]) ON [PRIMARY]
GO
Datenbank importieren
BULK INSERT [ip2location].[dbo].[ip2location_db9]
FROM '{PATH TO IP2LOCATION-LITE-DB9.CSV}'
WITH
(
	FORMATFILE = '{PATH TO DB9.FMT}'
)
GO

HINWEIS: Sie müssen den folgenden FMT-Code kopieren und als Datei mit dem NamenDB9.FMT auf Ihrem Computer speichern.

12.0
10
1 SQLCHAR 0 1 "\"" 0 first_double_quote  Latin1_General_CI_AI
2 SQLCHAR 0 20 "\",\"" 1 ip_from "",
3 SQLCHAR 0 20 "\",\"" 2 ip_to "",
4 SQLCHAR 0 2 "\",\"" 3 country_code Latin1_General_CI_AI,
5 SQLCHAR 0 64 "\",\"" 4 country_name Latin1_General_CI_AI,
6 SQLCHAR 0 128 "\",\"" 5 region_name Latin1_General_CI_AI,
7 SQLCHAR 0 128 "\",\"" 6 city_name Latin1_General_CI_AI,
8 SQLCHAR 0 20 "\",\"" 7 latitude "",
9 SQLCHAR 0 20 "\",\"" 8 longitude "",
10 SQLCHAR 0 30 "\",\"" 9 zip_code Latin1_General_CI_AI

Datenbank erstellen
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_db9(
	ip_from bigint NOT NULL,
	ip_to bigint NOT NULL,
	country_code character(2) NOT NULL,
	country_name character varying(64) NOT NULL,
	region_name character varying(128) NOT NULL,
	city_name character varying(128) NOT NULL,
	latitude real NOT NULL,
	longitude real NOT NULL,
	zip_code character varying(30) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
Datenbank importieren
COPY ip2location_db9 FROM 'IP2LOCATION-LITE-DB9.CSV' WITH CSV QUOTE AS '"';
Datenbank importieren
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_db9 --type csv --file "IP2LOCATION-LITE-DB9.CSV" --fields ip_from,ip_to,country_code,country_name,region_name,city_name,latitude,longitude,zip_code
Datenbank erstellen
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_db9_ipv6`(
	`ip_from` DECIMAL(39,0) UNSIGNED,
	`ip_to` DECIMAL(39,0) UNSIGNED,
	`country_code` CHAR(2),
	`country_name` VARCHAR(64),
	`region_name` VARCHAR(128),
	`city_name` VARCHAR(128),
	`latitude` DOUBLE,
	`longitude` DOUBLE,
	`zip_code` VARCHAR(30),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Datenbank importieren
LOAD DATA LOCAL
	INFILE 'IP2LOCATION-LITE-DB9.IPV6.CSV'
INTO TABLE
	`ip2location_db9_ipv6`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
Datenbank erstellen
CREATE DATABASE ip2location
GO

USE ip2location
GO

CREATE TABLE [ip2location].[dbo].[ip2location_db9_ipv6](
	[ip_from] char(39) NOT NULL,
	[ip_to] char(39) NOT NULL,
	[country_code] nvarchar(2) NOT NULL,
	[country_name] nvarchar(64) NOT NULL,
	[region_name] nvarchar(128) NOT NULL,
	[city_name] nvarchar(128) NOT NULL,
	[latitude] float NOT NULL,
	[longitude] float NOT NULL,
	[zip_code] nvarchar(30) NOT NULL
) ON [PRIMARY]
GO

CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_db9_ipv6]([ip_to]) ON [PRIMARY]
GO
Datenbank importieren
BULK INSERT [ip2location].[dbo].[ip2location_db9_ipv6]
FROM '{PATH TO IP2LOCATION-LITE-DB9.IPV6.CSV}'
WITH
(
	FORMATFILE = '{PATH TO DB9.FMT}'
)
GO

HINWEIS: Sie müssen den folgenden FMT-Code kopieren und als Datei mit dem NamenDB9.FMT auf Ihrem Computer speichern. Die erste Zeile des FMT-Codes gibt die Version von bcp an. Bitte ändern Sie die Version entsprechend Ihrer installierten MS-SQL.

12.0
10
1 SQLCHAR 0 1 "\"" 0 first_double_quote  Latin1_General_CI_AI
2 SQLCHAR 0 39 "\",\"" 1 ip_from "",
3 SQLCHAR 0 39 "\",\"" 2 ip_to "",
4 SQLCHAR 0 2 "\",\"" 3 country_code Latin1_General_CI_AI,
5 SQLCHAR 0 64 "\",\"" 4 country_name Latin1_General_CI_AI,
6 SQLCHAR 0 128 "\",\"" 5 region_name Latin1_General_CI_AI,
7 SQLCHAR 0 128 "\",\"" 6 city_name Latin1_General_CI_AI,
8 SQLCHAR 0 20 "\",\"" 7 latitude "",
9 SQLCHAR 0 20 "\",\"" 8 longitude "",
10 SQLCHAR 0 30 "\",\"" 9 zip_code Latin1_General_CI_AI

Datenbank erstellen
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_db9_ipv6(
	ip_from decimal(39,0) NOT NULL,
	ip_to decimal(39,0) NOT NULL,
	country_code character(2) NOT NULL,
	country_name character varying(64) NOT NULL,
	region_name character varying(128) NOT NULL,
	city_name character varying(128) NOT NULL,
	latitude real NOT NULL,
	longitude real NOT NULL,
	zip_code character varying(30) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
Datenbank importieren
COPY ip2location_db9_ipv6 FROM 'IP2LOCATION-LITE-DB9.IPV6.CSV' WITH CSV QUOTE AS '"';
Datenbank importieren
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_db9_ipv6 --type csv --file "IP2LOCATION-LITE-DB9.IPV6.CSV" --fields ip_from,ip_to,country_code,country_name,region_name,city_name,latitude,longitude,zip_code

AMI & Images

IP2Location bietet eine kostenlose, vorkonfigurierte und sofort einsatzbereite AMI und Images zum einfachen Einrichten der Datenbank.

Unterstützung

Bitte besuchen Sie Stack Overflow, um die technischen Fragen / Antworten zu unseren LITE-Produkten anzuzeigen.

Lizenz

Bitte lesen Sie die Allgemeinen Geschäftsbedingungen von für die Datenbanklizenzierung.

IP2Location™ IP-Adress-Geolocation-Datenbank

In der Commercial Edition erhalten Sie viel mehr als nur die Suche nach IP-Adressen:

  • Bessere Datengenauigkeit
  • Zugriff auf aktuelle Datenbank
  • Zusätzlicher Support per E-Mail
Product Upgrade
Sign Up Pop Out

Geolocate Your Visitors Location

Enhance your applications with essential geolocation data by using our FREE databases.