sr-murthy

Results 43 comments of sr-murthy

I think there is also a typo error on page 11 of your book - in the method `Url.get_by_short_url(cls, short_url)` the line `url_mapping = Url.load_url_mapping()` should be `url_mapping = Url.__load_url_mapping()`....

I don't run Conda, but have you tried `import platform; platform.platform`? If not then a more direct approach is to run `which python` via a shell command, and to parse...

@thehesiod I assume this remains an open issue - if so can I work on it?

Yes, this makes sense because insertion of entries requires a (not necessarily unique) ID and a bounding box. It does seem strange that insertion of duplicate entries (entries with identical...

I've created a PR here https://github.com/Toblerity/rtree/pull/133 that clarifies the docstring for `index.Index.delete`. I hope it addresses the documentation side of this issue. Clearly, as the index allows insertion of multiple...

@hobu @thehesiod What should be done about the error/exception issue?

The entries in the R-tree index are minimum bounding rectangles (MBR) of point sets, not oriented line segments, and the intersection and nearest neightbour queries are point-MBR queries. The MBR...

A few points * To get the index total size count you don't need to manually pass the bounds - you can pass the `bounds` attribute to the `count` method...