From c5c6927def58d95a2300abe57cf230b05fcfb4fb Mon Sep 17 00:00:00 2001 From: "John R. Leeman" Date: Mon, 13 Jan 2020 11:05:52 -0500 Subject: [PATCH] Clarify documentation on layers traits. --- src/metpy/plots/declarative.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/metpy/plots/declarative.py b/src/metpy/plots/declarative.py index 28813758597..a63260d2c43 100644 --- a/src/metpy/plots/declarative.py +++ b/src/metpy/plots/declarative.py @@ -630,12 +630,12 @@ class MapPanel(Panel): layers = List(Union([Unicode(), Instance('cartopy.feature.Feature')]), default_value=['coastline']) - layers.__doc__ = """A string for a pre-defined feature layer or a Cartopy Feature object. + layers.__doc__ = """A list of strings for a pre-defined feature layer or a Cartopy Feature object. Like the projection, there are a couple of pre-defined feature layers that can be called using a short name. The pre-defined layers are: 'coastline', 'states', 'borders', 'lakes', - 'land', 'ocean', 'rivers', 'usstates', and 'uscounties'. Additionally, this trait can be - set using a Cartopy Feature object. + 'land', 'ocean', 'rivers', 'usstates', and 'uscounties'. Additionally, this can accept + Cartopy Feature objects. """ title = Unicode()