Skip to content

0.3.1

Compare
Choose a tag to compare
@jgieseler jgieseler released this 03 Nov 13:58
· 127 commits to main since this release

What's Changed

  • Add new option markers to the plot to use a single letter for the body/spacecraft marker instead of numbers (e.g., "P" for Parker Solar Probe). Note that duplicate letters can occour. This option replaces the previous plot option numbered_markers. For now on, use either markers='letters' or markers='numbers' (or markers=False for the default square symbol). See the following example:

     from solarmach import SolarMACH
     body_list = ['Venus', 'Earth', 'Mars', 'STEREO A', 'Solar Orbiter', 'PSP', 'BepiColombo']
     date = '2021-6-1 12:00:00'
     sm = SolarMACH(date, body_list)
     sm.plot(markers='letters')

    image

Full Changelog: v0.3.0...v0.3.1