Giter Site home page Giter Site logo

pdok-apis's Introduction

PDOK APIs

Provides partial support for consuming APIs of PDOK. These APIs provide information on addresses, buildings and lots in the Netherlands.

Usage

Clients are created using a builder. You can change optional settings by using the chaining methods. New Client builders can be created by implementing the ClientBuilder trait

For finding an address information using a postal code and housenumber, locatieserver:

let lookup_client = lookup::LookupClientBuilder::new("Your user agent");
let suggestions = lookup_client.suggest_concrete("6512EX", "26").await?;
...

For getting building information, bag:

let bag_client = BagClientBuilder::new(user_agent, api_key)
        .accept_crs(BagCoordinateSpace::Rijksdriehoek)
        .build()

let buildings = bag.get_panden("0268010000084126").await?;
...

For finding lot information using a lot code, brk:

let brk_client = BrkClientBuilder::new(APP_USER_AGENT)
        .connection_timeout_secs(20)
        .request_timeout_secs(60)
        .accept_crs(BagCoordinateSpace::Rijksdriehoek)
        .build();
let lot = brk_client.get_lot("HTT02", "M", "5038").await?;
...

Test upstreams

Test if upstreams produce expected output:

BAG_API_KEY=<your key> cargo test

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.