24__all__ = [
"IndexerRegistry"]
27from .htmIndexer
import HtmIndexer
29IndexerRegistry = makeRegistry(
30 """Registry of indexing algorithms
35class HtmIndexerConfig(Config):
37 doc="Depth of the HTM tree to make. Default is depth=7 which gives ~ 0.3 sq. deg. per trixel.",
49makeHtmIndexer.ConfigClass = HtmIndexerConfig
50IndexerRegistry.register(
"HTM", makeHtmIndexer)