Releases: raphaelquast/EOmaps
Releases · raphaelquast/EOmaps
EOmaps v0.1.5
fixes
- fix #16 (e.g. install issues with VERSION file)
- fix issues when coordinates are provided as integer-arrays and radius is estimated as float
- execute callbacks only if point is identified
EOmaps v0.1.4
fixes
- there were some issues when specifying
"radius_crs"
in conjunction with"cpos"
that are fixed now"radius_crs"
can be one of"in"
,"out"
or any crs-specification recognized bypyproj
"cpos"
can be one of"c"
,"ul"
,"ur"
,"ll"
,"lr"
- fix typo in README:
xcoord="lon"
andycoord="lat"
- use explicit "VERSION" file to specify module-version in one place
EOmaps v0.1.3
new
trimesh_rectangles
has been added as a possible plot-shape (e.g.m.set_plot_specs(shape="trimesh_rectangles")
(it uses a triangular mesh for plotting which is useful for contour-plots since pixel-boundaries are invisible)- option to copy the data with
m.copy(copy_data=True)
has been added
fixes
- copy now performs a deep-copy of all properties
- make
geopandas
an optional import (basic functions do not require geopandas) - add
pyepsg
as dependency - use
xcoord
andycoord
as labels for annotations - cleanup callbacks if figure is closed
EOmaps v0.1.2
new
add_marker()
function added to manually add markersadd_annotations()
function added to manually add annotations- annotate can now be used on multiple buttons
- add
text
argument tom.cb.annotate
to manually specify the text - add
m.cb.clear_annotations()
function to delete annotations - add
savefig
function to save the image
fixes
- fix permanent annotations
-
- more fixes + more unittests
EOmaps v0.1.1
new
- allow multiple callbacks of the same function (using different mouse-button assignments)
- add option to make annotations permanent
m.cb.annotate(... , permanent=True)
- add option to format annotation display via
m.cb.annotate(..., val_fmt=<callable>)
- add
m.cb.mark
callback (e.g. to overlay markers around selected points) - all callback-returns are now accessible via
m.cb...
- add
m.cb.cb_list
(e.g. a hardcoded list of available callback functions)
fixes
- better fetching of background for blitting (now also works with multiple callbacks)
EOmaps v0.1
This is a first (beta) release... use with care!