示例#1
0
文件: ogr.go 项目: colek42/gdal
// Fetch the number of layers in this data source
func (ds DataSource) LayerCount() int {
	count := C.OGR_DS_GetLayerCount(ds.cval)
	return int(count)
}
示例#2
0
文件: gdal.go 项目: helmi03/gdal
func (dataset Dataset) LayerCount() int {
	count := C.OGR_DS_GetLayerCount(dataset.cval)
	return int(count)
}