Home
last modified time | relevance | path

Searched refs:tileshpfile (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/mapserver/mapserver-7.6.4/
H A Dmapshape.c2023 if (tSHP->tileshpfile == NULL) { in msTiledSHPOpenFile()
2186 tSHP->tileshpfile->lastshape = i; in msTiledSHPWhichShapes()
2191 if(i == tSHP->tileshpfile->numshapes) in msTiledSHPWhichShapes()
2261 tSHP->tileshpfile->lastshape = -1; in msTiledSHPNextShape()
2271 tSHP->tileshpfile->lastshape = -1; in msTiledSHPNextShape()
2281 for(i=(tSHP->tileshpfile->lastshape + 1); i<tSHP->tileshpfile->numshapes; i++) { in msTiledSHPNextShape()
2311 tSHP->tileshpfile->lastshape = i; in msTiledSHPNextShape()
2407 tSHP->tileshpfile->lastshape = tileindex; in msTiledSHPGetShape()
2449 msShapefileClose(tSHP->tileshpfile); in msTiledSHPClose()
2450 free(tSHP->tileshpfile); in msTiledSHPClose()
[all …]
H A Dmapuvraster.c918 shapefileObj *tileshpfile; in msUVRASTERLayerGetExtent() local
937 tileshpfile = (shapefileObj *) malloc(sizeof(shapefileObj)); in msUVRASTERLayerGetExtent()
938 MS_CHECK_ALLOC(tileshpfile, sizeof(shapefileObj), MS_FAILURE); in msUVRASTERLayerGetExtent()
940 …if(msShapefileOpen(tileshpfile, "rb", msBuildPath3(szPath, map->mappath, map->shapepath, layer->ti… in msUVRASTERLayerGetExtent()
941 …if(msShapefileOpen(tileshpfile, "rb", msBuildPath(szPath, map->mappath, layer->tileindex), MS_TRUE… in msUVRASTERLayerGetExtent()
944 *extent = tileshpfile->bounds; in msUVRASTERLayerGetExtent()
945 msShapefileClose(tileshpfile); in msUVRASTERLayerGetExtent()
946 free(tileshpfile); in msUVRASTERLayerGetExtent()
H A Dmaprasterquery.c1320 shapefileObj *tileshpfile; in msRASTERLayerGetExtent() local
1339 tileshpfile = (shapefileObj *) malloc(sizeof(shapefileObj)); in msRASTERLayerGetExtent()
1340 MS_CHECK_ALLOC(tileshpfile, sizeof(shapefileObj), MS_FAILURE); in msRASTERLayerGetExtent()
1342 …if(msShapefileOpen(tileshpfile, "rb", msBuildPath3(szPath, map->mappath, map->shapepath, layer->ti… in msRASTERLayerGetExtent()
1343 …if(msShapefileOpen(tileshpfile, "rb", msBuildPath(szPath, map->mappath, layer->tileindex), MS_TRUE… in msRASTERLayerGetExtent()
1346 *extent = tileshpfile->bounds; in msRASTERLayerGetExtent()
1347 msShapefileClose(tileshpfile); in msRASTERLayerGetExtent()
1348 free(tileshpfile); in msRASTERLayerGetExtent()
H A Dmapshape.h182 shapefileObj *tileshpfile; member