Changes between Version 52 and Version 53 of GeoDjango
- Timestamp:
- Mar 30, 2007, 10:31:14 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GeoDjango
v52 v53 58 58 = FAQ = 59 59 * Place your questions '''here'''. 60 * '''Q:''' When dealing with points (say, degrees) from, do they need to be converted to be useful on the back-end data, assuming -that- data is in degrees? Is it enough to have the same datum and origin? (Reading the intro above is likely to answer the question.)60 * '''Q:''' When dealing with points (say, degrees) from, do they need to be converted to be useful on the back-end data, assuming -that- data is in degrees? Is it enough to have the same datum and origin? (Reading the intro above is likely to answer the question.) 61 61 * My (JDunck) reading indicates yes. Given the same coordinate system (i.e. datum, origin, and axes), degrees are useful without conversion. 62 * '''Q:'''Can this implementation work with [http://dev.mysql.com/doc/refman/5.0/es/spatial-extensions.html MySQL spatial-extensions]. If not, it's planned? 62 * '''Q:''' Can this implementation work with [http://dev.mysql.com/doc/refman/5.0/en/spatial-extensions.html MySQL spatial-extensions]. If not, it's planned? 63 * No. Yes it's (now) planned, ''see'' Phase 3 below. From the last time I (jbronn) checked, MySQL's spatial capabilities have improved. However, we're going to focus our efforts on PostGIS until things are worked out a bit more -- as a spatial database it is more standards compliant (OpenGIS consortium), more widely used, and has more features (e.g. coordinate transformation, {{{geometry_columns}}} and {{{spatial_ref_sys}}} tables). It is definitely something I would want to implement in the future since I do ''like'' MySQL. 63 64 64 65 … … 71 72 == Phase 2 == 72 73 * Add as much from the PostGIS API as possible. 73 * Finish PostGIS indexing capability .74 * Finish PostGIS indexing capability (complete). 74 75 * Admin fields and forms. 75 76 * Add geometry-enabled routines to the fields that call directly on GEOS routines -- like area(), centroid(), etc. 76 77 * Support for mapping frameworks. 77 78 * Utilities for importing raster data (SHP files first) directly into Django models. 79 80 == Phase 3 == 81 * Support MySQL databases. 78 82 79 83 == Collaboration == … … 258 262 259 263 * ''See generally'', [http://postgis.refractions.net/docs/ch06.html#id2618041 "Operators", PostGIS Documentation at Ch. 6.2.2] 260 * '''Note:''' This API is subject to some change , ''i.e.'', {{{overlapsbelow}}} is expected to become {{{overlaps_below}}}.261 * {{{overlaps left}}}264 * '''Note:''' This API is subject to some change -- we're open to suggestions. 265 * {{{overlaps_left}}} 262 266 * Returns true if A's bounding box overlaps or is to the left of B's bounding box. 263 267 * PostGIS equivalent "{{{&<}}}" 264 * {{{overlaps right}}}268 * {{{overlaps_right}}} 265 269 * Returns true if A's bounding box overlaps or is to the right of B's bounding box. 266 270 * PostGIS equivalent "{{{&>}}}" … … 271 275 * Returns true if A's bounding box is strictly to the right of B's bounding box. 272 276 * PostGIS equivalent "{{{>>}}}" 273 * {{{overlaps below}}}277 * {{{overlaps_below}}} 274 278 * Returns true if A's bounding box overlaps or is below B's bounding box. 275 279 * PostGIS equivalent "{{{&<|}}}" 276 * {{{overlaps above}}}280 * {{{overlaps_above}}} 277 281 * Returns true if A's bounding box overlaps or is above B's bounding box. 278 282 * PostGIS equivalent "{{{|&>}}}" 279 * {{{strictly below}}}283 * {{{strictly_below}}} 280 284 * Returns true if A's bounding box is strictly below B's bounding box. 281 285 * PostGIS equivalent "{{{<<|}}}" 282 * {{{strictly above}}}286 * {{{strictly_above}}} 283 287 * Returns true if A's bounding box is strictly above B's bounding box. 284 288 * PostGIS equivalent "{{{|>>}}}" 285 * {{{same as}}}289 * {{{same_as}}} 286 290 * The "same as" operator. It tests actual geometric equality of two features. So if A and B are the same feature, vertex-by-vertex, the operator returns true. 287 291 * PostGIS equivalent "{{{~=}}}"