shakna 9 hours ago

I somehow doubt this will pass the snifftest of one of my old addresses, which Australia Post successfully delivered to on a weekly basis:

    Third on right of main,
    Tiwi College,
    Melville Island, 0822, AU.
You can try to normalize that... But "Main Road" is in another city. Because I wasn't living in a city. There were no road names. And the 3rd position was an empty plot, not the third house. We had a bunch of houses around a strip of land, a few minutes from the airstrip - the only egress.
  • mrweasel 9 hours ago

    You also have to account for interestingly worded addresses. We had "

      Streetname 5, behind the glazier business.
      It might say <some other name> on the door
    
    That's very specific, but also not really an address.
    • devilbunny 6 hours ago

      “Duzbuns Hopsit pfarmerrsc”

      (For today’s 10000, that’s Terry Pratchett. The autocrat of the city of Ankh-Morpork amuses himself, at times, by figuring out where unreadably-addressed mail should go - in this case, a baker (“duzbuns” == does buns) across the street (“hopsit” == opposite) from a pharmacy, which in his extremely detailed knowledge of the city means only one place.)

RobinL 14 hours ago

There are many useful applications of libpostal, and it's an impressive library, but one I would caution against is for the purpose of address matching, at least as the 'primary' approach.

The problem is the hardest to parse addresses are also often the hardest to match, making the problem somewhat circular. I wrote about this more in a recent blog on address matching: https://www.robinlinacre.com/address_matching/

jandrese 16 hours ago

Wow, ambitious project. Anybody who has tried to verify addresses can tell you that the staggering number of different formats and conventions around the world make it and almost intractable problem. So many countries have wildly informal standards and people putting down just whatever they want because the mailman "just knows".

  • derdi 7 hours ago

    > Anybody who has tried to verify addresses

    Why would one try to "verify" addresses that one knows nothing about?

    > because the mailman "just knows"

    The mailman does "just know", and the mailman is who the address is for. Web forms I have seen that have tried to "verify" my address have never done so in a way that made the address better for the mailman.

    EDIT: I've long thought that web forms should not have separate "street", "street line 2", "number", "apartment", "whatever" fields. Instead they should offer a multi-line input field labeled "this will go straight on the address label, write whatever you like but it's your problem if it doesn't arrive". You'd probably still need separate fields for town/postcode for calculating postage. And of course it wouldn't work because the downstream delivery company would also insist on something it can "verify".

    • jandrese 6 hours ago

      > Why would one try to "verify" addresses that one knows nothing about?

      So you aren't shipping your product to some place that doesn't exist. Also, some KYC requires that you verify the address of the person.

      • derdi 5 hours ago

        > So you aren't shipping your product to some place that doesn't exist.

        But businesses can't usually verify whether a place exists. The best they can usually do is to verify whether a place has an entry in their database of supposedly all places that supposedly existed at a point in time that is necessarily in the past.

        That's not the same thing. Trust me, I would know: I live in a new-ish building, and for at least two years after it was completed and people were living here, some businesses still refused to take my money because they claimed that my address didn't exist. That was neither in their interest nor in mine.

        > Also, some KYC requires that you verify the address of the person.

        Define "verify". Verify that they provided some address that exists somewhere, possibly unconnected to the person? Worthless. Verify that they can receive mail at said address? OK, but doesn't require you to parse the address, just to print it onto a label and let the post office worry about it.

      • grapesodaaaaa 5 hours ago

        In the shipping scenario, you can’t really know if it’s a local address or not without talking to someone with local knowledge.

        The FAA even legally accepts “third house down from the barn” in some instances.

        The KYC scenario is different, and a PITA for people like me, because I spent half my life without a physical mailing address (we picked it up at the post office).

        The real world is messy, and u feel like SV and finance have done a lot of hand waving to ignore this.

    • kevin_thibedeau 7 hours ago

      For the US the underlying need for parsing is to determine a definitive location so that taxation, which can vary down to the municipality level, can be computed.

      • devilbunny 6 hours ago

        And even then isn’t necessarily enough. A college friend worked at a pizza place that did almost all business by delivery. The store itself actually crossed a city-county border. The cash registers were physically in the back, because that was the county (with lower sales tax). Technically, all money changed hands in the county, not the city.

        I would be more suspicious of this story if I hadn’t seen that the registers were, actually, in the back. And they didn’t have a pickup window back there or anything.

  • monero-xmr 15 hours ago

    Maxmind is the quintessential example of what devs want to build in their heart of hearts. Low-touch sales but b2b. Almost a monopoly. Prints money for decades. Not a public company so they never increase costs to a usurious amount. Open source never quite meets the level needed

