diff --git a/README.md b/README.md index ecf546e..e473bec 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![image](https://img.shields.io/badge/YouTube-Channel-red)](https://www.youtube.com/c/QiushengWu) [![image](https://img.shields.io/twitter/follow/giswqs?style=social)](https://twitter.com/giswqs) -**A collection of Python packages for geosptial analysis and data visualization.** +**A Python package for installing commonly used packages for geospatial analysis and data visualization with only one command.** - Free software: MIT license - Documentation: https://geospatial.gishub.org diff --git a/docs/index.ipynb b/docs/index.ipynb index 84b3b84..9e771a9 100644 --- a/docs/index.ipynb +++ b/docs/index.ipynb @@ -17,14 +17,19 @@ "[![image](https://img.shields.io/badge/YouTube-Channel-red)](https://www.youtube.com/c/QiushengWu)\n", "[![image](https://img.shields.io/twitter/follow/giswqs?style=social)](https://twitter.com/giswqs)\n", "\n", - "**A collection of Python packages for geosptial analysis and data visualization. Installing commonly used GeoPython packages with one single command.**\n", + "**A Python package for installing commonly used packages for geospatial analysis and data visualization with only one command.**\n", "\n", "- Free software: MIT license\n", "- Documentation: https://geospatial.gishub.org\n", "\n", + "## Disclaimer\n", + "\n", + "Currently, the `geospatial` package only helps you install commonly used packages for geospatial analysis and data visualization with only one command, making it easier to set up a conda environment for geospatial analysis and avoid dependency conflicts during installation. The `geospatial` package itself does not have any meaningful functions yet. After installation, you can continue to the commonly used geospatial packages as usual. \n", + "\n", + "\n", "## Installation\n", "\n", - "Install commonly used geospatial packages with one line of code.\n", + "Installing commonly used packages for geospatial analysis and data visualization with only one command.\n", "\n", "```\n", "mamba install -c conda-forge geospatial\n", diff --git a/docs/usage.md b/docs/usage.md index 3ad32d5..9c25a89 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -1,7 +1,9 @@ # Usage -To use geospatial in a project: +Currently, the `geospatial` package only helps you install commonly used packages for geospatial analysis and data visualization with only one command, making it easier to set up a conda environment for geospatial analysis and avoid dependency conflicts during installation. The `geospatial` package itself does not have any meaningful functions yet. After installation, you can continue to the commonly used geospatial packages as usual. For example: -``` -import geospatial +```python +import leafmap +m = leafmap.Map() +m ``` diff --git a/setup.py b/setup.py index 17290e4..f6f7ab9 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', ], - description="A Python package for geosptial analysis and data visualization.", + description="A Python package for installing commonly used packages for geospatial analysis and data visualization with only one command.", install_requires=install_requires, dependency_links=dependency_links, license="MIT license",