-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated virtual tie points (3.0 -> 4.0), added thread local storage
- Loading branch information
Showing
44 changed files
with
9,723 additions
and
3,933 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// GK - Converter between Gauss-Krueger/TM and WGS84 coordinates for Slovenia | ||
// Copyright (c) 2014-2016 Matjaz Rihtar <[email protected]> | ||
// Copyright (c) 2014-2018 Matjaz Rihtar <[email protected]> | ||
// All rights reserved. | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
|
@@ -21,7 +21,7 @@ | |
#include "geo.h" | ||
|
||
#define SW_VERSION "2.07" | ||
#define SW_BUILD "Oct 20, 2016" | ||
#define SW_BUILD "Nov 24, 2018" | ||
|
||
typedef struct triang { | ||
int t1, t2, t3; | ||
|
@@ -183,7 +183,7 @@ void print_header(FILE *out, char *outname) | |
char *errtxt; | ||
|
||
fprintf(out, "// GK - Converter between Gauss-Krueger/TM and WGS84 coordinates for Slovenia\n"); | ||
fprintf(out, "// Copyright (c) 2014-2016 Matjaz Rihtar <[email protected]>\n"); | ||
fprintf(out, "// Copyright (c) 2014-2018 Matjaz Rihtar <[email protected]>\n"); | ||
fprintf(out, "// All rights reserved.\n"); | ||
fprintf(out, "//\n"); | ||
fprintf(out, "// This program is free software: you can redistribute it and/or modify\n"); | ||
|
@@ -216,7 +216,7 @@ void print_header(FILE *out, char *outname) | |
// ---------------------------------------------------------------------------- | ||
void usage(int ver_only) | ||
{ | ||
fprintf(stderr, "%s %s Copyright (c) 2014-2016 Matjaz Rihtar (%s)\n", | ||
fprintf(stderr, "%s %s Copyright (c) 2014-2018 Matjaz Rihtar (%s)\n", | ||
prog, SW_VERSION, SW_BUILD); | ||
if (ver_only) return; | ||
fprintf(stderr, "Usage: %s [<options>] <gknodename> <tmnodename> <elename>\n", prog); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.