Skip to content

Commit 89b67bc

Browse files
committed
Merge remote-tracking branch 'upstream/master' into sd-integration
2 parents b4eda38 + 4ec9f52 commit 89b67bc

118 files changed

Lines changed: 4890 additions & 1261 deletions

File tree

Some content is hidden

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

.github/workflows/ubuntu_24.04/expected_gdalinfo_formats.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Supported Formats: (ro:read-only, rw:read-write, +:write from scratch, u:update,
133133
STACIT -raster- (rovs): Spatio-Temporal Asset Catalog Items
134134
JPEGXL -raster- (rwv): JPEG-XL (*.jxl)
135135
GDALG -raster,vector- (rov): GDAL Streamed Algorithm driver (*.gdalg.json)
136+
E57 -raster- (rovs): ASTM E57 3D file format (image part) (*.e57)
136137
GPKG -raster,vector- (rw+uvs): GeoPackage (*.gpkg, *.gpkg.zip)
137138
SQLite -raster,vector- (rw+uvs): SQLite / Spatialite / RasterLite2 (*.sqlite, *.db)
138139
OpenFileGDB -raster,vector- (rw+uv): ESRI FileGeodatabase (using OpenFileGDB) (*.gdb)

.github/workflows/windows_conda_expected_gdalinfo_formats.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ Supported Formats: (ro:read-only, rw:read-write, +:write from scratch, u:update,
132132
STACTA -raster- (rovs): Spatio-Temporal Asset Catalog Tiled Assets (*.json)
133133
STACIT -raster- (rovs): Spatio-Temporal Asset Catalog Items
134134
GDALG -raster,vector- (rov): GDAL Streamed Algorithm driver (*.gdalg.json)
135+
E57 -raster- (rovs): ASTM E57 3D file format (image part) (*.e57)
135136
NSIDCbin -raster- (rov): NSIDC Sea Ice Concentrations binary (.bin) (*.bin)
136137
GPKG -raster,vector- (rw+uvs): GeoPackage (*.gpkg, *.gpkg.zip)
137138
OpenFileGDB -raster,vector- (rw+uv): ESRI FileGeodatabase (using OpenFileGDB) (*.gdb)

apps/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ target_sources(appslib PRIVATE
3434
gdalalg_info.cpp
3535
gdalalg_dataset.cpp
3636
gdalalg_dataset_identify.cpp
37+
gdalalg_dataset_check.cpp
3738
gdalalg_dataset_copy.cpp
3839
gdalalg_dataset_rename.cpp
3940
gdalalg_dataset_delete.cpp

apps/gdalalg_dataset.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "gdalalg_dataset.h"
1616

1717
#include "gdalalg_dataset_identify.h"
18+
#include "gdalalg_dataset_check.h"
1819
#include "gdalalg_dataset_copy.h"
1920
#include "gdalalg_dataset_rename.h"
2021
#include "gdalalg_dataset_delete.h"
@@ -27,6 +28,7 @@ GDALDatasetAlgorithm::GDALDatasetAlgorithm()
2728
: GDALAlgorithm(NAME, DESCRIPTION, HELP_URL)
2829
{
2930
RegisterSubAlgorithm<GDALDatasetIdentifyAlgorithm>();
31+
RegisterSubAlgorithm<GDALDatasetCheckAlgorithm>();
3032
RegisterSubAlgorithm<GDALDatasetCopyAlgorithm>();
3133
RegisterSubAlgorithm<GDALDatasetRenameAlgorithm>();
3234
RegisterSubAlgorithm<GDALDatasetDeleteAlgorithm>();

0 commit comments

Comments
 (0)