PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ DBFReadDoubleAttribute()

double SHPAPI_CALL DBFReadDoubleAttribute ( DBFHandle  hDBF,
int  iShape,
int  iField 
)

Definition at line 1037 of file dbfopen.c.

1038{
1039 double *pdValue;
1040
1041 pdValue = (double *)DBFReadAttribute(psDBF, iRecord, iField, 'N');
1042
1043 if (pdValue == NULL)
1044 return 0.0;
1045 else
1046 return (*pdValue);
1047}
static void * DBFReadAttribute(DBFHandle psDBF, int hEntity, int iField, char chReqType)
Definition dbfopen.c:934

References DBFReadAttribute().

Here is the call graph for this function: