From 27600ad4172afad2aaecf46a314b5483d02e2520 Mon Sep 17 00:00:00 2001 From: Daniel Kirkham Date: Tue, 13 Jun 2017 10:18:30 +0100 Subject: [PATCH] Refer to coordinate system in docstrings --- lib/iris/coords.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/iris/coords.py b/lib/iris/coords.py index d948e34c58..683e645df2 100644 --- a/lib/iris/coords.py +++ b/lib/iris/coords.py @@ -430,7 +430,8 @@ def __init__(self, points, standard_name=None, long_name=None, * attributes A dictionary containing other cf and user-defined attributes. * coord_system - A :class:`~iris.coord_systems.CoordSystem`, + A :class:`~iris.coord_systems.CoordSystem` representing the + coordinate system of the coordinate, e.g. a :class:`~iris.coord_systems.GeogCS` for a longitude Coord. """ @@ -450,7 +451,7 @@ def __init__(self, points, standard_name=None, long_name=None, #: have no meaning to Iris. self.attributes = attributes - #: Relevant CoordSystem (if any). + #: Relevant coordinate system (if any). self.coord_system = coord_system self.points = points