geovista.report#
Generate an environment report of the Python packages and GPU hardware resources.
ノート#
Added in version 0.4.0.
属性#
Default number of package columns in report HTML table. |
|
The core packages of geovista to include in the environment report. |
|
The optional packages of geovista to include in the environment report. |
|
Type alias for a package module or package name. |
|
Default text width of non-HTML report. |
Classes#
Generate an environment package and hardware report. |
モジュール内容#
- class geovista.report.Report(*, additional=None, ncol=None, text_width=None, sort=True, gpu=True)[ソース]#
Bases:
scooby.ReportGenerate an environment package and hardware report.
ノート#
Added in version 0.4.0.
Generate an environment package and hardware report.
- Parameters:
- additional
PackageLikeorlistofPackageLike, optional Extra package modules or package names to include in the report.
- ncol
int, optional The number of package columns in a HTML table report. Defaults to
NCOL.- text_width
int, optional The number of character columns in a non-HTML report. Defaults to
TEXT_WIDTH.- sort
bool, optional Alphabetically sort the packages. Defaults to
True.- gpu
bool, optional Detect GPU hardware details. Defaults to
True. Disable this option if experiencing rendering issues to ensure report generation.
- additional
ノート
Added in version 0.4.0.
- geovista.report.PACKAGES_CORE: list[str] = ['cartopy', 'click', 'click-default-group', 'cmocean', 'colorcet', 'geopy', 'geovista',...#
The core packages of geovista to include in the environment report.
- geovista.report.PACKAGES_OPTIONAL: list[str] = ['fastparquet', 'h3', 'pandas', 'pyqt', 'pyvistaqt', 'rasterio', 'ipython', 'imageio', 'meshio',...#
The optional packages of geovista to include in the environment report.
- type geovista.report.PackageLike = str | types.ModuleType#
Type alias for a package module or package name.