Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think you need to install one GIS software. You can try open-source <a href="http://www.qgis.org/" rel="nofollow noreferrer">Qgis</a>.</p> <p>Because, firstly your data is not in long/lat (geographic) coordinates. Your .prj part of the shapefile (yes, all .dbf, .prj, .sbn, .sbx, .shp, and .shx files with the same name are one shapefile for GIS) says that the data are in the projected coordinate system NAD 1983 UTM Zone 15N. So, you need to <a href="http://kartoweb.itc.nl/geometrics/coordinate%20transformations/coordtrans.html" rel="nofollow noreferrer">transform</a> your data to geographic system. This you easy can do in GIS, or programmatically by <a href="https://trac.osgeo.org/proj/" rel="nofollow noreferrer">proj.4</a> library. (In Qgis add the shapefile to the project, then select it in the table of contents, right mouse button and choose "save as...". It will ask you for the target coordinate system.) Note, that you need to decide which geographic coordinates you wish, because your data are in the North American Datum (NAD 1983), but the most common worldwide now is WGS 1984.</p> <p>Secondly, in GIS you will see your data, are they really points, or maybe polygons. (In case your houses are polygons you will need to get centroids of them, in Qgis menu Vector - Geometry Tools - Polygon Centroids).</p> <p>Finally, when you really have your houses as points in geographic coordinates, you can get their coordinates, for example using advices from these questions <a href="https://gis.stackexchange.com/questions/8844/get-list-of-coordinates-for-points-in-a-layer">Get list of coordinates for points in a layer</a> and <a href="https://gis.stackexchange.com/questions/7199/how-do-i-calculate-the-latitude-and-longitude-of-points-using-qgis">How do I calculate the latitude and longitude of points using QGIS</a>.</p> <p>Besides, there is a good library to work with GIS vector data, <a href="http://www.gdal.org/ogr/" rel="nofollow noreferrer">OGR</a>, which can be used by many programming languages.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload