Skip to content

Dutch postcodes in CSV format (7zip) and MySQL import script (with geo)

License

Notifications You must be signed in to change notification settings

mevdschee/postcodes-nl-geo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Postcodes NL (Geo)

Dutch postcodes in CSV format (7zip) and MySQL import script to allow for address validation in the Netherlands. This geo version contains RD coordinates (rounded to whole meters).

Check out the latest release.

Files

The release contains the following files:

  • postcodes-nl-geo.7z: Dataset in CSV format with 7zip compression
  • postcodes-nl-geo.php: Script to load the CSV into a MySQL database
  • postcodes-nl-geo.sh: Script to unpack the 7zip archive and run PHP

NB: The CSV dataset is 470MB but with 7zip compression it is reduced to 38MB.

Running

Configure your database in postcodes-nl-geo.php and run using:

bash postcodes-nl-geo.sh

To run you need:

sudo apt install 7zip php-cli php-mysql

This assumes you are using a Debian based Linux distribution.

Releasing

Release using:

bash release.sh

To release you need:

sudo apt install 7zip wget php-cli gh

This uses the Github CLI on Debian Linux.

Sample data

Here are the first 3 records of the 24.04 release in CSV format:

straat,huisnummer,huisletter,huistoevoeging,woonplaats,postcode,rd_x,rd_y
"De Ruijterkade",99,,,Amsterdam,1011AB,122197,487976
"De Ruijterkade",105,,1,Amsterdam,1011AB,122177,487877
"De Ruijterkade",105,,2,Amsterdam,1011AB,122177,487877

Here is the SQL for those 3 records (including the table structure):

CREATE TABLE `postcodes` (
`straat` varchar(255) DEFAULT NULL,
`huisnummer` varchar(255) DEFAULT NULL,
`huisletter` varchar(255) DEFAULT NULL,
`huistoevoeging` varchar(255) DEFAULT NULL,
`woonplaats` varchar(255) DEFAULT NULL,
`postcode` varchar(255) DEFAULT NULL,
`rd_x` int(11) DEFAULT NULL,
`rd_y` int(11) DEFAULT NULL,
KEY `postcode` (`postcode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

INSERT INTO `postcodes` (`straat`, `huisnummer`, `huisletter`, `huistoevoeging`, `woonplaats`, `postcode`, `rd_x`, `rd_y`) VALUES
('De Ruijterkade',	'99',	NULL,	NULL,	'Amsterdam',	'1011AB',	122197,	487976),
('De Ruijterkade',	'105',	NULL,	'1',	'Amsterdam',	'1011AB',	122177,	487877),
('De Ruijterkade',	'105',	NULL,	'2',	'Amsterdam',	'1011AB',	122177,	487877);

NB: The 24.04 release has 9771442 records.

Credits

This project loads the large dataset from:

Which is a fork of:

See also this blog post by Bert Hubert.