| 194 | } |
| 195 | |
| 196 | void IcebridgeReader::initialize() |
| 197 | { |
| 198 | if (!m_metadataFile.empty() && !FileUtils::fileExists(m_metadataFile)) |
| 199 | { |
| 200 | throwError("Invalid metadata file: '" + m_metadataFile + "'"); |
| 201 | } |
| 202 | |
| 203 | // Data are WGS84 (4326) with ITRF2000 datum (6656) |
| 204 | // See http://nsidc.org/data/docs/daac/icebridge/ilvis2/index.html for |
| 205 | // background |
| 206 | setSpatialReference("EPSG:4326"); |
| 207 | } |
| 208 | |
| 209 | void IcebridgeReader::done(PointTableRef table) |
| 210 | { |
no test coverage detected