Initialize the C OGR Envelope structure from the given sequence.
(self, seq)
| 97 | return str(self.tuple) |
| 98 | |
| 99 | def _from_sequence(self, seq): |
| 100 | "Initialize the C OGR Envelope structure from the given sequence." |
| 101 | self._envelope = OGREnvelope() |
| 102 | self._envelope.MinX = seq[0] |
| 103 | self._envelope.MinY = seq[1] |
| 104 | self._envelope.MaxX = seq[2] |
| 105 | self._envelope.MaxY = seq[3] |
| 106 | |
| 107 | def expand_to_include(self, *args): |
| 108 | """ |