From 33b37d3025717664f360fedbda578f6b1603fe7a Mon Sep 17 00:00:00 2001 From: TatianaBurek Date: Mon, 27 Feb 2023 14:56:13 -0700 Subject: [PATCH] add more plotly markers #240 --- metplotpy/plots/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metplotpy/plots/constants.py b/metplotpy/plots/constants.py index 2b9e09bc..2c8fb35c 100644 --- a/metplotpy/plots/constants.py +++ b/metplotpy/plots/constants.py @@ -62,9 +62,9 @@ AVAILABLE_MARKERS_LIST = ["o", "^", "s", "d", "H", ".", "h"] -AVAILABLE_PLOTLY_MARKERS_LIST = ["open-circle", "circle", +AVAILABLE_PLOTLY_MARKERS_LIST = ["circle-open", "circle", "square", "diamond", - "hexagon", "triangle-up"] + "hexagon", "triangle-up", "asterisk-open"] PCH_TO_MATPLOTLIB_MARKER = {'20': '.', '19': 'o', '17': '^', '1': 'H', '18': 'd', '15': 's', 'small circle': '.',