Changeset 3896 for anuga_core/source/anuga/fit_interpolate/interpolate.py
- Timestamp:
- Oct 31, 2006, 11:23:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/fit_interpolate/interpolate.py
r3850 r3896 92 92 93 93 # FIXME: What is a good start_blocking_len value? 94 def interpolate(self, f, point_coordinates = None, 95 start_blocking_len = 500000, verbose=False): 94 def interpolate(self, 95 f, 96 point_coordinates=None, 97 start_blocking_len=500000, 98 verbose=False): 96 99 """Interpolate mesh data f to determine values, z, at points. 97 100 … … 183 186 return z 184 187 185 def interpolate_block(self, f, point_coordinates =None, verbose=False):188 def interpolate_block(self, f, point_coordinates=None, verbose=False): 186 189 """ 187 190 Call this if you want to control the blocking or make sure blocking … … 218 221 def _build_interpolation_matrix_A(self, 219 222 point_coordinates, 220 verbose =False):223 verbose=False): 221 224 """Build n x m interpolation matrix, where 222 225 n is the number of data points and … … 399 402 quantities are to be computed whenever object is called. 400 403 If None, return average value 404 405 FIXME (Ole): Need to allow vertex coordinates and interpolation points to be 406 geospatial data objects 401 407 """ 402 408 … … 707 713 708 714 def interpolate_sww(sww_file, time, interpolation_points, 709 quantity_names = None, verbose =False):715 quantity_names=None, verbose=False): 710 716 """ 711 717 obsolete.
Note: See TracChangeset
for help on using the changeset viewer.