-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaypen.py
More file actions
executable file
·524 lines (454 loc) · 16.4 KB
/
playpen.py
File metadata and controls
executable file
·524 lines (454 loc) · 16.4 KB
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
#!/usr/bin/env -S uv run --script
#
#OLD: ! /usr/bin/python3 -u
################################################################################
import predict
from latlon2maiden import *
import time
from datetime import timedelta,datetime, timezone
import numpy as np
import matplotlib.pyplot as plt
import cartopy.crs as ccrs
import cartopy.feature as cfeature
from matplotlib.offsetbox import AnchoredText
import matplotlib.patches as mpatches
#from cartopy.mpl.ticker import (LongitudeFormatter, LatitudeFormatter,
# LatitudeLocator, LongitudeLocator)
from cartopy.mpl.gridliner import LONGITUDE_FORMATTER, LATITUDE_FORMATTER
import matplotlib.ticker as mticker
from shapely.geometry.polygon import Polygon
import math
import ephem
################################################################################
import os,json
def parse_trsp_data():
item='transmitters'
with open(item+'.json') as fp:
objs = json.load(fp)
print('PARSE TRSP DATA:',type(objs),len(objs))
#print('objs=',objs)
path='trsp'
if not os.path.exists(path):
os.makedirs(path)
ids=[]
sec_list=[]
nsec=0
for obj in objs:
id=obj['norad_cat_id']
if id in [68261]:
if id not in ids:
attr='w'
ids.append(id)
else:
attr='a'
fp=open(path+'/'+str(id)+'.trsp',attr)
#print(obj)
#print('\n['+obj['description']+']')
sec=obj['description']
print(sec,sec in sec_list)
if sec in sec_list:
nsec+=1
sec+=str(nsec)
print('HEY',nsec,sec)
sec_list.append(sec)
fp.write('\n['+sec+']\n')
for item in ['uplink_low','uplink_high','downlink_low','downlink_high','mode','invert','baud']:
val=obj[item]
if type(val)==float:
val=int(val)
if val:
tag=item.upper().replace('LINK','')
#print(tag+'='+str(val),type(val)==float)
fp.write(tag+'='+str(val)+'\n')
fp.close()
#print('PARSE TRSP DATA')
#sys.exit(0)
parse_trsp_data()
sys.exit(0)
if 0:
from configparser import ConfigParser,SectionProxy
from collections import OrderedDict
class MultiDict0(OrderedDict):
_unique = 0
def __setitem__(self, key, value):
if isinstance(value, dict):
self._unique += 1
key += str(self._unique)
OrderedDict.__setitem__(self, key, value)
class MultiDict1(OrderedDict):
_unique = 0
def __setitem__(self, key, value):
print('KEY=',key,'\tvalue=',value,'\t',
isinstance(value,dict),
isinstance(value,SectionProxy))
#'\n\tKEYS=',self.keys())
if isinstance(value,SectionProxy):
print('HEY 2!')
self._unique += 1
key += str(self._unique)
OrderedDict.__setitem__(self, key, value)
print('\tkeys2=',self.keys())
class MultiDict3(OrderedDict):
def __setitem__(self, key, value):
if key in self:
items = self[key]
new = value[0]
if new not in items:
items.append(new)
else:
super(MultiDict3, self).__setitem__(key, value)
class MultiDict11(OrderedDict):
def __setitem__(self, key, value):
if isinstance(value, list) and key in self:
print('HEY!')
self[key].extend(value)
else:
#super(OrderedDict, self).__setitem__(key, value)
OrderedDict.__setitem__(self,key, value)
class MultiDict2(OrderedDict):
_unique = 0 # class variable
def __setitem__(self, key, value):
print('KEY=',key,'\tvalue=',value,'\t',
isinstance(value,dict),
'\n\tKEYS=',self.keys())
if isinstance(value, dict):
#if isinstance(value, dict) and key in value.keys():
print('\nHEY 1! key=',key)
keys=self.keys()
print('\tkeys1=',keys)
if key in keys:
print('\nHEY 2! key=',key)
self._unique += 1
key += str(self._unique)
#print('key=',key)
#print(key,value)
OrderedDict.__setitem__(self, key, value)
print('\tkeys2=',self.keys())
fname='/home/joea/Python/pySat/trsp/68261.trsp'
print(fname)
#config = ConfigParser() # Bombs
#config = ConfigParser(strict=False) # Keep only last
#config = ConfigParser.RawConfigParser(dict_type=MultiOrderedDict)
#config = ConfigParser(defaults=None,
# dict_type=MultiDict3,
# strict=False)
config = ConfigParser(dict_type=MultiDict1,
strict=False)
print('\nconfig.read=',config.read(fname))
print('\nSections=',config.sections())
#for sec in config.sections():
# print('sec=',sec)
# print('\t',config.items(sec))
sys.exit(0)
grid='DM12ox'
lat,lon=maidenhead2latlon(grid)
my_qth = (lat,-lon,.3048*2000)
print('Based on grid square: \tMy QTH:',grid,'\t',my_qth)
#sys.exit(0)
tle="""ISS (ZARYA)
1 25544U 98067A 22202.89296957 .00009899 00000-0 18066-3 0 9992
2 25544 51.6421 164.6862 0005724 27.8461 82.9663 15.50079132350566"""
tle9 = """0 LEMUR 1
1 40044U 14033AL 15013.74135905 .00002013 00000-0 31503-3 0 6119
2 40044 097.9584 269.2923 0059425 258.2447 101.2095 14.72707190 30443"""
print('tle=',tle)
tle0=tle.split('\n')
print('tle0=',tle0)
tle2=tle0[2].split()
print(tle2)
inclination=float(tle2[2])
print('inclination=',inclination)
revs=float(tle2[7])
rev_mins=24.*60./revs
print('rev per day=',revs,'\t',rev_mins)
qth = (37.771034, 122.413815, 7) # lat (N), long (W), alt (meters)
obs1=predict.observe(tle, qth) # optional time argument defaults to time.time()
print('\nobs=',obs1)
print(obs1['longitude'],obs1['longitude']-360,obs1['latitude'])
obs = ephem.Observer()
obs.lat = '0'
obs.lon = '0'
obs.date = datetime.utcnow()
print(' ')
iss = ephem.readtle(tle0[0],tle0[1],tle0[2])
iss.compute(obs.date)
print('%s %s' % (iss.sublong, iss.sublat))
sys.exit(0)
################################################################################
RAD2DEG=180./np.pi
# Greenwich
obs = ephem.Observer()
obs.lat = '0'
obs.lon = '0'
obs.date = datetime.utcnow()
# Compute moon lat & lon
moon = ephem.Moon(obs)
moon.compute(obs.date)
print('\nMoon ra & dec: %s %s' % (moon.ra, moon.dec))
lon = (moon.ra - obs.sidereal_time() )*RAD2DEG
lat = moon.dec*RAD2DEG
print('Moon lat & lon:',lat,lon)
# Do same for the sun
sun = ephem.Sun(obs)
sun.compute(obs.date)
print('\nSun ra & dec: %s %s' % (sun.ra, sun.a_dec))
lon = ( sun.ra - obs.sidereal_time() )*RAD2DEG
lat = ( sun.dec )*RAD2DEG
print('Sun lat & lon:',lat,lon)
#sys.exit(0)
################################################################################
# Maybe we can get rid of pypredict all together?
iss = ephem.readtle(tle0[0],tle0[1],tle0[2])
obs = ephem.Observer()
obs.lat = str(my_qth[0])
obs.lon = str(-my_qth[1])
obs.date = '2022/7/22'
iss.compute(obs)
print("\nISS:\tRise:%s\tTransit:%s\tSet:%s\n" %
(iss.rise_time, iss.transit_time, iss.set_time))
for p in range(3):
tr, azr, tt, altt, ts, azs = obs.next_pass(iss)
print("Date/Time (UTC) Alt/Azim Lat/Long Elev")
print("=====================================================")
while tr < ts:
obs.date = tr
iss.compute(obs)
print("%s | %4.1f %5.1f | %4.1f %+6.1f | %5.1f" % \
(tr,
math.degrees(iss.alt),
math.degrees(iss.az),
math.degrees(iss.sublat),
math.degrees(iss.sublong),
iss.elevation/1000.))
tr = ephem.Date(tr + 20.0 * ephem.second)
print(" ")
obs.date = tr + ephem.minute
#sys.exit(0)
################################################################################
def ComputeSatTrack(tstart,npasses):
lons=[]
lats=[]
footprints=[]
for m in range(0,int(npasses*rev_mins+2),1):
dt = timedelta(minutes=m)
t = time.mktime( (tstart+dt).timetuple() )
obs = predict.observe(tle,my_qth,t)
if m==0:
print(obs)
lon=obs['longitude']
lat=obs['latitude']
footprint=obs['footprint']
print(obs['orbit'],'\t',tstart+dt,'\t',lon,'\t',lat,
'\t',footprint)
lons.append(lon)
lats.append(lat)
footprints.append(footprint)
return lons,lats,footprints
def transform_and_plot(ax,proj,lons,lats,style):
if np.isscalar(lons):
lons = np.array( [lons] )
if np.isscalar(lats):
lats = np.array( [lats] )
xx=[]
yy=[]
x_prev=np.nan
for lon,lat in zip(lons,lats):
x,y = proj.transform_point(lon,lat, ccrs.Geodetic())
dx=x-x_prev
#print(dx)
if np.abs(dx)>120:
xx.append(np.nan)
yy.append(np.nan)
xx.append(x)
yy.append(y)
x_prev=x
ax.plot(xx,yy,style, transform=proj)
#print('xx=',xx)
def DrawSatTrack(my_qth,lons,lats,footprint):
# Create figure centered on USA
fig = plt.figure()
lon0=-75
proj=ccrs.PlateCarree(central_longitude=lon0)
ax = fig.add_subplot(1, 1, 1, projection=proj)
ax.stock_img()
# Playing with axes
if 0:
gl = ax.gridlines(crs=proj, draw_labels=True,
linewidth=2, color='gray', alpha=0.5, linestyle='--')
gl.xlabels_top = False
#gl.ylabels_left = False
gl.ylabels_right = False
#gl.xlines = False
#gl.xlocator = mticker.FixedLocator([-179,-120,-60, 0, 60, 120, 180])
gl.xformatter = LONGITUDE_FORMATTER
gl.yformatter = LATITUDE_FORMATTER
gl.xlabel_style = {'size': 15, 'color': 'gray'}
gl.xlabel_style = {'size': 15, 'color': 'gray'}
elif 0:
ax.set_xticks([-180,-120, -60, 0, 60, 120, 180], crs=proj)
ax.set_yticks([-90, -60, -30, 0, 30, 60, 90], crs=proj)
lon_formatter = LONGITUDE_FORMATTER #(zero_direction_label=True)
lat_formatter = LATITUDE_FORMATTER #()
ax.xaxis.set_major_formatter(lon_formatter)
ax.yaxis.set_major_formatter(lat_formatter)
gl = ax.gridlines(crs=ccrs.PlateCarree(), draw_labels=False,
linewidth=2, color='gray', alpha=0.5, linestyle='--')
else:
ax.set_aspect('auto')
fig.tight_layout(pad=0)
# Create a feature for States/Admin 1 regions at 1:50m from Natural Earth
states_provinces = cfeature.NaturalEarthFeature(
category='cultural',
name='admin_1_states_provinces_lines',
scale='50m',
facecolor='none')
# Add boundaries
ax.add_feature(cfeature.LAND)
ax.add_feature(cfeature.COASTLINE)
ax.add_feature(cfeature.BORDERS)
ax.add_feature(states_provinces, edgecolor='gray')
# Plot sat track
transform_and_plot(ax,proj,-my_qth[1],my_qth[0],'mo')
transform_and_plot(ax,proj,lons,lats,'b-')
transform_and_plot(ax,proj,lons[0],lats[0],'g*')
transform_and_plot(ax,proj,lons[-1],lats[-1],'r*')
print(lons[0],lats[0])
print(ax.get_extent())
print(ax.axis())
# Add footprint "ellipse"
#Latitude: 1 deg = 110.54 km
#Longitude: 1 deg = 111.320*cos(latitude) km
if 0:
# Fudge a problematic case - covers north pole
lons[0] = 232.3270459142194
lats[0] = 64.10485105710941
footprint= 5986.117022528699
elif 0:
# Fudge a problematic case - E/W split
lons[0] = 104.95246748520428
lats[0] = -39.70384821309545
footprint= 4572.651446882606
elif 0:
# Fudge a problematic case - another north pol
lons[0] = 82.48670298393088
lats[0] = 61.20920366167575
footprint= 5585.536969035633
elif 0:
# Fudge a problematic case -
lons[0] = 281.38001554144023
lats[0] = 50.99264184456991
footprint= 7416.590075882028
elif 0:
# Fudge a problematic case -
lons[0] = 5.549660864158477
lats[0] = -68.76426139817411
footprint= 4892.518052086816
elif 0:
# Fudge a problematic case -
lons[0] = 167.13582865717348
lats[0] = -63.56059513829651
footprint= 5367.4556389843765
elif 0:
# Fudge a problematic case -
lons[0] = 272.54128217901916
lats[0] = 77.20233583421518
footprint= 8000.864698349377
elif 0:
# Fudge a problematic case -
lons[0] = 10.19769278519825
lats[0] = 79.67014426806999
footprint= 7926.421824906122
elif 0:
# Fudge a problematic case -
lons[0] = 31.282069356792686
lats[0] = 72.17638731342144
footprint= 7875.29210171888
elif 1:
# Fudge a problematic case -
lons[0] = 152.49620676533235
lats[0] = 65.60578291196417
footprint= 5988.362032233469
print('\nEllipse:',lons[0],lats[0],footprint)
DEG2RAD=np.pi/180.
dy=0.5*footprint/110.54
dx=0.5*footprint/(111.32*np.cos(lats[0]*DEG2RAD))
#print(footprint,dy,dx)
if 0:
r=0.5*(dy+dx)
print('footprint=',footprint,dxlat,dxlon,r)
ax.add_patch(mpatches.Circle(xy=[lons[0], lats[0]], radius=r,
color='red', \
alpha=0.3, transform=ccrs.Geodetic(),
zorder=30))
else:
xx=[]
yy=[]
pgon=[]
lon_prev=np.nan
north_pole = lats[0]+dy>=80
south_pole = lats[0]-dy<=-80
print('Poles:',lats[0],dy,north_pole,south_pole)
phz=0
for alpha in range(0,365,5):
lat=lats[0]+dy*np.sin(alpha*DEG2RAD)
dx=0.5*footprint/(111.32*np.cos(lat*DEG2RAD))
lon=lons[0]+dx*np.cos(alpha*DEG2RAD)
x,y = proj.transform_point(lon,lat, ccrs.Geodetic())
print(alpha,'\t',dx,'\t',lon,'\t',lat,'\t',x,'\t',y)
if dx>0 and dx<180:
x+=phz
dlon=x-lon_prev
if dlon>120:
if north_pole or south_pole:
if north_pole:
y0=90
else:
y0=-90
pgon.append((-180+phz,y))
print(pgon[-1])
pgon.append((-180+phz,y0))
print(pgon[-1])
pgon.append((180+phz,y0))
print(pgon[-1])
pgon.append((180+phz,y))
print(pgon[-1])
else:
phz-=360
x-=360
elif dlon<-120:
if north_pole or south_pole:
if north_pole:
y0=90
else:
y0=-90
pgon.append((180+phz,y))
print(pgon[-1])
pgon.append((180+phz,y0))
print(pgon[-1])
pgon.append((-180+phz,y0))
print(pgon[-1])
pgon.append((-180+phz,y))
print(pgon[-1])
else:
phz+=360
x+=360
lon_prev=x
#print(phz,'\t',dlon,'\t',x,'\t',y,'\t',x,'\t',y)
xx.append(lon)
yy.append(lat)
pgon.append((x,y))
transform_and_plot(ax,proj,xx,yy,'g-')
transform_and_plot(ax,proj,xx[0],yy[0],'go')
transform_and_plot(ax,proj,xx[-2],yy[-2],'ro')
pgon=Polygon( tuple(pgon) )
#print(pgon)
#print(yy)
#ax.add_geometries([pgon], crs=ccrs.Geodetic(), facecolor='red',
ax.add_geometries([pgon], crs=proj, facecolor='r',
edgecolor='red', alpha=0.3)
plt.show()
if __name__ == '__main__':
now = datetime.now()
print('now=',now)
lons,lats,footprints,=ComputeSatTrack(now,1)
DrawSatTrack(my_qth,lons,lats,footprints[0])