Home
last modified time | relevance | path

Searched refs:poVDS (Results 1 – 12 of 12) sorted by relevance

/dports/graphics/py-gdal/gdal-3.3.3/apps/
H A Dgdalenhance.cpp400 VRTDataset *poVDS = in MAIN_START() local
410 poVDS->SetProjection( pszProjection ); in MAIN_START()
413 poVDS->SetGeoTransform( adfGeoTransform ); in MAIN_START()
417 poVDS->SetGCPs( GDALGetGCPCount(hDataset), in MAIN_START()
422 poVDS->SetMetadata( static_cast<GDALDataset*>(hDataset)->GetMetadata() ); in MAIN_START()
443 poVDS->AddBand( eBandType, nullptr ); in MAIN_START()
444 poVRTBand = cpl::down_cast<VRTSourcedRasterBand *>(poVDS->GetRasterBand( iBand+1 )); in MAIN_START()
470 hOutDS = GDALCreateCopy( hDriver, pszDest, static_cast<GDALDatasetH>(poVDS), in MAIN_START()
476 GDALClose(poVDS); in MAIN_START()
H A Dgdal_translate_lib.cpp1446 poVDS->SetGCPs( nGCPs, pasGCPs, in GDALTranslate()
1537 poVDS->SetMetadata( papszMetadata ); in GDALTranslate()
1608 poVDS->SetMetadata( papszMD, "RPC" ); in GDALTranslate()
1649 poVDS->SetMetadata( papszMD, "RPC" ); in GDALTranslate()
1669 GDALClose(poVDS); in GDALTranslate()
1701 GDALClose(poVDS); in GDALTranslate()
1913 delete poVDS; in GDALTranslate()
1938 delete poVDS; in GDALTranslate()
2147 poVDS->SetDescription(pszDest); in GDALTranslate()
2148 hOutDS = static_cast<GDALDatasetH>(poVDS); in GDALTranslate()
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/apps/
H A Dgdalenhance.cpp400 VRTDataset *poVDS = in MAIN_START() local
410 poVDS->SetProjection( pszProjection ); in MAIN_START()
413 poVDS->SetGeoTransform( adfGeoTransform ); in MAIN_START()
417 poVDS->SetGCPs( GDALGetGCPCount(hDataset), in MAIN_START()
422 poVDS->SetMetadata( static_cast<GDALDataset*>(hDataset)->GetMetadata() ); in MAIN_START()
443 poVDS->AddBand( eBandType, nullptr ); in MAIN_START()
444 poVRTBand = cpl::down_cast<VRTSourcedRasterBand *>(poVDS->GetRasterBand( iBand+1 )); in MAIN_START()
470 hOutDS = GDALCreateCopy( hDriver, pszDest, static_cast<GDALDatasetH>(poVDS), in MAIN_START()
476 GDALClose(poVDS); in MAIN_START()
H A Dgdal_translate_lib.cpp1446 poVDS->SetGCPs( nGCPs, pasGCPs, in GDALTranslate()
1537 poVDS->SetMetadata( papszMetadata ); in GDALTranslate()
1608 poVDS->SetMetadata( papszMD, "RPC" ); in GDALTranslate()
1649 poVDS->SetMetadata( papszMD, "RPC" ); in GDALTranslate()
1669 GDALClose(poVDS); in GDALTranslate()
1701 GDALClose(poVDS); in GDALTranslate()
1913 delete poVDS; in GDALTranslate()
1938 delete poVDS; in GDALTranslate()
2147 poVDS->SetDescription(pszDest); in GDALTranslate()
2148 hOutDS = static_cast<GDALDatasetH>(poVDS); in GDALTranslate()
[all …]
/dports/graphics/gdal/gdal-3.3.3/apps/
H A Dgdalenhance.cpp400 VRTDataset *poVDS = in MAIN_START() local
410 poVDS->SetProjection( pszProjection ); in MAIN_START()
413 poVDS->SetGeoTransform( adfGeoTransform ); in MAIN_START()
417 poVDS->SetGCPs( GDALGetGCPCount(hDataset), in MAIN_START()
422 poVDS->SetMetadata( static_cast<GDALDataset*>(hDataset)->GetMetadata() ); in MAIN_START()
443 poVDS->AddBand( eBandType, nullptr ); in MAIN_START()
444 poVRTBand = cpl::down_cast<VRTSourcedRasterBand *>(poVDS->GetRasterBand( iBand+1 )); in MAIN_START()
470 hOutDS = GDALCreateCopy( hDriver, pszDest, static_cast<GDALDatasetH>(poVDS), in MAIN_START()
476 GDALClose(poVDS); in MAIN_START()
H A Dgdal_translate_lib.cpp1446 poVDS->SetGCPs( nGCPs, pasGCPs, in GDALTranslate()
1537 poVDS->SetMetadata( papszMetadata ); in GDALTranslate()
1608 poVDS->SetMetadata( papszMD, "RPC" ); in GDALTranslate()
1649 poVDS->SetMetadata( papszMD, "RPC" ); in GDALTranslate()
1669 GDALClose(poVDS); in GDALTranslate()
1701 GDALClose(poVDS); in GDALTranslate()
1913 delete poVDS; in GDALTranslate()
1938 delete poVDS; in GDALTranslate()
2147 poVDS->SetDescription(pszDest); in GDALTranslate()
2148 hOutDS = static_cast<GDALDatasetH>(poVDS); in GDALTranslate()
[all …]
/dports/graphics/py-gdal/gdal-3.3.3/frmts/vrt/
H A Dvrtpansharpened.cpp709 VRTDataset* poVDS = new VRTDataset(nAdjustRasterXSize, nAdjustRasterYSize); in XMLInit() local
710 poVDS->SetWritable(FALSE); in XMLInit()
711 poVDS->SetDescription(poSrcDS->GetDescription()); in XMLInit()
712 poVDS->SetGeoTransform(adfAdjustedGT); in XMLInit()
713 poVDS->SetProjection(poPanDataset->GetProjectionRef()); in XMLInit()
718 poVDS->AddBand(poSrcBand->GetRasterDataType(), nullptr); in XMLInit()
721 poVDS->GetRasterBand(i+1) ); in XMLInit()
741 oIter->second = poVDS; in XMLInit()
745 poPanDataset = poVDS; in XMLInit()
751 m_apoDatasetsToClose.push_back(poVDS); in XMLInit()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/vrt/
H A Dvrtpansharpened.cpp709 VRTDataset* poVDS = new VRTDataset(nAdjustRasterXSize, nAdjustRasterYSize); in XMLInit() local
710 poVDS->SetWritable(FALSE); in XMLInit()
711 poVDS->SetDescription(poSrcDS->GetDescription()); in XMLInit()
712 poVDS->SetGeoTransform(adfAdjustedGT); in XMLInit()
713 poVDS->SetProjection(poPanDataset->GetProjectionRef()); in XMLInit()
718 poVDS->AddBand(poSrcBand->GetRasterDataType(), nullptr); in XMLInit()
721 poVDS->GetRasterBand(i+1) ); in XMLInit()
741 oIter->second = poVDS; in XMLInit()
745 poPanDataset = poVDS; in XMLInit()
751 m_apoDatasetsToClose.push_back(poVDS); in XMLInit()
/dports/graphics/gdal/gdal-3.3.3/frmts/vrt/
H A Dvrtpansharpened.cpp709 VRTDataset* poVDS = new VRTDataset(nAdjustRasterXSize, nAdjustRasterYSize); in XMLInit() local
710 poVDS->SetWritable(FALSE); in XMLInit()
711 poVDS->SetDescription(poSrcDS->GetDescription()); in XMLInit()
712 poVDS->SetGeoTransform(adfAdjustedGT); in XMLInit()
713 poVDS->SetProjection(poPanDataset->GetProjectionRef()); in XMLInit()
718 poVDS->AddBand(poSrcBand->GetRasterDataType(), nullptr); in XMLInit()
721 poVDS->GetRasterBand(i+1) ); in XMLInit()
741 oIter->second = poVDS; in XMLInit()
745 poPanDataset = poVDS; in XMLInit()
751 m_apoDatasetsToClose.push_back(poVDS); in XMLInit()
/dports/graphics/py-gdal/gdal-3.3.3/alg/
H A Dgdalpansharpen.cpp325 VRTDataset* poVDS = nullptr; in Initialize() local
332 poVDS = new VRTDataset(poSrcBand->GetXSize(), poSrcBand->GetYSize()); in Initialize()
333 aVDS.push_back(poVDS); in Initialize()
340 poVDS->AddBand(poSrcBand->GetRasterDataType(), nullptr); in Initialize()
343 poVDS->GetRasterBand(iVRTBand)); in Initialize()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/alg/
H A Dgdalpansharpen.cpp325 VRTDataset* poVDS = nullptr; in IsColorCodeSet()
332 poVDS = new VRTDataset(poSrcBand->GetXSize(), poSrcBand->GetYSize()); in IsColorCodeSet()
333 aVDS.push_back(poVDS); in IsColorCodeSet()
340 poVDS->AddBand(poSrcBand->GetRasterDataType(), nullptr); in IsColorCodeSet()
343 poVDS->GetRasterBand(iVRTBand)); in IsColorCodeSet()
/dports/graphics/gdal/gdal-3.3.3/alg/
H A Dgdalpansharpen.cpp325 VRTDataset* poVDS = nullptr; in Initialize() local
332 poVDS = new VRTDataset(poSrcBand->GetXSize(), poSrcBand->GetYSize()); in Initialize()
333 aVDS.push_back(poVDS); in Initialize()
340 poVDS->AddBand(poSrcBand->GetRasterDataType(), nullptr); in Initialize()
343 poVDS->GetRasterBand(iVRTBand)); in Initialize()