Skip to content

Commit

Permalink
Merge pull request #1812 from daniel-riehm/dev/md-map-csv-column-typos
Browse files Browse the repository at this point in the history
Fix typos in metadata CSV column names
  • Loading branch information
daniel-riehm authored Dec 15, 2023
2 parents 08dada2 + b1744e1 commit c5201ec
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 c5201ec

Please sign in to comment.