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 2c1e803  SDAP-229: Ecco support (#5)
2c1e803 is described below

commit 2c1e8033c0fef287f74f5f0f8494536e5b0a7b45
Author: Eamon Ford <[email protected]>
AuthorDate: Tue Mar 24 17:00:34 2020 -0700

    SDAP-229: Ecco support (#5)
    
    * SDAP-229: Add support for ECCO native grid tiles
    
    * only add support for depth and ecco tile for now
    
    * use float for depth attribute
    
    Co-authored-by: echyam <[email protected]>
    Co-authored-by: echyam <[email protected]>
---
 src/main/proto/DataTile.proto | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/src/main/proto/DataTile.proto b/src/main/proto/DataTile.proto
index 6d56b99..82cb178 100644
--- a/src/main/proto/DataTile.proto
+++ b/src/main/proto/DataTile.proto
@@ -19,6 +19,22 @@ package org.apache.sdap.nexusproto;
 option java_package = "org.apache.sdap.nexusproto";
 option java_multiple_files = true;
 
+message EccoTile{
+
+    ShapedArray latitude = 1;
+    ShapedArray longitude = 2;
+
+    int64 time = 3;
+
+    ShapedArray variable_data = 4;
+
+    repeated MetaData meta_data = 5;
+
+    float depth = 6;
+
+    int64 tile = 7;
+
+}
 
 message GridTile{
 
@@ -31,6 +47,8 @@ message GridTile{
 
     repeated MetaData meta_data = 5;
 
+    float depth = 6;
+
 }
 
 message SwathTile{
@@ -43,6 +61,8 @@ message SwathTile{
 
     repeated MetaData meta_data = 5;
 
+    float depth = 6;
+
 }
 
 message TimeSeriesTile{
@@ -56,6 +76,7 @@ message TimeSeriesTile{
 
     repeated MetaData meta_data = 5;
 
+    float depth = 6;
 }
 
 message MetaData{
@@ -107,6 +128,7 @@ message TileSummary{
         float variance = 10;
         float skewness = 11;
         float kurtosis = 12;
+
     }
     DataStats stats = 9;
 }
@@ -123,5 +145,6 @@ message TileData{
         GridTile grid_tile = 2;
         SwathTile swath_tile = 3;
         TimeSeriesTile time_series_tile = 4;
+        EccoTile ecco_tile = 5;
     }
 }
\ No newline at end of file

Reply via email to