addressing the issue for once

This commit is contained in:
Abigail 2019-12-25 02:48:59 -05:00
parent 69d36fea7f
commit b0072f779e
5 changed files with 20 additions and 23 deletions

View File

@ -97,19 +97,18 @@ class AE7QCog(commands.Cog):
for row in table_contents[0:3]:
header = f'**{row[0]}** ({row[1]})'
body = f'Class: *{row[2]}*\n'
body += f'Region: *{row[3]}*\n'
body += f'Status: *{row[4]}*\n'
body += f'Granted: *{row[5]}*\n'
body += f'Effective: *{row[6]}*\n'
body += f'Cancelled: *{row[7]}*\n'
body += f'Expires: *{row[8]}*'
body = (f'Class: *{row[2]}*\n'
f'Region: *{row[3]}*\n'
f'Status: *{row[4]}*\n'
f'Granted: *{row[5]}*\n'
f'Effective: *{row[6]}*\n'
f'Cancelled: *{row[7]}*\n'
f'Expires: *{row[8]}*')
embed.add_field(name=header, value=body, inline=False)
embed.description = desc
if len(table_contents) > 3:
embed.description += f'\nRecords 1 to 3 of {len(table_contents)}.'
embed.description += ' See ae7q.com for more...'
embed.description += f'\nRecords 1 to 3 of {len(table_contents)}. See ae7q.com for more...'
await ctx.send(embed=embed)

View File

@ -22,8 +22,7 @@ import common as cmn
class QrmHelpCommand(commands.HelpCommand):
def __init__(self):
super().__init__(command_attrs={'help': 'Shows help about qrm or a command',
'aliases': ['h']})
super().__init__(command_attrs={'help': 'Shows help about qrm or a command', 'aliases': ['h']})
def get_bot_mapping(self):
bot = self.context.bot

View File

@ -83,18 +83,18 @@ If two grid squares are given, the distance and azimuth between them is calculat
# Haversine formula
d_lat = math.radians(loc2[0] - loc[0])
d_lon = math.radians(loc2[1] - loc[1])
a = math.sin(d_lat/2) ** 2 +\
math.cos(math.radians(loc[0])) * math.cos(math.radians(loc2[0])) *\
math.sin(d_lon/2) ** 2
a = math.sin(d_lat/2) ** 2
+ math.cos(math.radians(loc[0])) * math.cos(math.radians(loc2[0]))
* math.sin(d_lon/2) ** 2
c = 2 * math.atan2(math.sqrt(a), math.sqrt(1-a))
d = radius * c
d_mi = 0.6213712 * d
# Bearing
y_dist = math.sin(math.radians(loc2[1]-loc[1])) * math.cos(math.radians(loc2[0]))
x_dist = math.cos(math.radians(loc[0])) * math.sin(math.radians(loc2[0])) -\
math.sin(math.radians(loc[0])) * math.cos(math.radians(loc2[0])) *\
math.cos(math.radians(loc2[1] - loc[1]))
x_dist = math.cos(math.radians(loc[0])) * math.sin(math.radians(loc2[0]))
- math.sin(math.radians(loc[0])) * math.cos(math.radians(loc2[0]))
* math.cos(math.radians(loc2[1] - loc[1]))
bearing = (math.degrees(math.atan2(y_dist, x_dist)) + 360) % 360
embed = cmn.embed_factory(ctx)

View File

@ -133,8 +133,7 @@ def qrz_process_info(data: dict):
state = f', {data["state"]}'
else:
state = ''
address = data.get('addr1', '') + '\n' + data.get('addr2', '') + \
state + ' ' + data.get('zip', '')
address = data.get('addr1', '') + '\n' + data.get('addr2', '') + state + ' ' + data.get('zip', '')
address = address.strip()
if address == '':
address = None

View File

@ -75,10 +75,10 @@ class StudyCog(commands.Cog):
embed.description = self.source
embed.colour = cmn.colours.good
embed.add_field(name='Question:', value=question['text'], inline=False)
embed.add_field(name='Answers:', value='**A:** ' + question['answers']['A'] +
'\n**B:** ' + question['answers']['B'] +
'\n**C:** ' + question['answers']['C'] +
'\n**D:** ' + question['answers']['D'], inline=False)
embed.add_field(name='Answers:', value='**A:** ' + question['answers']['A']
+ '\n**B:** ' + question['answers']['B']
+ '\n**C:** ' + question['answers']['C']
+ '\n**D:** ' + question['answers']['D'], inline=False)
embed.add_field(name='Answer:', value='Type _?rqa_ for answer', inline=False)
if 'image' in question:
image_url = f'https://hamstudy.org/_1330011/images/{selected_pool.split("_",1)[1]}/{question["image"]}'