-
Notifications
You must be signed in to change notification settings - Fork 9
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 #269 from DHI/matching-refactor
More work on internal data structures
- Loading branch information
Showing
46 changed files
with
6,079 additions
and
2,353 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"""The `comparison` module contains different types of comparer classes for | ||
fixed locations (PointComparer), or locations moving in space (TrackComparer). | ||
"""The `comparison` module contains different types of classes for single | ||
observation comparison (Comparer), and collections of Comparers (ComparerCollection). | ||
""" | ||
from ._comparison import Comparer, PointComparer, TrackComparer | ||
from ._comparison import Comparer | ||
from ._collection import ComparerCollection | ||
|
||
__all__ = ["Comparer", "PointComparer", "TrackComparer", "ComparerCollection"] | ||
__all__ = ["Comparer", "ComparerCollection"] |
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.