MathGroup Archive 2011

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Mapping points

  • To: mathgroup at smc.vnet.net
  • Subject: [mg119493] Re: Mapping points
  • From: Heike Gramberg <heike.gramberg at gmail.com>
  • Date: Mon, 6 Jun 2011 07:28:26 -0400 (EDT)

You can use ListPlot for this:

points = Table[{RandomReal[{0, 360}] , RandomReal[{-90, 90}]}, {100}];

ListPlot[points, FrameLabel -> {"Longitude", "Latitude"}, Frame -> True, Axes -> False]

Heike

On 6 Jun 2011, at 11:23, Yako wrote:

> Hello,
>
> I been trying to look information on how to do this but couldn't find
> a clue, if someone here can hint me I will really appreciate it.
>
> Given a set of LAT, LON points I have to map them inside a white
> graph. My en result will need to be a white graph full of dots in its
> correspondent lat, lon location.
>
> Can I achieve something like this using mathematica? Can someone hint
> me in the right direction?
>
> Thanks a lot!
>
>
>


  • Prev by Date: Re: Curve Tracking and fetching Locator coordinates
  • Next by Date: Re: Getting a chess with circles
  • Previous by thread: Mapping points
  • Next by thread: Re: Mapping points