__init__.py 1018 B

1234567891011121314151617181920212223242526272829
  1. # MODULE: grass.jupyter
  2. #
  3. # AUTHOR(S): Caitlin Haedrich <caitlin DOT haedrich AT gmail>
  4. #
  5. # PURPOSE: Display classes and setup functions for running GRASS GIS
  6. # in Jupyter Notebooks
  7. #
  8. # COPYRIGHT: (C) 2021 Caitlin Haedrich, and by the GRASS Development Team
  9. #
  10. # This program is free software under the GNU General Public
  11. # License (>=v2). Read the file COPYING that comes with GRASS
  12. # for details.
  13. """Display classes and setup functions for running GRASS GIS in Jupyter Notebooks
  14. This subpackage of the grass package is experimental and under development. The API
  15. can change at anytime.
  16. The grass.jupyter subpackage improves the integration of GRASS GIS and Jupyter
  17. Notebooks. The original version was written as part of Google Summer of Code in 2021.
  18. For more information, visit https://trac.osgeo.org/grass/wiki/GSoC/2021/JupyterAndGRASS
  19. """
  20. from .display import *
  21. from .interact_display import *
  22. from .render3d import *
  23. from .setup import *
  24. from .utils import *