Changes between Initial Version and Version 1 of Ticket #19339


Ignore:
Timestamp:
Nov 22, 2012, 2:20:39 AM (11 years ago)
Author:
Claude Paroz
Comment:

Without more details about your model and a traceback, we won't be able to determine if the problem is in Django itself.

I'd suggest you use support channels first, then reopen if you can show us there is a bug in Django.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19339

    • Property Resolutionneedsinfo
    • Property Status newclosed
  • Ticket #19339 – Description

    initial v1  
    11I am newbie in using geodjango, I need to check whether a point is present in a multipolygon layer. For trial I used
     2{{{
    23x = '640744.97964'
    34y = '2498614.18957'
    45p = Point(float(x), float(y), srid=32645)
    56pt=layer.objects.get(the_geom__contains=p)
     7}}}
    68
    79but I got the error NoneType object has no attribute 'group'
Back to Top