comparison flys-backend/src/main/java/de/intevation/flys/importer/ImportBedHeightSingleValue.java @ 2808:b57c95094b68

Finished work on parsing meta information and data specific to single bed heights files in MINFO. flys-backend/trunk@4216 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 11 Apr 2012 13:12:52 +0000
parents
children f283212966e8
comparison
equal deleted inserted replaced
2807:5ac1db5156be 2808:b57c95094b68
1 package de.intevation.flys.importer;
2
3 import java.math.BigDecimal;
4
5
6 public class ImportBedHeightSingleValue {
7
8 protected ImportBedHeightSingle bedHeight;
9
10 protected BigDecimal station;
11 protected BigDecimal height;
12 protected BigDecimal uncertainty;
13 protected BigDecimal dataGap;
14 protected BigDecimal soundingWidth;
15 protected BigDecimal width;
16
17
18 public ImportBedHeightSingleValue(
19 ImportBedHeightSingle bedHeight,
20 BigDecimal station,
21 BigDecimal height,
22 BigDecimal uncertainty,
23 BigDecimal dataGap,
24 BigDecimal soundingWidth,
25 BigDecimal width
26 ) {
27 this.bedHeight = bedHeight;
28 this.station = station;
29 this.height = height;
30 this.uncertainty = uncertainty;
31 this.dataGap = dataGap;
32 this.soundingWidth = soundingWidth;
33 this.width = width;
34 }
35 }
36 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org