-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from edahelsinki/slipmap
Implement support for Slipmap and the latest Xiplot.
- Loading branch information
Showing
17 changed files
with
911 additions
and
303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,4 +169,4 @@ poetry.toml | |
*.sm | ||
*.tmp | ||
*.txt | ||
!*requitements*.txt | ||
*.sp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
""" | ||
Slisemap - Interactive: A Dash app for interactively visualising Slisemap objects | ||
================================================================================= | ||
"""Slisemap - Interactive: A Dash app for interactively visualising Slisemap objects. | ||
================================================================================= | ||
Use the `plot` function for non-blocking interactive plots in notebooks and interactive interpreters. | ||
In (non-Python) terminals you can call `slisemap_interactive` to start a standalone application. | ||
Finally, this package also integrates into χiplot as a plugin. | ||
Use the `plot` function for non-blocking interactive plots in notebooks and interactive interpreters. | ||
In (non-Python) terminals you can call `slisemap_interactive` to start a standalone application. | ||
Finally, this package also integrates into χiplot as a plugin. | ||
Relevant links: | ||
--------------- | ||
Relevant links: | ||
--------------- | ||
- [GitHub repository](https://github.com/edahelsinki/slisemap_interactive) | ||
- [Slisemap](https://github.com/edahelsinki/slisemap) | ||
- [χiplot](https://github.com/edahelsinki/xiplot) | ||
- [Dash](https://dash.plotly.com/) | ||
""" | ||
- [GitHub repository](https://github.com/edahelsinki/slisemap_interactive) | ||
- [Slisemap](https://github.com/edahelsinki/slisemap) | ||
- [χiplot](https://github.com/edahelsinki/xiplot) | ||
- [Dash](https://dash.plotly.com/) | ||
""" # noqa: D205 | ||
|
||
from slisemap_interactive.app import plot, shutdown, BackgroundApp, ForegroundApp | ||
from slisemap_interactive.load import load, slisemap_to_dataframe | ||
|
||
|
||
def __version__(): | ||
from importlib.metadata import version | ||
|
||
return version("slisemap_interactive") | ||
from slisemap_interactive.app import ( # noqa: F401 | ||
BackgroundApp, | ||
ForegroundApp, | ||
plot, | ||
shutdown, | ||
) | ||
from slisemap_interactive.load import ( # noqa: F401 | ||
load, | ||
slipmap_to_dataframe, | ||
slisemap_to_dataframe, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.