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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
/******************************************************************************
* $Id: numpydataset.cpp,v 1.11 2006/03/21 21:54:00 fwarmerdam Exp $
*
* Project: GDAL Python Bindings
* Purpose: Implementation of NumPy arrays as a GDALDataset.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
******************************************************************************
* Copyright (c) 2000, Frank Warmerdam
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
******************************************************************************
*
* $Log: numpydataset.cpp,v $
* Revision 1.11 2006/03/21 21:54:00 fwarmerdam
* fixup headers
*
* Revision 1.10 2003/12/11 17:20:44 gwalter
* Added UInt16 and UInt32 to list of recognized NumPy types.
*
* Revision 1.9 2003/09/26 15:59:51 warmerda
* warn if opening an array with internal definitions
*
* Revision 1.8 2002/09/04 06:59:44 warmerda
* get rid of static driver pointer
*
* Revision 1.7 2002/06/12 21:08:28 warmerda
* update to metadata based driver info
*
* Revision 1.6 2001/10/26 20:02:54 warmerda
* use indirect allocation for MEMRasterBand
*
* Revision 1.5 2001/10/19 15:44:59 warmerda
* added get/set gcps support
*
* Revision 1.4 2001/07/18 04:45:29 warmerda
* added CPL_CVSID
*
* Revision 1.3 2001/03/08 18:42:06 warmerda
* implement projection, and geotransform holding support
*
* Revision 1.2 2001/02/06 16:16:28 warmerda
* fixed numpydataset.cpp to use sscanf to parse pointer
*
* Revision 1.1 2000/07/20 00:33:37 warmerda
* New
*
*/
#include "gdal_priv.h"
#include "../frmts/mem/memdataset.h"
#include "gdal_py.h"
CPL_CVSID("$Id: numpydataset.cpp,v 1.11 2006/03/21 21:54:00 fwarmerdam Exp $");
/************************************************************************/
/* NUMPYDataset */
/************************************************************************/
class NUMPYDataset : public GDALDataset
{
PyArrayObject *psArray;
double adfGeoTransform[6];
char *pszProjection;
int nGCPCount;
GDAL_GCP *pasGCPList;
char *pszGCPProjection;
public:
NUMPYDataset();
~NUMPYDataset();
virtual const char *GetProjectionRef(void);
virtual CPLErr SetProjection( const char * );
virtual CPLErr GetGeoTransform( double * );
virtual CPLErr SetGeoTransform( double * );
virtual int GetGCPCount();
virtual const char *GetGCPProjection();
virtual const GDAL_GCP *GetGCPs();
virtual CPLErr SetGCPs( int nGCPCount, const GDAL_GCP *pasGCPList,
const char *pszGCPProjection );
static GDALDataset *Open( GDALOpenInfo * );
};
/************************************************************************/
/* NUMPYDataset() */
/************************************************************************/
NUMPYDataset::NUMPYDataset()
{
pszProjection = CPLStrdup("");
adfGeoTransform[0] = 0.0;
adfGeoTransform[1] = 1.0;
adfGeoTransform[2] = 0.0;
adfGeoTransform[3] = 0.0;
adfGeoTransform[4] = 0.0;
adfGeoTransform[5] = 1.0;
nGCPCount = 0;
pasGCPList = NULL;
pszGCPProjection = CPLStrdup("");
}
/************************************************************************/
/* ~NUMPYDataset() */
/************************************************************************/
NUMPYDataset::~NUMPYDataset()
{
CPLFree( pszProjection );
CPLFree( pszGCPProjection );
if( nGCPCount > 0 )
{
GDALDeinitGCPs( nGCPCount, pasGCPList );
CPLFree( pasGCPList );
}
FlushCache();
Py_DECREF( psArray );
}
/************************************************************************/
/* GetProjectionRef() */
/************************************************************************/
const char *NUMPYDataset::GetProjectionRef()
{
return( pszProjection );
}
/************************************************************************/
/* SetProjection() */
/************************************************************************/
CPLErr NUMPYDataset::SetProjection( const char * pszNewProjection )
{
CPLFree( pszProjection );
pszProjection = CPLStrdup( pszNewProjection );
return CE_None;
}
/************************************************************************/
/* GetGeoTransform() */
/************************************************************************/
CPLErr NUMPYDataset::GetGeoTransform( double * padfTransform )
{
memcpy( padfTransform, adfGeoTransform, sizeof(double)*6 );
return CE_None;
}
/************************************************************************/
/* SetGeoTransform() */
/************************************************************************/
CPLErr NUMPYDataset::SetGeoTransform( double * padfTransform )
{
memcpy( adfGeoTransform, padfTransform, sizeof(double)*6 );
return( CE_None );
}
/************************************************************************/
/* GetGCPCount() */
/************************************************************************/
int NUMPYDataset::GetGCPCount()
{
return nGCPCount;
}
/************************************************************************/
/* GetGCPProjection() */
/************************************************************************/
const char *NUMPYDataset::GetGCPProjection()
{
return pszGCPProjection;
}
/************************************************************************/
/* GetGCPs() */
/************************************************************************/
const GDAL_GCP *NUMPYDataset::GetGCPs()
{
return pasGCPList;
}
/************************************************************************/
/* SetGCPs() */
/************************************************************************/
CPLErr NUMPYDataset::SetGCPs( int nGCPCount, const GDAL_GCP *pasGCPList,
const char *pszGCPProjection )
{
CPLFree( this->pszGCPProjection );
if( this->nGCPCount > 0 )
{
GDALDeinitGCPs( this->nGCPCount, this->pasGCPList );
CPLFree( this->pasGCPList );
}
this->pszGCPProjection = CPLStrdup(pszGCPProjection);
this->nGCPCount = nGCPCount;
this->pasGCPList = GDALDuplicateGCPs( nGCPCount, pasGCPList );
return CE_None;
}
/************************************************************************/
/* Open() */
/************************************************************************/
GDALDataset *NUMPYDataset::Open( GDALOpenInfo * poOpenInfo )
{
PyArrayObject *psArray;
GDALDataType eType;
int nBands;
/* -------------------------------------------------------------------- */
/* Is this a numpy dataset name? */
/* -------------------------------------------------------------------- */
if( !EQUALN(poOpenInfo->pszFilename,"NUMPY:::",8)
|| poOpenInfo->fp != NULL )
return NULL;
psArray = NULL;
sscanf( poOpenInfo->pszFilename+8, "%p", &psArray );
if( psArray == NULL )
{
CPLError( CE_Failure, CPLE_AppDefined,
"Failed to parse meaningful pointer value from NUMPY name\n"
"string: %s\n",
poOpenInfo->pszFilename );
return NULL;
}
/* -------------------------------------------------------------------- */
/* If we likely have corrupt definitions of the NUMPY stuff, */
/* then warn now. */
/* -------------------------------------------------------------------- */
#ifdef NUMPY_DEFS_WRONG
CPLError( CE_Warning, CPLE_AppDefined,
"It would appear you have built GDAL without having it use\n"
"the Numeric python include files. Old definitions have\n"
"been used instead at build time, and it is quite possible that\n"
"the things will shortly fail or crash if they are wrong.\n"
"Consider installing Numeric, and rebuilding with HAVE_NUMPY\n"
"enabled in gdal\nmake.opt." );
#endif
/* -------------------------------------------------------------------- */
/* Is this a directly mappable Python array? Verify rank, and */
/* data type. */
/* -------------------------------------------------------------------- */
if( psArray->nd < 2 || psArray->nd > 3 )
{
CPLError( CE_Failure, CPLE_AppDefined,
"Illegal numpy array rank %d.\n",
psArray->nd );
return NULL;
}
switch( psArray->descr->type )
{
case 'D':
eType = GDT_CFloat64;
break;
case 'F':
eType = GDT_CFloat32;
break;
case 'd':
eType = GDT_Float64;
break;
case 'f':
eType = GDT_Float32;
break;
case 'l':
case 'i':
eType = GDT_Int32;
break;
case 'u':
eType = GDT_UInt32;
break;
case 's':
eType = GDT_Int16;
break;
case 'w':
eType = GDT_UInt16;
break;
case 'b':
eType = GDT_Byte;
break;
default:
CPLError( CE_Failure, CPLE_AppDefined,
"Unable to access numpy arrays of typecode `%c'.\n",
psArray->descr->type );
return NULL;
}
/* -------------------------------------------------------------------- */
/* Create the new NUMPYDataset object. */
/* -------------------------------------------------------------------- */
NUMPYDataset *poDS;
poDS = new NUMPYDataset();
poDS->psArray = psArray;
poDS->eAccess = GA_ReadOnly;
/* -------------------------------------------------------------------- */
/* Add a reference to the array. */
/* -------------------------------------------------------------------- */
Py_INCREF( psArray );
/* -------------------------------------------------------------------- */
/* Workout the data layout. */
/* -------------------------------------------------------------------- */
int nBandOffset;
int nPixelOffset;
int nLineOffset;
if( psArray->nd == 3 )
{
nBands = psArray->dimensions[0];
nBandOffset = psArray->strides[0];
poDS->nRasterXSize = psArray->dimensions[2];
nPixelOffset = psArray->strides[2];
poDS->nRasterYSize = psArray->dimensions[1];
nLineOffset = psArray->strides[1];
}
else
{
nBands = 1;
nBandOffset = 0;
poDS->nRasterXSize = psArray->dimensions[1];
nPixelOffset = psArray->strides[1];
poDS->nRasterYSize = psArray->dimensions[0];
nLineOffset = psArray->strides[0];
}
/* -------------------------------------------------------------------- */
/* Create band information objects. */
/* -------------------------------------------------------------------- */
for( int iBand = 0; iBand < nBands; iBand++ )
{
poDS->SetBand( iBand+1,
(GDALRasterBand *)
MEMCreateRasterBand( poDS, iBand+1,
(GByte *) psArray->data + nBandOffset*iBand,
eType, nPixelOffset, nLineOffset,
FALSE ) );
}
/* -------------------------------------------------------------------- */
/* Try to return a regular handle on the file. */
/* -------------------------------------------------------------------- */
return poDS;
}
/************************************************************************/
/* GDALRegister_NUMPY() */
/************************************************************************/
void GDALRegister_NUMPY()
{
GDALDriver *poDriver;
if( GDALGetDriverByName( "NUMPY" ) == NULL )
{
poDriver = new GDALDriver();
poDriver->SetDescription( "NUMPY" );
poDriver->SetMetadataItem( GDAL_DMD_LONGNAME,
"Numeric Python Array" );
poDriver->pfnOpen = NUMPYDataset::Open;
GetGDALDriverManager()->RegisterDriver( poDriver );
}
}
|