From 1fd236eff8e31047d30ccfbd94bd329d861f8d4d Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期五, 25 八月 2023 16:29:22 +0800
Subject: [PATCH] 添加读取栅格信息功能

---
 src/main/java/com/moon/server/entity/data/MetaFileEntity.java |  120 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 120 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/moon/server/entity/data/MetaFileEntity.java b/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
index b8c8473..fad6842 100644
--- a/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
+++ b/src/main/java/com/moon/server/entity/data/MetaFileEntity.java
@@ -50,6 +50,30 @@
 
     private String xlsPath;
 
+    private String geom;
+
+    private String sensortype;
+
+    private Timestamp acqTime;
+
+    private String resolution;
+
+    private String gridsize;
+
+    private String coorSys;
+
+    private String epsg;
+
+    private String hDatum;
+
+    private String mataType;
+
+    private String bands;
+
+    private String bandType;
+
+    private String ct;
+
     public String getEventid() {
         return eventid;
     }
@@ -209,4 +233,100 @@
     public void setXlsPath(String xlsPath) {
         this.xlsPath = xlsPath;
     }
+
+    public String getGeom() {
+        return geom;
+    }
+
+    public void setGeom(String geom) {
+        this.geom = geom;
+    }
+
+    public String getSensortype() {
+        return sensortype;
+    }
+
+    public void setSensortype(String sensortype) {
+        this.sensortype = sensortype;
+    }
+
+    public Timestamp getAcqTime() {
+        return acqTime;
+    }
+
+    public void setAcqTime(Timestamp acqTime) {
+        this.acqTime = acqTime;
+    }
+
+    public String getResolution() {
+        return resolution;
+    }
+
+    public void setResolution(String resolution) {
+        this.resolution = resolution;
+    }
+
+    public String getGridsize() {
+        return gridsize;
+    }
+
+    public void setGridsize(String gridsize) {
+        this.gridsize = gridsize;
+    }
+
+    public String getCoorSys() {
+        return coorSys;
+    }
+
+    public void setCoorSys(String coorSys) {
+        this.coorSys = coorSys;
+    }
+
+    public String getEpsg() {
+        return epsg;
+    }
+
+    public void setEpsg(String epsg) {
+        this.epsg = epsg;
+    }
+
+    public String gethDatum() {
+        return hDatum;
+    }
+
+    public void sethDatum(String hDatum) {
+        this.hDatum = hDatum;
+    }
+
+    public String getMataType() {
+        return mataType;
+    }
+
+    public void setMataType(String mataType) {
+        this.mataType = mataType;
+    }
+
+    public String getBands() {
+        return bands;
+    }
+
+    public void setBands(String bands) {
+        this.bands = bands;
+    }
+
+    public String getBandType() {
+        return bandType;
+    }
+
+    public void setBandType(String bandType) {
+        this.bandType = bandType;
+    }
+
+    public String getCt() {
+        return ct;
+    }
+
+    public void setCt(String ct) {
+        this.ct = ct;
+    }
 }

--
Gitblit v1.9.3