openvenues / libpostal

A C library for parsing/normalizing street addresses around the world. Powered by statistical NLP and open geo data.
MIT License
4.04k stars 417 forks source link

libpostal results varies on windows 10 vs windows server 2016 #618

Open varun7889 opened 1 year ago

varun7889 commented 1 year ago

Hi!

I am using libpostal in C project through C++ wrapper and it seems that the result is different on separate machines. I have 2 machines, one which uses windows 10 and another one which uses windows 2016 server

For the following input : 821604;SESTAO Pol Ibarzahar

The windows 10 machine gives the following result: road : sestao pol ibarzahar

While the windows 2016 server machine gives the following result: town: sestao | country: pol ibarzahar

Window 10 machine have VS code 2015 and C# version 4,6 and windows 2016 server machine have VS code 2022 and C# version 4.7.2 and the same dll.

When we make same VS code version then we got error at compile C# project Error CS0234 : The type or namespace name 'Objects' does not exist in the namespace 'Class1' (are you missing an assembly reference?)

What could be the problem? Please suggest me.