Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Jonny Schäfer
radolan
Commits
895288f3
Commit
895288f3
authored
May 04, 2017
by
Jonny Schäfer
Browse files
Fix example in documentation
parent
d9f8decb
Changes
1
Hide whitespace changes
Inline
Side-by-side
radolan.go
View file @
895288f3
...
@@ -51,9 +51,9 @@ import (
...
@@ -51,9 +51,9 @@ import (
// coordinate system of the composite by using the translation method:
// coordinate system of the composite by using the translation method:
// x, y := c.Translate(52.51861, 13.40833) // Berlin (lat, lon)
// x, y := c.Translate(52.51861, 13.40833) // Berlin (lat, lon)
//
//
// rvp := c.At(
x, y)
// Raw value (rvp-6)
// rvp := c.At(
int(x), int(y))
// Raw value (rvp-6)
// dbz := rvp.ToDBZ() // Cloud reflectivity (dBZ)
// dbz := rvp.ToDBZ()
// Cloud reflectivity (dBZ)
// rat := dbz.PrecipitationRate()
// Rainfall rate (mm/h)
// rat := dbz.PrecipitationRate(
radolan.Doelling98
) // Rainfall rate (mm/h)
using Doelling98 as Z-R relationship
//
//
// fmt.Println("Rainfall in Berlin [mm/h]:", rat)
// fmt.Println("Rainfall in Berlin [mm/h]:", rat)
//
//
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment