| 126 | |
| 127 | |
| 128 | void Ilvis2Reader::initialize(PointTableRef) |
| 129 | { |
| 130 | if (!m_metadataFile.empty() && !FileUtils::fileExists(m_metadataFile)) |
| 131 | throwError("Invalid metadata file: '" + m_metadataFile + "'"); |
| 132 | |
| 133 | // Data are WGS84 (4326) with ITRF2000 datum (6656) |
| 134 | // See http://nsidc.org/data/docs/daac/icebridge/ilvis2/index.html for |
| 135 | // background |
| 136 | setSpatialReference("EPSG:4326"); |
| 137 | } |
| 138 | |
| 139 | |
| 140 | template <typename T> |
nothing calls this directly
no test coverage detected