An open API service indexing awesome lists of open source software.

https://github.com/wspringer/addressless

Finding addresses if all you have is a postcode and housenumber (only in the NL)
https://github.com/wspringer/addressless

Last synced: 4 months ago
JSON representation

Finding addresses if all you have is a postcode and housenumber (only in the NL)

Awesome Lists containing this project

README

          

# README

In the Netherlands, every address is uniquely identified by postcode and
housenumber. This library wraps a database with all addresses in the
Netherlands, allowing you to quickly resolve the address details for postcode
and housenumber combinations.


Buy Me A Coffee

## Usage

```typescript
import { lookupAddress } from "addressless";

const address = lookupAddress("4147AZ", "5");
// {
// "city": "Asperen",
// "district": "Asperen",
// "houseNumber": "5",
// "latitude": 51.88051803,
// "longitude": 5.11206571,
// "municipality": "West Betuwe",
// "neighbourhood": "Asperen Oude Kern",
// "postcode": "4147AZ",
// "province": "Gelderland",
// "street": "Stadswal",
// }
```

## Source

The data in this project is based on [this
repository](https://github.com/LJPc-solutions/Nederlandse-adressen-en-postcodes/tree/main).
I might at some point set up a mechanism to start tailing changes in that
repository and create releases automatically. This version is however based on
[this revision](https://github.com/LJPc-solutions/Nederlandse-adressen-en-postcodes/commit/a1f2197a129a8e0c54cd9b5197de7f814ff1d0cd).