You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by nc...@apache.org on 2023/07/12 23:39:39 UTC

[incubator-sdap-nexusproto] branch master updated: SDAP-469 - Add support for 3rd tile dimension (#16)

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

nchung 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 ca1b2c7  SDAP-469 - Add support for 3rd tile dimension (#16)
ca1b2c7 is described below

commit ca1b2c7398914b55ac55949e03617f0849259e2e
Author: Riley Kuttruff <72...@users.noreply.github.com>
AuthorDate: Wed Jul 12 16:39:35 2023 -0700

    SDAP-469 - Add support for 3rd tile dimension (#16)
    
    * SDAP-469 - Updated tiles to have min/max depth
    
    * Created a changelog for nexusproto
    
    * Added misc backend time metrics record field in NCSH
    
    ---------
    
    Co-authored-by: rileykk <ri...@jpl.nasa.gov>
---
 CHANGELOG.md                  | 17 +++++++++++++++++
 src/main/proto/DataTile.proto | 12 ++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..dd47f03
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,17 @@
+# Changelog
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+## Unreleased
+### Added
+### Changed
+- SDAP-469: Changed tile depth fields to reflect a range of depths for a given tile (min & max).
+### Deprecated
+### Removed
+### Fixed
+### Security
+
+## [1.0.0] - 2022-12-05
+*Initial release of Nexus tile protobuf spec*
\ No newline at end of file
diff --git a/src/main/proto/DataTile.proto b/src/main/proto/DataTile.proto
index ff0a8a7..9e29c48 100644
--- a/src/main/proto/DataTile.proto
+++ b/src/main/proto/DataTile.proto
@@ -47,7 +47,8 @@ message GridTile{
 
     repeated MetaData meta_data = 5;
 
-    float depth = 6;
+    float min_depth = 6;
+    float max_depth = 7;
 
 }
 
@@ -62,7 +63,8 @@ message GridMultiVariableTile{
 
     repeated MetaData meta_data = 5;
 
-    float depth = 6;
+    float min_depth = 6;
+    float max_depth = 7;
 
 }
 
@@ -76,7 +78,8 @@ message SwathTile{
 
     repeated MetaData meta_data = 5;
 
-    float depth = 6;
+    float min_depth = 6;
+    float max_depth = 7;
 
 }
 
@@ -90,7 +93,8 @@ message SwathMultiVariableTile{
 
     repeated MetaData meta_data = 5;
 
-    float depth = 6;
+    float min_depth = 6;
+    float max_depth = 7;
 
 }