Skip to content

Commit

Permalink
1.1: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zvezdochiot committed Nov 29, 2022
1 parent 552a9f1 commit be3cd46
Show file tree
Hide file tree
Showing 20 changed files with 59 additions and 30 deletions.
54 changes: 31 additions & 23 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,39 @@
#---------------------------------------------------------
PGM = rnxqce
FC = gfortran
FFLAGS = -Wall
RM = rm
FCFLAGS = -Wall -Isrc -Jsrc
RM = rm -f
SRCS = \
f90/m_qc_multipath.f90 \
f90/m_qc_snr.f90 \
f90/m_rnxqce_frequency.f90 \
f90/m_rnxqce_rinexmodify.f90 \
f90/m_rnxqce_vertical_angel.f90 \
f90/m_qc_findlack.f90 \
f90/m_qc_slip.f90 \
f90/m_rnxqce_control.f90 \
f90/m_rnxqce_navread.f90 \
f90/m_rnxqce_rinexread.f90 \
f90/calculatesiteposition.f90 \
f90/clockbias.f90 \
f90/coordinate.f90 \
f90/earthrot.f90 \
f90/get_rnxqce_args.f90 \
f90/parameters.f90 \
f90/timetransform.f90 \
f90/rnxqce.f90
src/parameters.f90 \
src/m_rnxqce_control.f90 \
src/coordinate.f90 \
src/timetrans.f90 \
src/m_rnxqce_rinexread.f90 \
src/m_qc_findlack.f90 \
src/m_rnxqce_frequency.f90 \
src/m_qc_multipath.f90 \
src/m_qc_snr.f90 \
src/m_rnxqce_rinexmodify.f90 \
src/m_rnxqce_navread.f90 \
src/calculatesiteposition.f90 \
src/clockbias.f90 \
src/earthrot.f90 \
src/vertical_angle.f90 \
src/m_qc_slip.f90 \
src/get_rnxqce_args.f90 \
src/rnxqce.f90
OBJS = $(SRCS:%.f90=%.o)
MODS = $(SRCS:%.f90=%.mod)

#-------------------------------------
$(PGM): $(SRCS)
$(FC) $(FFLAGS) -o $@ $^

all: $(PGM)

$(PGM): $(OBJS)
$(FC) $(FCFLAGS) $^ -o $@

%.o : %.f90
$(FC) $(FCFLAGS) -c $< -o $@

clean:
$(RM) -f *.mod $(PGM)
$(RM) $(PGM) $(OBJS) $(MODS)
35 changes: 28 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,44 @@
# RNXQCE

## Description
RNXQCE is a comprehensive toolkit for solving many problems when preprocessing GNSS data.
As we all know, TEQC stopped updated after 2019-02-25.
Thus I make this software.
It can check quality for both RINEX 2 and RINEX 3.
If you have any problems or suggestions when using it, please get in touch with me.
My email address is 2016301610237@whu.edu.cn

RNXQCE is a comprehensive toolkit for solving many problems when preprocessing GNSS data.
As we all know, TEQC stopped updated after 2019-02-25.
Thus I make this software.
It can check quality for both RINEX 2 and RINEX 3.
If you have any problems or suggestions when using it, please get in touch with me.
My email address is 2016301610237@whu.edu.cn

## Build

```sh
make || make || make || make || make
make
```

## Usage

```sh
./rnxqce -rnxo bjfs1000.20o -qc -rnxn brdm100.20p -freq G12 C26 R12 E25 -cutoff 10
./rnxqce -rnxo bjfs1000.20o -mr -hd.ant TRM59800.00 -hd.rec TRIMBLE^NETR9 -hd.enu 0.0 0.0 0.0
```
## Options

`-rnxo` Observation file path, required

`-rnxn` ephemeris file path, required

`-qc -mr` `qc` stands for quality inspection, `mr` stands for file editing, there must be one of the two

`-freq` Select the signal to be processed, the default is `G12 C26 E15`

`-cutoff` Cutoff elevation angle, default is 10 degrees

`-hd.ant` Antenna type, used to change the file header

`-hd.rec` Receiver type, used to change the file header, where the `^` character represents a space, and the `^` character needs to be replaced when there is a space in the input

`-hd.enu` The antenna position is changed, followed by three parameters, representing `e` direction, `n` direction and `u` direction respectively

## Example data

See [rnxqce-data](https://github.com/Geo-Linux-Calculations/rnxqce-data)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit be3cd46

Please sign in to comment.