Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gnss_utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
labrobotica
algorithms
gnss_utils
Merge requests
!10
Refactor: satellite, snapshot and tdcp
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Refactor: satellite, snapshot and tdcp
refactor-satellite-functions
into
devel
Overview
0
Commits
5
Pipelines
0
Changes
16
Merged
Joan Vallvé Navarro
requested to merge
refactor-satellite-functions
into
devel
5 years ago
Overview
0
Commits
5
Pipelines
0
Changes
16
Expand
0
0
Merge request reports
Compare
devel
version 1
7e96d5e9
5 years ago
devel (base)
and
latest version
latest version
c4b27862
5 commits,
5 years ago
version 1
7e96d5e9
4 commits,
5 years ago
16 files
+
948
−
673
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
include/gnss_utils/utils/sat
_position
.h
→
include/gnss_utils/utils/sat
ellite
.h
+
34
−
0
Options
@@ -10,20 +10,25 @@
#include
<eigen3/Eigen/Dense>
#include
<eigen3/Eigen/Geometry>
#include
<eigen3/Eigen/Sparse>
#include
"gnss_utils/observations.h"
#include
"gnss_utils/navigation.h"
#include
"gnss_utils/utils/transformations.h"
#include
"gnss_utils/gnss_utils.h"
#include
<set>
#include
<map>
namespace
GnssUtils
{
double
computeSatElevation
(
const
Eigen
::
Vector3d
&
receiver_ecef
,
const
Eigen
::
Vector3d
&
sat_ecef
);
// forward declarations
class
Observations
;
class
Navigation
;
typedef
std
::
map
<
int
,
Eigen
::
Vector3d
>
SatellitesPositions
;
double
computeSatElevation
(
const
Eigen
::
Vector3d
&
receiver_ecef
,
const
Eigen
::
Vector3d
&
sat_ecef
);
void
computeSatellitesPositions
(
const
Observations
&
obs
,
const
Navigation
&
nav
,
const
int
&
eph_opt
,
// see rtklib.h L396
std
::
map
<
int
,
Eigen
::
Vector3d
>&
sats_pos
);
void
computeSatellitesPositions
(
const
Observations
&
obs
,
const
Navigation
&
nav
,
const
prcopt_t
&
opt
,
std
::
map
<
int
,
Eigen
::
Vector3d
>&
sats_pos
);
}
// namespace GnssUtils
#endif // INCLUDE_GNSS_UTILS_UTILS_SAT_POSITION_H_
\ No newline at end of file
#endif // INCLUDE_GNSS_UTILS_UTILS_SAT_POSITION_H_
Loading