Get the spatial reference associated with a raster. \return Associated spatial reference. */
| 610 | \return Associated spatial reference. |
| 611 | */ |
| 612 | SpatialReference Raster::getSpatialRef() const |
| 613 | { |
| 614 | SpatialReference srs; |
| 615 | |
| 616 | if (m_ds) |
| 617 | srs = SpatialReference(m_ds->GetProjectionRef()); |
| 618 | return srs; |
| 619 | } |
| 620 | |
| 621 | |
| 622 | /** |