Changeset 6493 for anuga_core/source/anuga/fit_interpolate/fit.py
- Timestamp:
- Mar 11, 2009, 4:25:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/fit_interpolate/fit.py
r6488 r6493 317 317 raise RuntimeError, msg 318 318 319 319 self.AtA = AtA 320 320 321 321 … … 338 338 339 339 """ 340 341 340 # Use blocking to load in the point info 342 341 if type(point_coordinates_or_filename) == types.StringType: … … 344 343 assert point_origin is None, msg 345 344 filename = point_coordinates_or_filename 346 347 345 G_data = Geospatial_data(filename, 348 346 max_read_lines=max_read_lines, … … 387 385 if point_coordinates is None: 388 386 if verbose: print 'Warning: no data points in fit' 389 msg = 'No interpolation matrix '387 msg = 'No interpolation matrix.' 390 388 assert self.AtA is not None, msg 391 389 assert self.Atz is not None … … 464 462 point_coordinates = ensure_numeric(point_coordinates, num.Float) 465 463 self._build_matrix_AtA_Atz(point_coordinates, z, verbose) 466 464 467 465 468 466 ############################################################################
Note: See TracChangeset
for help on using the changeset viewer.