Message Boards Message Boards

0
|
8917 Views
|
3 Replies
|
1 Total Likes
View groups...
Share
Share this post:

Dot move on map.

Posted 9 years ago

Hi everyone. I'm newbie in Mathematica and need some help with visualization on the map. I want to show ways of different people on map. That's will line over map with waypoints. Every waypoint have location and date. So when you drag slider with dates dot should move. I thought it's very simple but it's hard to me do this. I would very glad if somebody do some notebook for me with example (like 01.05-02.05-03.05 Paris-London-NY). Thank you.

3 Replies

Could you provide an example dataset to use?

POSTED BY: Jesse Friedman

For example

Attachments:

If you want the waypoint(s) moving, try something like this:

st = Interpreter["Date"][#[[3]]] -> GeoPosition[#[[1 ;; 2]]] & /@ 
  SemanticImport["~/Downloads/st.csv", Automatic, "Rows"];
Manipulate[
 GeoGraphics[{GeoStyling["OutlineMap"], GeoMarker[st[[date, 2]]]}, 
  GeoRange -> Quantity[500, "Miles"]], {date, 1, Length@st, 1}]
POSTED BY: Jesse Friedman
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract