| 44 | == Ellipsoidal Heights == |
| 45 | |
| 46 | One way of describing elevations is relative to an ellipsoid rather than to a more specialized vertical datum. The 1.0 GeoTIFF specification ( [http://www.remotesensing.org/geotiff/spec/geotiff6.html#6.3.4.1 section 6.3.4.1) listed ellipsoidal VertCS values in the range 5000 to 5033; however, those do not appear to have any corresponding definitions in modern EPSG databases. I am currently taking the position that it those should therefore be disregarded. |
| 47 | |
| 48 | Instead I propose that we just treat ellipsoidal heights by not specifying any VerticalCSTypeGeoKey code and letting the ellipsoid be determined from the ProjectedCSTypeGeoKey, !GeographicTypeGeoKey or !GeogEllipsoidGeoKey. Thus a GeoTIFF defined as follows would be assumed to have ellevations in meters relative to the WGS84 ellipsoid. |
| 49 | |
| 50 | {{{ |
| 51 | Keyed_Information: |
| 52 | GTModelTypeGeoKey (Short,1): ModelTypeGeographic |
| 53 | GTRasterTypeGeoKey (Short,1): RasterPixelIsArea |
| 54 | GeographicTypeGeoKey (Short,1): GCS_WGS_84 |
| 55 | GeogCitationGeoKey (Ascii,7): "WGS 84" |
| 56 | End_Of_Keys. |
| 57 | }}} |
| 58 | |
| 59 | |