collective.geo.geographer

by Giorgio Borelli last modified Feb 11, 2012 09:20 PM

Geographic annotation for Plone

Project Description

collective.geo.geographer

collective.geo.geographer

Introduction

collective.geo.geographer provides geo annotation for Plone.

This package is based on Sean Gillies's idea (zgeo.geographer) and integrates its functionalities in collective.geo project.

Requirements

  • simplejson
  • geopy
  • Plone >= 4

How it work

Any object that implements zope.annotation.interfaces.IAttributeAnnotatable and collective.geo.geographer.interfaces.IGeoreferenceable can be adapted and geo-referenced. The former marker is standard for Zope content objects, and the latter can be easily configured via ZCML.

Let's test with an example placemark, which provides both of the marker interfaces mentioned above.

>>> from zope.interface import implements
>>> from zope.annotation.interfaces import IAttributeAnnotatable
>>> from collective.geo.geographer.interfaces import IGeoreferenceable
>>> class Placemark(object):
...     implements(IGeoreferenceable, IAttributeAnnotatable)
>>> placemark = Placemark()

Adapt it to IGeoreferenced

>>> from collective.geo.geographer.interfaces import IGeoreferenced
>>> geo = IGeoreferenced(placemark)

Its properties should all be None

>>> geo.type is None
True
>>> geo.coordinates is None
True
>>> geo.crs is None
True

Now set the location geometry to type "Point" and coordinates 105.08 degrees West, 40.59 degrees North using setGeoInterface()

>>> geo.setGeoInterface('Point', (-105.08, 40.59))

A georeferenced object has "type" and "coordinates" attributes which should give us back what we put in.

>>> geo.type
'Point'
>>> geo.coordinates
(-105.08, 40.590000000000003)
>>> geo.crs is None
True

An event should have been sent

>>> from zope.component.eventtesting import getEvents
>>> from collective.geo.geographer.event import IObjectGeoreferencedEvent
>>> events = getEvents(IObjectGeoreferencedEvent)
>>> events[-1].object is placemark
True

To remove the coordinate from a georeferenced object, we can use removeGeoInterface method:

>>> geo.removeGeoInterface()
>>> geo.type is None
True
>>> geo.coordinates is None
True
>>> geo.crs is None
True

Plone integration

Make a topic in our folder

>>> from plone.app.testing import setRoles
>>> from plone.app.testing import TEST_USER_ID
>>> portal = layer['portal']
>>> setRoles(portal, TEST_USER_ID, ['Manager'])
>>> oid = portal.invokeFactory('Topic', 'topic')
>>> topic = portal[oid]
>>> c = topic.addCriterion('getGeometry', 'ATBooleanCriterion')

Add geo-referenced content

>>> oid = portal.invokeFactory('Document', 'doc')
>>> doc = portal[oid]
If content type doesn't implements IGeoreferenceable interfaces we need to provide it
>>> from zope.interface import alsoProvides
>>> alsoProvides(doc, IGeoreferenceable)
now we can set the coordinates
>>> from collective.geo.geographer.interfaces import IWriteGeoreferenced
>>> geo = IWriteGeoreferenced(doc)
>>> geo.setGeoInterface('Point', (-100, 40))

Check the topic

>>> brain = [b for b in topic.queryCatalog() if b.id == 'doc'][0]
>>> brain.zgeo_geometry['type']
'Point'
>>> brain.zgeo_geometry['coordinates']
(-100, 40)
A simple view notify us if a context is geo referenceable
>>> doc.restrictedTraverse('@@geoview').isGeoreferenceable()
True
>>> topic.restrictedTraverse('@@geoview').isGeoreferenceable()
False
When we remove the coordinates, corresponding index will return None
>>> geo.removeGeoInterface()
>>> brain = [b for b in topic.queryCatalog() if b.id == 'doc'][0]
>>> brain.zgeo_geometry is None
True

Contributors

  • Sean Gillies
  • Giorgio Borelli

Changelog

1.4 (2012-02-11)

  • changed tests using plone.app.testing [gborelli]
  • Added IGeoCoder utility [gborelli]
  • Marked as deprecated IGeoCoder adapter [gborelli]
  • Added removeGeoInterface to remove coordinates from an object [mircoangelini]

0.1.3 (2011-09-05)

  • plone 4.1 fixes [gborelli]
  • include Products.CMFCore to make plone 4.1 happy [nan010]
  • changed Browser import from Testing.testbrowser [gborelli]
  • added z3c.autoinclude entry point [gborelli]

0.1.2 (2010-12-28)

  • Moved IGeoView from c.geo.contentlocations

0.1.1 (2010-11-13)

  • moved geocoderview to portal root

0.1 (2010-10-31)

  • removed zgeo.geographer dependency
  • zgeo.plone.geographer code refactoring
  • moved from zgeo.plone.geographer

Self-Certification

[X] Internationalized

[X] Unit tests

[ ] End-user documentation

[ ] Internal documentation (documentation, interfaces, etc.)

[X] Existed and maintained for at least 6 months

[ ] Installs and uninstalls cleanly

[ ] Code structure follows best practice

Current Release
collective.geo.geographer 1.4

Released Feb 11, 2012 — tested with Plone 4.1, Plone 4

Added removeGeoInterface to remove coordinates and added IGeoCoder utility
More about this release…

Download file Get collective.geo.geographer for all platforms
collective.geo.geographer-1.4.tar.gz
If you are using Plone 3.2 or higher, you probably want to install this product with buildout. See our tutorial on installing add-on products with buildout for more information.

All Releases

Version Released Description Compatibility Licenses Status
1.4 Feb 11, 2012 Added removeGeoInterface to remove coordinates and added IGeoCoder utility More about this release…
Plone 4.1
Plone 4
GPL final
0.1.3 Sep 05, 2011 bug fixes and plone 4.1 compatibility More about this release…
Plone 4.1
Plone 4
GPL final
0.1.2 Dec 28, 2010 minor fixes More about this release…
Plone 4
GPL final
0.1.1 Nov 13, 2010 moved geocoderview to portal root More about this release…
Plone 4
GPL final
0.1 first release More about this release…
Plone 4
GPL beta

Comments (0)