diff --git a/radolan.go b/radolan.go
index ccc833938f2b40256f8a6766f1ad880d6683e055..3d39c18dede51317b99de153cb212b8cf1c832a2 100644
--- a/radolan.go
+++ b/radolan.go
@@ -51,9 +51,9 @@ import (
 // coordinate system of the composite by using the translation method:
 //	x, y := c.Translate(52.51861, 13.40833)	// Berlin (lat, lon)
 //
-//	rvp := c.At(x, y)			// Raw value (rvp-6)
-//	dbz := rvp.ToDBZ()			// Cloud reflectivity (dBZ)
-//	rat := dbz.PrecipitationRate()		// Rainfall rate (mm/h)
+//	rvp := c.At(int(x), int(y))				// Raw value (rvp-6)
+//	dbz := rvp.ToDBZ()					// Cloud reflectivity (dBZ)
+//	rat := dbz.PrecipitationRate(radolan.Doelling98)	// Rainfall rate (mm/h) using Doelling98 as Z-R relationship
 //
 //	fmt.Println("Rainfall in Berlin [mm/h]:", rat)
 //