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

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


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

commit ebc26a978c0979f1126f7806f0c1784f5c604687
Author: Riley Kuttruff <[email protected]>
AuthorDate: Fri Sep 1 07:26:58 2023 -0700

    SDAP-486: Renamed tile Z-axis dimension to 'elevation' from 'depth' (#18)
    
    Co-authored-by: rileykk <[email protected]>
---
 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;
 
 }
 

Reply via email to