not-lain commited on
Commit
de72fae
·
verified ·
1 Parent(s): 3a4ba54

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - mermaid
4
+ ---
5
+
6
+
7
+ ```mermaid
8
+ graph TD;
9
+ A-->B;
10
+ A-->C;
11
+ B-->D;
12
+ C-->D;
13
+ ```
14
+
15
+ ```geojson
16
+ {
17
+ "type": "FeatureCollection",
18
+ "features": [
19
+ {
20
+ "type": "Feature",
21
+ "id": 1,
22
+ "properties": {
23
+ "ID": 0
24
+ },
25
+ "geometry": {
26
+ "type": "Polygon",
27
+ "coordinates": [
28
+ [
29
+ [-90,35],
30
+ [-90,30],
31
+ [-85,30],
32
+ [-85,35],
33
+ [-90,35]
34
+ ]
35
+ ]
36
+ }
37
+ }
38
+ ]
39
+ }
40
+ ```