-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ✨ Implement WCS and 2 axis FoV recovery * 📝 Add new notebook example for wcs and ov recovery * 📝 Update changelog * ✨ Add support for cooFrameChanged event to update the WCS * ✏️ Fix typo Co-authored-by: Manon Marchand <[email protected]> * 🎨 Add error raising when recovering the WSC in the same cell that an update * 🚑 Fix wrong _wcs traitlets assignation * 🎨 Rename example 11 * ⬆️ Update Aladin Lite from 3.4.1-beta to 3.4.4-beta * ✨ Add missing events that impact WCS and FoV * maint: prepare release 0.4.0 fix: A.line was removed from public AL API in favor of A.vector * ✨ Add layerChanged listener for future AL version * maint: prepare release 0.4.0 fix: A.line was removed from public AL API in favor of A.vector * ⬆️ Bump Aladin Lite to 3.4.5-beta * ✨ Convert height to property to change the WCS on height updates * 🥅 Add custom WidgetCommunicationError * refactor: create a utils submodule * ✨ Add support for multiple Aladin Lite instances Data will be exported from the last created one * maint: sort imports * fix: avoid most getElementById calls * fix: don't empty fov_xy if fov does not change * docs: edit info extractions * fix: only parse string once * docs: add paragraph on limitations --------- Co-authored-by: Manon Marchand <[email protected]>
- Loading branch information
1 parent
a68bde6
commit 75925c3
Showing
15 changed files
with
548 additions
and
32 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,3 +1,3 @@ | ||
import A from "https://esm.sh/[email protected].4-beta"; | ||
import A from "https://esm.sh/[email protected].5-beta"; | ||
|
||
export default A; |
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
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
Empty file.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class WidgetCommunicationError(OSError): | ||
"""Error raised when there is a communication error with the widget.""" | ||
|
||
def __init__(self, message: str) -> None: | ||
self.message = message | ||
super(WidgetCommunicationError, self).__init__(message) |
File renamed without changes.
Oops, something went wrong.