elliotchance/gedcom

View on GitHub
latitude_node.go

Summary

Maintainability
A
0 mins
Test Coverage
package gedcom

// LatitudeNode represents a value indicating a coordinate position on a line,
// plane, or space.
//
// New in Gedcom 5.5.1.
type LatitudeNode struct {
    *SimpleNode
}

// NewLatitudeNode creates a new LATI node.
func NewLatitudeNode(value string, children ...Node) *LatitudeNode {
    return &LatitudeNode{
        newSimpleNode(TagLatitude, value, "", children...),
    }
}