================= Research ================= The research module will act as a container for functionality to investigate datasets, pretty much like QGIS users might be used to in the Vector/Reseach Tools menue. So far restricted to a single function, hopefully more to come. .. automodule:: ogr_utils.research :members: ---------------------- Example ---------------------- Get the geomtry of an evelope by it's lower left and upper right corner:: from ogr_utils.research import Research prof = Research() xy1 = (4.84692,52.3706) xy2 = (4.84397,52.36611) bb = prof.get_bounding_box( [xy1,xy2] )