weinzierl 12 hours ago

In the same vein, there is also Google's excellent libphonenumber for parsing, formatting, and validating international phone numbers.

And because I had no idea before I worked on a project where we had to deal with customer data: many companies also use commercial services for address and phone number validation and normalization.

ttw44 7 hours ago

When I was first engaging into web development a year ago, I was making forms that took addresses. From a C and C++ background, I kept asking, what if they lived in a specific country? How can I make my database truly safe? What is the best way to store all these addresses? I immediately gave up on that effort. Very impressive.

gorgoiler 8 hours ago

I have a real soft spot for these codifications of everyday things. A lot of us do. See also tzdata, GNU units, pluralize(noun), humanize(timestamp), and SPICE astronavigation. And yes, locating Mars in the night sky is indeed an everyday thing!

What are some others?

Ameo 14 hours ago

I used this at a previous company with quite good success.

With relatively minimal effort, I was able to spin up a little standalone container that wrapped around the service and exposed a basic API to parse a raw address string and return it as structured data.

Address parsing is definitely an extremely complex problem space with practically infinite edge cases, but libpostal does just about as well as I could expect it to.

  • degamad 14 hours ago

    Ditto - I was impressed with how well it handled the weird edge cases in our data.

    They've managed to create a great working implementation of a very, very small model of a very specific subset of language.

  • ethan_smith 9 hours ago

    Worth noting that libpostal requires ~2GB RAM when fully loaded due to its comprehensive data models. For containerized deployments, we reduced memory usage by ~70% by compiling with only the specific country models needed for our use case.

alganet 5 hours ago

Having used it in the past, I can firmly say it performs better than regex.

kerkeslager 10 hours ago

I think fundamentally, no parsing/normalizing library can be effective for addresses. A much better approach is to have a search library which finds the address you're looking for within a dataset of all the addresses in the world.

Addresses are fundamentally unstructured data. You can't validate them structurally. It's trivial to create nonexistent addresses which any parsing library will parse just fine. On the flipside, there's enough variety in real addresses that your parser has to be extremely tolerant in what it accepts--so tolerant that it basically tolerates everything. The entire purpose of a parser for addresses is to reject invalid addresses, so if your parser tolerates everything it's pointless.

The only validation that makes any sense is "does this address exist in the real world?". And the way to do that is not parsing, it's by comparing to a dataset of all the addresses in the world.

I haven't evaluated this project enough to understand confidently what they're doing, but I hope they're approaching this as a search engine for address datasets, and not as a parsing/normalizing library.

  • vidarh 9 hours ago

    And keeping such datasets up to date is another matter entirely, because clearly a lot of companies rely datasets that were outdated before their company even existed.

    A trivially simple example of just how messy this is when people try to constrain it is that it's nearly random whether or not a given carrier would insist on me giving an incorrect address for my previous place, seemingly because traditionally and prior to 1965 the address was in Surrey, England.

    The "postcode area name" for my old house is Croydon, and Croydon has legally been in London since 1965, and was allocated it's own postcode area in 1966. "Surrey" hasn't been correct for addresses in Croydon since then.

    But at least one delivery company insisted my old address was invalid unless I changed the town/postcode area to "Surrey", and refused to even attempt a delivery. Never mind they had my house number and postcode, which was sufficient to uniquely identify my house.

  • derdi 5 hours ago

    > real world [...] dataset

    You are equating two things that are not equatable.

claytongulick 7 hours ago

Libpostal is great and was a lifesaver for me, but anyone who is interested in using it should be aware that it it NOT lightweight.

IIRC it takes gigs of storage space and has significant runtime requirements.

Also, while it's implemented in C there are language binding for most major languages [1].

It's one of those things where it's most likely best deployed as an independent service on a dedicated machine.

[1] https://github.com/openvenues/libpostal?tab=readme-ov-file#b...