Skip to content

Commit

Permalink
Fix typos in metadata CSV column names
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-riehm committed Dec 7, 2023
1 parent e4a4d76 commit b1744e1
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions arrows/core/metadata_map_io_csv.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,20 @@ special_column_names()
{ { kv::VITAL_META_SENSOR_LOCATION, 2 },
"Sensor Geodetic Altitude (meters)" },

{ { kv::VITAL_META_FRAME_CENTER, 0 },
{ { kv::VITAL_META_TARGET_LOCATION, 0 },
"Target Geodetic Location Longitude (EPSG:4326)" },
{ { kv::VITAL_META_FRAME_CENTER, 1 },
{ { kv::VITAL_META_TARGET_LOCATION, 1 },
"Target Geodetic Location Latitude (EPSG:4326)" },
{ { kv::VITAL_META_FRAME_CENTER, 2 },
{ { kv::VITAL_META_TARGET_LOCATION, 2 },
"Target Geodetic Location Altitude (meters)" },

{ { kv::VITAL_META_FRAME_CENTER, 0 },
"Geodetic Frame Center Longitude (EPSG:4326)" },
{ { kv::VITAL_META_FRAME_CENTER, 1 },
"Geodetic Frame Center Longitude (EPSG:4326)" },
{ { kv::VITAL_META_FRAME_CENTER, 2 },
"Geodetic Frame Center Altitude (meters)" },

{ { kv::VITAL_META_CORNER_POINTS, 0 },
"Upper Left Corner Longitude (EPSG:4326)" },
{ { kv::VITAL_META_CORNER_POINTS, 1 },
Expand Down

0 comments on commit b1744e1

Please sign in to comment.