Killet Software Ing.-GbR - short: KilletSoft - is a software company, which was established in the year 1991. The society is divided into the ranges "Geodetic Standard Software", "Development Tools for Geo Informatics" and "International Geo Data". The industrial sectors of emphasis of the companies supplied by KilletSoft are consulting engineers, GIS developers, Internet marketing, public utilities, logistics, telecommunications, security and public services.
Print page body  •    Contact  •    Imprint
Deutsch English

Geo data of the Federal Republic of Germany with coordinates on building level for navigation and geo coding.

House Coordinates or also called Geo Coded Building Addresses are meaning the connection between the postal addresses of buildings or building complexes and their positions in the coordinate system. The house coordinates are the basis for applications, which are developed to assign buildings or building complexes positions in the form of coordinates. By Geo Coding buildings or building complexes are cartographically representable.

The possible field of application is very various. E.g. own address lists can be enriched with geo references and visualized on suitable map material. The application scope reaches from information systems and navigation services, geo marketing, telecommunications and UTMS based services up to web applications and tasks of the public utilities, emergency services, security forces and delivery services. Another point of interest can be the establishing relationships between data derived from different hierarchies and levels. For example, it could be desirable to know to which federal state, administrative district and city a building belongs to.

The coordinates of the buildings are present as geographic coordinates, UTM coordinates and Gauss Kruger coordinates. Geographical coordinates in degree notation are particularly suitable well for searches with Google Earth. Here is as an example an Internet URL with coordinates from the "Geo Data German Houses", which can represent the location of Killet Software Ing.-GbR point-exactly:  http://maps.google.com/maps?ll=5.976,6.45088. The first value behind the identifier "ll" (lat / lon) is the geographical latitude, then the geographical longitude follows. The shown URL can be inserted directly into the address field of the browser to represent a map cutout on the screen.

Table of contents of this site

Geo data with house coordinates of the Federal States

For the area of the Federal Republic of Germany house coordinates with a coverage of 100% are available. The house coordinates are delivered as a standard for the whole Federal Republic of Germany or divided in its Federal States. The approximate data scopes of the house coordinates of all Federal States of Germany are specified here.

HoSWH  Schleswig-Holstein               736,000 buildings
HoHHA  Hamburg                          231,000 buildings
HoNDS  Lower Saxony                   2,170,000 buildings
HoHBR  Bremen                           146,000 buildings
HoNRW  North-Rhine Westphalia         4,020,000 buildings
HoHES  Hesse                          1,370,000 buildings
HoRPL  Rhineland Palatinate           1,170,000 buildings
HoBAW  Baden-Wurttemberg              2,540,000 buildings
HoBAY  Bavaria                        2,980,000 buildings
HoSAL  Saarland                         313,000 buildings
HoBER  Berlin                           362,000 buildings
HoBRB  Brandenburg                      663,000 buildings
HoMVP  Mecklenburg West.-Pomerania      342,000 buildings
HoSAC  Saxonia                          825,000 buildings
HoSAN  Saxonia-Anhalt                   586,000 buildings
HoTHU  Thuringia                        577,000 buildings
HoGER  Germany (entire country)      19,000,000 buildings

The data base tables "Geo Data German Houses" can be licenced economically for the Federal States of Germany or for completely Germany. Other compositions on administrative or postal units are possible. So the house coordinates can be arranged e.g. for a district or for a city / municipality or for a postal area. Please contact us, if you need the geo data in another composition.

The  free test data, downloadable from the Internet, contain only a small, randomly selected representative excerpt from the original tables of the Federal States of Germany. The test data may be used for test purposes only. A commercial use of that data is not permitted.

 To the table of contents of this site

Data fields of a house coordinate table

These data fields are contained in the data tables:

  1. Designation of the road
  2. House number of a building or building complex
  3. Postal zip code
  4. Designation of the town / city
  5. Designation of the town quarter (optional)
  6. Administration ID (municipality key)
  7. Geographic longitude in degree notation (WGS84)
  8. Geographic latitude in degree notation (WGS84)
  9. Geographic longitude in degree/minute/second notation (WGS84)
  10. Geographic latitude in degree/minute/second notation (WGS84)
  11. Gauss-Krueger easting (DHDN) on the natural meridian strip
  12. Gauss-Krueger northing (DHDN) on the natural meridian strip
  13. Gauss-Krueger easting (DHDN) on an uniform meridian strip
  14. Gauss-Krueger northing (DHDN) on an uniform meridian strip
  15. UTM easting (ETRS89) on the natural meridian strip
  16. UTM northing (ETRS89) on the natural meridian strip
  17. UTM easting (ETRS89) on an uniform meridian strip
  18. UTM northing (ETRS89) on an uniform meridian strip

 To the table of contents of this site

