Plotting the region of interest from satellite image [message #88953] |
Mon, 07 July 2014 07:50  |
atmospheric physics
Messages: 121 Registered: June 2010
|
Senior Member |
|
|
Hello,
I have a MSG-SEVIRI high resolution channel radiances for the EU region. The dimensions of lat / lon / radiances is 2400 cols X 1800 rows. I don't want to plot the entire image. I am aiming to plot the image for the region of interest covering lat=[50.84D, 50.96D] and lon = [6.35D, 6.51D]. How can I do this?
For the entire image, I simply do as follows:
scaledImage = BytScl(radiance,MAX=MAX(radiance),MIN=MIN(radiance),/NAN)
cgImage,scaledImage
Can anyone provide me with some example script to plot the region of interest?
Thanks in advance.
Madhavan
|
|
|
Re: Plotting the region of interest from satellite image [message #88954 is a reply to message #88953] |
Mon, 07 July 2014 07:55  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Madhavan Bomidi writes:
> I have a MSG-SEVIRI high resolution channel radiances for the EU region. The dimensions of lat / lon / radiances is 2400 cols X 1800 rows. I don't want to plot the entire image. I am aiming to plot the image for the region of interest covering lat=[50.84D, 50.96D] and lon = [6.35D, 6.51D]. How can I do this?
>
> For the entire image, I simply do as follows:
>
> scaledImage = BytScl(radiance,MAX=MAX(radiance),MIN=MIN(radiance),/NAN)
> cgImage,scaledImage
>
> Can anyone provide me with some example script to plot the region of interest?
Procedure is explained here:
http://www.idlcoyote.com/map_tips/subimage.php
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
|
|
|