Talk:Kosovo iMMAP Import

From OpenStreetMap Wiki
Jump to navigation Jump to search

Import from big file

Sorry to interfere. Yesterday I saw the Mail at the List, downloaded the osm-file from [1], splittet it with osmcut as far as I could. Then I started with some small imports from 12 kB up to 500kB osm-files, then a 2.5MB one and this noon I started with an 11MB file. Took me some hours to eliminate most of the errors, the upload will take some hours more. The changesets are:

revert done -- Malenki 17:51, 2 February 2010 (UTC)

Some minor corrections I made in between I made I haven't listed but of course can be found in my edits.

Add to Import Catalogue

Somebody should add this import here. ATM I can't since I got to leave - found the page right now. -- Malenki 20:33, 31 January 2010 (UTC)

dont split by points

Hi there, The splitting I have dont differently and the source code was posted how.

You have split by node count and left a bunch of nodes with no streets like this ;

http://www.openstreetmap.org/browse/node/624505827

I guess there are some nodes left alone since the upload did not complete (ways were changed in the area while uploading). I will check the data for the missing ways and nodes. -- Malenki 14:10, 1 February 2010 (UTC)
after having had a first look at the import I'd say a revert would be the best -.- -- Malenki 14:27, 1 February 2010 (UTC)

Also, the streets need connecting. We will have to revisit all of them. so better to just use the work packages instead!


here is my script for making the wiki

  #process.pl
	print  qq[
  {| class=wikitable
  ! File name
  ! File size
  ! Person
  ! Complete
  ! Comment
  ];

  while (<>)
  {
    if (/(ways_\d+.osm.gz)\s+(\d+-Jan-2010 \d+:\d+)\s+(\d+)/)
    {
	print  qq!
  |-
  | [http://ia360924.us.archive.org/1/items/STREETDATA_Packages_Kosovo2/$1 $1]
  | $3
  | TODO:
  | no
  | [http://www.openstreetmap.org/browse/changeset/0 changeset]
  !;
	
    }
  };

  print "|}\n";