Quality of the house-exact Geo data

The geo data offered here are in high quality and are present in different coordinate and reference systems. They are constantly updated by an internationally active geo data manufacturer and they are subject to a continuous quality control. The house-exact geo data are used in many mobile navigation systems. They were determined by building-inspection and partially by interpolation of exact street-sections and residential district coordinates. The coordinates are not based on information of the land registry offices or the land surveying authorities. The accuracy refers to individual buildings or building complexes. House number suffixes and house number ranges are not dissolved, since the local proximity of a building complex can be represented regularly by an individual numeric house number.

Detailed information and hints to the use of the geo references can be found in the files of the download or in the detailed  Data Specification.

 To the table of contents of this site

Use of the coordinates contained in the Geo Data tables

The coordinates are present as geographic coordinates, as Gauss-Krueger coordinates and as UTM coordinates. Because UTM coordinates and Gauss-Krueger coordinates are converted to a uniform meridian strip, distances between two points can be calculated by the simple execution of the Pythagoras theorem. That has the advantage in relation to the computation with geographical coordinates (see below) that it is substantially simpler and much faster. The result is the distance between the points in meters.

Formula for the distance calculation with Gauss-Krueger coordinates:
difEast      = abs(GK_E_CENT_1 - GK_E_CENT_2)
difNorth     = abs(GK_N_CENT_1 - GK_N_CENT_2)
distance     = sqrt(difEast * difEast + difNorth * difNorth)
  with
GK_E_CENT_1:   Easting of the first coordinate
GK_N_CENT_1:   Northing of the first coordinate
GK_E_CENT_2:   Easting of the second coordinate
GK_N_CENT_2:   Northing of the second coordinate
abs():         Absolute value function
sqrt():        Square root function 
distance:      Distance in meters as result

Formula for the distance calculation with UTM coordinates:
difEast      = abs(UTM_E_CENT_1 - UTM_E_CENT_2)
difNorth     = abs(UTM_N_CENT_1 - UTM_N_CENT_2)
distance     = sqrt(difEast * difEast + difNorth * difNorth)
  with
UTM_E_CENT_1:  Easting of the first coordinate
UTM_N_CENT_1:  Northing of the first coordinate
UTM_E_CENT_2:  Easting of the second coordinate
UTM_N_CENT_2:  Northing of the second coordinate
abs():         Absolute value
sqrt():        Square root 
distance:      The result is the distance in meters

Geographic coordinates are indicated in longitude and latitude. Usually longitude and latitude are represented in the degree notation, which is also called decimal notation. Geographical coordinates in the degree notation are for the distance computation better suitable than geographical coordinates in the degrees/minutes/second notation. For a distance computation the longitude and latitude of the first point (LON_DEC1, LAT_DEC1) and the longitude and latitude of the second point (LON_DEC2, LAT_DEC2) are needed. If the latitude has a minus sign, the point is on the southern earth hemisphere, otherwise on the northern earth hemisphere. If a longitude has a minus sign, the point is situated west of the Greenwich meridian, otherwise east of it. In the Federal Republic of Germany no minus signs occur, because all coordinates are on the northern earth hemisphere and east of Greenwich.

As preparation for the distance computation the longitude and latitude are 
converted into radians. The unit of the radian is [rad].
Lon1r     = LON_DEC1 * PI / 180
Lat1r     = LAT_DEC1 * PI / 180
Lon2r     = LON_DEC2 * PI / 180
Lat2r     = LAT_DEC2 * PI / 180
  with
LON_DEC1:   Longitude of the first point in degree notation
LAT_DEC1:   Latitude of the first point in degree notation
LON_DEC2:   Longitude of the second point in degree notation
LAT_DEC2:   Latitude of the second point in degree notation
Lon1r:      Radian of the longitude of the first point
Lat1r:      Radian of the latitude of the first point
Lon1r:      Radian of the longitude of the second point
Lat1r:      Radian of the latitude of the second point
PI:         Circle constant Pi (3,14...)

Now the longitudes and latitudes of the two coordinates are so far prepared
that they can be inserted into the formula for the distance computation.
distance =  r * acos[sin(Lat1r) * sin(Lat2r)
            + cos(Lat1r) * cos(Lat2r) * cos(Lon2r - Lon1r)]
  with
