Browse Source

New nodes

pull/847/head
AlexGacon 1 year ago
parent
commit
5df69f9b17
22 changed files with 49 additions and 0 deletions
  1. +4
    -0
      diagrams/gis/cli.py
  2. +4
    -0
      diagrams/gis/format.py
  3. +4
    -0
      diagrams/gis/javascript.py
  4. +4
    -0
      diagrams/gis/python.py
  5. +12
    -0
      diagrams/gis/server.py
  6. +21
    -0
      docs/nodes/gis.md
  7. BIN
      resources/gis/cli/lastools.png
  8. BIN
      resources/gis/format/geoparquet.png
  9. BIN
      resources/gis/javascript/leaflet.png
  10. BIN
      resources/gis/python/pysal.png
  11. BIN
      resources/gis/server/actinia.png
  12. BIN
      resources/gis/server/g3w-suite.png
  13. BIN
      resources/gis/server/geomesa.png
  14. BIN
      website/static/img/resources/gis/cli/lastools.png
  15. BIN
      website/static/img/resources/gis/data/nev_logo.png
  16. BIN
      website/static/img/resources/gis/format/geoparquet.png
  17. BIN
      website/static/img/resources/gis/javascript/leaflet.png
  18. BIN
      website/static/img/resources/gis/javascript/png-transparent-leaflet-javascript-library-web-browser-plug-in-software-framework-others-leaf-rss-map.png
  19. BIN
      website/static/img/resources/gis/python/pysal.png
  20. BIN
      website/static/img/resources/gis/server/actinia.png
  21. BIN
      website/static/img/resources/gis/server/g3w-suite.png
  22. BIN
      website/static/img/resources/gis/server/geomesa.png

+ 4
- 0
diagrams/gis/cli.py View File

@@ -12,4 +12,8 @@ class Gdal(_Cli):
_icon = "gdal.png" _icon = "gdal.png"




class Lastools(_Cli):
_icon = "lastools.png"


# Aliases # Aliases

+ 4
- 0
diagrams/gis/format.py View File

@@ -12,4 +12,8 @@ class Geopackage(_Format):
_icon = "geopackage.png" _icon = "geopackage.png"




class Geoparquet(_Format):
_icon = "geoparquet.png"


# Aliases # Aliases

+ 4
- 0
diagrams/gis/javascript.py View File

@@ -20,6 +20,10 @@ class Keplerjs(_Javascript):
_icon = "keplerjs.png" _icon = "keplerjs.png"




class Leaflet(_Javascript):
_icon = "leaflet.png"


class Maplibre(_Javascript): class Maplibre(_Javascript):
_icon = "maplibre.png" _icon = "maplibre.png"




+ 4
- 0
diagrams/gis/python.py View File

@@ -12,4 +12,8 @@ class Geopandas(_Python):
_icon = "geopandas.png" _icon = "geopandas.png"




class Pysal(_Python):
_icon = "pysal.png"


# Aliases # Aliases

+ 12
- 0
diagrams/gis/server.py View File

@@ -8,6 +8,10 @@ class _Server(_GIS):
_icon_dir = "resources/gis/server" _icon_dir = "resources/gis/server"




class Actinia(_Server):
_icon = "actinia.png"


class Baremaps(_Server): class Baremaps(_Server):
_icon = "baremaps.png" _icon = "baremaps.png"


@@ -16,6 +20,10 @@ class Deegree(_Server):
_icon = "deegree.png" _icon = "deegree.png"




class G3WSuite(_Server):
_icon = "g3w-suite.png"


class Geohealthcheck(_Server): class Geohealthcheck(_Server):
_icon = "geohealthcheck.png" _icon = "geohealthcheck.png"


@@ -24,6 +32,10 @@ class Geomapfish(_Server):
_icon = "geomapfish.png" _icon = "geomapfish.png"




class Geomesa(_Server):
_icon = "geomesa.png"


class Geonetwork(_Server): class Geonetwork(_Server):
_icon = "geonetwork.png" _icon = "geonetwork.png"




+ 21
- 0
docs/nodes/gis.md View File

@@ -11,6 +11,9 @@ Node classes list of gis provider.
<img width="30" src="/img/resources/gis/cli/gdal.png" alt="Gdal" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/cli/gdal.png" alt="Gdal" style="float: left; padding-right: 5px;" >
**diagrams.gis.cli.Gdal** **diagrams.gis.cli.Gdal**


<img width="30" src="/img/resources/gis/cli/lastools.png" alt="Lastools" style="float: left; padding-right: 5px;" >
**diagrams.gis.cli.Lastools**

## gis.cplusplus ## gis.cplusplus




@@ -47,6 +50,9 @@ Node classes list of gis provider.
<img width="30" src="/img/resources/gis/format/geopackage.png" alt="Geopackage" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/format/geopackage.png" alt="Geopackage" style="float: left; padding-right: 5px;" >
**diagrams.gis.format.Geopackage** **diagrams.gis.format.Geopackage**


<img width="30" src="/img/resources/gis/format/geoparquet.png" alt="Geoparquet" style="float: left; padding-right: 5px;" >
**diagrams.gis.format.Geoparquet**

## gis.geocoding ## gis.geocoding




