Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.stsci.edu/~mperrin/software/idl_sources.shtml
Дата изменения: Unknown
Дата индексирования: Sun Apr 10 16:05:49 2016
Кодировка:

Поисковые слова: п п п п п п п п п п п п п п п п п п п п п п п п п п п п
Marshall Perrin's IDL Routines By Category

Marshall Perrin's IDL Routines

Back to my main IDL page

List Last updated: Mon Sep 17 17:04:02 2012.


Routines by Category

Categories: Astronomical Utility - Data Cubes - Database - I/O - Image Display - Image Processing - IRCAL Pipeline - Mathematics - Misc - Plotting - Programming

Astronomical Utility

Data Cubes

Database

I/O

Image Display

Image Processing

IRCAL Pipeline

Mathematics

Misc

Plotting

Programming


Routine Descriptions


Category: Astronomical Utility

[List of Routines]


ZD2AIRMASS

[Next Routine] [List of Routines]
(See sources/zd2airmass.pro)

 NAME: airmass

 PURPOSE:
 	Compute airmass vs. zenith distance.

 ALGORITHM:
 	Formula from John Huchra'a Harvard Ay192 notes, 1999.

 INPUTS:
 	zd	zenith distance, in degrees
 KEYWORDS:
 OUTPUTS:

 HISTORY:
 	Began 2004-10-18 19:36:56 by Marshall Perrin 

(See sources/zd2airmass.pro)


LSTNOW

[Previous Routine] [Next Routine] [List of Routines]
(See sources/lstnow.pro)

 NAME: lstnow

 PURPOSE:
 	return current lst, for a given observatory

 INPUTS:
 KEYWORDS:
 OUTPUTS:

 HISTORY:
 	Began 2005-07-14 17:30:20 by Marshall Perrin 

(See sources/lstnow.pro)


SUNTIMES

[Previous Routine] [Next Routine] [List of Routines]
(See sources/suntimes.pro)

 NAME: suntimes

 PURPOSE:
 	compute APPROXIMATE sunrise and sunset times

 NOTES:
 	Uses algorithms from the
 	Buie Lowell IDL library.

 	This is not likely to be the most accurate thing in the world.

 	Particularly since it doesn't account for the motion of the sun
 	during the day in question.


 USAGE:
 	suntimes,jd,rise,set, [/today, /lst, obsname="lick", degrees=12]

 INPUTS:
 KEYWORDS:
		degrees=	how many degrees below the horizon? 
					Default is 0.25, so the sun is just tangent to the horizon
 		/lst		return results in LST, not CT
 
 OUTPUTS:

 HISTORY:
 	Began 2005-07-14 16:07:24 by Marshall Perrin 
 		see 'obsplan.pro' from the Buie library for algorithm source.

(See sources/suntimes.pro)


LASERTIMES

[Previous Routine] [Next Routine] [List of Routines]
(See sources/lasertimes.pro)

 NAME: lasertimes

 PURPOSE:
 	Compute the start and stop allowable times for the Lick Laser, in LST.
 	These correspond to 11 pm and 5 am, local time (either PST or PDT)

 USAGE:
 	suntimes,jd,rise,set, [/date, /lst]

 INPUTS:
 KEYWORDS:
 OUTPUTS:

 BUGS:
 		Not daylight savings time aware. It assumes that the entire year
 		uses whatever the current timezone setting is. (i.e. if it's
 		PDT when you run the program, it assumes it's -always- PDT, and
 		vice versa for PST)

 HISTORY:
 	Began 2005-07-14 16:07:24 by Marshall Perrin 
 		see 'obsplan.pro' from the Buie library for algorithm source.

(See sources/lasertimes.pro)


FINDINGCHART

[Previous Routine] [Next Routine] [List of Routines]
(See sources/findingchart.pro)

 NAME: findingchart.pro
 PURPOSE:
 	make a finding chart for an object on screen or PDF. 

 NOTES:
 	For Lick, you want to call this as
 		
		findingchart,"Vega", /ps

	This script requires the "skvbatch" and "webquery" perl scripts to 
	access SkyView at Goddard. Get them from here:
		http://skyview.gsfc.nasa.gov/downloads/software/batch/skvbatch
	It also requires a version of the Goddard IDL Astronomy library more
	recent than 2003-07-14, incorporating bug fixes to hrotate.pro and
	imcontour.pro which were added then.

 INPUTS:
 	objectname	a name or coordinates for an object suitable for SIMBAD.
 	
 KEYWORDS:
 	filename	File to use. If set, This file is used and labelled as
      		 	"objectname". If not set, the field containing 
     			objectname is downloaded from SkyView at Goddard. Once 
      			the data is downloaded, it is saved in the current 
 	         	directory for future use.
 	/noflip		don't flip the direction of the RA axis. Default is to 
 				flip it so as to match the geometry of the Lick display.
 	rotangle	Angle to rotate the image by, clockwise. If /flip is 
 	    		set, that happens first. Default is 23 degrees, which 
 	    		is the angle for the Lick guider camera.
 	/ps  		Output to a postscript file as well as to the screen.
        	 	The file will be named find_.ps
 	/forcedl	Force the download of data even if it wouldn't happen otherwise.
 				i.e. You can use this to re-download the image for a source
 				even if it's been saved already.
 OUTPUTS:

 HISTORY:
 	Began 2003-07-04 13:01:34 by Marshall Perrin 
 	Documentation added 2003-07-11   Marshall Perrin
 	2003-07-20		Added guider FOV outline. Marshall Perrin
 	2003-11-02		Lick finding camera is now rotated 180 degrees from where
					it used to be in July...

(See sources/findingchart.pro)


MULTIFINDINGCHART

[Previous Routine] [Next Routine] [List of Routines]
(See sources/multifindingchart.pro)

 NAME: multifindingchart
 PURPOSE:
 	call findingchart for a bunch of sources listed in a file.

 INPUTS:
 KEYWORDS:
 	/coords		use coords from the target file, not just names.
 				Useful for targets not in SIMBAD
 	wait=#		wait # seconds between images
 	/ps			write to PS
 OUTPUTS:

 HISTORY:
 	Began 2005-07-14 18:16:08 by Marshall Perrin 
 	2005-09-29	add