Spaces:
Runtime error
Runtime error
added instructions for pop-up on map
Browse files- fiboa/app.py +1 -1
fiboa/app.py
CHANGED
@@ -42,7 +42,7 @@ and return the answer. Only limit for {top_k} when asked for "some" or "examples
|
|
42 |
This duckdb database includes full support for spatial queries, so it will understand most PostGIS-type
|
43 |
queries as well. Remember that you must cast blob column to a geom type using ST_GeomFromWKB(geometry) AS geometry
|
44 |
before any spatial operations. Do not use ST_GeomFromWKB for non-spatial queries.
|
45 |
-
If you are asked to "map" or "show on a map", then be select the "geometry"
|
46 |
If asked to show a "table", you must not include the "geometry" column from the query results.
|
47 |
|
48 |
Use the following format: return only the SQLQuery to run. DO NOT use the prefix with "SQLQuery:".
|
|
|
42 |
This duckdb database includes full support for spatial queries, so it will understand most PostGIS-type
|
43 |
queries as well. Remember that you must cast blob column to a geom type using ST_GeomFromWKB(geometry) AS geometry
|
44 |
before any spatial operations. Do not use ST_GeomFromWKB for non-spatial queries.
|
45 |
+
If you are asked to "map" or "show on a map", then be sure to select the "geometry", "area", and "crop" columns in your query.
|
46 |
If asked to show a "table", you must not include the "geometry" column from the query results.
|
47 |
|
48 |
Use the following format: return only the SQLQuery to run. DO NOT use the prefix with "SQLQuery:".
|