markrodrigo commited on
Commit
9c6cf05
·
verified ·
1 Parent(s): 87cf2f4

Update to Beta

Browse files
Files changed (1) hide show
  1. README.md +2 -15
README.md CHANGED
@@ -13,13 +13,13 @@ tags:
13
  ---
14
 
15
 
16
- **EXPERIMENTAL ALPHA**
17
  </br>
18
  **CURRENTLY TESTING**
19
  </br>
20
  **ENGLISH ONLY**
21
  </br>
22
- **MODIFICATIONS INBOUND - NOTES BELOW ON SQL ##RESPONSE TRAINING CHALLENGES**
23
 
24
 
25
  ### Model Information
@@ -91,27 +91,14 @@ CENTROID
91
  \### Input: What is the centroid for the polygon? : 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))'
92
  <p></p>
93
 
94
- **actual**
95
-
96
- \### Response: SELECT ST_Centroid(geog) FROM (select 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))' :: geography as geog) subquery
97
-
98
- **desired**
99
-
100
  \### Response: SELECT ST_AsText(ST_Centroid(geog)) As centroid FROM (select 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))' :: geography geog) subquery;
101
 
102
- <p></p>
103
  BUFFER
104
  <p></p>
105
 
106
  \### Input: What is the thousand meter buffer for the following point? : 'Point(-8.7522658 41.3862664)'
107
  <p></p>
108
 
109
- **actual**
110
-
111
- \### Response: SELECT ST_Buffer(geog, 1000) FROM (select 'Point(-8.7522658 41.3862664)' :: geography as geog) subquery
112
-
113
- **desired**
114
-
115
  \### Response: SELECT ST_AsText(ST_Buffer(geog, 1000)) as buffer FROM (select 'Point(-8.7522658 41.3862664)' :: geography geog) subquery;
116
 
117
  <p></p>
 
13
  ---
14
 
15
 
16
+ **EXPERIMENTAL BETA**
17
  </br>
18
  **CURRENTLY TESTING**
19
  </br>
20
  **ENGLISH ONLY**
21
  </br>
22
+ **MODIFICATIONS INBOUND**
23
 
24
 
25
  ### Model Information
 
91
  \### Input: What is the centroid for the polygon? : 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))'
92
  <p></p>
93
 
 
 
 
 
 
 
94
  \### Response: SELECT ST_AsText(ST_Centroid(geog)) As centroid FROM (select 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))' :: geography geog) subquery;
95
 
 
96
  BUFFER
97
  <p></p>
98
 
99
  \### Input: What is the thousand meter buffer for the following point? : 'Point(-8.7522658 41.3862664)'
100
  <p></p>
101
 
 
 
 
 
 
 
102
  \### Response: SELECT ST_AsText(ST_Buffer(geog, 1000)) as buffer FROM (select 'Point(-8.7522658 41.3862664)' :: geography geog) subquery;
103
 
104
  <p></p>