Created
February 21, 2025 13:09
-
-
Save bennyistanto/d83af4a821d10595b5bb2279bb362e22 to your computer and use it in GitHub Desktop.
Visual diagram showing the relationship between the three frameworks of geospatial ecosystem
This file contains hidden or 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
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"> | |
<!-- Background --> | |
<rect width="800" height="400" fill="#ffffff"/> | |
<!-- IGIF Foundation --> | |
<path d="M100,300 L700,300 L400,100 Z" fill="#e3f2fd" stroke="#2196f3" stroke-width="2"/> | |
<text x="400" y="280" text-anchor="middle" font-family="Arial" font-size="16" fill="#1565c0">IGIF (Strategic Foundation)</text> | |
<!-- GKI Middle Layer --> | |
<rect x="150" y="150" width="500" height="100" rx="20" fill="#e8f5e9" stroke="#4caf50" stroke-width="2"/> | |
<text x="400" y="205" text-anchor="middle" font-family="Arial" font-size="16" fill="#2e7d32">GKI (Knowledge Infrastructure)</text> | |
<!-- Future Ecosystem Top --> | |
<circle cx="400" cy="100" r="60" fill="#fce4ec" stroke="#e91e63" stroke-width="2"/> | |
<text x="400" y="105" text-anchor="middle" font-family="Arial" font-size="14" fill="#c2185b">Future Geospatial</text> | |
<text x="400" y="125" text-anchor="middle" font-family="Arial" font-size="14" fill="#c2185b">Ecosystem</text> | |
<!-- Connecting Arrows --> | |
<defs> | |
<marker id="arrowhead" markerWidth="10" markerHeight="7" refX="9" refY="3.5" orient="auto"> | |
<polygon points="0 0, 10 3.5, 0 7" fill="#666"/> | |
</marker> | |
</defs> | |
<!-- Top arrow with longer line pointing upward --> | |
<line x1="400" y1="160" x2="400" y2="130" stroke="#666" stroke-width="2"/> | |
<path d="M400,160 L400,130" stroke="#666" stroke-width="2" marker-end="url(#arrowhead)"/> | |
<!-- Bottom arrow --> | |
<path d="M400,250 L400,220" stroke="#666" stroke-width="2" marker-end="url(#arrowhead)"/> | |
<!-- Labels --> | |
<text x="50" y="330" font-family="Arial" font-size="12" fill="#666">Strategic Alignment</text> | |
<text x="650" y="330" font-family="Arial" font-size="12" fill="#666">Implementation Path</text> | |
<text x="450" y="180" font-family="Arial" font-size="12" fill="#666">Knowledge Integration</text> | |
<text x="220" y="180" font-family="Arial" font-size="12" fill="#666">Capacity Building</text> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment