# HG changeset patch # User Sascha L. Teichmann # Date 1548347726 -3600 # Node ID 213f79fde44ac4d63beb6808c5471b31c2ca9555 # Parent aa74466feaa8d5a96361a850e6539208e6a5650e Moved fairway dimension import to imports file. diff -r aa74466feaa8 -r 213f79fde44a pkg/models/fd.go --- a/pkg/models/fd.go Thu Jan 24 17:33:37 2019 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -// 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 by via donau -// – Österreichische Wasserstraßen-Gesellschaft mbH -// Software engineering by Intevation GmbH -// -// Author(s): -// * Raimund Renkert - -package models - -import "gemma.intevation.de/gemma/pkg/common" - -type ( - // FairwayDimensionImport specifies an import of the waterway axis. - FairwayDimensionImport struct { - // URL is the capabilities URL of the WFS. - URL string `json:"url"` - // FeatureType is the layer to use. - FeatureType string `json:"feature-type"` - // SortBy sorts the feature by this key. - SortBy string `json:"sort-by"` - // SendEmail is set to true if an email should be send after - // importing the axis. - SendEmail bool `json:"send-email"` - // LOS is the level of service provided by the wfs - LOS int `json:"los"` - // MinWidth is the minimum width of the fairway for the specified LOS - MinWidth int `json:"min-width"` - // MaxWidth is the maximum width of the fairway for the specified LOS - MaxWidth int `json:"max-width"` - // Depth is the minimum depth of the fairway for the specified LOS - Depth int `json:"depth"` - // SourceOrganization specifies the source of the entry - SourceOrganization string `json:"source-organization"` - // Attributes are optional attributes. - Attributes common.Attributes `json:"attributes,omitempty"` - } -) diff -r aa74466feaa8 -r 213f79fde44a pkg/models/imports.go --- a/pkg/models/imports.go Thu Jan 24 17:33:37 2019 +0100 +++ b/pkg/models/imports.go Thu Jan 24 17:35:26 2019 +0100 @@ -91,4 +91,29 @@ // Attributes are optional attributes. Attributes common.Attributes `json:"attributes,omitempty"` } + + // FairwayDimensionImport specifies an import of the waterway axis. + FairwayDimensionImport struct { + // URL is the capabilities URL of the WFS. + URL string `json:"url"` + // FeatureType is the layer to use. + FeatureType string `json:"feature-type"` + // SortBy sorts the feature by this key. + SortBy string `json:"sort-by"` + // SendEmail is set to true if an email should be send after + // importing the axis. + SendEmail bool `json:"send-email"` + // LOS is the level of service provided by the wfs + LOS int `json:"los"` + // MinWidth is the minimum width of the fairway for the specified LOS + MinWidth int `json:"min-width"` + // MaxWidth is the maximum width of the fairway for the specified LOS + MaxWidth int `json:"max-width"` + // Depth is the minimum depth of the fairway for the specified LOS + Depth int `json:"depth"` + // SourceOrganization specifies the source of the entry + SourceOrganization string `json:"source-organization"` + // Attributes are optional attributes. + Attributes common.Attributes `json:"attributes,omitempty"` + } )