Module pygw.statistics.binning_strategy.partition_binning_strategy

Source code
#
# Copyright (c) 2013-2022 Contributors to the Eclipse Foundation

#
# See the NOTICE file distributed with this work for additional information regarding copyright
# ownership. All rights reserved. This program and the accompanying materials are made available
# under the terms of the Apache License, Version 2.0 which accompanies this distribution and is
# available at http://www.apache.org/licenses/LICENSE-2.0.txt
# ===============================================================================================
from pygw.config import geowave_pkg
from ..statistic_binning_strategy import StatisticBinningStrategy


class PartitionBinningStrategy(StatisticBinningStrategy):
    """
    Statistic binning strategy that bins statistic values by the partitions that the entry resides on.
    """

    def __init__(self, java_ref=None):
        if java_ref is None:
            java_ref = geowave_pkg.core.store.statistics.binning.PartitionBinningStrategy()
        super().__init__(java_ref)

Classes

class PartitionBinningStrategy (java_ref=None)

Statistic binning strategy that bins statistic values by the partitions that the entry resides on.

Source code
class PartitionBinningStrategy(StatisticBinningStrategy):
    """
    Statistic binning strategy that bins statistic values by the partitions that the entry resides on.
    """

    def __init__(self, java_ref=None):
        if java_ref is None:
            java_ref = geowave_pkg.core.store.statistics.binning.PartitionBinningStrategy()
        super().__init__(java_ref)

Ancestors

Inherited members