IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Initial Version and Version 1 of PS1_IPP_CzarLog_UpdateScript


Ignore:
Timestamp:
Jul 13, 2016, 8:35:58 AM (10 years ago)
Author:
eugene
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PS1_IPP_CzarLog_UpdateScript

    v1 v1  
     1
     2Here is a mana script to add new lines to the czarlog page. 
     3
     4Modify the start and end dates to match your desired range. 
     5
     6{{{
     7macro go
     8  $TIMEFORMAT = mjd
     9  $TIMEREF = 2000/01/01,00
     10
     11  ctimes -abs 2016/07/04 -var t0
     12  ctimes -abs 2017/01/02 -var t1
     13
     14  $d0 = int($t0)
     15  $d1 = int($t1)
     16
     17  for i $d1 $d0 -7
     18    ctimes -ref $i -var tmp
     19    substr $tmp 0 4 Y
     20    substr $tmp 5 2 M
     21    substr $tmp 8 2 D
     22    fprintf " * [wiki:PS1_IPP_Czarlog_%s%s%s Czar Logs %s.%s.%s]" $Y $M $D $Y $M $D
     23  end
     24end
     25}}}