Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
skais
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Raphael Sturgis
skais
Merge requests
!13
Draft: Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Develop
develop
into
main
Overview
0
Commits
34
Pipelines
0
Changes
7
Open
Raphael Sturgis
requested to merge
develop
into
main
2 years ago
Overview
0
Commits
34
Pipelines
0
Changes
1
Expand
Improvements:
Normalization using AIS_Points now raise exception if given a bad dictionary
New features:
Added choosing fields for generating images for adding channels
Added centering of image on last point
Added chosing bounding box of image
Added selecting range of values for features
Edited
2 years ago
by
Raphael Sturgis
0
0
Merge request reports
Compare
version 8
version 14
4c9222b0
2 years ago
version 13
35d0e4a0
2 years ago
version 12
9487015c
2 years ago
version 11
af54ffde
2 years ago
version 10
6cb9469e
2 years ago
version 9
130241bf
2 years ago
version 8
5c4bf644
2 years ago
version 7
cf60707b
2 years ago
version 6
a7b3b586
2 years ago
version 5
5eb5aa7c
2 years ago
version 4
1a00f8f6
2 years ago
version 3
d5b3bb72
2 years ago
version 2
944ad87c
2 years ago
version 1
6481fb26
2 years ago
main (HEAD)
and
version 9
latest version
240ae0e0
34 commits,
2 years ago
version 14
4c9222b0
33 commits,
2 years ago
version 13
35d0e4a0
31 commits,
2 years ago
version 12
9487015c
30 commits,
2 years ago
version 11
af54ffde
28 commits,
2 years ago
version 10
6cb9469e
27 commits,
2 years ago
version 9
130241bf
26 commits,
2 years ago
version 8
5c4bf644
25 commits,
2 years ago
version 7
cf60707b
21 commits,
2 years ago
version 6
a7b3b586
19 commits,
2 years ago
version 5
5eb5aa7c
15 commits,
2 years ago
version 4
1a00f8f6
12 commits,
2 years ago
version 3
d5b3bb72
10 commits,
2 years ago
version 2
944ad87c
6 commits,
2 years ago
version 1
6481fb26
3 commits,
2 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
skais/ais/ais_trajectory.py
+
1
−
1
Options
@@ -88,7 +88,7 @@ def __get_bounding_box__(bounding_box, positions, ref_index):
upper_lon
=
center_lon
+
distance_to_center
lower_lon
=
center_lon
-
distance_to_center
elif
type
(
bounding_box
)
is
list
:
if
typ
e
(
bounding_box
[
0
]
)
is
not
numbers
.
Number
:
if
isinstanc
e
(
bounding_box
[
0
]
,
numbers
.
Number
)
:
upper_lon
=
bounding_box
[
1
][
0
]
lower_lon
=
bounding_box
[
0
][
0
]
upper_lat
=
bounding_box
[
1
][
1
]
Loading