All tools#
This page lists all open source Python GIS and Earth Observation libraries categorized into core (data structures), data processing, analysis and visualization. If you see any missing Python tools, please open a PR (see instructions). Tools are sorted alphabetically under each category. The linkages section shows how the tools are connected to the broader Python ecosystem.
Tables below list relevant information about the libraries, including:
links to the Homepage of the package (redirects after clicking the House character)
short Info (description) of the package: You can see the desciprtion by holding your mouse on top of the ⓘ character for a second
License
Latest PyPi and conda-forge version of the package
Number of downloads from PyPi or conda-forge
Latest release date
Libraries#
Show code cell source
from pygieons import Ecosystem
# Initialize
e = Ecosystem(log=False)
# Prepare data enough wait time between pypistat calls
e.prepare_data(sleep_time=1)
# Prepare the table and plot it
e.prepare_table().show()
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
Cell In[1], line 7
4 e = Ecosystem(log=False)
6 # Prepare data enough wait time between pypistat calls
----> 7 e.prepare_data(sleep_time=1)
9 # Prepare the table and plot it
10 e.prepare_table().show()
TypeError: Ecosystem.prepare_data() got an unexpected keyword argument 'sleep_time'
Linkages#
Show code cell source
# Initialize
e = Ecosystem(log=False)
# Prepare the network and plot it
e.prepare_net().show()