Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.8.1 #4

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@



*__pycache__*
*pyc
8 changes: 0 additions & 8 deletions .spyproject/config/codestyle.ini

This file was deleted.

5 changes: 0 additions & 5 deletions .spyproject/config/defaults/defaults-codestyle-0.2.0.ini

This file was deleted.

3 changes: 0 additions & 3 deletions .spyproject/config/defaults/defaults-encoding-0.2.0.ini

This file was deleted.

4 changes: 0 additions & 4 deletions .spyproject/config/defaults/defaults-vcs-0.2.0.ini

This file was deleted.

6 changes: 0 additions & 6 deletions .spyproject/config/defaults/defaults-workspace-0.2.0.ini

This file was deleted.

6 changes: 0 additions & 6 deletions .spyproject/config/encoding.ini

This file was deleted.

7 changes: 0 additions & 7 deletions .spyproject/config/vcs.ini

This file was deleted.

12 changes: 0 additions & 12 deletions .spyproject/config/workspace.ini

This file was deleted.

24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
BSD-2-Clause License

Copyright (c) 2024, Niels Albrecht, CNRS

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
97 changes: 0 additions & 97 deletions README.txt

This file was deleted.

6 changes: 0 additions & 6 deletions bolt_estimator.egg-info/PKG-INFO

This file was deleted.

34 changes: 0 additions & 34 deletions bolt_estimator.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion bolt_estimator.egg-info/dependency_links.txt

This file was deleted.

1 change: 0 additions & 1 deletion bolt_estimator.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion bolt_estimator.egg-info/top_level.txt

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from scipy.spatial.transform import Rotation as R


from bolt_estimator.utils.Graphics import Graphics
from bolt_estimator.utils.Bolt_Utils import Log
from bolt_estimator.utils.graphics import Graphics
from bolt_estimator.utils.utils import Log

from bolt_estimator.data.DataImprover import improve
from bolt_estimator.utils.TrajectoryGenerator import TrajectoryGenerator, Metal
from bolt_estimator.data.data_improver import improve
from bolt_estimator.utils.trajectory_generator import TrajectoryGenerator, Metal


class DataReader():
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@



from bolt_estimator.utils.Graphics import Graphics
from bolt_estimator.utils.Bolt_Utils import Log
from bolt_estimator.utils.graphics import Graphics
from bolt_estimator.utils.utils import Log

from bolt_estimator.data.DataImprover import improve
from bolt_estimator.utils.TrajectoryGenerator import TrajectoryGenerator, Metal
from bolt_estimator.data.data_improver import improve
from bolt_estimator.utils.trajectory_generator import TrajectoryGenerator, Metal


class DataReader():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from scipy.spatial.transform import Rotation as R


from bolt_estimator.utils.Graphics import Graphics
from bolt_estimator.utils.Bolt_Utils import Log
from bolt_estimator.utils.graphics import Graphics
from bolt_estimator.utils.utils import Log

from bolt_estimator.data.DataImprover import improve
from bolt_estimator.utils.TrajectoryGenerator import TrajectoryGenerator, Metal
from bolt_estimator.data.data_improver import improve
from bolt_estimator.utils.trajectory_generator import TrajectoryGenerator, Metal


class DataReader():
Expand Down
Loading