-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Addition of new GIS provider * Add information on how to add new provider * generated elements update * add new nodes in provider GIS * update gis provider content * add new elements * New nodes * add imposm * add here data provider * Apply last comments and add new nodes * Fix geonetwork image size * Cleaning, resizing icons * Add icon for gis provider * Move mapnik node * Move mapnik node * Try fixing precommit hook messages
- Loading branch information
Showing
174 changed files
with
3,037 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ providers=( | |
"generic" | ||
"openstack" | ||
"outscale" | ||
"gis" | ||
) | ||
|
||
if ! [ -x "$(command -v round)" ]; then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
GIS provides a set of services for Geographic Information Systems provider. | ||
""" | ||
|
||
from diagrams import Node | ||
|
||
|
||
class _GIS(Node): | ||
_provider = "gis" | ||
_icon_dir = "resources/gis" | ||
|
||
fontcolor = "#2d3436" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Cli(_GIS): | ||
_type = "cli" | ||
_icon_dir = "resources/gis/cli" | ||
|
||
|
||
class Gdal(_Cli): | ||
_icon = "gdal.png" | ||
|
||
|
||
class Imposm(_Cli): | ||
_icon = "imposm.png" | ||
|
||
|
||
class Lastools(_Cli): | ||
_icon = "lastools.png" | ||
|
||
|
||
class Mapnik(_Cli): | ||
_icon = "mapnik.png" | ||
|
||
|
||
class Mdal(_Cli): | ||
_icon = "mdal.png" | ||
|
||
|
||
class Pdal(_Cli): | ||
_icon = "pdal.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Cplusplus(_GIS): | ||
_type = "cplusplus" | ||
_icon_dir = "resources/gis/cplusplus" | ||
|
||
|
||
class Mapnik(_Cplusplus): | ||
_icon = "mapnik.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Data(_GIS): | ||
_type = "data" | ||
_icon_dir = "resources/gis/data" | ||
|
||
|
||
class BAN(_Data): | ||
_icon = "ban.png" | ||
|
||
|
||
class Here(_Data): | ||
_icon = "here.png" | ||
|
||
|
||
class IGN(_Data): | ||
_icon = "ign.png" | ||
|
||
|
||
class Openstreetmap(_Data): | ||
_icon = "openstreetmap.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Database(_GIS): | ||
_type = "database" | ||
_icon_dir = "resources/gis/database" | ||
|
||
|
||
class Postgis(_Database): | ||
_icon = "postgis.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Desktop(_GIS): | ||
_type = "desktop" | ||
_icon_dir = "resources/gis/desktop" | ||
|
||
|
||
class Maptunik(_Desktop): | ||
_icon = "maptunik.png" | ||
|
||
|
||
class QGIS(_Desktop): | ||
_icon = "qgis.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Format(_GIS): | ||
_type = "format" | ||
_icon_dir = "resources/gis/format" | ||
|
||
|
||
class Geopackage(_Format): | ||
_icon = "geopackage.png" | ||
|
||
|
||
class Geoparquet(_Format): | ||
_icon = "geoparquet.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Geocoding(_GIS): | ||
_type = "geocoding" | ||
_icon_dir = "resources/gis/geocoding" | ||
|
||
|
||
class Addok(_Geocoding): | ||
_icon = "addok.png" | ||
|
||
|
||
class Gisgraphy(_Geocoding): | ||
_icon = "gisgraphy.png" | ||
|
||
|
||
class Nominatim(_Geocoding): | ||
_icon = "nominatim.png" | ||
|
||
|
||
class Pelias(_Geocoding): | ||
_icon = "pelias.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Georchestra(_GIS): | ||
_type = "georchestra" | ||
_icon_dir = "resources/gis/georchestra" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Java(_GIS): | ||
_type = "java" | ||
_icon_dir = "resources/gis/java" | ||
|
||
|
||
class Geotools(_Java): | ||
_icon = "geotools.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Javascript(_GIS): | ||
_type = "javascript" | ||
_icon_dir = "resources/gis/javascript" | ||
|
||
|
||
class Cesium(_Javascript): | ||
_icon = "cesium.png" | ||
|
||
|
||
class Geostyler(_Javascript): | ||
_icon = "geostyler.png" | ||
|
||
|
||
class Keplerjs(_Javascript): | ||
_icon = "keplerjs.png" | ||
|
||
|
||
class Leaflet(_Javascript): | ||
_icon = "leaflet.png" | ||
|
||
|
||
class Maplibre(_Javascript): | ||
_icon = "maplibre.png" | ||
|
||
|
||
class OlExt(_Javascript): | ||
_icon = "ol-ext.png" | ||
|
||
|
||
class Openlayers(_Javascript): | ||
_icon = "openlayers.png" | ||
|
||
|
||
class Turfjs(_Javascript): | ||
_icon = "turfjs.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Mobile(_GIS): | ||
_type = "mobile" | ||
_icon_dir = "resources/gis/mobile" | ||
|
||
|
||
class Mergin(_Mobile): | ||
_icon = "mergin.png" | ||
|
||
|
||
class Qfield(_Mobile): | ||
_icon = "qfield.png" | ||
|
||
|
||
class Smash(_Mobile): | ||
_icon = "smash.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _OGC(_GIS): | ||
_type = "ogc" | ||
_icon_dir = "resources/gis/ogc" | ||
|
||
|
||
class OGC(_OGC): | ||
_icon = "ogc.png" | ||
|
||
|
||
class WFS(_OGC): | ||
_icon = "wfs.png" | ||
|
||
|
||
class WMS(_OGC): | ||
_icon = "wms.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _GIS | ||
|
||
|
||
class _Organization(_GIS): | ||
_type = "organization" | ||
_icon_dir = "resources/gis/organization" | ||
|
||
|
||
class Osgeo(_Organization): | ||
_icon = "osgeo.png" | ||
|
||
|
||
# Aliases |
Oops, something went wrong.