1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/******************************************************************************
*
* Project: GDAL Utilities
* Purpose: Rasterize OGR shapes into a GDAL raster.
* Authors: Even Rouault, <even dot rouault at spatialys dot com>
*
******************************************************************************
* Copyright (c) 2015, Even Rouault <even dot rouault at spatialys dot com>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#include "cpl_string.h"
#include "gdal_version.h"
#include "commonutils.h"
#include "gdal_utils_priv.h"
#include "gdal_priv.h"
/************************************************************************/
/* Usage() */
/************************************************************************/
static void Usage()
{
fprintf(stderr, "%s\n", GDALRasterizeAppGetParserUsage().c_str());
exit(1);
}
/************************************************************************/
/* main() */
/************************************************************************/
MAIN_START(argc, argv)
{
/* Check strict compilation and runtime library version as we use C++ API */
if (!GDAL_CHECK_VERSION(argv[0]))
exit(1);
EarlySetConfigOptions(argc, argv);
/* -------------------------------------------------------------------- */
/* Register standard GDAL drivers, and process generic GDAL */
/* command options. */
/* -------------------------------------------------------------------- */
GDALAllRegister();
argc = GDALGeneralCmdLineProcessor(argc, &argv, 0);
if (argc < 1)
exit(-argc);
/* -------------------------------------------------------------------- */
/* Generic arg processing. */
/* -------------------------------------------------------------------- */
GDALRasterizeOptionsForBinary sOptionsForBinary;
std::unique_ptr<GDALRasterizeOptions, decltype(&GDALRasterizeOptionsFree)>
psOptions{GDALRasterizeOptionsNew(argv + 1, &sOptionsForBinary),
GDALRasterizeOptionsFree};
CSLDestroy(argv);
if (!psOptions)
{
Usage();
}
if (!(sOptionsForBinary.bQuiet))
{
GDALRasterizeOptionsSetProgress(psOptions.get(), GDALTermProgress,
nullptr);
}
/* -------------------------------------------------------------------- */
/* Open input file. */
/* -------------------------------------------------------------------- */
GDALDatasetH hInDS = GDALOpenEx(sOptionsForBinary.osSource.c_str(),
GDAL_OF_VECTOR | GDAL_OF_VERBOSE_ERROR,
/*papszAllowedDrivers=*/nullptr,
sOptionsForBinary.aosOpenOptions.List(),
/*papszSiblingFiles=*/nullptr);
if (hInDS == nullptr)
exit(1);
/* -------------------------------------------------------------------- */
/* Open output file if it exists. */
/* -------------------------------------------------------------------- */
GDALDatasetH hDstDS = nullptr;
if (!(sOptionsForBinary.bCreateOutput))
{
CPLPushErrorHandler(CPLQuietErrorHandler);
hDstDS =
GDALOpenEx(sOptionsForBinary.osDest.c_str(),
GDAL_OF_RASTER | GDAL_OF_VERBOSE_ERROR | GDAL_OF_UPDATE,
nullptr, nullptr, nullptr);
CPLPopErrorHandler();
}
if (!sOptionsForBinary.osFormat.empty() &&
(sOptionsForBinary.bCreateOutput || hDstDS == nullptr))
{
GDALDriverManager *poDM = GetGDALDriverManager();
GDALDriver *poDriver =
poDM->GetDriverByName(sOptionsForBinary.osFormat.c_str());
char **papszDriverMD = (poDriver) ? poDriver->GetMetadata() : nullptr;
if (poDriver == nullptr ||
!CPLTestBool(CSLFetchNameValueDef(papszDriverMD, GDAL_DCAP_RASTER,
"FALSE")) ||
!CPLTestBool(
CSLFetchNameValueDef(papszDriverMD, GDAL_DCAP_CREATE, "FALSE")))
{
fprintf(stderr,
"Output driver `%s' not recognised or does not support "
"direct output file creation.\n",
sOptionsForBinary.osFormat.c_str());
fprintf(stderr, "The following format drivers are enabled and "
"support direct writing:\n");
for (int iDriver = 0; iDriver < poDM->GetDriverCount(); iDriver++)
{
GDALDriver *poIter = poDM->GetDriver(iDriver);
papszDriverMD = poIter->GetMetadata();
if (CPLTestBool(CSLFetchNameValueDef(
papszDriverMD, GDAL_DCAP_RASTER, "FALSE")) &&
CPLTestBool(CSLFetchNameValueDef(
papszDriverMD, GDAL_DCAP_CREATE, "FALSE")))
{
fprintf(stderr, " -> `%s'\n", poIter->GetDescription());
}
}
exit(1);
}
}
int bUsageError = FALSE;
GDALDatasetH hRetDS =
GDALRasterize(sOptionsForBinary.osDest.c_str(), hDstDS, hInDS,
psOptions.get(), &bUsageError);
if (bUsageError == TRUE)
Usage();
int nRetCode = hRetDS ? 0 : 1;
GDALClose(hInDS);
if (GDALClose(hRetDS) != CE_None)
nRetCode = 1;
GDALDestroyDriverManager();
return nRetCode;
}
MAIN_END
|