dssbase
Last updated: Jan21,2020

Collect DSS image and supporting photometric catalogs to a local directory names ./Store_DSS. At this time we collect USNO and PS1 photometry.

  
% dssbase --help

% dssbase 10:47:49.90 +12:34:57.0 2.5 8.0 19.0 20.5 N

Usage: dssbase 10:47:49.90 +12:34:57.0 2.5 8.0 19.0 20.5 Y
arg1 - Ra J2000 in sexigecimal
arg2 - Dec J2000 in sexigecimal
arg3 - Radius of DSS image in units of arcmin (i.e. half the size of image side)
arg4 - Radius of catalog queries in units of arcmin 
arg5 - USNO-B1.0 R2MAG limit  
arg6 - PS1 faint g mag limit  
arg7 - run in debug/verbose mode 


The image names for files stored in Store_DSS are based on the image sky position and size of the DSS image.

There are two other routines that are key to dssbase. The first (dss_store_markII) is contained with in dssbase, and it is the routine that make the unique basenames for the new DSS data files and stores them in a local directory named Store_DSS. The second (dssbase_run) is a wrapper for dssbase. It operates on a list of Ra,Dec values. The user specifies the size and magnitude limits that are to be used for each position in the list. The collected data are stored in the ./local_red subdirectory.

  
Usage: dss_store Y 
arg1 - run in verbose mode (Y/N)

Usage: dssbase_run table_onsky_sets.RADEC 2.5 19.0 20.5 Y       # Not updated yet!!!! 
arg1 - list of RamDec in sexigecimal format 
arg2 - Radius of sky area in units of arcminutes 
arg3 - USNO-B1.0 R2MAG limit  
arg4 - PS1 faint g mag limit  
arg5 - run in debug/verbose mode 

Below I show a typical data structure created with a run of dssbase_run.

  
% cat table_onsky_sets.RADEC 
19:22:47.49 +53:20:41.7
23:04:45.11 -08:43:49.4
01:49:15.43 +13:30:57.5
03:46:37.78 +24:01:18.6
01:15:55.64 +33:02:32.7
01:15:55.65 +33:02:33.1
01:15:55.64 +33:02:33.0
01:15:55.73 +33:02:29.9

% ls ./local_red/Store_DSS/ 
dss_RA01c15c55p702DEC+33c02c31p95_119.fits
dss_RA01c15c55p702DEC+33c02c31p95_119_ps1.cdfp
dss_RA01c15c55p702DEC+33c02c31p95_119_usno_all.cdfp
dss_RA01c15c55p782DEC+33c02c28p93_119.fits
dss_RA01c15c55p782DEC+33c02c28p93_119_ps1.cdfp
dss_RA01c15c55p782DEC+33c02c28p93_119_usno_all.cdfp
dss_RA01c49c15p498DEC+13c30c56p15_119.fits
dss_RA01c49c15p498DEC+13c30c56p15_119_ps1.cdfp
dss_RA01c49c15p498DEC+13c30c56p15_119_usno_all.cdfp
dss_RA03c46c37p851DEC+24c01c17p60_119.fits
dss_RA03c46c37p851DEC+24c01c17p60_119_ps1.cdfp
dss_RA03c46c37p851DEC+24c01c17p60_119_usno_all.cdfp
dss_RA19c22c47p570DEC+53c20c40p33_119.fits
dss_RA19c22c47p570DEC+53c20c40p33_119_ps1.cdfp
dss_RA19c22c47p570DEC+53c20c40p33_119_usno_all.cdfp
dss_RA23c04c45p135DEC-08c43c50p53_119.fits
dss_RA23c04c45p135DEC-08c43c50p53_119_ps1.cdfp
dss_RA23c04c45p135DEC-08c43c50p53_119_usno_all.cdfp
MasterList

% cat ./local_red/Store_DSS/MasterList 
 19:22:47.49 +53:20:41.7 RA19c22c47p570DEC+53c20c40p33_119
 23:04:45.11 -08:43:49.4 RA23c04c45p135DEC-08c43c50p53_119
 01:49:15.43 +13:30:57.5 RA01c49c15p498DEC+13c30c56p15_119
 03:46:37.78 +24:01:18.6 RA03c46c37p851DEC+24c01c17p60_119
 01:15:55.64 +33:02:32.7 RA01c15c55p702DEC+33c02c31p95_119
 01:15:55.65 +33:02:33.1 RA01c15c55p702DEC+33c02c31p95_119
 01:15:55.64 +33:02:33.0 RA01c15c55p702DEC+33c02c31p95_119
 01:15:55.73 +33:02:29.9 RA01c15c55p782DEC+33c02c28p93_119





Back to SCO code page