sin():      Sinus function
cos():      Cosinus function
acos():     Arcus Cosinus function
r:          Earth equatorial radius = 6378137 meter
distance:   Distance in meters as result

The conversion of the geographic, Gauss-Krueger and UTM coordinates into another coordinate and/or reference system, can be accomplished with the coordinate transformation program  TRANSDAT or as purchase order. Like that it is possible to convert e.g. into the Lambert coordinate system or to Soldner coordinates and into the usual reference systems.

 To the table of contents of this site

Conversion to the necessary data format

First the database tables are present in a standard file format (dBase, ASCII / OEM character set). They can be imported directly into MS-EXCEL, MS-ACCESS and in Borlands dBase.

The  downloadable freeware program CONVERT converts dBase formatted database tables into other data formats with the necessary characteristics and selections. With the program for example dBase data can be converted into the SDF format (Simple Document Format) or into the CSV format (Comma Separated Value). For the use of the data on different platforms it is possible to select between the character sets ASCII / OEM and ANSI / WINDOWS. Thus the import of the data in any database management system or file system will be possible.

For the import in MySQL or SQL databases the necessary "CREATE TABLE" script can be generated. Further the selection of the data on data fields and data records is possible. In addition the data can be sorted on base of the data fields. Data from several files can be joined to a common file.

Here you can have a look to some  screenshots of the converter program.

 To the table of contents of this site

Acquisition of a license and right of use of the database tables

The  license models described here require only a unique payment. No additional payments are raised as a function of the number of installations or on the service life of the license. The service life is unlimited. The purchase of economical updates on existing licenses is possible at any time.

The geo data presented here can be used company internal or for free of charge services in the Internet. The data are licensed for different types of use:

  1. Simple License: The licensed database may be used on up to five workplaces in a branch / office of the licensee.
  2. Company License: The licensed database may be used on up to twenty workplaces within a company at several branches / offices of the licensee.
  3. Internet License: The licensed database may be used in one Internet presence of the licensee. Thereby the data are merged exclusively into for the Internet users free of charge accessible services.

 To the table of contents of this site

Prices and source of supply

Pricing and ordering information can be found in the  Price list. Order the "Geo Data German Houses" with the electronic  Order Form.

 To the table of contents of this site

Download of the test data and the data converter

A selection of  test data from "Geo Data German Houses" with the detailed data description and with informations about the use of the data can be downloaded as ZIP packed file by the Internet. The Freeware program  CONVERT, developed by KilletSoft, for converting and adaptation of the data is ready for download if necessary. For unpacking the download files you need an unzip program, which you can download  from this side.

 To the table of contents of this site

KilletSoft News In order that you always are well informed about our company, we write actual news, current information and special offers here into this column.

KilletSoft Logo Order processing while annual closing
 
In the time between January 5. and January 13. we are unreachable for our customers, because we have holiday season. All incoming orders during this time will be delivered on Wednesday, January 14.

KilletSoft Logo Free update by purchasing Geo Data German Admin
 
Geo Data German Admin are updated every year in March / April. That you do not have a disadvantage, when you acquire the data still before the annual actualization in the year 2009, you get a free update.

KilletSoft Logo GK --> UTM with BeTA2007
 
The convertion of your geodata from Gauss-Kruger to UTM with BeTA2007 - Its so easy!
Read the Worksheet and the Press Release ....

KilletSoft Logo Spatial data updates
 
The contract between a data distributor and GeoKontor was terminated in June 2008. With immediate effect, KilletSoft has been commissioned to organize an update service for the spatial data ("geodata") acquired by them in the years 2006 to 2008 at the level of Zip code (post code), streets and individual buildings. Please contact us if you require an update of such data.

KilletSoft Logo Administrative Reform in Saxonia
 
The administrative data bases of the Federal Republic of Germany "Geo Data German Admin" were updated to the reference date of August 1st, 2008! Thus the changes due to the administrative reform in Saxonia are included in all data bases.
 
Read our Press Release ...

KilletSoft Logo Snow and Wind Load Zones of the towns and cities in a newly-created data base
 
Read our Press Release ...

KilletSoft Logo Nature Area Classification
 
The product "GeoData German Admin" has been enhanced with two new data tables containing the "Nature Area Classification" and the Landscapes. This will allow associating nature area and landscape information to all localities.
 
Read our Press Release ...

KilletSoft Logo GeoDLL supports 3D coordinate- transformations
 
After our Dynamic Link Library has become super fast by recoding to C++, GeoDLL now is able to calculate 3D coordinate transformations considering the ellipsoidical heights. As well calculations with cartesian coordinates are possible now.