| 61 | |
| 62 | template <class T, OGRwkbGeometryType R> |
| 63 | MultiLineString MultiLineString::intersection(const Geometry<T, R>& g) const { |
| 64 | auto inter = this->data_->Intersection(g.get()); |
| 65 | f2c::types::MultiLineString lines(inter); |
| 66 | OGRGeometryFactory::destroyGeometry(inter); |
| 67 | return lines; |
| 68 | } |
| 69 | |
| 70 | |
| 71 | template <class T, OGRwkbGeometryType R> |