OVERPLOT POINTS IN CONTOUR [message #44158] |
Tue, 24 May 2005 08:08  |
Giorgos
Messages: 8 Registered: April 2005
|
Junior Member |
|
|
Hi...I am a new user and I need some advice...
I have 3 array of data (270 X 406) containing latitudes and longitudes
and pressure. I make the proper contour but I want over it to put some
black points showing values of latitude and longitude which I will take
from another array but belong to the same limit area defined in my
contour...how can I add these points according to their geographical
coordinates?
|
|
|
Re: OVERPLOT POINTS IN CONTOUR [message #44243 is a reply to message #44158] |
Wed, 25 May 2005 07:06  |
Ken Mankoff
Messages: 158 Registered: February 2000
|
Senior Member |
|
|
On Tue, 24 May 2005, Giorgos wrote:
> Hi...I am a new user and I need some advice... I have 3 array of
> data (270 X 406) containing latitudes and longitudes and pressure.
> I make the proper contour but I want over it to put some black
> points showing values of latitude and longitude which I will take
> from another array but belong to the same limit area defined in my
> contour...how can I add these points according to their
> geographical coordinates?
XYOUTS, ..., /DATA
-k.
--
http://spacebit.dyndns.org/
|
|
|
Re: OVERPLOT POINTS IN CONTOUR [message #44245 is a reply to message #44158] |
Tue, 24 May 2005 23:59  |
David Lopez Pons
Messages: 8 Registered: July 2003
|
Junior Member |
|
|
Giorgos wrote:
> Hi...I am a new user and I need some advice...
> I have 3 array of data (270 X 406) containing latitudes and longitudes
> and pressure. I make the proper contour but I want over it to put some
> black points showing values of latitude and longitude which I will take
> from another array but belong to the same limit area defined in my
> contour...how can I add these points according to their geographical
> coordinates?
>
>
>
Do you try OPLOT?
If you write:
aux=sin(indgen(50,50))^2
contour,aux
oplot,sort(randomu(0,20)),psym=1
you have the contour and a sort of points in the same coordinate system.
I think this is what you want.
|
|
|