Metadata-Version: 1.1
Name: morton-py
Version: 1.0
Summary: Morton code pack/unpack library
Home-page: https://github.com/gojuno/morton-py
Author: Alexander Verbitsky
Author-email: averbitsky@gojuno.com
License: BSD
Description: Morton Pack/Unpack Library
        ==========================
        
        Basics
        ------
        
        Check `wikipedia <https://en.wikipedia.org/wiki/Z-order_curve>`_ for details.
        
        Example
        -------
        
        .. code-block:: python
        
            import morton
        
            m = morton.Morton(dimensions=2, bits=32)
            code = m.pack(13, 42)    # pack two values
            values = m.unpack(code)  # should get back 13 and 42
        
Keywords: z-order,morton coding,hashing
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
