﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
16762	OSC files from osmand only shows one note	anonymous	team	"when sending a osc file to your computer, and opening it in JOSM, only the first note shows up for some reason.
For example, from this osc file the only note that shows up is ""axis bank""
{{{
#!xml
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<osmChange generator=""OsmAnd"" version=""0.6"">
  <create>
    <note lat=""18.49140922785058"" lon=""73.82154644626345"" id=""-3"">
      <comment text=""axis bank"" />
    </note>
    <note lat=""18.491090341843343"" lon=""73.82276366023234"" id=""-2"">
      <comment text=""Vithal Mandir Road"" />
    </note>
    <note lat=""18.49146749380727"" lon=""73.81913394212947"" id=""-4"">
      <comment text=""road connect is here"" />
    </note>
 </create>
  <modify />
  <delete />
</osmChange>
}}}
If you modify the file so that the ""road connect is here"" note is at the top, then that will be the only note shown:
{{{
#!xml
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<osmChange generator=""OsmAnd"" version=""0.6"">
  <create>
    <note lat=""18.49146749380727"" lon=""73.81913394212947"" id=""-4"">
      <comment text=""road connect is here"" />
    </note>
    <note lat=""18.49140922785058"" lon=""73.82154644626345"" id=""-3"">
      <comment text=""axis bank"" />
    </note>
 </create>
  <modify />
  <delete />
</osmChange>
}}}

It would be useful if we could use osmand osc files in osmand. Thank you"	defect	closed	normal	18.09	Core	tested	fixed	osmand osc note	
