1 2 3 4 5 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 192 193 194 195 196 197 198 199
|
# THIS FILE IS AUTOGENERATED
# The template can be found in tools/hektemplate.py
# Unless you are editing the template, DO NOT EDIT THIS FILE.
# ALL CHANGES WILL BE LOST THE NEXT TIME IT IS GENERATED FROM THE TEMPLATE.
"""
Attributes that can be used to construct HEK queries. They are different to
the VSO ones in that a lot of them are wrappers that conveniently expose
the comparisons by overloading Python operators. So, e.g., you are able
to say AR & AR.NumSpots < 5 to find all active regions with less than 5 spots.
As with the VSO query, you can use the fundamental logic operators AND and OR
to construct queries of almost arbitrary complexity. Note that complex queries
result in multiple requests to the server which might make them less efficient.
"""
from sunpy.net import attr as _attr
from sunpy.net import attrs as _attrs
from sunpy.time import parse_time as _parse_time
# Due to the fact this file is autogenereted it doesn't have an __all__, so all
# not _ prefixed variables must be parseable by automodapi
def _makeinstance(f):
"""
A decorator which converts a class object to a class instance.
"""
return f()
class HEKAttr(_attr.AttrComparison):
"""
This ensures the attr inspect magic works for registering in the client.
"""
class HEKComparisonParamAttrWrapper(_attr.ComparisonParamAttrWrapper):
def __init__(self, name):
self.name = name
def __lt__(self, other):
return HEKAttr(self.name, '<', other)
def __le__(self, other):
return HEKAttr(self.name, '<=', other)
def __gt__(self, other):
return HEKAttr(self.name, '>', other)
def __ge__(self, other):
return HEKAttr(self.name, '>=', other)
def __eq__(self, other):
return HEKAttr(self.name, '=', other)
def __ne__(self, other):
return HEKAttr(self.name, '!=', other)
def collides(self, other):
return isinstance(other, HEKComparisonParamAttrWrapper)
class EventType(_attr.Attr):
def __init__(self, item):
super().__init__()
self.item = item
def collides(self, other):
return isinstance(other, EventType)
def __or__(self, other):
if isinstance(other, EventType):
return EventType(self.item + ',' + other.item)
else:
return super().__or__(other)
class SpatialRegion(_attr.Attr):
def __init__(self, x1=-5000, y1=-5000, x2=5000, y2=5000,
sys='helioprojective'):
super().__init__()
self.x1 = x1
self.y1 = y1
self.x2 = x2
self.y2 = y2
self.sys = sys
def collides(self, other):
return isinstance(other, SpatialRegion)
def __eq__(self, other):
if not isinstance(other, self.__class__):
return False
return vars(self) == vars(other)
def __hash__(self):
return hash(tuple(vars(self).items()))
class Contains(_attr.Attr):
def __init__(self, *types):
super().__init__()
self.types = types
def collides(self, other):
return False
def __eq__(self, other):
if not isinstance(other, self.__class__):
return False
return vars(self) == vars(other)
def __hash__(self):
return hash(tuple(vars(self).items()))
class _StringParamAttrWrapper(HEKComparisonParamAttrWrapper):
def like(self, other):
return HEKAttr(self.name, 'like', other)
# The walker is what traverses the attribute tree and converts it to a format
# that is understood by the server we are querying. The HEK walker builds up
# a dictionary of GET parameters to be sent to the server.
walker = _attr.AttrWalker()
@walker.add_applier(Contains)
def _a(wlk, root, state, dct):
dct['type'] = 'contains'
if Contains not in state:
state[Contains] = 1
nid = state[Contains]
n = 0
for n, type_ in enumerate(root.types):
dct[f'event_type{nid + n:d}'] = type_
state[Contains] += n
return dct
@walker.add_creator(
_attrs.Time, SpatialRegion, EventType, HEKAttr, _attr.AttrAnd, Contains)
def _c(wlk, root, state):
value = {}
wlk.apply(root, state, value)
return [value]
@walker.add_applier(_attrs.Time)
def _a(wlk, root, state, dct):
dct['event_starttime'] = _parse_time(root.start).strftime('%Y-%m-%dT%H:%M:%S')
dct['event_endtime'] = _parse_time(root.end).strftime('%Y-%m-%dT%H:%M:%S')
return dct
@walker.add_applier(SpatialRegion)
def _a(wlk, root, state, dct):
dct['x1'] = root.x1
dct['y1'] = root.y1
dct['x2'] = root.x2
dct['y2'] = root.y2
dct['event_coordsys'] = root.sys
return dct
@walker.add_applier(EventType)
def _a(wlk, root, state, dct):
if dct.get('type', None) == 'contains':
raise ValueError
dct['event_type'] = root.item
return dct
@walker.add_applier(HEKAttr)
def _a(wlk, root, state, dct):
if HEKAttr not in state:
state[HEKAttr] = 0
nid = state[HEKAttr]
dct[f'param{nid:d}'] = root.name
dct[f'operator{nid:d}'] = root.operator
dct[f'value{nid:d}'] = root.value
state[HEKAttr] += 1
return dct
@walker.add_applier(_attr.AttrAnd)
def _a(wlk, root, state, dct):
for attribute in root.attrs:
wlk.apply(attribute, state, dct)
@walker.add_creator(_attr.AttrOr)
def _c(wlk, root, state):
blocks = []
for attribute in root.attrs:
blocks.extend(wlk.create(attribute, state))
return blocks
|