Changeset 2396 for trunk/python
- Timestamp:
- 01/11/12 13:51:25 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapgrid.py
r2391 r2396 158 158 weightType -- weight type ('uniform', 'tint', 'tsys', 'tintsys') 159 159 """ 160 self.gridder._setweight( weightType ) 160 self.gridder._setweight( weightType ) 161 162 def enableClip( self ): 163 """ 164 Enable min/max clipping. 165 166 By default, min/max clipping is disabled so that you should 167 call this method before actual gridding if you want to do 168 clipping. 169 """ 170 self.gridder._enableclip() 171 172 def disableClip( self ): 173 """ 174 Disable min/max clipping. 175 """ 176 self.gridder._disableclip() 161 177 162 178 def grid( self ):
Note:
See TracChangeset
for help on using the changeset viewer.