@@ -77,6 +83,9 @@ Node classes list of gis provider.
<img width="30" src="/img/resources/gis/javascript/keplerjs.png" alt="Keplerjs" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/javascript/keplerjs.png" alt="Keplerjs" style="float: left; padding-right: 5px;" >
**diagrams.gis.javascript.Keplerjs** **diagrams.gis.javascript.Keplerjs**


<img width="30" src="/img/resources/gis/javascript/leaflet.png" alt="Leaflet" style="float: left; padding-right: 5px;" >
**diagrams.gis.javascript.Leaflet**

<img width="30" src="/img/resources/gis/javascript/maplibre.png" alt="Maplibre" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/javascript/maplibre.png" alt="Maplibre" style="float: left; padding-right: 5px;" >
**diagrams.gis.javascript.Maplibre** **diagrams.gis.javascript.Maplibre**


@@ -122,6 +131,9 @@ Node classes list of gis provider.
<img width="30" src="/img/resources/gis/python/geopandas.png" alt="Geopandas" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/python/geopandas.png" alt="Geopandas" style="float: left; padding-right: 5px;" >
**diagrams.gis.python.Geopandas** **diagrams.gis.python.Geopandas**


<img width="30" src="/img/resources/gis/python/pysal.png" alt="Pysal" style="float: left; padding-right: 5px;" >
**diagrams.gis.python.Pysal**

## gis.routing ## gis.routing




@@ -140,18 +152,27 @@ Node classes list of gis provider.
## gis.server ## gis.server




<img width="30" src="/img/resources/gis/server/actinia.png" alt="Actinia" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.Actinia**

<img width="30" src="/img/resources/gis/server/baremaps.png" alt="Baremaps" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/server/baremaps.png" alt="Baremaps" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.Baremaps** **diagrams.gis.server.Baremaps**


<img width="30" src="/img/resources/gis/server/deegree.png" alt="Deegree" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/server/deegree.png" alt="Deegree" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.Deegree** **diagrams.gis.server.Deegree**


<img width="30" src="/img/resources/gis/server/g3w-suite.png" alt="G3WSuite" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.G3WSuite**

<img width="30" src="/img/resources/gis/server/geohealthcheck.png" alt="Geohealthcheck" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/server/geohealthcheck.png" alt="Geohealthcheck" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.Geohealthcheck** **diagrams.gis.server.Geohealthcheck**


<img width="30" src="/img/resources/gis/server/geomapfish.png" alt="Geomapfish" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/server/geomapfish.png" alt="Geomapfish" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.Geomapfish** **diagrams.gis.server.Geomapfish**


<img width="30" src="/img/resources/gis/server/geomesa.png" alt="Geomesa" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.Geomesa**

<img width="30" src="/img/resources/gis/server/geonetwork.png" alt="Geonetwork" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gis/server/geonetwork.png" alt="Geonetwork" style="float: left; padding-right: 5px;" >
**diagrams.gis.server.Geonetwork** **diagrams.gis.server.Geonetwork**




BIN
resources/gis/cli/lastools.png View File

Before After
Width: 256  |  Height: 256  |  Size: 32 KiB

BIN
resources/gis/format/geoparquet.png View File

Before After
Width: 256  |  Height: 256  |  Size: 46 KiB

BIN
resources/gis/javascript/leaflet.png View File

Before After
Width: 256  |  Height: 223  |  Size: 33 KiB

BIN
resources/gis/python/pysal.png View File

Before After
Width: 256  |  Height: 256  |  Size: 42 KiB

BIN
resources/gis/server/actinia.png View File

Before After
Width: 256  |  Height: 256  |  Size: 77 KiB

BIN
resources/gis/server/g3w-suite.png View File

Before After
Width: 256  |  Height: 256  |  Size: 22 KiB

BIN
resources/gis/server/geomesa.png View File

Before After
Width: 256  |  Height: 256  |  Size: 57 KiB

BIN
website/static/img/resources/gis/cli/lastools.png View File

Before After
Width: 256  |  Height: 256  |  Size: 32 KiB

BIN
website/static/img/resources/gis/data/nev_logo.png View File

Before After
Width: 405  |  Height: 85  |  Size: 11 KiB

BIN
website/static/img/resources/gis/format/geoparquet.png View File

Before After
Width: 256  |  Height: 256  |  Size: 46 KiB

BIN
website/static/img/resources/gis/javascript/leaflet.png View File

Before After
Width: 256  |  Height: 223  |  Size: 33 KiB

BIN
website/static/img/resources/gis/javascript/png-transparent-leaflet-javascript-library-web-browser-plug-in-software-framework-others-leaf-rss-map.png View File

Before After
Width: 920  |  Height: 800  |  Size: 30 KiB

BIN
website/static/img/resources/gis/python/pysal.png View File

Before After
Width: 256  |  Height: 256  |  Size: 42 KiB

BIN
website/static/img/resources/gis/server/actinia.png View File

Before After
Width: 256  |  Height: 256  |  Size: 77 KiB

BIN
website/static/img/resources/gis/server/g3w-suite.png View File

Before After
Width: 256  |  Height: 256  |  Size: 22 KiB

BIN
website/static/img/resources/gis/server/geomesa.png View File

Before After
Width: 256  |  Height: 256  |  Size: 57 KiB

Loading…
Cancel
Save