JCSDA-internal / eva

Evaluation and Verification of the Analysis
Apache License 2.0
5 stars 12 forks source link

Unable to adjust the marker size for map scatter #193

Open guillaumevernieres opened 4 months ago

guillaumevernieres commented 4 months ago

In https://github.com/JCSDA-internal/eva/blob/d60260f5aee0c851b43338a983c5789c5dc04641/src/eva/plotting/batch/hvplot/diagnostics/hvplot_map_scatter.py#L44

this

                           s=int(marker_size)+3, xlabel='Longitude',

doesn't seem correct and should be something like

                           s=marker_size, xlabel='Longitude',

where marker_size is a float.