Skip to content

Commit c56df59

Browse files
authored
Merge branch 'OSGeo:master' into master
2 parents 0c1d657 + 872f66a commit c56df59

17 files changed

Lines changed: 339 additions & 32 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
contents: read
1212

1313
env:
14-
PROJ_VERSION: "9.7.0"
14+
PROJ_VERSION: "9.8.1"
1515

1616
jobs:
1717
safety_checks:

.github/workflows/ubuntu_26.04/expected_gdalinfo_formats.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Supported Formats: (ro:read-only, rw:read-write, +:write from scratch, u:update,
9999
BYN -raster- (rov): Natural Resources Canada's Geoid (*.byn, *.err)
100100
NOAA_B -raster- (rov): NOAA GEOCON/NADCON5 .b format (*.b)
101101
NSIDCbin -raster- (rov): NSIDC Sea Ice Concentrations binary (.bin) (*.bin)
102-
CPHD -raster,multidimensional raster- (ro): Compensated Phase History Data Reader
102+
CPHD -multidimensional raster- (ro): Compensated Phase History Data Reader
103103
RIK -raster- (rov): Swedish Grid RIK (.rik) (*.rik)
104104
USGSDEM -raster- (rov): USGS Optional ASCII DEM (and CDED) (*.dem)
105105
GXF -raster- (rov): GeoSoft Grid Exchange Format (*.gxf)

.github/workflows/windows_conda_expected_gdalinfo_formats.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Supported Formats: (ro:read-only, rw:read-write, +:write from scratch, u:update,
133133
GDALG -raster,vector- (rov): GDAL Streamed Algorithm driver (*.gdalg.json)
134134
E57 -raster- (rovs): ASTM E57 3D file format (image part) (*.e57)
135135
NSIDCbin -raster- (rov): NSIDC Sea Ice Concentrations binary (.bin) (*.bin)
136-
CPHD -raster,multidimensional raster- (ro): Compensated Phase History Data Reader
136+
CPHD -multidimensional raster- (ro): Compensated Phase History Data Reader
137137
TileDB -raster,multidimensional raster,vector- (rw+uvs): TileDB
138138
GPKG -raster,vector- (rw+uvs): GeoPackage (*.gpkg, *.gpkg.zip)
139139
OpenFileGDB -raster,vector- (rw+uv): ESRI FileGeodatabase (using OpenFileGDB) (*.gdb)

CITATION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
To cite GDAL/OGR in publications use:
22

3-
GDAL/OGR contributors (2025). GDAL/OGR Geospatial Data Abstraction
3+
GDAL/OGR contributors (2026). GDAL/OGR Geospatial Data Abstraction
44
software Library. Open Source Geospatial Foundation. URL https://gdal.org
55
DOI: 10.5281/zenodo.5884351
66

@@ -10,7 +10,7 @@ A BibTeX entry for LaTeX users is
1010
title = {{GDAL/OGR} Geospatial Data Abstraction software Library},
1111
author = {{GDAL/OGR contributors}},
1212
organization = {Open Source Geospatial Foundation},
13-
year = {2025},
13+
year = {2026},
1414
url = {https://gdal.org},
1515
doi = {10.5281/zenodo.5884351},
1616
}

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cff-version: 1.2.0
22
message: Please cite this software using these metadata or in the CITATION file.
33
type: software
44
title: GDAL
5-
version: 3.12.0
6-
date-released: 2025-11-03
5+
version: 3.13.0beta1
6+
date-released: 2026-04-15
77
doi: 10.5281/zenodo.5884351
88
abstract: GDAL is a translator library for raster and vector geospatial data
99
formats that is released under an MIT style Open Source License by the Open

NEWS.md

Lines changed: 287 additions & 15 deletions
Large diffs are not rendered by default.
9.32 KB
Binary file not shown.

autotest/gcore/hdf4_read.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -607,3 +607,15 @@ def test_hdf4_gh_14356():
607607
pytest.skip()
608608

609609
gdal.Open("data/hdf4/issue_14356.he4")
610+
611+
612+
###############################################################################
613+
# Test bugfix for https://github.com/OSGeo/gdal/issues/14363
614+
615+
616+
def test_hdf4_gh_14363():
617+
618+
if gdaltest.hdf4_drv is None:
619+
pytest.skip()
620+
621+
gdal.Open("data/hdf4/issue_14363.he4")

autotest/gcore/hdf4multidim.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,3 +541,14 @@ def test_hdf4_multidim_gh_14356():
541541
ds = gdal.OpenEx("data/hdf4/issue_14356.he4", gdal.OF_MULTIDIM_RASTER)
542542

543543
gdal.MultiDimInfo(ds)
544+
545+
546+
###############################################################################
547+
# Test bugfix for https://github.com/OSGeo/gdal/issues/14363
548+
549+
550+
def test_hdf4_multidim_gh_14363():
551+
552+
ds = gdal.OpenEx("data/hdf4/issue_14363.he4", gdal.OF_MULTIDIM_RASTER)
553+
554+
gdal.MultiDimInfo(ds)

doc/source/drivers/vector/esrijson.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,4 @@ See Also
9292
--------
9393

9494
- :ref:`GeoJSON driver <vector.geojson>`
95-
- `GeoServices REST
96-
Specification <http://www.esri.com/industries/landing-pages/geoservices/geoservices.html>`__
95+
- `GeoServices REST Specification <https://geoservices.github.io/>`__

0 commit comments

Comments
 (0)