| 80 | bool spatialReferenceUnique() const |
| 81 | { return m_spatialRefs.size() <= 1; } |
| 82 | SpatialReference spatialReference() const |
| 83 | { |
| 84 | return spatialReferenceUnique() ? anySpatialReference() : |
| 85 | SpatialReference(); |
| 86 | } |
| 87 | SpatialReference anySpatialReference() const |
| 88 | { |
| 89 | return m_spatialRefs.size() ? |
nothing calls this directly
no test coverage detected