Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
New upstream version 2.5.0~beta1
· ad76b7aa
Bas Couwenberg
authored
Apr 20, 2019
ad76b7aa
Merge tag 'upstream/2.5.0_beta1' into experimental
· bd8bc453
Bas Couwenberg
authored
Apr 20, 2019
Upstream version 2.5.0~beta1
bd8bc453
New upstream beta release.
· 7d2360fc
Bas Couwenberg
authored
Apr 20, 2019
7d2360fc
Show whitespace changes
Inline
Side-by-side
VERSION
View file @
7d2360fc
2.
4.1
2.
5.0
debian/changelog
View file @
7d2360fc
libgdal-grass (2.5.0~beta1-1) UNRELEASED; urgency=medium
* New upstream beta release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 20 Apr 2019 09:25:14 +0200
libgdal-grass (2.4.1-1~exp1) experimental; urgency=medium
* New upstream release.
...
...
grass57dataset.cpp
View file @
7d2360fc
...
...
@@ -63,7 +63,7 @@ char *GPJ_grass_to_wkt( struct Key_Value *,
#define GRASS_MAX_COLORS 100000 // what is the right value
CPL_CVSID
(
"$Id: grass57dataset.cpp
c4d5cfef28c1c6fbb03a9
ab
1
d4
2835e6cfa920cc
201
7
-1
2-20 12:29:27Z Kurt Schwehr
$"
)
CPL_CVSID
(
"$Id: grass57dataset.cpp
8e5eeb35bf76390e3134a4ea7076d
ab
7
d4
78ea0e
201
8
-1
1-14 22:55:13 +0100 Even Rouault
$"
)
#if GRASS_VERSION_MAJOR >= 7
#define G_get_cellhd Rast_get_cellhd
...
...
@@ -135,7 +135,10 @@ class GRASSDataset : public GDALDataset
GRASSDataset
();
~
GRASSDataset
()
override
;
const
char
*
GetProjectionRef
(
void
)
override
;
const
char
*
_GetProjectionRef
(
void
)
override
;
const
OGRSpatialReference
*
GetSpatialRef
()
const
override
{
return
GetSpatialRefFromOldGetProjectionRef
();
}
CPLErr
GetGeoTransform
(
double
*
)
override
;
static
GDALDataset
*
Open
(
GDALOpenInfo
*
);
...
...
@@ -761,7 +764,7 @@ GRASSDataset::~GRASSDataset()
/* GetProjectionRef() */
/************************************************************************/
const
char
*
GRASSDataset
::
GetProjectionRef
()
const
char
*
GRASSDataset
::
_
GetProjectionRef
()
{
if
(
pszProjection
==
NULL
)
return
""
;
...
...
ogrgrasslayer.cpp
View file @
7d2360fc
...
...
@@ -31,7 +31,7 @@
#include
"ogrgrass.h"
#include
"cpl_conv.h"
CPL_CVSID
(
"$Id: ogrgrasslayer.cpp
4971449609881d6ffdca70188292293852d12691
201
7
-1
2
-1
7 16:48:14Z
Even Rouault $"
)
CPL_CVSID
(
"$Id: ogrgrasslayer.cpp
8e5eeb35bf76390e3134a4ea7076dab7d478ea0e
201
8
-1
1
-1
4 22:55:13 +0100
Even Rouault $"
)
/************************************************************************/
/* OGRGRASSLayer() */
...
...
@@ -213,6 +213,7 @@ OGRGRASSLayer::OGRGRASSLayer( int layerIndex, struct Map_info * map )
if
(
srsWkt
)
{
poSRS
=
new
OGRSpatialReference
(
srsWkt
);
poSRS
->
SetAxisMappingStrategy
(
OAMS_TRADITIONAL_GIS_ORDER
);
G_free
(
srsWkt
);
}
...
...