⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 gps 软件接收机,用 c++ 语言实现
💻
字号:
#
# Copyright (C) 2003,2004 Krzysztof Kamieniecki (krys@kamieniecki.com)
#
# This file is part of kkGPS.
#
# kkGPS is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# kkGPS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with kkGPS; if not, write to the Free Software 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

IMPORTANT
  THIS IS A PROTOTYPE. THE CODE WILL CHANGE, FILES WILL BE REMOVED, CLASSES 
  WILL BE SLAUGHTERED.

BUILDING
To do a clean build of kkGPS
  $ make clean all
 
Only standard GNU C++ libraries are used

Currently the correlator type is selected in the makefile by uncommenting
the appropriate line in this block in makefile

        ##########################################
        #SELECT correlator type
        #uncomment next line for generic c++ correlator
        CORROBJ = gps_corr_generic.o
        #uncomment next line for SSE1 optimized correlator
        #CORROBJ = gps_corr_sse1.o
        #uncomment next line for G4 altivec optimized correlator
        #CORROBJ = gps_corr_g4_altivec.o
        ##########################################


EXECUTABLE FILES
The following executables will be generated

kkgps: 
  Runs the GPS receiver with a simulated set of six satellites. About
  42 seconds into the simulation the download of the Ephemeris data will 
  be completed and the output will change to display satellite and user 
  position information.
  
testunit:
  Tests a bunch of functions and classes as well as displaying 
  timing information for various critical routines (like the correlator)
  
testorbit: 
  Prints out 24 hours of position information for a satellite selected in
  testorbit.cpp

The following executables will not be generated by default

async_parse: 
  Used to parse data files generated by the ASYNC program[1]


MISCELLANEOUS

There are six files named 273673_{09,21,22,23,26,29}.txt these contain
one frame of the C/A navigation message from their respective satellites.
These were acquired using a GARMIN GPSmap76S and the ASYNC program[1]



[1] http://artico.lma.fi.upm.es/numerico/miembros/antonio/async/
    A program that downloads various types of raw data from GARMIN GPS 
    receivers.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -