Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • How to access the value of MoveCount & Latitude ? Commented Feb 23, 2018 at 6:05
  • Sorting is one way of finding the highest count, but would be an inefficient way of doing it, particularly if you have a large dataset. Commented Feb 23, 2018 at 6:37
  • @jones Once the array is sorted, the item with the highest MoveCount is the first item in the array, so you would access it via movers[0]. So, to get the latitude, you would use movers[0].Latitude, etc. Commented Feb 23, 2018 at 6:40