This page (revision-13) was last changed on 07-Dec-2016 14:14 by Peter Young

This page was created on 06-Jul-2007 13:51 by Harry Warren

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
13 07-Dec-2016 14:14 6 KB Peter Young to previous
12 07-Apr-2011 16:27 6 KB PeterYoung to previous | to last
11 08-Jul-2010 21:01 5 KB PeterYoung to previous | to last
10 06-Nov-2008 16:34 4 KB PeterYoung to previous | to last
9 09-Jul-2007 12:53 3 KB Louise Harra to previous | to last
8 09-Jul-2007 12:12 3 KB Louise Harra to previous | to last Comment by Louise Harra
7 07-Jul-2007 12:51 3 KB David Pérez-Suárez to previous | to last
6 07-Jul-2007 12:49 3 KB David Pérez-Suárez to previous | to last
5 06-Jul-2007 14:04 2 KB Harry Warren to previous | to last
4 06-Jul-2007 14:03 2 KB Harry Warren to previous | to last
3 06-Jul-2007 14:02 1 KB Harry Warren to previous | to last
2 06-Jul-2007 13:55 1 KB Harry Warren to previous | to last
1 06-Jul-2007 13:51 1 KB Harry Warren to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 removed one line
At line 57 added 35 lines
----
I have done a small program "[plot_eis_raster.pro|http://star.arm.ac.uk/~dps/IDL/Hinode/EIS/plot_eis_raster.pro]" where you can visualize the structure with the coordinates, time and name of the window.
plot_eis_raster.pro is just valid for the slit rasters (I haven't tried with any slot).
A few comments: the time that it shows is the time of the beginning of the raster; and the coordinates is calculated using the mean value of d.solar_x and using the size of the slit per each pixel.
To use it you just have to (for the same example than before):
{{{
IDL> plot_eis_raster,d
}}}
[{Image src = 'plot_imageCoord.jpg'}]
Or if you want to change the value to plot (e.g. the values that you obtain after fit the line)
To plot the array called velocity (in my case velocity=reform(result '[' 1,*,* ']' ) ):
{{{
IDL> plot_eis_raster,d,value=velocity
}}}
[{Image src = 'plot_imageCoordValue.jpg'}]
Also you can use all the keywords of plot_map (dmin, dmax, etc.)
And you can save the map produced,
{{{
IDL> plot_eis_raster,d,value=velocity,map=velocitymap
}}}