You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2023/08/29 21:49:19 UTC

[incubator-sdap-nexusproto] branch SDAP-486 updated: SDAP-486: Renamed tile Z-axis dimension to 'elevation' from 'depth'

This is an automated email from the ASF dual-hosted git repository.

rkk pushed a commit to branch SDAP-486
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexusproto.git


The following commit(s) were added to refs/heads/SDAP-486 by this push:
     new 76787f1  SDAP-486: Renamed tile Z-axis dimension to 'elevation' from 'depth'
76787f1 is described below

commit 76787f1320762bd403bbab4b95d7a2db351ef0d1
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Tue Aug 29 14:48:58 2023 -0700

    SDAP-486: Renamed tile Z-axis dimension to 'elevation' from 'depth'
---
 CHANGELOG.md                  |  1 +
 src/main/proto/DataTile.proto | 16 ++++++++--------
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd47f03..1865f3e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ### Added
 ### Changed
 - SDAP-469: Changed tile depth fields to reflect a range of depths for a given tile (min & max).
+- SDAP-486: Renamed tile Z-axis dimension to 'elevation' from 'depth' to standardize how Z-axis is treated in SDAP.
 ### Deprecated
 ### Removed
 ### Fixed
diff --git a/src/main/proto/DataTile.proto b/src/main/proto/DataTile.proto
index 9e29c48..7494a2a 100644
--- a/src/main/proto/DataTile.proto
+++ b/src/main/proto/DataTile.proto
@@ -47,8 +47,8 @@ message GridTile{
 
     repeated MetaData meta_data = 5;
 
-    float min_depth = 6;
-    float max_depth = 7;
+    float min_elevation = 6;
+    float max_elevation = 7;
 
 }
 
@@ -63,8 +63,8 @@ message GridMultiVariableTile{
 
     repeated MetaData meta_data = 5;
 
-    float min_depth = 6;
-    float max_depth = 7;
+    float min_elevation = 6;
+    float max_elevation = 7;
 
 }
 
@@ -78,8 +78,8 @@ message SwathTile{
 
     repeated MetaData meta_data = 5;
 
-    float min_depth = 6;
-    float max_depth = 7;
+    float min_elevation = 6;
+    float max_elevation = 7;
 
 }
 
@@ -93,8 +93,8 @@ message SwathMultiVariableTile{
 
     repeated MetaData meta_data = 5;
 
-    float min_depth = 6;
-    float max_depth = 7;
+    float min_elevation = 6;
+    float max_elevation = 7;
 
 }