GPX file containing speed information

后端 未结 2 585
迷失自我
迷失自我 2021-02-06 19:48

I am currently using the DDMS perspective to simulate movement of the android emulator with a gpx file. However, I have only been able to find gpx files with lat/lon pairs in t

相关标签:
2条回答
  • 2021-02-06 20:11

    You do not need to search anywhere on "Tool to download GPX"

    You can simply generate .kml and .gpx files from google maps. :)

    1. Go to http://maps.google.com/
    2. Click on Get Directions hyper-link below google logo.
    3. Enter two known places from your local area or anywhere in the world, which could be reached by car that is and click on Get Directions.
    4. Google will generate driving directions for you.
    5. Now when you see coloured direction showing up on the map click on Link hyper-link on the right side of the window.
    6. Copy link from Paste link in email or IM section and copy it to you address bar, hit enter.
    7. Now to create

    .kml

    I am emphasizing this approach since it does not need any third party intervention and can serve the purpose.

    • Go to your address bar and at the end of the entire looong address type &output=kml heres an example:

      http://maps.google.com/maps?f=d&source=s_d&saddr=US-41+N&daddr=1060+W+Addison+St,+Chicago,+IL+60613&hl=en&geocode=Ff6uSwIdkP3H-g;FagQgAIdAXjG-ikh35rlstMPiDFSRA7TUMlPMA&mra=dme&mrcr=0&mrsp=0&sz=6&sll=40.4225,-82.346577&sspn=8.376378,14.128418&ie=UTF8&z=6&output=kml

    You'll be prompted to save the .kml file save it anywhere and load it to eclipse.

    .gpx

    • Perform all the steps from IE or Mozilla Firefox and add a bookmarklet or Add to favorites bar

      javascript:(function(){var     script=document.createElement('script');script.src='http://www.elsewhere.org/GMapToGPX/gmaptogpx.js';document.getElementsByTagName('head')[0].appendChild(script);})()
      
    • Now after pasting the looooong link in the address bar click on this bookmarklet you'll be prompted with the .gpx file save the entire code in the text editor and save it as .gpx and your done.

    You can visit http://www.elsewhere.org/journal/gmaptogpx/ for entire tutorial on how to generate .gpx.

    And about your second question emulators cannot simulate altitudes.

    0 讨论(0)
  • 2021-02-06 20:13

    This is the webservice I use:

    http://gpx.geotags.com/

    basically does all the leg work you just type the TO/FROM and DL gpx :D

    GPX 1.0 seems to be deprecated, you have to use GPX files with 1.1 version in eclipse

    0 讨论(0)
提交回复
热议问题