PostGIS
3.0.6dev-r@@SVN_REVISION@@
◆
DBFReadDoubleAttribute()
double
SHPAPI_CALL
DBFReadDoubleAttribute
(
DBFHandle
psDBF
,
int
iRecord
,
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
}
DBFReadAttribute
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:
loader
dbfopen.c
Generated by
1.9.1