view pkg/models/surveys.go @ 2149:ed0ee54fc49e

Extend /surveys endpoint to include waterlevel_value * Change SQL to use the same strategy as used in schema/gemma.sql for bottlenecks_geoserver to determine the waterlevel_value. * Extend go controler to deal with the situation where the value is not there. This is still suboptimal as this creates a json object for the NullInt64 value.
author Bernhard Reiter <bernhard@intevation.de>
date Fri, 08 Feb 2019 11:26:05 +0100
parents 7267f8168176
children 8132434f4093
line wrap: on
line source

// This is Free Software under GNU Affero General Public License v >= 3.0
// without warranty, see README.md and license for details.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// License-Filename: LICENSES/AGPL-3.0.txt
//
// Copyright (C) 2018, 2019 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Sascha Wilde <sascha.wilde@intevation.de>

package models

import (
	"database/sql"
)

type (
	Survey struct {
		BottleneckID    string        `json:"bottleneck_id"`
		DateInfo        string        `json:"date_info"`
		DepthReference  string        `json:"depth_reference"`
		ReferenceGauge  string        `json:"gauge_objname"`
		WaterLevelValue sql.NullInt64 `json:"waterlevel_value"`
	}
)