- Timestamp:
- 06/22/05 16:18:17 (20 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/asap
r636 r656 47 47 if [ "${AIPSPATH}" == "" ]; then 48 48 aroot='/nfs/aips++' 49 ASAPDATA='/usr/local/share/asap /data'49 ASAPDATA='/usr/local/share/asap' 50 50 if test -d ${ASAPDATA} ; then 51 51 AIPSPATH="${ASAPDATA} linux_gnu somewhere localhost" 52 export AIPSPATH 52 53 elif test -d ${aroot}/weekly ; then 53 54 . ${aroot}/weekly/aipsinit.sh -
trunk/examples/test.py
r572 r656 42 42 quot = quotient(scanav,refav) 43 43 # set the cursor to polarisation 0 44 quot.set_cursor( thepol=0)44 quot.set_cursor(pol=0) 45 45 # get the spectrum for polarisation 0 46 46 v0 = quot._getspectrum() … … 48 48 print v0[0:10] 49 49 # set the cursor to polarisation 1 50 quot.set_cursor( thepol=1)50 quot.set_cursor(pol=1) 51 51 # get the spectrum for polarisation 1 52 52 v1 = quot._getspectrum()
Note:
See TracChangeset
for help on using the changeset viewer.