From ba6a368d961c3f5d991ebab9f4f29b3c823e177a Mon Sep 17 00:00:00 2001 From: Howard Soh Date: Thu, 31 Aug 2023 10:36:52 -0600 Subject: [PATCH] #2640 Added nlocs to metadata_map --- data/config/IODA2NCConfig_default | 3 ++- docs/Users_Guide/reformat_point.rst | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/data/config/IODA2NCConfig_default b/data/config/IODA2NCConfig_default index 071a846374..f2c6d215f6 100644 --- a/data/config/IODA2NCConfig_default +++ b/data/config/IODA2NCConfig_default @@ -93,7 +93,8 @@ metadata_map = [ { key = "pressure"; val = "air_pressure,pressure"; }, { key = "height"; val = "height,height_above_mean_sea_level"; }, { key = "datetime"; val = "datetime,dateTime"; }, - { key = "elevation"; val = "elevation,station_elevation"; } + { key = "elevation"; val = "elevation,station_elevation"; }, + { key = "nlocs"; val = "Location"; } ]; // diff --git a/docs/Users_Guide/reformat_point.rst b/docs/Users_Guide/reformat_point.rst index 809639c249..b7738a120e 100644 --- a/docs/Users_Guide/reformat_point.rst +++ b/docs/Users_Guide/reformat_point.rst @@ -975,10 +975,12 @@ _____________________ { key = "station_id"; val = "station_id,report_identifier"; }, { key = "pressure"; val = "air_pressure,pressure"; }, { key = "height"; val = "height,height_above_mean_sea_level"; }, - { key = "elevation"; val = "elevation,station_elevation"; } + { key = "elevation"; val = "elevation,station_elevation"; }, + { key = "nlocs"; val = "Location"; } ]; This entry is an array of dictionaries, each containing a **key** string and **val** string which define a mapping of metadata for IODA data files. +The "nlocs" is for the dimension name of the locations. The following key can be added: "nstring", "latitude" and "longitude". _____________________