download_gpr_data_array#
- download_gpr_data_array(load: bool = True) ndarray | str[source]#
Download GPR example data array.
- Parameters:
- Returns:
- output
numpy.ndarray|str Array or filename depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> dataset = examples.download_gpr_data_array()
>>> dataset
array([[nan, nan, nan, ..., nan, nan, nan],
[nan, nan, nan, ..., nan, nan, nan],
[nan, nan, nan, ..., nan, nan, nan],
...,
[ 0., 0., 0., ..., 0., 0., 0.],
[ 0., 0., 0., ..., 0., 0., 0.],
[ 0., 0., 0., ..., 0., 0., 0.]])
See also
- Gpr Data Array Dataset
See this dataset in the Dataset Gallery for more info.
- Drape 2D Surface From Line
Example using this dataset.