Changeset 4663 for anuga_core/source/anuga/geospatial_data
- Timestamp:
- Aug 7, 2007, 2:20:57 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/geospatial_data/geospatial_data.py
r4661 r4663 130 130 self.geo_reference=None #create the attribute 131 131 self.file_name = file_name 132 self.max_read_lines = max_read_lines 132 133 if max_read_lines is None: 134 self.max_read_lines = MAX_READ_LINES 135 else: 136 self.max_read_lines = max_read_lines 133 137 134 138 if file_name is None: … … 545 549 546 550 """ 547 write a points file, file_name, as a text (. xya) or binary (.pts) file551 write a points file, file_name, as a text (.csv) or binary (.pts) file 548 552 file_name is the file name, including the extension 549 553 The point_dict is defined at the top of this file. … … 715 719 716 720 # FIXME (Ole): Shouldn't this go into the constructor? 721 # This method acts like the constructor when blcoking. 717 722 # ... and shouldn't it be called block_size? 723 # 718 724 if self.max_read_lines is None: 719 725 self.max_read_lines = MAX_READ_LINES
Note: See TracChangeset
for help on using the changeset viewer.