Skip to content

Commit

Permalink
1.3
Browse files Browse the repository at this point in the history
Station Version
  • Loading branch information
zvezdochiot committed May 21, 2018
1 parent d4668d2 commit a45c5dd
Show file tree
Hide file tree
Showing 6 changed files with 351 additions and 43 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CPP = gcc
CFLAGS = -Wall -s
LIBS = -lm
VER = 1
REL = 2
REL = 3
PREFIX = /usr/local
INCPREFIX = $(PREFIX)/include
LIBPREFIX = $(PREFIX)/lib
Expand Down
78 changes: 70 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ The procedure for compiling is:

## SAMPLE

./geofindkey doc/data.dat report.dat

doc/data.dat:
Input Data doc/data.dat:

1 1334.71 285.94 83477.64 47377.60 1.0
2 563.67 -5197.34 82557.14 41916.51 1.0
Expand All @@ -28,7 +26,11 @@ The procedure for compiling is:
7 4444.27 1153.79
8 -252.07 2881.90

Result report.dat:
Mode Normal:

./geofindkey doc/data.dat report.dat

Result report.dat:

key:
82135.4073
Expand All @@ -39,13 +41,73 @@ The procedure for compiling is:
-1.5635324426

var:
1 1334.7100 285.9400 83477.6400 47377.6000 1 0.0024 0.0008
2 563.6700 -5197.3400 82557.1400 41916.5100 1 0.0165 -0.0132
3 4444.2700 1153.7900 86610.1900 48160.3900 1 -0.0318 -0.0160
4 -252.0700 2881.9000 81962.0500 50016.3400 1 0.0129 0.0283
(Mode Normal)
1 1334.7100 285.9400 83477.6400 47377.6000 1 +0.0024 +0.0008 -0.0002735462 -0.0000
2 563.6700 -5197.3400 82557.1400 41916.5100 1 +0.0165 -0.0132 +0.0002137624 +0.0093
3 4444.2700 1153.7900 86610.1900 48160.3900 1 -0.0318 -0.0160 -0.0000341993 -0.0355
4 -252.0700 2881.9000 81962.0500 50016.3400 1 +0.0129 +0.0283 -0.0003963128 +0.0189
5 1334.7100 285.9400 83477.6376 47377.5992
6 563.6700 -5197.3400 82557.1235 41916.5232
7 4444.2700 1153.7900 86610.2218 48160.4060
8 -252.0700 2881.9000 81962.0371 50016.3117

diff:
0.0269 0.0248 0.0003672639 0.0292

Mode Rescale:

./geofindkey -r doc/data.dat report.dat

Result report.dat:

key:
82135.4073
47128.1437
0.999787994227
-0.027289778074
1.000160369835
-1.5635324426

var:
(Mode Rescale)
1 1334.7100 285.9400 83477.6400 47377.6000 1 -0.0255 +0.0826 -0.0002735462 +0.0864
2 563.6700 -5197.3400 82557.1400 41916.5100 1 -0.1591 -0.8071 +0.0002137624 +0.8224
3 4444.2700 1153.7900 86610.1900 48160.3900 1 +0.4426 +0.1913 -0.0000341993 +0.4822
4 -252.0700 2881.9000 81962.0500 50016.3400 1 -0.2581 +0.5332 -0.0003963128 +0.5918
5 1334.7100 285.9400 83477.6655 47377.5174
6 563.6700 -5197.3400 82557.2991 41917.3171
7 4444.2700 1153.7900 86609.7474 48160.1987
8 -252.0700 2881.9000 81962.3081 50015.8068

diff:
0.3798 0.6997 0.0003672639 0.7958

Mode Station Rescale:

./geofindkey -r -s doc/data.dat report.dat

Result report.dat:

key:
82135.4073
47128.1437
0.999787994227
-0.027289778074
1.000160369835
-1.5635324426

var:
(Mode Station Rescale)
1 1334.7100 285.9400 83477.6400 47377.6000 1 +0.2177 +0.0408 +0.0000155927 +0.2214
2 563.6700 -5197.3400 82557.1400 41916.5100 1 +0.0841 -0.8488 +0.0001681880 +0.8528
3 4444.2700 1153.7900 86610.1900 48160.3900 1 +0.6858 +0.1495 -0.0001051948 +0.7018
4 -252.0700 2881.9000 81962.0500 50016.3400 1 -0.0149 +0.4914 -0.0002877147 +0.4914
5 1334.7100 285.9400 83477.4223 47377.5592
6 563.6700 -5197.3400 82557.0559 41917.3588
7 4444.2700 1153.7900 86609.5042 48160.2405
8 -252.0700 2881.9000 81962.0649 50015.8486

diff:
0.5123 0.7021 0.0002495968 0.8690

https://github.com/zvezdochiot/geofindkey
5 changes: 3 additions & 2 deletions doc/AUTORS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Name: GeoFindKey
OldName: FindKey
Date: 2018-05-19
Author:
URL: https://github.com/zvezdochiot/geofindkey
Date: 2018-05-21
Authors:
Игорь Белов (https://gis-lab.info/forum/memberlist.php?mode=viewprofile&u=10457)
zvezdochiot (https://github.com/zvezdochiot)
19 changes: 19 additions & 0 deletions doc/CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Name: GeoFindKey
OldName: FindKey
URL: https://github.com/zvezdochiot/geofindkey

1.3

Station Version

1.2

Expanded Version

1.1

Simplify Version

1.0

Init Version
Loading

0 comments on commit a45c5dd

Please sign in to comment.