Changeset 1003 for trunk/UTIL


Ignore:
Timestamp:
Jul 5, 2013, 4:51:52 PM (11 years ago)
Author:
tnavarro
Message:

add marsdayini option in changetime to use actual dates instead of zero-starting time axis for GCM files + correct bug with sol2ls option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTIL/PYTHON/planetoplot_v2/ppclass.py

    r1002 r1003  
    13711371            ### option added by T. Navarro
    13721372            if self.changetime == "mars_sol2ls":
     1373                self.field_t =  self.field_t \
     1374                              + self.f.variables['controle'][3]%669 \
     1375                              + self.f.variables['controle'][26]
    13731376                self.field_t = ppcompute.mars_sol2ls(self.field_t)
     1377            elif self.changetime == "marsdayini":
     1378                self.field_t =  self.field_t \
     1379                              + self.f.variables['controle'][3]%669 \
     1380                              + self.f.variables['controle'][26]
    13741381            ### options added by A. Spiga
    13751382            elif "mars_meso" in self.changetime:
Note: See TracChangeset for help on using the changeset viewer.