gdal 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/gdal-ruby/osr/osr.cpp +15 -3
- data/gdal.gemspec +1 -1
- data/lib/gdal-ruby/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9881e3f442572f662ac64d20bd1ff0cc6b3571eeb979430107cf62bba66ba31e
|
|
4
|
+
data.tar.gz: 3f02337c7f22f64ffabd067f81d20b2b49bb45a93ac1ebd1d633151d16210465
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c8bf60eda5cfa53d940340668b308c47804b2b73fdf9496bd14c56188e5d87bafb8a363a9e81a6121ba8a621516380d9955877c5def8fb75f33951ac6a099a0
|
|
7
|
+
data.tar.gz: e9ac8fcef021852d825352008c59f4e604047e699839e711e0d7d71093707a13ec3212e9a932cca1e5d6c1a2b810ef538a627124cefb4b2bdf68cde808a9190e
|
data/ext/gdal-ruby/osr/osr.cpp
CHANGED
|
@@ -2508,13 +2508,16 @@ SWIGINTERN OGRErr OSRSpatialReferenceShadow_Validate(OSRSpatialReferenceShadow *
|
|
|
2508
2508
|
return OSRValidate(self);
|
|
2509
2509
|
}
|
|
2510
2510
|
SWIGINTERN OGRErr OSRSpatialReferenceShadow_StripCTParms(OSRSpatialReferenceShadow *self){
|
|
2511
|
-
return
|
|
2511
|
+
return 0;
|
|
2512
|
+
//return OSRStripCTParms(self);
|
|
2512
2513
|
}
|
|
2513
2514
|
SWIGINTERN OGRErr OSRSpatialReferenceShadow_FixupOrdering(OSRSpatialReferenceShadow *self){
|
|
2514
|
-
return
|
|
2515
|
+
return 0;
|
|
2516
|
+
//return OSRFixupOrdering(self);
|
|
2515
2517
|
}
|
|
2516
2518
|
SWIGINTERN OGRErr OSRSpatialReferenceShadow_Fixup(OSRSpatialReferenceShadow *self){
|
|
2517
|
-
return
|
|
2519
|
+
return 0;
|
|
2520
|
+
//return OSRFixup(self);
|
|
2518
2521
|
}
|
|
2519
2522
|
SWIGINTERN OGRErr OSRSpatialReferenceShadow_MorphToESRI(OSRSpatialReferenceShadow *self){
|
|
2520
2523
|
return OSRMorphToESRI(self);
|
|
@@ -2696,6 +2699,8 @@ fail:
|
|
|
2696
2699
|
|
|
2697
2700
|
SWIGINTERN VALUE
|
|
2698
2701
|
_wrap_GetProjectionMethods(int argc, VALUE *argv, VALUE self) {
|
|
2702
|
+
return Qnil;
|
|
2703
|
+
/*
|
|
2699
2704
|
char **result = 0 ;
|
|
2700
2705
|
VALUE vresult = Qnil;
|
|
2701
2706
|
|
|
@@ -2707,11 +2712,14 @@ _wrap_GetProjectionMethods(int argc, VALUE *argv, VALUE self) {
|
|
|
2707
2712
|
return vresult;
|
|
2708
2713
|
fail:
|
|
2709
2714
|
return Qnil;
|
|
2715
|
+
*/
|
|
2710
2716
|
}
|
|
2711
2717
|
|
|
2712
2718
|
|
|
2713
2719
|
SWIGINTERN VALUE
|
|
2714
2720
|
_wrap_GetProjectionMethodParameterList(int argc, VALUE *argv, VALUE self) {
|
|
2721
|
+
return Qnil;
|
|
2722
|
+
/*
|
|
2715
2723
|
char *arg1 = (char *) 0 ;
|
|
2716
2724
|
char **arg2 = (char **) 0 ;
|
|
2717
2725
|
int res1 ;
|
|
@@ -2742,11 +2750,14 @@ _wrap_GetProjectionMethodParameterList(int argc, VALUE *argv, VALUE self) {
|
|
|
2742
2750
|
fail:
|
|
2743
2751
|
if (alloc1 == SWIG_NEWOBJ) delete[] buf1;
|
|
2744
2752
|
return Qnil;
|
|
2753
|
+
*/
|
|
2745
2754
|
}
|
|
2746
2755
|
|
|
2747
2756
|
|
|
2748
2757
|
SWIGINTERN VALUE
|
|
2749
2758
|
_wrap_GetProjectionMethodParamInfo(int argc, VALUE *argv, VALUE self) {
|
|
2759
|
+
return Qnil;
|
|
2760
|
+
/*
|
|
2750
2761
|
char *arg1 = (char *) 0 ;
|
|
2751
2762
|
char *arg2 = (char *) 0 ;
|
|
2752
2763
|
char **arg3 = (char **) 0 ;
|
|
@@ -2801,6 +2812,7 @@ fail:
|
|
|
2801
2812
|
if (alloc1 == SWIG_NEWOBJ) delete[] buf1;
|
|
2802
2813
|
if (alloc2 == SWIG_NEWOBJ) delete[] buf2;
|
|
2803
2814
|
return Qnil;
|
|
2815
|
+
*/
|
|
2804
2816
|
}
|
|
2805
2817
|
|
|
2806
2818
|
|
data/gdal.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ Gem::Specification.new do |gem|
|
|
|
5
5
|
gem.authors = ["Zac McCormick"]
|
|
6
6
|
gem.email = ["zac.mccormick@gmail.com"]
|
|
7
7
|
gem.description = %q{GDAL/OGR bindings for ruby}
|
|
8
|
-
gem.summary = %q{GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL
|
|
8
|
+
gem.summary = %q{GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL}
|
|
9
9
|
gem.homepage = "https://github.com/zhm/gdal-ruby"
|
|
10
10
|
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
data/lib/gdal-ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gdal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zac McCormick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -103,10 +103,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
104
|
version: '0'
|
|
105
105
|
requirements: []
|
|
106
|
-
rubygems_version: 3.0.
|
|
106
|
+
rubygems_version: 3.0.6
|
|
107
107
|
signing_key:
|
|
108
108
|
specification_version: 4
|
|
109
109
|
summary: GDAL/OGR bindings for ruby. Currently contains native extensions for GDAL
|
|
110
|
-
1.9.1
|
|
111
110
|
test_files:
|
|
112
111
|
- spec/gdal_spec.rb
|