Module pygw.query.statistics.statistic_query

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.query import Query


class StatisticQuery(Query):
    """
    Base statistic query class that wraps GeoWave statistic queries.
    """

    def __init__(self, java_ref, result_transformer):
        super().__init__(java_ref, result_transformer)

Classes

class StatisticQuery (java_ref, result_transformer)

Base statistic query class that wraps GeoWave statistic queries.

Source code
class StatisticQuery(Query):
    """
    Base statistic query class that wraps GeoWave statistic queries.
    """

    def __init__(self, java_ref, result_transformer):
        super().__init__(java_ref, result_transformer)

Ancestors

Inherited members