+ position = (1.1 * GeoRecord::SCALE).to_i
+ note = create(:note, :latitude => position, :longitude => position)
+ note2 = create(:note, :latitude => position, :longitude => position)
+ create(:note_comment, :note => note)
+ create(:note_comment, :note => note2)
+ position = (1.5 * GeoRecord::SCALE).to_i
+ note3 = create(:note, :latitude => position, :longitude => position)
+ note4 = create(:note, :latitude => position, :longitude => position)
+ create(:note_comment, :note => note3)
+ create(:note_comment, :note => note4)
+