PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ __init__()

rtreader.RasterReader.__init__ (   self,
  connstr,
  table,
  column,
  where = "" 
)

Definition at line 48 of file rtreader.py.

48 def __init__(self, connstr, table, column, where = ""):
49 self._connstr = connstr
50 self._conn = None
51 self._table = table
52 self._column = column
53 self._where = where
54 self._sizes = None
55 self._types = None
56 self._logging = False
57 # Connect and read RASTER header
58 self._setup()
59