Exemplo n.º 1
0
Arquivo: ogr.go Projeto: 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)
}
Exemplo n.º 2
0
Arquivo: gdal.go Projeto: helmi03/gdal
func (dataset Dataset) LayerCount() int {
	count := C.OGR_DS_GetLayerCount(dataset.cval)
	return int(count)
}