From 247b79671ec68f7c4c660d747930a1fcd0bc83b0 Mon Sep 17 00:00:00 2001 From: Alexis Durgnat <alexis.durgnat@hesge.ch> Date: Fri, 24 Jun 2022 17:09:50 +0200 Subject: [PATCH] Update documentation --- docs/conf.py | 1 + docs/index.rst | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9cf4aad..0599dcd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,6 +33,7 @@ release = '0.0.1' extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', + "sphinx.ext.autosummary", "sphinx_autodoc_typehints" ] diff --git a/docs/index.rst b/docs/index.rst index 306cb24..11afb45 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,10 +10,23 @@ Welcome to EsriMap's documentation! :maxdepth: 2 :caption: Contents: -.. automodule:: esrimap +EsriAscii +=================================== + +This class allow to work with Esri ASCII raster files using numpy and python. + +For more information on Esri ASCII raster files, please see : https://desktop.arcgis.com/fr/arcmap/latest/manage-data/raster-and-images/esri-ascii-raster-format.htm + +.. autoclass:: esrimap.EsriAscii :members: :undoc-members: +EsriCoordinateType +=================================== + +.. autoclass:: esrimap.EsriCoordinateType + :members: + :undoc-members: Indices and tables -- GitLab