Return a Python `time` object for this OFTTime field.
(self)
| 200 | class OFTTime(Field): |
| 201 | @property |
| 202 | def value(self): |
| 203 | "Return a Python `time` object for this OFTTime field." |
| 204 | try: |
| 205 | yy, mm, dd, hh, mn, ss, tz = self.as_datetime() |
| 206 | return time(hh.value, mn.value, ss.value) |
| 207 | except (ValueError, GDALException): |
| 208 | return None |
| 209 | |
| 210 | |
| 211 | class OFTInteger64(OFTInteger): |
nothing calls this directly
no test coverage detected