Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
javacook committed Dec 22, 2017
1 parent 651cec0 commit ecc1245
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
@@ -0,0 +1,25 @@
This library is abel to divide (German) a concatenated street names
consisting of the pure street name the house number and its affix
into its single parts. Examples:

Some streets contain a number as suffix or infix so that it is
impossible to decide whether this number is a house number or
a part of the street name itselfs. An example is "Straße 101".
This could be the street "Straße" with house number "101" but
in reality this the number "101" is part of the street name
(in Berlin). To make this decision unambiguous the street
"Straße 101" was added to a list of "special streets". This list
can be found in the file "specialstreets.txt".

More Examples:

input | street | house no | affix
-------------------- | ---------------- | -------- | -------
Gartenstr. 25a | Gartenstr. | 25 | a
Brückenstr. 12a-13c | Brückenstr. | 12 | a-13c
Straße 101 Nr. 12 | Straße 101 | 12 | null
In den 30 Morgen 34b | In den 30 Morgen | 34 | b
C 3 54 | C 3 | 54 | null



0 comments on commit ecc1245

Please sign in to comment.