<div dir="ltr">I wanted to document what I tried, and get some feedback.  At the moment I'm looking at <a href="http://www.seminolecountyfl.gov/gis/">http://www.seminolecountyfl.gov/gis/</a>  Seminole county Fl which may still need explicit response that the data is in the public domain prior to uploading it.<br>
<br>So far I have converted various downloaded shape files to WGS84 from their respective state datums.  This took a while with me being a noob, and I couldn't find anything that talked about what actually needed to be done.  So for anyone else out there, this was my method.<br>
<br>Using ogr2ogr from FWTools2.1.0 <a href="http://fwtools.maptools.org/">http://fwtools.maptools.org/</a>  Actually the "Gis on a stick" (nice package) <a href="http://www.archaeogeek.com/blog/portable-gis/">http://www.archaeogeek.com/blog/portable-gis/</a><br>
Most shape downloads include a *.prj file, so this makes it easy.  If your missing one, try using another from the same source but make sure they use the same settings.<br><br>basic command:  ogr2ogr -t_srs WGS84 -s_srs "ESRI::in_shp.prj" "out_shp.shp" "in_shp.shp"<br>
<br>To automate it, a few dos commands to allow mass converting entire directorie trees at once.  Starting at where the command was run from.<br>command:  FOR /R .\ %G IN (*.prj) DO N:\usbgis\apps\FWTools2.1.0\bin\ogr2ogr -t_srs WGS84 -s_srs "ESRI::%~dpnG.prj" "%~dpnG_out.shp" "%~dpnG.shp"<br>
<br>This outputs with the same file name but with "_out" added<br>If you use this in a batch file, you will need to change the single % to %%   A quirk of MS batch files.<br>you can also remove "/R .\" to only process files in the current directory.<br>
<br>Still to come is converting the WGS84 shape files into OSM format for loading and review in JOSM followed by normal upload to the OSM database.<br>conversion script I found to start with... <a href="http://raumplanung.tobwen.de/OSM/scripts/shp2osm_080814.pls">http://raumplanung.tobwen.de/OSM/scripts/shp2osm_080814.pls</a><br>
command:  FOR /R .\ %G IN (*_out.shp) DO shp2osm.pl "%~dpnG" > "%~dpnG.osm"<br>Tests work well, and basic streets should be east to import.  Tags need to be worked on though.  Like tiger (source:data_tag), and what tags should be imported?  Do nodes need to be tagges as they were for the tiger data?  How to pull attributes from other shp files and merge the data?  There are a few places I think this would be the right thing to do.  Such as street lights added to nodes, I saw some other data layers that might be of use in the same way if they can be combined.<br>
<br>One down side is the data points are higher density than they probably need to be, so lots more data.  The ways by default are split at all intersections, and there is cross street information (from, to) in each way section.  Finally what to do with existing data such as the tiger stuff, and especially user made stuff.<br>
<br><br><br>Can anyone suggest a better method, or other comments?  import into PostgreSQL perhaps?  Would this allow better review somehow, or processing of smaller chunks of data?<br><br><br>-- <br>Dale Puch<br>
</div>