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