(self, geoCursor)
| 57 | return 1 |
| 58 | |
| 59 | def value(self, geoCursor): |
| 60 | bounds = range(6) |
| 61 | geoCursor.GetBounds( bounds ) |
| 62 | return self.test( |
| 63 | bounds[0]+(bounds[1]-bounds[0])/2, |
| 64 | bounds[2]+(bounds[3]-bounds[2])/2, |
| 65 | bounds[4]+(bounds[5]-bounds[4])/2) |
| 66 | |
| 67 | def shouldRefine(self, geoCursor): |
| 68 | if geoCursor.GetLevel() >= TARGET_LEVEL: |
no test coverage detected