| 97 | |
| 98 | == Create a GIST index to increase a query speed == |
| 99 | - ''' Transform geometry for the temperature tmp''' |
| 100 | {{{ |
| 101 | CREATE INDEX indextmp ON temperature.tmp |
| 102 | USING GIST ( the_geom GIST_GEOMETRY_OPS ); |
| 103 | }}} |
| 104 | |
| 105 | - ''' Transform geometry for the temperature tmx''' |
| 106 | {{{ |
| 107 | CREATE INDEX indextmx ON temperature.tmx |
| 108 | USING GIST ( the_geom GIST_GEOMETRY_OPS ); |
| 109 | }}} |
| 110 | |
| 111 | - ''' Transform geometry for the temperature tmn''' |
| 112 | {{{ |
| 113 | CREATE INDEX indextmn ON temperature.tmn |
| 114 | USING GIST ( the_geom GIST_GEOMETRY_OPS ); |
| 115 | }}} |