Skip to content

columns

Reusable internal column names. Useful for referring to the the same column across multiple components.

ColNames

Class that enumerates all the column names.

Source code in multimno/core/constants/columns.py
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
class ColNames:
    """
    Class that enumerates all the column names.
    """

    user_id = "user_id"
    partition_id = "partition_id"
    timestamp = "timestamp"
    mcc = "mcc"
    mnc = "mnc"
    plmn = "plmn"
    cell_id = "cell_id"
    latitude = "latitude"
    longitude = "longitude"
    error_flag = "error_flag"
    transformation_flag = "transformation_flag"
    affected_field = "affected_field"
    domain = "domain"
    # default values for domain col
    domestic = 1
    inbound = 2
    outbound = 3

    altitude = "altitude"
    antenna_height = "antenna_height"
    directionality = "directionality"
    azimuth_angle = "azimuth_angle"
    elevation_angle = "elevation_angle"
    horizontal_beam_width = "horizontal_beam_width"
    vertical_beam_width = "vertical_beam_width"
    power = "power"
    range = "range"
    frequency = "frequency"
    technology = "technology"
    valid_date_start = "valid_date_start"
    valid_date_end = "valid_date_end"
    cell_type = "cell_type"

    loc_error = "loc_error"
    event_id = "event_id"

    year = "year"
    month = "month"
    day = "day"
    user_id_modulo = "user_id_modulo"

    # for QA by column
    variable = "variable"
    type_of_error = "type_of_error"
    type_of_transformation = "type_of_transformation"
    value = "value"
    result_timestamp = "result_timestamp"
    data_period_start = "data_period_start"
    data_period_end = "data_period_end"
    field_name = "field_name"
    initial_frequency = "initial_frequency"
    final_frequency = "final_frequency"
    date = "date"

    # warnings
    # log table
    measure_definition = "measure_definition"
    lookback_period = "lookback_period"
    daily_value = "daily_value"
    condition_value = "condition_value"
    condition = "condition"
    warning_text = "warning_text"
    # for plots
    type_of_qw = "type_of_qw"
    average = "average"
    UCL = "UCL"
    LCL = "LCL"
    title = "title"

    # top frequent errors
    error_value = "error_value"
    error_count = "error_count"
    accumulated_percentage = "accumulated_percentage"

    # for grid generation
    geometry = "geometry"
    grid_id = "grid_id"
    elevation = "elevation"
    land_use = "land_use"
    type_code = "type_code"
    prior_probability = "prior_probability"
    ple_coefficient = "environment_ple_coefficient"
    quadkey = "quadkey"

    # device activity statistics
    event_cnt = "event_cnt"
    unique_cell_cnt = "unique_cell_cnt"
    unique_location_cnt = "unique_location_cnt"
    sum_distance_m = "sum_distance_m"
    unique_hour_cnt = "unique_hour_cnt"
    mean_time_gap = "mean_time_gap"
    stdev_time_gap = "stdev_time_gap"

    # signal
    signal_strength = "signal_strength"
    distance_to_cell = "distance_to_cell"
    distance_to_cell_3D = "distance_to_cell_3D"
    joined_geometry = "joined_geometry"
    path_loss_exponent = "path_loss_exponent"
    azimuth_signal_strength_back_loss = "azimuth_signal_strength_back_loss"
    elevation_signal_strength_back_loss = "elevation_signal_strength_back_loss"

    # for cell footprint
    signal_dominance = "signal_dominance"
    group_id = "group_id"
    cells = "cells"
    group_size = "group_size"

    # time segments
    time_segment_id = "time_segment_id"
    start_timestamp = "start_timestamp"
    end_timestamp = "end_timestamp"
    state = "state"
    is_last = "is_last"

    # for cell connection probability
    cell_connection_probability = "cell_connection_probability"
    posterior_probability = "posterior_probability"

    # dps (daily permanence score)
    dps = "dps"
    time_slot_initial_time = "time_slot_initial_time"
    time_slot_end_time = "time_slot_end_time"
    id_type = "id_type"
    # time_slot_duration = "time_slot_duration"

    # midterm permanence score
    mps = "mps"
    day_type = "day_type"
    time_interval = "time_interval"
    regularity_mean = "regularity_mean"
    regularity_std = "regularity_std"

    # longterm permanence score
    lps = "lps"
    total_frequency = "total_frequency"
    frequency_mean = "frequency_mean"
    frequency_std = "frequency_std"
    start_date = "start_date"
    end_date = "end_date"
    season = "season"

    # diaries
    stay_type = "stay_type"
    activity_type = "activity_type"
    initial_timestamp = "initial_timestamp"
    final_timestamp = "final_timestamp"

    # present population
    device_count = "device_count"
    population = "population"

    # zone to grid mapping
    zone_id = "zone_id"
    hierarchical_id = "hierarchical_id"
    dataset_id = "dataset_id"

    # for spatial data
    category = "category"
    zone_id = "zone_id"
    level = "level"
    parent_id = "parent_id"
    iso2 = "iso2"
    iso3 = "iso3"
    name = "name"
    dataset_id = "dataset_id"
    hierarchical_id = "hierarchical_id"

    # for usual environment labels
    label = "label"
    ue_label_rule = "ue_label_rule"
    location_label_rule = "location_label_rule"

    # for usual environment labeling quality metrics
    labeling_quality_metric = "metric"
    labeling_quality_count = "count"

    # for usual environment aggregation
    weighted_device_count = "weighted_device_count"
    tile_weight = "tile_weight"
    device_tile_weight = "device_tile_weight"