Skip to content

Commit 842f251

Browse files
committed
9.4.0 release
1 parent a05a9e2 commit 842f251

62 files changed

Lines changed: 314 additions & 237 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ m4/lt~obsolete.m4
114114
/src/geodtest*
115115
/src/gie
116116
/src/proj
117-
/src/proj_config.h
118117
/src/proj_config.h.in
119118
/src/projinfo
120119
/src/projsync

PROJ-include.podspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Pod::Spec.new do |s|
2+
s.name = "PROJ-include"
3+
s.version = "9.4.0"
4+
s.summary = "PROJ coordinate transformation software library."
5+
s.description = <<-DESC
6+
PROJ is a generic coordinate transformation software that transforms geospatial coordinates from one coordinate reference system (CRS) to another. This includes cartographic projections as well as geodetic transformations. PROJ is released under the X/MIT open source license
7+
8+
PROJ includes command line applications for easy conversion of coordinates from text files or directly from user input. In addition to the command line utilities PROJ also exposes an application programming interface, or API in short. The API lets developers use the functionality of PROJ in their own software without having to implement similar functionality themselves.
9+
10+
PROJ started purely as a cartography application letting users convert geodetic coordinates into projected coordinates using a number of different cartographic projections. Over the years, as the need has become apparent, support for datum shifts has slowly worked its way into PROJ as well. Today PROJ supports more than a hundred different map projections and can transform coordinates between datums using all but the most obscure geodetic techniques.
11+
DESC
12+
s.homepage = "https://proj.org/"
13+
s.license = { :type => "MIT",
14+
:file => "COPYING" }
15+
s.author = 'PROJ contributors', 'Open Source Geospatial Foundation'
16+
s.source = { :git => "https://github.com/ngageoint/PROJ.git", :tag => s.version.to_s }
17+
18+
s.platforms = { :ios => "12.0", :osx => "10.13", :watchos => "4.0", :tvos => "12.0" }
19+
20+
s.source_files = 'include/**/*.hpp'
21+
22+
end

PROJ.podspec

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Pod::Spec.new do |s|
2+
s.name = "PROJ"
3+
s.version = "9.4.0"
4+
s.summary = "PROJ coordinate transformation software library."
5+
s.description = <<-DESC
6+
PROJ is a generic coordinate transformation software that transforms geospatial coordinates from one coordinate reference system (CRS) to another. This includes cartographic projections as well as geodetic transformations. PROJ is released under the X/MIT open source license
7+
8+
PROJ includes command line applications for easy conversion of coordinates from text files or directly from user input. In addition to the command line utilities PROJ also exposes an application programming interface, or API in short. The API lets developers use the functionality of PROJ in their own software without having to implement similar functionality themselves.
9+
10+
PROJ started purely as a cartography application letting users convert geodetic coordinates into projected coordinates using a number of different cartographic projections. Over the years, as the need has become apparent, support for datum shifts has slowly worked its way into PROJ as well. Today PROJ supports more than a hundred different map projections and can transform coordinates between datums using all but the most obscure geodetic techniques.
11+
DESC
12+
s.homepage = "https://proj.org/"
13+
s.license = { :type => "MIT",
14+
:file => "COPYING" }
15+
s.author = 'PROJ contributors', 'Open Source Geospatial Foundation'
16+
s.source = { :git => "https://github.com/ngageoint/PROJ.git", :tag => s.version.to_s }
17+
18+
s.platforms = { :ios => "12.0", :osx => "10.13", :watchos => "4.0", :tvos => "12.0" }
19+
20+
s.source_files = 'src/**/*.{c,h,cpp,hpp}'
21+
s.exclude_files = 'src/tests/*'
22+
23+
s.resource_bundle = { 'PROJ' => ['proj.db'] }
24+
25+
s.dependency 'PROJ-include', '~> 9.4.0'
26+
27+
end

include/proj/internal/coordinatesystem_internal.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#ifndef COORDINATESYSTEM_INTERNAL_HH_INCLUDED
3434
#define COORDINATESYSTEM_INTERNAL_HH_INCLUDED
3535

36-
#include "proj/util.hpp"
36+
#include "util.hpp"
3737

3838
#include <map>
3939
#include <set>

include/proj/internal/include_nlohmann_json.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535

3636
#ifdef EXTERNAL_NLOHMANN_JSON
3737

38-
#include <nlohmann/json.hpp>
38+
#include <json.hpp>
3939

4040
#else // !EXTERNAL_NLOHMANN_JSON
4141

4242
// to avoid any clash if PROJ users have another version of nlohmann/json.hpp
4343
#define nlohmann proj_nlohmann
4444

4545
#if !defined(DOXYGEN_ENABLED)
46-
#include "vendor/nlohmann/json.hpp"
46+
#include "json.hpp"
4747
#endif
4848

4949
#endif // EXTERNAL_NLOHMANN_JSON

include/proj/internal/internal.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#endif
4747
#include <vector>
4848

49-
#include "proj/util.hpp"
49+
#include "util.hpp"
5050

5151
//! @cond Doxygen_Suppress
5252

include/proj/internal/io_internal.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
#include <string>
3737
#include <vector>
3838

39-
#include "proj/io.hpp"
40-
#include "proj/util.hpp"
39+
#include "io.hpp"
40+
#include "util.hpp"
4141

4242
//! @cond Doxygen_Suppress
4343

include/proj/internal/tracing.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
#include <string>
3535

36-
#include "proj/util.hpp"
36+
#include "util.hpp"
3737

3838
#ifdef ENABLE_TRACING
3939

proj.db

8.7 MB
Binary file not shown.

src/4D_api.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
#include <cmath> /* for isnan */
5252
#include <math.h>
5353

54-
#include "proj/common.hpp"
55-
#include "proj/coordinateoperation.hpp"
56-
#include "proj/internal/internal.hpp"
57-
#include "proj/internal/io_internal.hpp"
54+
#include "common.hpp"
55+
#include "coordinateoperation.hpp"
56+
#include "internal.hpp"
57+
#include "io_internal.hpp"
5858

5959
using namespace NS_PROJ::internal;
6060

0 commit comments

Comments
 (0)