22 |
from base import TitledObject, Modifiable |
from base import TitledObject, Modifiable |
23 |
from map import Map |
from map import Map |
24 |
from data import ShapefileStore |
from data import ShapefileStore |
25 |
|
from table import DBFTable |
26 |
|
|
27 |
from transientdb import TransientDatabase, AutoTransientTable |
from transientdb import TransientDatabase, AutoTransientTable |
28 |
|
|
240 |
raise ValueError |
raise ValueError |
241 |
self.tables = tables |
self.tables = tables |
242 |
|
|
243 |
|
def OpenTableFile(self, filename): |
244 |
|
"""Open the table file filename and return the table object. |
245 |
|
|
246 |
|
The filename argument must be the name of a DBF file. |
247 |
|
""" |
248 |
|
return self.AddTable(DBFTable(filename)) |
249 |
|
|
250 |
def temp_directory(self): |
def temp_directory(self): |
251 |
""" |
""" |
252 |
Return the name of the directory for session specific temporary files |
Return the name of the directory for session specific temporary files |