Opened 6 years ago

Last modified 6 years ago

#16762 closed defect

OSC files from osmand only shows one note — at Initial Version

Reported by: anonymous Owned by: team
Priority: normal Milestone: 18.09
Component: Core Version: tested
Keywords: osmand osc note Cc:

Description

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 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 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

Change History (0)

Note: See TracTickets for help on using tickets.