hdpws and sscws Example Jupyter Notebook¶

SPASE inside This Jupyter notebook demonstrates using the hdpws Python package to access Space Physics Archive Search and Extract (SPASE) metadata documents from the Heliophysics Data Portal (HDP). Additionally, it utilizes sscws to retrieve the data described by the SPASE metadata. It assumes some familarity with the SPASE data model. This notebook contains the following sections:

  1. Prerequisites
  2. Setup
  3. Discover the Software used to access data
  4. Define An sscws Helper Function
  5. Get NumericalData
  6. Additional Documentation

Prerequisites¶

Install the prerequisite software from Python Package Index (PyPI) software repository.

  1. pip install hdpws
  2. pip install sscws

Setup¶

Execute some preliminary code that is necessary before the code that follows.

In [1]:
from hdpws.hdpws import HdpWs
from hdpws import NAMESPACES as NS
from hdpws.resourcetype import ResourceType as rt
from hdpws.spase import AccessURL

from sscws.sscws import SscWs
from sscws.bfieldmodels import BFieldModel, Tsyganenko89cBFieldModel
from sscws.coordinates import CoordinateComponent, CoordinateSystem,\
    SurfaceGeographicCoordinates
from sscws.filteroptions import LocationFilterOptions,\
    MappedRegionFilterOptions, RegionFilterOptions,\
    SpaceRegionsFilterOptions
from sscws.outputoptions import CoordinateOptions, BFieldTraceOptions,\
    DistanceFromOptions, LocationFilter, OutputOptions, RegionOptions,\
    ValueOptions
from sscws.regions import Hemisphere, HemisphereRegions
from sscws.request import DataRequest, SatelliteSpecification
from sscws.timeinterval import TimeInterval

from IPython.core.display import HTML


hdp = HdpWs()
ssc = SscWs()
# limit display of long lists
DISP_LIMIT = 5

def display_link(
    url: str,
    text: str) -> None:
    display(HTML(f'<a href="{url}" target="_blank">{text}</a>'))

Discover the Software used to access data¶

The following code demonstrates discovering the software we will use below to get the data we want.

In [2]:
query = {
    'CodeLanguage': 'Python',
    'Description': 'SSC'
}
result = hdp.get_spase_software(query)
if result['HttpStatus'] == 200:
    print(f'Software search results:')
    for software in result['Result'].findall('.//Software', namespaces=NS):
        resource_id = software.findall('.//ResourceID', namespaces=NS)[0].text
        resource_name = software.findall('.//ResourceName', namespaces=NS)[0].text
        display_link(f'{hdp.endpoint}Spase?ResourceID={resource_id}', resource_name)
else:
    print(result['HttpStatus'])
Software search results:
Satellite Situation Center Web Services Client Library

Define An sscws Helper Function¶

The following code defines a function to create a complex sscws request for many values including magnetic field line tracing.

In [3]:
def create_ssc_request(
    sat, time_interval):
    
    sats = [SatelliteSpecification(sat, 2)]

    b_field_model = BFieldModel(external=Tsyganenko89cBFieldModel())
    coord_options = [
        CoordinateOptions(CoordinateSystem.GSE, CoordinateComponent.X),
        CoordinateOptions(CoordinateSystem.GSE, CoordinateComponent.Y),
        CoordinateOptions(CoordinateSystem.GSE, CoordinateComponent.Z),
        CoordinateOptions(CoordinateSystem.GSE, CoordinateComponent.LAT),
        CoordinateOptions(CoordinateSystem.GSE, CoordinateComponent.LON),
        CoordinateOptions(CoordinateSystem.GSE, CoordinateComponent.LOCAL_TIME)
        ]
    b_field_trace_options = [
        BFieldTraceOptions(CoordinateSystem.GEO, Hemisphere.NORTH,
                           True, True, True),
        BFieldTraceOptions(CoordinateSystem.GEO, Hemisphere.SOUTH,
                           True, True, True)
        ]

    output_options = OutputOptions(
        coord_options,
        None, None,
        RegionOptions(True, True, True, True),
        ValueOptions(True, True, True, True),
        DistanceFromOptions(True, True, True, True),
        b_field_trace_options
        )
    loc_filter = LocationFilter(0, 100000, True, True)

    hemisphere_region = HemisphereRegions(True, True)
    trace_regions = MappedRegionFilterOptions(hemisphere_region,
                                              hemisphere_region,
                                              hemisphere_region,
                                              hemisphere_region,
                                              hemisphere_region,
                                              True)
    srfo = SpaceRegionsFilterOptions(True, True, True, True, True, True,
                                     True, True, True, True, True)

    rfo = RegionFilterOptions(srfo, trace_regions, trace_regions)

    format_options = None
    
    return DataRequest('b-trace locator request.', time_interval,
                        sats, b_field_model, output_options, None,
                        None, format_options)

Get NumericalData¶

The following code demonstrates how to find SPASE NumericalData documents matching the specified search criteria. Additionally, it utilizes sscws to retrieve the data described by the SPASE metadata when the data is available from SSCWeb.

In [4]:
query = {
    'InstrumentID': 'spase://SMWG/Instrument/RBSP/A/Ephemeris',
    'Cadence': '=PT12M',
    'MeasurementType': 'Ephemeris',
    'AccessRights': 'Open',
    'Style': 'WebService',
    'Description': '"magnetic field model information"'
}       
types = [rt.NUMERICAL_DATA]
time_range = ['2019-01-01', '2019-01-02']
result = hdp.get_spase_data(types, query, time_range)
if result['HttpStatus'] == 200:
    for spase in result['Result'].findall('.//Spase', namespaces=NS):
        id = spase.find('.//ResourceID', namespaces=NS)
        name = spase.find('.//Name', namespaces=NS)
        description = spase.find('.//Description', namespaces=NS)
        #print('Name: ', name.text)
        print('ResourceID: ', id.text)
        print('Description: ', description.text[:60], '...')
        display_link(hdp.get_spase_url(id.text), 'HTML representation of SPASE')
        ws_access_url_element = \
            spase.find('.//AccessURL[Style="WebService"]', namespaces=NS)
        if ws_access_url_element is not None:
            ws_access_url = AccessURL(ws_access_url_element)
            ws_name = ws_access_url.name
            ws_product_key = ws_access_url.product_key
            if "SSCWeb" in ws_name:
                display_link(ws_access_url.url, 'Example data access code')
                print('Retrieving data...')
                example_interval = ssc.get_example_time_interval(ws_product_key[0])
                print('example_interval = ', example_interval)
                # simple request
                result = ssc.get_locations(ws_product_key, example_interval)
                data = result['Data'][0]
                coords = data['Coordinates'][0]
                print(coords['X'][:5])
                # a magnetic field line tracing request
                result = ssc.get_locations(\
                                create_ssc_request(ws_product_key,
                                                   example_interval))
                SscWs.print_locations_result(result)
ResourceID:  spase://NASA/NumericalData/RBSP/A/Ephemeris/PT12M
Description:  RBSP A satellite position and magnetic field model informati ...
HTML representation of SPASE
Example data access code
Retrieving data...
example_interval =  2019-12-06T23:00:00+00:00 2019-12-07T01:00:00+00:00
[19228.02635478 19291.36475699 19354.11593857 19416.27510707
 19477.8416583 ]
rbspa Gse
Time                      X                      Y                      Z                     
2019-12-06 23:00:00+00:00 19228.026354784135 -28337.190688708237 11417.718702461807
2019-12-06 23:02:00+00:00 19354.1159385749 -28160.235396658973 11484.508363098246
2019-12-06 23:04:00+00:00 19477.841658302783 -27979.838883131237 11549.89006099781
2019-12-06 23:06:00+00:00 19599.18002976396 -27796.0050682422 11613.85015663106
2019-12-06 23:08:00+00:00 19718.104177478912 -27608.738807982405 11676.374134928301
2019-12-06 23:10:00+00:00 19834.58511717321 -27418.045538972427 11737.446532544529
2019-12-06 23:12:00+00:00 19948.600216142062 -27223.93635895528 11797.053235812666
2019-12-06 23:14:00+00:00 20060.118810262167 -27026.409742388765 11855.178234515017
2019-12-06 23:16:00+00:00 20169.112359160645 -26825.47594183355 11911.80504429624
2019-12-06 23:18:00+00:00 20275.554212975858 -26621.13973656228 11966.918603213951
2019-12-06 23:20:00+00:00 20379.41246224412 -26413.402410173076 12020.501405902472
2019-12-06 23:22:00+00:00 20480.658157714024 -26202.271845511525 12072.536421133764
2019-12-06 23:24:00+00:00 20579.25916066728 -25987.74938326054 12123.00669041484
2019-12-06 23:26:00+00:00 20675.186342485656 -25769.84047598092 12171.894088772291
2019-12-06 23:28:00+00:00 20768.403309024437 -25548.54516075002 12219.181329045548
2019-12-06 23:30:00+00:00 20858.879686190303 -25323.87170146478 12264.848791113212
2019-12-06 23:32:00+00:00 20946.57977722624 -25095.814988429694 12308.877474461611
2019-12-06 23:34:00+00:00 21031.472331204353 -24864.385994801254 12351.24837857707
2019-12-06 23:36:00+00:00 21113.51761217431 -24629.583193724593 12391.941700140685
2019-12-06 23:38:00+00:00 21192.68063374325 -24391.40868923107 12430.935302872726
2019-12-06 23:40:00+00:00 21268.924403378463 -24149.862662555126 12468.210331729599
2019-12-06 23:42:00+00:00 21342.209488824778 -23904.94843869653 12503.743300753647
2019-12-06 23:44:00+00:00 21412.49661098408 -23656.664349430837 12537.513312880594
2019-12-06 23:46:00+00:00 21479.745689224157 -23405.01636440297 12569.496954887827
2019-12-06 23:48:00+00:00 21543.916021152123 -23150.00320056289 12599.670740817695
2019-12-06 23:50:00+00:00 21604.9649871071 -22891.621626865322 12628.011257447592
2019-12-06 23:52:00+00:00 21662.84806016816 -22629.878828320103 12654.493741876982
2019-12-06 23:54:00+00:00 21717.517362841347 -22364.76807010374 12679.092337459959
2019-12-06 23:56:00+00:00 21768.929893144916 -22096.291160391243 12701.781588953232
2019-12-06 23:58:00+00:00 21817.03843162012 -21824.451067188973 12722.534144562895
2019-12-07 00:00:00+00:00 21861.792992737435 -21549.24162387893 12741.323199367745
2019-12-07 00:02:00+00:00 21903.14191124857 -21270.667015863815 12758.120051895961
2019-12-07 00:04:00+00:00 21941.03569601878 -20988.723403521668 12772.895235597924
2019-12-07 00:06:00+00:00 21975.420167237036 -20703.4131826843 12785.61855385382
2019-12-07 00:08:00+00:00 22006.23901405472 -20414.731911928855 12796.260356916539
2019-12-07 00:10:00+00:00 22033.43622805438 -20122.68000743991 12804.787312400202
2019-12-07 00:12:00+00:00 22056.955130105966 -19827.253118431672 12811.167655801974
2019-12-07 00:14:00+00:00 22076.734388456174 -19528.45559150619 12815.367324665793
2019-12-07 00:16:00+00:00 22092.708078468335 -19226.28066777633 12817.349667642227
2019-12-07 00:18:00+00:00 22104.81699242504 -18920.72714932498 12817.081497815485
2019-12-07 00:20:00+00:00 22112.993347302432 -18611.796196901258 12814.523173540154
2019-12-07 00:22:00+00:00 22117.17014945101 -18299.48627375164 12809.637642064174
2019-12-07 00:24:00+00:00 22117.270931323485 -17983.793502072742 12802.383510661615
2019-12-07 00:26:00+00:00 22113.230247473104 -17664.718377663186 12792.721539089664
2019-12-07 00:28:00+00:00 22104.967413068705 -17342.25817095148 12780.608438071771
2019-12-07 00:30:00+00:00 22092.405804963422 -17016.413971238977 12766.000225988617
2019-12-07 00:32:00+00:00 22075.464790800972 -16687.18054588219 12748.851972945578
2019-12-07 00:34:00+00:00 22054.059197805378 -16354.561324651051 12729.116177658472
2019-12-07 00:36:00+00:00 22028.101163002797 -16018.555523983761 12706.742749949735
2019-12-07 00:38:00+00:00 21997.503437389605 -15679.157236501584 12681.683094789805
2019-12-07 00:40:00+00:00 21962.171279449973 -15336.374975281362 12653.884149208943
2019-12-07 00:42:00+00:00 21922.006719467125 -14990.203295159567 12623.291483055687
2019-12-07 00:44:00+00:00 21876.91012888223 -14640.645853676968 12589.847949318939
2019-12-07 00:46:00+00:00 21826.777844411114 -14287.701227213993 12553.496273021326
2019-12-07 00:48:00+00:00 21771.49746886104 -13931.376569254951 12514.173890936268
2019-12-07 00:50:00+00:00 21710.95496058488 -13571.670819611383 12471.81687265547
2019-12-07 00:52:00+00:00 21645.03892366719 -13208.592070048322 12426.361014334287
2019-12-07 00:54:00+00:00 21573.621255416983 -12842.139399395359 12377.737789657975
2019-12-07 00:56:00+00:00 21496.57417015444 -12472.324150904873 12325.87349452505
2019-12-07 00:58:00+00:00 21413.76553113533 -12099.151433935094 12270.694296867758
2019-12-07 01:00:00+00:00 21325.055283086334 -11722.630996714857 12212.122844953481
Geo North Magnetic Field-Line Trace Footpoints
Time                           Latitude         Longitude    Arc Length
2019-12-06 23:00:00+00:00        69.16088       148.28667     41288.52431
2019-12-06 23:02:00+00:00        69.14896       148.09544     41230.13992
2019-12-06 23:04:00+00:00        69.13585       147.90492     41167.76653
2019-12-06 23:06:00+00:00        69.12154       147.71523     41101.38847
2019-12-06 23:08:00+00:00        69.10603       147.52640     41030.99125
2019-12-06 23:10:00+00:00        69.08929       147.33856     40956.55667
2019-12-06 23:12:00+00:00        69.07132       147.15178     40878.08151
2019-12-06 23:14:00+00:00        69.05210       146.96617     40795.54109
2019-12-06 23:16:00+00:00        69.03162       146.78180     40708.92571
2019-12-06 23:18:00+00:00        69.00987       146.59879     40618.22239
2019-12-06 23:20:00+00:00        68.98683       146.41720     40523.41102
2019-12-06 23:22:00+00:00        68.96249       146.23717     40424.48001
2019-12-06 23:24:00+00:00        68.93683       146.05876     40321.41056
2019-12-06 23:26:00+00:00        68.90982       145.88210     40214.19023
2019-12-06 23:28:00+00:00        68.88146       145.70728     40102.79436
2019-12-06 23:30:00+00:00        68.85173       145.53438     39987.21474
2019-12-06 23:32:00+00:00        68.82059       145.36354     39867.42333
2019-12-06 23:34:00+00:00        68.78805       145.19487     39743.41531
2019-12-06 23:36:00+00:00        68.75409       145.02846     39615.16409
2019-12-06 23:38:00+00:00        68.71866       144.86443     39482.65193
2019-12-06 23:40:00+00:00        68.68175       144.70290     39345.85849
2019-12-06 23:42:00+00:00        68.64333       144.54398     39204.76588
2019-12-06 23:44:00+00:00        68.60340       144.38780     39059.35013
2019-12-06 23:46:00+00:00        68.56191       144.23447     38909.59607
2019-12-06 23:48:00+00:00        68.51884       144.08412     38755.48159
2019-12-06 23:50:00+00:00        68.47417       143.93690     38596.98046
2019-12-06 23:52:00+00:00        68.42786       143.79294     38434.07563
2019-12-06 23:54:00+00:00        68.37989       143.65234     38266.73519
2019-12-06 23:56:00+00:00        68.33021       143.51529     38094.94048
2019-12-06 23:58:00+00:00        68.27881       143.38190     37918.67009
2019-12-07 00:00:00+00:00        68.22553       143.25197     37737.83597
2019-12-07 00:02:00+00:00        68.17055       143.12639     37552.52814
2019-12-07 00:04:00+00:00        68.11374       143.00494     37362.66257
2019-12-07 00:06:00+00:00        68.05504       142.88779     37168.21563
2019-12-07 00:08:00+00:00        67.99442       142.77512     36969.15245
2019-12-07 00:10:00+00:00        67.93183       142.66707     36765.44669
2019-12-07 00:12:00+00:00        67.86723       142.56387     36557.06729
2019-12-07 00:14:00+00:00        67.80057       142.46568     36343.98739
2019-12-07 00:16:00+00:00        67.73179       142.37270     36126.16492
2019-12-07 00:18:00+00:00        67.66085       142.28514     35903.57328
2019-12-07 00:20:00+00:00        67.58769       142.20320     35676.17942
2019-12-07 00:22:00+00:00        67.51225       142.12710     35443.94895
2019-12-07 00:24:00+00:00        67.43447       142.05708     35206.83557
2019-12-07 00:26:00+00:00        67.35429       141.99338     34964.81441
2019-12-07 00:28:00+00:00        67.27162       141.93622     34717.83791
2019-12-07 00:30:00+00:00        67.18642       141.88588     34465.87039
2019-12-07 00:32:00+00:00        67.09858       141.84264     34208.86716
2019-12-07 00:34:00+00:00        67.00804       141.80676     33946.78672
2019-12-07 00:36:00+00:00        66.91471       141.77856     33679.58372
2019-12-07 00:38:00+00:00        66.81850       141.75835     33407.21179
2019-12-07 00:40:00+00:00        66.71933       141.74643     33129.62788
2019-12-07 00:42:00+00:00        66.61707       141.74318     32846.77771
2019-12-07 00:44:00+00:00        66.51163       141.74895     32558.61405
2019-12-07 00:46:00+00:00        66.40290       141.76411     32265.08336
2019-12-07 00:48:00+00:00        66.29075       141.78908     31966.13031
2019-12-07 00:50:00+00:00        66.17506       141.82426     31661.69568
2019-12-07 00:52:00+00:00        66.05569       141.87013     31351.73277
2019-12-07 00:54:00+00:00        65.93249       141.92715     31036.17022
2019-12-07 00:56:00+00:00        65.80531       141.99583     30714.94986
2019-12-07 00:58:00+00:00        65.67399       142.07670     30388.00937
2019-12-07 01:00:00+00:00        65.53835       142.17035     30055.28032
Geo South Magnetic Field-Line Trace Footpoints
Time                           Latitude         Longitude    Arc Length
2019-12-06 23:00:00+00:00       -51.56775       137.37183     43167.88578
2019-12-06 23:02:00+00:00       -51.54659       137.27374     43101.19880
2019-12-06 23:04:00+00:00       -51.52446       137.17632     43030.11499
2019-12-06 23:06:00+00:00       -51.50136       137.07956     42954.62128
2019-12-06 23:08:00+00:00       -51.47728       136.98355     42874.70418
2019-12-06 23:10:00+00:00       -51.45221       136.88830     42790.34889
2019-12-06 23:12:00+00:00       -51.42614       136.79390     42701.54990
2019-12-06 23:14:00+00:00       -51.39906       136.70036     42608.28496
2019-12-06 23:16:00+00:00       -51.37097       136.60776     42510.54361
2019-12-06 23:18:00+00:00       -51.34185       136.51611     42408.31298
2019-12-06 23:20:00+00:00       -51.31168       136.42549     42301.57288
2019-12-06 23:22:00+00:00       -51.28047       136.33595     42190.30981
2019-12-06 23:24:00+00:00       -51.24819       136.24756     42074.50480
2019-12-06 23:26:00+00:00       -51.21483       136.16032     41954.14216
2019-12-06 23:28:00+00:00       -51.18039       136.07436     41829.20040
2019-12-06 23:30:00+00:00       -51.14483       135.98969     41699.66475
2019-12-06 23:32:00+00:00       -51.10815       135.90639     41565.50760
2019-12-06 23:34:00+00:00       -51.07034       135.82451     41426.71879
2019-12-06 23:36:00+00:00       -51.03137       135.74413     41283.27232
2019-12-06 23:38:00+00:00       -50.99122       135.66531     41135.14426
2019-12-06 23:40:00+00:00       -50.94989       135.58813     40982.31441
2019-12-06 23:42:00+00:00       -50.90733       135.51265     40824.75789
2019-12-06 23:44:00+00:00       -50.86355       135.43895     40662.44982
2019-12-06 23:46:00+00:00       -50.81851       135.36711     40495.36915
2019-12-06 23:48:00+00:00       -50.77219       135.29720     40323.48801
2019-12-06 23:50:00+00:00       -50.72457       135.22931     40146.77757
2019-12-06 23:52:00+00:00       -50.67562       135.16351     39965.21606
2019-12-06 23:54:00+00:00       -50.62531       135.09993     39778.76691
2019-12-06 23:56:00+00:00       -50.57362       135.03862     39587.40485
2019-12-06 23:58:00+00:00       -50.52052       134.97969     39391.10260
2019-12-07 00:00:00+00:00       -50.46603       134.92328     39189.87871
2019-12-07 00:02:00+00:00       -50.41002       134.86942     38983.59502
2019-12-07 00:04:00+00:00       -50.35249       134.81827     38772.27131
2019-12-07 00:06:00+00:00       -50.29342       134.76991     38555.87582
2019-12-07 00:08:00+00:00       -50.23278       134.72449     38334.37227
2019-12-07 00:10:00+00:00       -50.17051       134.68211     38107.72318
2019-12-07 00:12:00+00:00       -50.10658       134.64291     37875.89226
2019-12-07 00:14:00+00:00       -50.04095       134.60703     37638.84497
2019-12-07 00:16:00+00:00       -49.97358       134.57458     37396.53311
2019-12-07 00:18:00+00:00       -49.90442       134.54575     37148.92227
2019-12-07 00:20:00+00:00       -49.83340       134.52065     36895.96919
2019-12-07 00:22:00+00:00       -49.76050       134.49947     36637.63333
2019-12-07 00:24:00+00:00       -49.68565       134.48235     36373.86284
2019-12-07 00:26:00+00:00       -49.60879       134.46950     36104.61928
2019-12-07 00:28:00+00:00       -49.52987       134.46106     35829.85217
2019-12-07 00:30:00+00:00       -49.44882       134.45728     35549.51404
2019-12-07 00:32:00+00:00       -49.36557       134.45831     35263.55346
2019-12-07 00:34:00+00:00       -49.28007       134.46439     34971.92026
2019-12-07 00:36:00+00:00       -49.19222       134.47574     34674.55938
2019-12-07 00:38:00+00:00       -49.10196       134.49261     34371.41611
2019-12-07 00:40:00+00:00       -49.00920       134.51524     34062.43876
2019-12-07 00:42:00+00:00       -48.91386       134.54388     33747.56434
2019-12-07 00:44:00+00:00       -48.81585       134.57884     33426.73497
2019-12-07 00:46:00+00:00       -48.71506       134.62040     33099.88956
2019-12-07 00:48:00+00:00       -48.61140       134.66887     32766.96394
2019-12-07 00:50:00+00:00       -48.50477       134.72458     32427.88930
2019-12-07 00:52:00+00:00       -48.39504       134.78789     32082.60671
2019-12-07 00:54:00+00:00       -48.28210       134.85916     31731.04167
2019-12-07 00:56:00+00:00       -48.16581       134.93881     31373.12316
2019-12-07 00:58:00+00:00       -48.04605       135.02724     31008.77837
2019-12-07 01:00:00+00:00       -47.92267       135.12491     30637.93366
Time                      RadialLength
2019-12-06 23:00:00+00:00 36098.1671269374
2019-12-06 23:02:00+00:00 36048.22588669335
2019-12-06 23:04:00+00:00 35995.24490596466
2019-12-06 23:06:00+00:00 35939.21628015831
2019-12-06 23:08:00+00:00 35880.13098625058
2019-12-06 23:10:00+00:00 35817.97921065573
2019-12-06 23:12:00+00:00 35752.7596437688
2019-12-06 23:14:00+00:00 35684.456515525264
2019-12-06 23:16:00+00:00 35613.064285763154
2019-12-06 23:18:00+00:00 35538.57504002189
2019-12-06 23:20:00+00:00 35460.97472852172
2019-12-06 23:22:00+00:00 35380.25635148039
2019-12-06 23:24:00+00:00 35296.40650550214
2019-12-06 23:26:00+00:00 35209.41648904704
2019-12-06 23:28:00+00:00 35119.26997372456
2019-12-06 23:30:00+00:00 35025.959670570715
2019-12-06 23:32:00+00:00 34929.4659879346
2019-12-06 23:34:00+00:00 34829.78396450837
2019-12-06 23:36:00+00:00 34726.89459928668
2019-12-06 23:38:00+00:00 34620.78390091976
2019-12-06 23:40:00+00:00 34511.436884928415
2019-12-06 23:42:00+00:00 34398.83802269325
2019-12-06 23:44:00+00:00 34282.96974238372
2019-12-06 23:46:00+00:00 34163.8187940439
2019-12-06 23:48:00+00:00 34041.366944713656
2019-12-06 23:50:00+00:00 33915.593995533825
2019-12-06 23:52:00+00:00 33786.485591902936
2019-12-06 23:54:00+00:00 33654.015936299846
2019-12-06 23:56:00+00:00 33518.168836531135
2019-12-06 23:58:00+00:00 33378.92598983
2019-12-07 00:00:00+00:00 33236.262111416116
2019-12-07 00:02:00+00:00 33090.15749392763
2019-12-07 00:04:00+00:00 32940.58902082481
2019-12-07 00:06:00+00:00 32787.534911108945
2019-12-07 00:08:00+00:00 32630.96854972974
2019-12-07 00:10:00+00:00 32470.86595081423
2019-12-07 00:12:00+00:00 32307.201168061714
2019-12-07 00:14:00+00:00 32139.950427508847
2019-12-07 00:16:00+00:00 31969.079840116643
2019-12-07 00:18:00+00:00 31794.56593526277
2019-12-07 00:20:00+00:00 31616.379163021254
2019-12-07 00:22:00+00:00 31434.49100251747
2019-12-07 00:24:00+00:00 31248.864307292875
2019-12-07 00:26:00+00:00 31059.47434340692
2019-12-07 00:28:00+00:00 30866.28337891679
2019-12-07 00:30:00+00:00 30669.2597766985
2019-12-07 00:32:00+00:00 30468.36657468221
2019-12-07 00:34:00+00:00 30263.568803105834
2019-12-07 00:36:00+00:00 30054.82769981263
2019-12-07 00:38:00+00:00 29842.104652470443
2019-12-07 00:40:00+00:00 29625.363181222932
2019-12-07 00:42:00+00:00 29404.55842542809
2019-12-07 00:44:00+00:00 29179.649999632977
2019-12-07 00:46:00+00:00 28950.594139759174
2019-12-07 00:48:00+00:00 28717.344903273326
2019-12-07 00:50:00+00:00 28479.852970878583
2019-12-07 00:52:00+00:00 28238.07814943738
2019-12-07 00:54:00+00:00 27991.964316327445
2019-12-07 00:56:00+00:00 27741.462169308743
2019-12-07 00:58:00+00:00 27486.519483593238
2019-12-07 01:00:00+00:00 27227.082103792625
Time                      MagneticStrength
2019-12-06 23:00:00+00:00 167.04390371868914
2019-12-06 23:02:00+00:00 167.83456006456137
2019-12-06 23:04:00+00:00 168.67014440734394
2019-12-06 23:06:00+00:00 169.5516206440019
2019-12-06 23:08:00+00:00 170.47997416698124
2019-12-06 23:10:00+00:00 171.45634854561004
2019-12-06 23:12:00+00:00 172.48178555548893
2019-12-06 23:14:00+00:00 173.55759775870226
2019-12-06 23:16:00+00:00 174.68502200815422
2019-12-06 23:18:00+00:00 175.86544301953765
2019-12-06 23:20:00+00:00 177.1003934912479
2019-12-06 23:22:00+00:00 178.3913524558865
2019-12-06 23:24:00+00:00 179.74001809986797
2019-12-06 23:26:00+00:00 181.14812532035054
2019-12-06 23:28:00+00:00 182.61760835065874
2019-12-06 23:30:00+00:00 184.15032987804403
2019-12-06 23:32:00+00:00 185.74852493629788
2019-12-06 23:34:00+00:00 187.41424592119856
2019-12-06 23:36:00+00:00 189.14993934074053
2019-12-06 23:38:00+00:00 190.95808728887914
2019-12-06 23:40:00+00:00 192.841348739895
2019-12-06 23:42:00+00:00 194.80248244581477
2019-12-06 23:44:00+00:00 196.84451234161057
2019-12-06 23:46:00+00:00 198.97050333055685
2019-12-06 23:48:00+00:00 201.1838389588669
2019-12-06 23:50:00+00:00 203.48805386933472
2019-12-06 23:52:00+00:00 205.88686006050347
2019-12-06 23:54:00+00:00 208.38435395972311
2019-12-06 23:56:00+00:00 210.98471743653755
2019-12-06 23:58:00+00:00 213.69239769725945
2019-12-07 00:00:00+00:00 216.51217773544295
2019-12-07 00:02:00+00:00 219.44925328732734
2019-12-07 00:04:00+00:00 222.50899195026935
2019-12-07 00:06:00+00:00 225.69710820351742
2019-12-07 00:08:00+00:00 229.01981440891032
2019-12-07 00:10:00+00:00 232.48359165836288
2019-12-07 00:12:00+00:00 236.09547201683029
2019-12-07 00:14:00+00:00 239.86284108089004
2019-12-07 00:16:00+00:00 243.79376971779206
2019-12-07 00:18:00+00:00 247.89670469106017
2019-12-07 00:20:00+00:00 252.18074252294568
2019-12-07 00:22:00+00:00 256.6555763469982
2019-12-07 00:24:00+00:00 261.33180056152815
2019-12-07 00:26:00+00:00 266.220441625906
2019-12-07 00:28:00+00:00 271.33363393124137
2019-12-07 00:30:00+00:00 276.684227792179
2019-12-07 00:32:00+00:00 282.28615188597877
2019-12-07 00:34:00+00:00 288.15433144036984
2019-12-07 00:36:00+00:00 294.3048978658675
2019-12-07 00:38:00+00:00 300.755207176113
2019-12-07 00:40:00+00:00 307.523950234098
2019-12-07 00:42:00+00:00 314.6314879858372
2019-12-07 00:44:00+00:00 322.0996985594645
2019-12-07 00:46:00+00:00 329.9523787834721
2019-12-07 00:48:00+00:00 338.21530524169776
2019-12-07 00:50:00+00:00 346.91663826602144
2019-12-07 00:52:00+00:00 356.0865438628746
2019-12-07 00:54:00+00:00 365.7584516055934
2019-12-07 00:56:00+00:00 375.9684499416155
2019-12-07 00:58:00+00:00 386.7561148274313
2019-12-07 01:00:00+00:00 398.16462788695577
Time                      NeutralSheetDistance
2019-12-06 23:00:00+00:00 -1e+31
2019-12-06 23:02:00+00:00 -1e+31
2019-12-06 23:04:00+00:00 -1e+31
2019-12-06 23:06:00+00:00 -1e+31
2019-12-06 23:08:00+00:00 -1e+31
2019-12-06 23:10:00+00:00 -1e+31
2019-12-06 23:12:00+00:00 -1e+31
2019-12-06 23:14:00+00:00 -1e+31
2019-12-06 23:16:00+00:00 -1e+31
2019-12-06 23:18:00+00:00 -1e+31
2019-12-06 23:20:00+00:00 -1e+31
2019-12-06 23:22:00+00:00 -1e+31
2019-12-06 23:24:00+00:00 -1e+31
2019-12-06 23:26:00+00:00 -1e+31
2019-12-06 23:28:00+00:00 -1e+31
2019-12-06 23:30:00+00:00 -1e+31
2019-12-06 23:32:00+00:00 -1e+31
2019-12-06 23:34:00+00:00 -1e+31
2019-12-06 23:36:00+00:00 -1e+31
2019-12-06 23:38:00+00:00 -1e+31
2019-12-06 23:40:00+00:00 -1e+31
2019-12-06 23:42:00+00:00 -1e+31
2019-12-06 23:44:00+00:00 -1e+31
2019-12-06 23:46:00+00:00 -1e+31
2019-12-06 23:48:00+00:00 -1e+31
2019-12-06 23:50:00+00:00 -1e+31
2019-12-06 23:52:00+00:00 -1e+31
2019-12-06 23:54:00+00:00 -1e+31
2019-12-06 23:56:00+00:00 -1e+31
2019-12-06 23:58:00+00:00 -1e+31
2019-12-07 00:00:00+00:00 -1e+31
2019-12-07 00:02:00+00:00 -1e+31
2019-12-07 00:04:00+00:00 -1e+31
2019-12-07 00:06:00+00:00 -1e+31
2019-12-07 00:08:00+00:00 -1e+31
2019-12-07 00:10:00+00:00 -1e+31
2019-12-07 00:12:00+00:00 -1e+31
2019-12-07 00:14:00+00:00 -1e+31
2019-12-07 00:16:00+00:00 -1e+31
2019-12-07 00:18:00+00:00 -1e+31
2019-12-07 00:20:00+00:00 -1e+31
2019-12-07 00:22:00+00:00 -1e+31
2019-12-07 00:24:00+00:00 -1e+31
2019-12-07 00:26:00+00:00 -1e+31
2019-12-07 00:28:00+00:00 -1e+31
2019-12-07 00:30:00+00:00 -1e+31
2019-12-07 00:32:00+00:00 -1e+31
2019-12-07 00:34:00+00:00 -1e+31
2019-12-07 00:36:00+00:00 -1e+31
2019-12-07 00:38:00+00:00 -1e+31
2019-12-07 00:40:00+00:00 -1e+31
2019-12-07 00:42:00+00:00 -1e+31
2019-12-07 00:44:00+00:00 -1e+31
2019-12-07 00:46:00+00:00 -1e+31
2019-12-07 00:48:00+00:00 -1e+31
2019-12-07 00:50:00+00:00 -1e+31
2019-12-07 00:52:00+00:00 -1e+31
2019-12-07 00:54:00+00:00 -1e+31
2019-12-07 00:56:00+00:00 -1e+31
2019-12-07 00:58:00+00:00 -1e+31
2019-12-07 01:00:00+00:00 -1e+31
Time                      BowShockDistance
2019-12-06 23:00:00+00:00 -63346.9196653824
2019-12-06 23:02:00+00:00 -63294.64141981154
2019-12-06 23:04:00+00:00 -63245.596207573224
2019-12-06 23:06:00+00:00 -63199.78901981647
2019-12-06 23:08:00+00:00 -63157.20365992725
2019-12-06 23:10:00+00:00 -63117.81344174713
2019-12-06 23:12:00+00:00 -63081.692088899355
2019-12-06 23:14:00+00:00 -63048.8536767636
2019-12-06 23:16:00+00:00 -63019.3061553032
2019-12-06 23:18:00+00:00 -62993.05917067514
2019-12-06 23:20:00+00:00 -62970.12837184484
2019-12-06 23:22:00+00:00 -62950.52841023663
2019-12-06 23:24:00+00:00 -62934.27713649901
2019-12-06 23:26:00+00:00 -62921.39160510196
2019-12-06 23:28:00+00:00 -62911.88705737619
2019-12-06 23:30:00+00:00 -62905.710667149564
2019-12-06 23:32:00+00:00 -62902.95550971251
2019-12-06 23:34:00+00:00 -62903.641176002275
2019-12-06 23:36:00+00:00 -62907.80261874413
2019-12-06 23:38:00+00:00 -62915.464620057974
2019-12-06 23:40:00+00:00 -62926.55082683943
2019-12-06 23:42:00+00:00 -62941.13668178174
2019-12-06 23:44:00+00:00 -62959.31347979517
2019-12-06 23:46:00+00:00 -62981.0460333965
2019-12-06 23:48:00+00:00 -63006.29398626254
2019-12-06 23:50:00+00:00 -63035.23590529209
2019-12-06 23:52:00+00:00 -63067.734315504655
2019-12-06 23:54:00+00:00 -63103.9423359517
2019-12-06 23:56:00+00:00 -63143.82097603187
2019-12-06 23:58:00+00:00 -63187.43097556382
2019-12-07 00:00:00+00:00 -63234.76722240609
2019-12-07 00:02:00+00:00 -63285.946047976766
2019-12-07 00:04:00+00:00 -63340.84659475738
2019-12-07 00:06:00+00:00 -63399.6599795767
2019-12-07 00:08:00+00:00 -63462.36684959226
2019-12-07 00:10:00+00:00 -63528.93223058108
2019-12-07 00:12:00+00:00 -63599.49143442628
2019-12-07 00:14:00+00:00 -63674.06645357115
2019-12-07 00:16:00+00:00 -63752.69368834355
2019-12-07 00:18:00+00:00 -63835.38885264055
2019-12-07 00:20:00+00:00 -63922.19156473018
2019-12-07 00:22:00+00:00 -64013.17717658988
2019-12-07 00:24:00+00:00 -64108.39695731723
2019-12-07 00:26:00+00:00 -64207.89536426931
2019-12-07 00:28:00+00:00 -64311.71377067264
2019-12-07 00:30:00+00:00 -64419.89138505275
2019-12-07 00:32:00+00:00 -64532.51351240833
2019-12-07 00:34:00+00:00 -64649.65260731635
2019-12-07 00:36:00+00:00 -64771.379311619516
2019-12-07 00:38:00+00:00 -64897.67104876184
2019-12-07 00:40:00+00:00 -65028.68301584915
2019-12-07 00:42:00+00:00 -65164.46484081774
2019-12-07 00:44:00+00:00 -65305.060226693706
2019-12-07 00:46:00+00:00 -65450.58145096369
2019-12-07 00:48:00+00:00 -65601.10452463536
2019-12-07 00:50:00+00:00 -65756.67177291225
2019-12-07 00:52:00+00:00 -65917.41909069556
2019-12-07 00:54:00+00:00 -66083.43060961734
2019-12-07 00:56:00+00:00 -66254.79265024424
2019-12-07 00:58:00+00:00 -66431.59895723492
2019-12-07 01:00:00+00:00 -66613.95481782754
Time                      MagnetoPauseDistance
2019-12-06 23:00:00+00:00 -36257.07842629869
2019-12-06 23:02:00+00:00 -36258.85543445909
2019-12-06 23:04:00+00:00 -36264.085186786295
2019-12-06 23:06:00+00:00 -36272.63213736854
2019-12-06 23:08:00+00:00 -36284.70835757102
2019-12-06 23:10:00+00:00 -36300.31974037647
2019-12-06 23:12:00+00:00 -36319.46365119151
2019-12-06 23:14:00+00:00 -36342.15170442261
2019-12-06 23:16:00+00:00 -36368.38681379992
2019-12-06 23:18:00+00:00 -36398.173451377384
2019-12-06 23:20:00+00:00 -36431.522728011965
2019-12-06 23:22:00+00:00 -36468.42117841759
2019-12-06 23:24:00+00:00 -36508.73734188113
2019-12-06 23:26:00+00:00 -36552.64823275251
2019-12-06 23:28:00+00:00 -36600.16831492557
2019-12-06 23:30:00+00:00 -36651.3031080986
2019-12-06 23:32:00+00:00 -36706.0697372032
2019-12-06 23:34:00+00:00 -36764.47230438232
2019-12-06 23:36:00+00:00 -36826.528742233415
2019-12-06 23:38:00+00:00 -36892.251661018636
2019-12-06 23:40:00+00:00 -36961.65513457588
2019-12-06 23:42:00+00:00 -37034.754344462235
2019-12-06 23:44:00+00:00 -37111.56617775258
2019-12-06 23:46:00+00:00 -37192.03035570242
2019-12-06 23:48:00+00:00 -37276.20130237636
2019-12-06 23:50:00+00:00 -37364.1428594397
2019-12-06 23:52:00+00:00 -37455.87044486939
2019-12-06 23:54:00+00:00 -37551.40972019397
2019-12-06 23:56:00+00:00 -37650.77722533703
2019-12-06 23:58:00+00:00 -37753.99227267556
2019-12-07 00:00:00+00:00 -37861.08060621272
2019-12-07 00:02:00+00:00 -37972.06372464249
2019-12-07 00:04:00+00:00 -38086.96537283053
2019-12-07 00:06:00+00:00 -38205.80927251379
2019-12-07 00:08:00+00:00 -38328.62360179012
2019-12-07 00:10:00+00:00 -38455.434182026765
2019-12-07 00:12:00+00:00 -38586.268572823195
2019-12-07 00:14:00+00:00 -38721.14064286927
2019-12-07 00:16:00+00:00 -38860.04288732833
2019-12-07 00:18:00+00:00 -39003.061274660344
2019-12-07 00:20:00+00:00 -39150.22824670246
2019-12-07 00:22:00+00:00 -39301.57511022127
2019-12-07 00:24:00+00:00 -39457.14229016041
2019-12-07 00:26:00+00:00 -39616.957277658024
2019-12-07 00:28:00+00:00 -39781.06156798889
2019-12-07 00:30:00+00:00 -39949.49046756546
2019-12-07 00:32:00+00:00 -40122.28441855201
2019-12-07 00:34:00+00:00 -40299.48289162839
2019-12-07 00:36:00+00:00 -40481.12884883657
2019-12-07 00:38:00+00:00 -40667.26479110529
2019-12-07 00:40:00+00:00 -40857.932608312534
2019-12-07 00:42:00+00:00 -41053.18163670533
2019-12-07 00:44:00+00:00 -41253.05740716891
2019-12-07 00:46:00+00:00 -41457.57432044779
2019-12-07 00:48:00+00:00 -41666.805912112315
2019-12-07 00:50:00+00:00 -41880.822381495396
2019-12-07 00:52:00+00:00 -42099.66977523511
2019-12-07 00:54:00+00:00 -42323.41040469208
2019-12-07 00:56:00+00:00 -42552.10013211714
2019-12-07 00:58:00+00:00 -42785.79762964033
2019-12-07 01:00:00+00:00 -43024.56407123734
Time                      DipoleLValue
2019-12-06 23:00:00+00:00 5.6676052853738375
2019-12-06 23:02:00+00:00 5.659690683620403
2019-12-06 23:04:00+00:00 5.651297775607975
2019-12-06 23:06:00+00:00 5.642425384761915
2019-12-06 23:08:00+00:00 5.633072164009669
2019-12-06 23:10:00+00:00 5.623236640851331
2019-12-06 23:12:00+00:00 5.612918655072236
2019-12-06 23:14:00+00:00 5.602115806510346
2019-12-06 23:16:00+00:00 5.590827273775188
2019-12-06 23:18:00+00:00 5.579051872880099
2019-12-06 23:20:00+00:00 5.5667874592879025
2019-12-06 23:22:00+00:00 5.554032979182764
2019-12-06 23:24:00+00:00 5.540786394749714
2019-12-06 23:26:00+00:00 5.527046376027679
2019-12-06 23:28:00+00:00 5.512810442565908
2019-12-06 23:30:00+00:00 5.498077473739037
2019-12-06 23:32:00+00:00 5.482844460200051
2019-12-06 23:34:00+00:00 5.467110653947842
2019-12-06 23:36:00+00:00 5.450873145244781
2019-12-06 23:38:00+00:00 5.434129763034795
2019-12-06 23:40:00+00:00 5.416878222195296
2019-12-06 23:42:00+00:00 5.399116116846112
2019-12-06 23:44:00+00:00 5.3808407479811615
2019-12-06 23:46:00+00:00 5.362050069037651
2019-12-06 23:48:00+00:00 5.342741259517008
2019-12-06 23:50:00+00:00 5.3229112011570505
2019-12-06 23:52:00+00:00 5.302557681493808
2019-12-06 23:54:00+00:00 5.281676707925677
2019-12-06 23:56:00+00:00 5.260265771306171
2019-12-06 23:58:00+00:00 5.238322033036624
2019-12-07 00:00:00+00:00 5.215841582598046
2019-12-07 00:02:00+00:00 5.192821368909478
2019-12-07 00:04:00+00:00 5.1692577963963515
2019-12-07 00:06:00+00:00 5.145147489874885
2019-12-07 00:08:00+00:00 5.120486334374565
2019-12-07 00:10:00+00:00 5.095270593578671
2019-12-07 00:12:00+00:00 5.069496243617776
2019-12-07 00:14:00+00:00 5.04315959815171
2019-12-07 00:16:00+00:00 5.016255389953692
2019-12-07 00:18:00+00:00 4.988779984686474
2019-12-07 00:20:00+00:00 4.960728778889105
2019-12-07 00:22:00+00:00 4.932097351111918
2019-12-07 00:24:00+00:00 4.902879933988072
2019-12-07 00:26:00+00:00 4.873072680580781
2019-12-07 00:28:00+00:00 4.842669737840406
2019-12-07 00:30:00+00:00 4.8116661888392525
2019-12-07 00:32:00+00:00 4.780056295436347
2019-12-07 00:34:00+00:00 4.747834629596852
2019-12-07 00:36:00+00:00 4.714995165486795
2019-12-07 00:38:00+00:00 4.681531914389874
2019-12-07 00:40:00+00:00 4.647439216256767
2019-12-07 00:42:00+00:00 4.61271010822965
2019-12-07 00:44:00+00:00 4.577338318085213
2019-12-07 00:46:00+00:00 4.541317063081052
2019-12-07 00:48:00+00:00 4.504639216304658
2019-12-07 00:50:00+00:00 4.4672971260686705
2019-12-07 00:52:00+00:00 4.429284564437569
2019-12-07 00:54:00+00:00 4.390592840949885
2019-12-07 00:56:00+00:00 4.351214305868999
2019-12-07 00:58:00+00:00 4.311140872571606
2019-12-07 01:00:00+00:00 4.270364161118394
Time                      DipoleInvariantLatitude
2019-12-06 23:00:00+00:00 65.1623
2019-12-06 23:02:00+00:00 65.14377
2019-12-06 23:04:00+00:00 65.12406
2019-12-06 23:06:00+00:00 65.10318
2019-12-06 23:08:00+00:00 65.08111
2019-12-06 23:10:00+00:00 65.05784
2019-12-06 23:12:00+00:00 65.033356
2019-12-06 23:14:00+00:00 65.007645
2019-12-06 23:16:00+00:00 64.98069
2019-12-06 23:18:00+00:00 64.952484
2019-12-06 23:20:00+00:00 64.923004
2019-12-06 23:22:00+00:00 64.89223
2019-12-06 23:24:00+00:00 64.86015
2019-12-06 23:26:00+00:00 64.826744
2019-12-06 23:28:00+00:00 64.79199
2019-12-06 23:30:00+00:00 64.755875
2019-12-06 23:32:00+00:00 64.71837
2019-12-06 23:34:00+00:00 64.67945
2019-12-06 23:36:00+00:00 64.6391
2019-12-06 23:38:00+00:00 64.59728
2019-12-06 23:40:00+00:00 64.55398
2019-12-06 23:42:00+00:00 64.50916
2019-12-06 23:44:00+00:00 64.46281
2019-12-06 23:46:00+00:00 64.41487
2019-12-06 23:48:00+00:00 64.36533
2019-12-06 23:50:00+00:00 64.314156
2019-12-06 23:52:00+00:00 64.26131
2019-12-06 23:54:00+00:00 64.20675
2019-12-06 23:56:00+00:00 64.15044
2019-12-06 23:58:00+00:00 64.09235
2019-12-07 00:00:00+00:00 64.03242
2019-12-07 00:02:00+00:00 63.970615
2019-12-07 00:04:00+00:00 63.9069
2019-12-07 00:06:00+00:00 63.84121
2019-12-07 00:08:00+00:00 63.773502
2019-12-07 00:10:00+00:00 63.703724
2019-12-07 00:12:00+00:00 63.63182
2019-12-07 00:14:00+00:00 63.55773
2019-12-07 00:16:00+00:00 63.481396
2019-12-07 00:18:00+00:00 63.40275
2019-12-07 00:20:00+00:00 63.32172
2019-12-07 00:22:00+00:00 63.23825
2019-12-07 00:24:00+00:00 63.152252
2019-12-07 00:26:00+00:00 63.063652
2019-12-07 00:28:00+00:00 62.97237
2019-12-07 00:30:00+00:00 62.878315
2019-12-07 00:32:00+00:00 62.7814
2019-12-07 00:34:00+00:00 62.681522
2019-12-07 00:36:00+00:00 62.578587
2019-12-07 00:38:00+00:00 62.472485
2019-12-07 00:40:00+00:00 62.363102
2019-12-07 00:42:00+00:00 62.25032
2019-12-07 00:44:00+00:00 62.13401
2019-12-07 00:46:00+00:00 62.014038
2019-12-07 00:48:00+00:00 61.890266
2019-12-07 00:50:00+00:00 61.762543
2019-12-07 00:52:00+00:00 61.630707
2019-12-07 00:54:00+00:00 61.49459
2019-12-07 00:56:00+00:00 61.35401
2019-12-07 00:58:00+00:00 61.208786
2019-12-07 01:00:00+00:00 61.0587
Time                      SpacecraftRegion
2019-12-06 23:00:00+00:00 DaysideMagnetosphere
2019-12-06 23:02:00+00:00 DaysideMagnetosphere
2019-12-06 23:04:00+00:00 DaysideMagnetosphere
2019-12-06 23:06:00+00:00 DaysideMagnetosphere
2019-12-06 23:08:00+00:00 DaysideMagnetosphere
2019-12-06 23:10:00+00:00 DaysideMagnetosphere
2019-12-06 23:12:00+00:00 DaysideMagnetosphere
2019-12-06 23:14:00+00:00 DaysideMagnetosphere
2019-12-06 23:16:00+00:00 DaysideMagnetosphere
2019-12-06 23:18:00+00:00 DaysideMagnetosphere
2019-12-06 23:20:00+00:00 DaysideMagnetosphere
2019-12-06 23:22:00+00:00 DaysideMagnetosphere
2019-12-06 23:24:00+00:00 DaysideMagnetosphere
2019-12-06 23:26:00+00:00 DaysideMagnetosphere
2019-12-06 23:28:00+00:00 DaysideMagnetosphere
2019-12-06 23:30:00+00:00 DaysideMagnetosphere
2019-12-06 23:32:00+00:00 DaysideMagnetosphere
2019-12-06 23:34:00+00:00 DaysideMagnetosphere
2019-12-06 23:36:00+00:00 DaysideMagnetosphere
2019-12-06 23:38:00+00:00 DaysideMagnetosphere
2019-12-06 23:40:00+00:00 DaysideMagnetosphere
2019-12-06 23:42:00+00:00 DaysideMagnetosphere
2019-12-06 23:44:00+00:00 DaysideMagnetosphere
2019-12-06 23:46:00+00:00 DaysideMagnetosphere
2019-12-06 23:48:00+00:00 DaysideMagnetosphere
2019-12-06 23:50:00+00:00 DaysideMagnetosphere
2019-12-06 23:52:00+00:00 DaysideMagnetosphere
2019-12-06 23:54:00+00:00 DaysideMagnetosphere
2019-12-06 23:56:00+00:00 DaysideMagnetosphere
2019-12-06 23:58:00+00:00 DaysideMagnetosphere
2019-12-07 00:00:00+00:00 DaysideMagnetosphere
2019-12-07 00:02:00+00:00 DaysideMagnetosphere
2019-12-07 00:04:00+00:00 DaysideMagnetosphere
2019-12-07 00:06:00+00:00 DaysideMagnetosphere
2019-12-07 00:08:00+00:00 DaysideMagnetosphere
2019-12-07 00:10:00+00:00 DaysideMagnetosphere
2019-12-07 00:12:00+00:00 DaysideMagnetosphere
2019-12-07 00:14:00+00:00 DaysideMagnetosphere
2019-12-07 00:16:00+00:00 DaysideMagnetosphere
2019-12-07 00:18:00+00:00 DaysideMagnetosphere
2019-12-07 00:20:00+00:00 DaysideMagnetosphere
2019-12-07 00:22:00+00:00 DaysideMagnetosphere
2019-12-07 00:24:00+00:00 DaysideMagnetosphere
2019-12-07 00:26:00+00:00 DaysideMagnetosphere
2019-12-07 00:28:00+00:00 DaysideMagnetosphere
2019-12-07 00:30:00+00:00 DaysideMagnetosphere
2019-12-07 00:32:00+00:00 DaysideMagnetosphere
2019-12-07 00:34:00+00:00 DaysideMagnetosphere
2019-12-07 00:36:00+00:00 DaysideMagnetosphere
2019-12-07 00:38:00+00:00 DaysideMagnetosphere
2019-12-07 00:40:00+00:00 DaysideMagnetosphere
2019-12-07 00:42:00+00:00 DaysideMagnetosphere
2019-12-07 00:44:00+00:00 DaysideMagnetosphere
2019-12-07 00:46:00+00:00 DaysideMagnetosphere
2019-12-07 00:48:00+00:00 DaysideMagnetosphere
2019-12-07 00:50:00+00:00 DaysideMagnetosphere
2019-12-07 00:52:00+00:00 DaysideMagnetosphere
2019-12-07 00:54:00+00:00 DaysideMagnetosphere
2019-12-07 00:56:00+00:00 DaysideMagnetosphere
2019-12-07 00:58:00+00:00 DaysideMagnetosphere
2019-12-07 01:00:00+00:00 DaysideMagnetosphere
Time                      RadialTracedFootpointRegions
2019-12-06 23:00:00+00:00 LowLatitude
2019-12-06 23:02:00+00:00 LowLatitude
2019-12-06 23:04:00+00:00 LowLatitude
2019-12-06 23:06:00+00:00 LowLatitude
2019-12-06 23:08:00+00:00 LowLatitude
2019-12-06 23:10:00+00:00 LowLatitude
2019-12-06 23:12:00+00:00 LowLatitude
2019-12-06 23:14:00+00:00 LowLatitude
2019-12-06 23:16:00+00:00 LowLatitude
2019-12-06 23:18:00+00:00 LowLatitude
2019-12-06 23:20:00+00:00 LowLatitude
2019-12-06 23:22:00+00:00 LowLatitude
2019-12-06 23:24:00+00:00 LowLatitude
2019-12-06 23:26:00+00:00 LowLatitude
2019-12-06 23:28:00+00:00 LowLatitude
2019-12-06 23:30:00+00:00 LowLatitude
2019-12-06 23:32:00+00:00 LowLatitude
2019-12-06 23:34:00+00:00 LowLatitude
2019-12-06 23:36:00+00:00 LowLatitude
2019-12-06 23:38:00+00:00 LowLatitude
2019-12-06 23:40:00+00:00 LowLatitude
2019-12-06 23:42:00+00:00 LowLatitude
2019-12-06 23:44:00+00:00 LowLatitude
2019-12-06 23:46:00+00:00 LowLatitude
2019-12-06 23:48:00+00:00 LowLatitude
2019-12-06 23:50:00+00:00 LowLatitude
2019-12-06 23:52:00+00:00 LowLatitude
2019-12-06 23:54:00+00:00 LowLatitude
2019-12-06 23:56:00+00:00 LowLatitude
2019-12-06 23:58:00+00:00 LowLatitude
2019-12-07 00:00:00+00:00 LowLatitude
2019-12-07 00:02:00+00:00 LowLatitude
2019-12-07 00:04:00+00:00 LowLatitude
2019-12-07 00:06:00+00:00 LowLatitude
2019-12-07 00:08:00+00:00 LowLatitude
2019-12-07 00:10:00+00:00 LowLatitude
2019-12-07 00:12:00+00:00 LowLatitude
2019-12-07 00:14:00+00:00 LowLatitude
2019-12-07 00:16:00+00:00 LowLatitude
2019-12-07 00:18:00+00:00 LowLatitude
2019-12-07 00:20:00+00:00 LowLatitude
2019-12-07 00:22:00+00:00 LowLatitude
2019-12-07 00:24:00+00:00 LowLatitude
2019-12-07 00:26:00+00:00 LowLatitude
2019-12-07 00:28:00+00:00 LowLatitude
2019-12-07 00:30:00+00:00 LowLatitude
2019-12-07 00:32:00+00:00 LowLatitude
2019-12-07 00:34:00+00:00 LowLatitude
2019-12-07 00:36:00+00:00 LowLatitude
2019-12-07 00:38:00+00:00 LowLatitude
2019-12-07 00:40:00+00:00 LowLatitude
2019-12-07 00:42:00+00:00 LowLatitude
2019-12-07 00:44:00+00:00 LowLatitude
2019-12-07 00:46:00+00:00 LowLatitude
2019-12-07 00:48:00+00:00 LowLatitude
2019-12-07 00:50:00+00:00 LowLatitude
2019-12-07 00:52:00+00:00 LowLatitude
2019-12-07 00:54:00+00:00 LowLatitude
2019-12-07 00:56:00+00:00 LowLatitude
2019-12-07 00:58:00+00:00 LowLatitude
2019-12-07 01:00:00+00:00 LowLatitude
Time                      NorthBTracedFootpointRegions
2019-12-06 23:00:00+00:00 NorthMidLatitude
2019-12-06 23:02:00+00:00 NorthMidLatitude
2019-12-06 23:04:00+00:00 NorthMidLatitude
2019-12-06 23:06:00+00:00 NorthMidLatitude
2019-12-06 23:08:00+00:00 NorthMidLatitude
2019-12-06 23:10:00+00:00 NorthMidLatitude
2019-12-06 23:12:00+00:00 NorthMidLatitude
2019-12-06 23:14:00+00:00 NorthMidLatitude
2019-12-06 23:16:00+00:00 NorthMidLatitude
2019-12-06 23:18:00+00:00 NorthMidLatitude
2019-12-06 23:20:00+00:00 NorthMidLatitude
2019-12-06 23:22:00+00:00 NorthMidLatitude
2019-12-06 23:24:00+00:00 NorthMidLatitude
2019-12-06 23:26:00+00:00 NorthMidLatitude
2019-12-06 23:28:00+00:00 NorthMidLatitude
2019-12-06 23:30:00+00:00 NorthMidLatitude
2019-12-06 23:32:00+00:00 NorthMidLatitude
2019-12-06 23:34:00+00:00 NorthMidLatitude
2019-12-06 23:36:00+00:00 NorthMidLatitude
2019-12-06 23:38:00+00:00 NorthMidLatitude
2019-12-06 23:40:00+00:00 NorthMidLatitude
2019-12-06 23:42:00+00:00 NorthMidLatitude
2019-12-06 23:44:00+00:00 NorthMidLatitude
2019-12-06 23:46:00+00:00 NorthMidLatitude
2019-12-06 23:48:00+00:00 NorthMidLatitude
2019-12-06 23:50:00+00:00 NorthMidLatitude
2019-12-06 23:52:00+00:00 NorthMidLatitude
2019-12-06 23:54:00+00:00 NorthMidLatitude
2019-12-06 23:56:00+00:00 NorthMidLatitude
2019-12-06 23:58:00+00:00 NorthMidLatitude
2019-12-07 00:00:00+00:00 NorthMidLatitude
2019-12-07 00:02:00+00:00 NorthMidLatitude
2019-12-07 00:04:00+00:00 NorthMidLatitude
2019-12-07 00:06:00+00:00 NorthMidLatitude
2019-12-07 00:08:00+00:00 NorthMidLatitude
2019-12-07 00:10:00+00:00 NorthMidLatitude
2019-12-07 00:12:00+00:00 NorthMidLatitude
2019-12-07 00:14:00+00:00 NorthMidLatitude
2019-12-07 00:16:00+00:00 NorthMidLatitude
2019-12-07 00:18:00+00:00 NorthMidLatitude
2019-12-07 00:20:00+00:00 NorthMidLatitude
2019-12-07 00:22:00+00:00 NorthMidLatitude
2019-12-07 00:24:00+00:00 NorthMidLatitude
2019-12-07 00:26:00+00:00 NorthMidLatitude
2019-12-07 00:28:00+00:00 NorthMidLatitude
2019-12-07 00:30:00+00:00 NorthMidLatitude
2019-12-07 00:32:00+00:00 NorthMidLatitude
2019-12-07 00:34:00+00:00 NorthMidLatitude
2019-12-07 00:36:00+00:00 NorthMidLatitude
2019-12-07 00:38:00+00:00 NorthMidLatitude
2019-12-07 00:40:00+00:00 NorthMidLatitude
2019-12-07 00:42:00+00:00 NorthMidLatitude
2019-12-07 00:44:00+00:00 NorthMidLatitude
2019-12-07 00:46:00+00:00 NorthMidLatitude
2019-12-07 00:48:00+00:00 NorthMidLatitude
2019-12-07 00:50:00+00:00 NorthMidLatitude
2019-12-07 00:52:00+00:00 NorthMidLatitude
2019-12-07 00:54:00+00:00 NorthMidLatitude
2019-12-07 00:56:00+00:00 NorthMidLatitude
2019-12-07 00:58:00+00:00 NorthMidLatitude
2019-12-07 01:00:00+00:00 NorthMidLatitude
Time                      SouthBTracedFootpointRegions
2019-12-06 23:00:00+00:00 SouthMidLatitude
2019-12-06 23:02:00+00:00 SouthMidLatitude
2019-12-06 23:04:00+00:00 SouthMidLatitude
2019-12-06 23:06:00+00:00 SouthMidLatitude
2019-12-06 23:08:00+00:00 SouthMidLatitude
2019-12-06 23:10:00+00:00 SouthMidLatitude
2019-12-06 23:12:00+00:00 SouthMidLatitude
2019-12-06 23:14:00+00:00 SouthMidLatitude
2019-12-06 23:16:00+00:00 SouthMidLatitude
2019-12-06 23:18:00+00:00 SouthMidLatitude
2019-12-06 23:20:00+00:00 SouthMidLatitude
2019-12-06 23:22:00+00:00 SouthMidLatitude
2019-12-06 23:24:00+00:00 SouthMidLatitude
2019-12-06 23:26:00+00:00 SouthMidLatitude
2019-12-06 23:28:00+00:00 SouthMidLatitude
2019-12-06 23:30:00+00:00 SouthMidLatitude
2019-12-06 23:32:00+00:00 SouthMidLatitude
2019-12-06 23:34:00+00:00 SouthMidLatitude
2019-12-06 23:36:00+00:00 SouthMidLatitude
2019-12-06 23:38:00+00:00 SouthMidLatitude
2019-12-06 23:40:00+00:00 SouthMidLatitude
2019-12-06 23:42:00+00:00 SouthMidLatitude
2019-12-06 23:44:00+00:00 SouthMidLatitude
2019-12-06 23:46:00+00:00 SouthMidLatitude
2019-12-06 23:48:00+00:00 SouthMidLatitude
2019-12-06 23:50:00+00:00 SouthMidLatitude
2019-12-06 23:52:00+00:00 SouthMidLatitude
2019-12-06 23:54:00+00:00 SouthMidLatitude
2019-12-06 23:56:00+00:00 SouthMidLatitude
2019-12-06 23:58:00+00:00 SouthMidLatitude
2019-12-07 00:00:00+00:00 SouthMidLatitude
2019-12-07 00:02:00+00:00 SouthMidLatitude
2019-12-07 00:04:00+00:00 SouthMidLatitude
2019-12-07 00:06:00+00:00 SouthMidLatitude
2019-12-07 00:08:00+00:00 SouthMidLatitude
2019-12-07 00:10:00+00:00 SouthMidLatitude
2019-12-07 00:12:00+00:00 SouthMidLatitude
2019-12-07 00:14:00+00:00 SouthMidLatitude
2019-12-07 00:16:00+00:00 SouthMidLatitude
2019-12-07 00:18:00+00:00 SouthMidLatitude
2019-12-07 00:20:00+00:00 SouthMidLatitude
2019-12-07 00:22:00+00:00 SouthMidLatitude
2019-12-07 00:24:00+00:00 SouthMidLatitude
2019-12-07 00:26:00+00:00 SouthMidLatitude
2019-12-07 00:28:00+00:00 SouthMidLatitude
2019-12-07 00:30:00+00:00 SouthMidLatitude
2019-12-07 00:32:00+00:00 SouthMidLatitude
2019-12-07 00:34:00+00:00 SouthMidLatitude
2019-12-07 00:36:00+00:00 SouthMidLatitude
2019-12-07 00:38:00+00:00 SouthMidLatitude
2019-12-07 00:40:00+00:00 SouthMidLatitude
2019-12-07 00:42:00+00:00 SouthMidLatitude
2019-12-07 00:44:00+00:00 SouthMidLatitude
2019-12-07 00:46:00+00:00 SouthMidLatitude
2019-12-07 00:48:00+00:00 SouthMidLatitude
2019-12-07 00:50:00+00:00 SouthMidLatitude
2019-12-07 00:52:00+00:00 SouthMidLatitude
2019-12-07 00:54:00+00:00 SouthMidLatitude
2019-12-07 00:56:00+00:00 SouthMidLatitude
2019-12-07 00:58:00+00:00 SouthMidLatitude
2019-12-07 01:00:00+00:00 SouthMidLatitude
Time                              B Strength GSE        
                              X         Y         Z    
2019-12-06T23:00:00+00:00 -76.732735 17.361168 147.357873
2019-12-06T23:02:00+00:00 -77.321187 17.312294 147.953229
2019-12-06T23:04:00+00:00 -77.930730 17.264462 148.587877
2019-12-06T23:06:00+00:00 -78.561959 17.217646 149.262598
2019-12-06T23:08:00+00:00 -79.215460 17.171795 149.978204
2019-12-06T23:10:00+00:00 -79.891915 17.126892 150.735632
2019-12-06T23:12:00+00:00 -80.591926 17.082844 151.535752
2019-12-06T23:14:00+00:00 -81.316244 17.039621 152.379655
2019-12-06T23:16:00+00:00 -82.065580 16.997157 153.268372
2019-12-06T23:18:00+00:00 -82.840709 16.955383 154.203066
2019-12-06T23:20:00+00:00 -83.642489 16.914243 155.185024
2019-12-06T23:22:00+00:00 -84.471726 16.873643 156.215499
2019-12-06T23:24:00+00:00 -85.329363 16.833525 157.295919
2019-12-06T23:26:00+00:00 -86.216334 16.793787 158.427761
2019-12-06T23:28:00+00:00 -87.133692 16.754370 159.612661
2019-12-06T23:30:00+00:00 -88.082425 16.715143 160.852212
2019-12-06T23:32:00+00:00 -89.063728 16.676034 162.148317
2019-12-06T23:34:00+00:00 -90.078680 16.636902 163.502735
2019-12-06T23:36:00+00:00 -91.128575 16.597653 164.917555
2019-12-06T23:38:00+00:00 -92.214694 16.558143 166.394919
2019-12-06T23:40:00+00:00 -93.338443 16.518263 167.937094
2019-12-06T23:42:00+00:00 -94.501233 16.477853 169.546466
2019-12-06T23:44:00+00:00 -95.704617 16.436763 171.225643
2019-12-06T23:46:00+00:00 -96.950177 16.394831 172.977263
2019-12-06T23:48:00+00:00 -98.239624 16.351874 174.804260
2019-12-06T23:50:00+00:00 -99.574753 16.307707 176.709691
2019-12-06T23:52:00+00:00 -100.957443 16.262134 178.696773
2019-12-06T23:54:00+00:00 -102.389758 16.214953 180.769055
2019-12-06T23:56:00+00:00 -103.873784 16.165916 182.930180
2019-12-06T23:58:00+00:00 -105.411726 16.114770 185.184024
2019-12-07T00:00:00+00:00 -107.006688 16.061561 187.534311
2019-12-07T00:02:00+00:00 -108.659823 16.005421 189.986431
2019-12-07T00:04:00+00:00 -110.374460 15.946326 192.544656
2019-12-07T00:06:00+00:00 -112.153392 15.883939 195.213988
2019-12-07T00:08:00+00:00 -113.999690 15.817957 197.999843
2019-12-07T00:10:00+00:00 -115.916461 15.747958 200.907929
2019-12-07T00:12:00+00:00 -117.907122 15.673553 203.944409
2019-12-07T00:14:00+00:00 -119.975227 15.594305 207.115776
2019-12-07T00:16:00+00:00 -122.124651 15.509762 210.429130
2019-12-07T00:18:00+00:00 -124.359434 15.419413 213.891909
2019-12-07T00:20:00+00:00 -126.683871 15.322698 217.512156
2019-12-07T00:22:00+00:00 -129.102558 15.219040 221.298429
2019-12-07T00:24:00+00:00 -131.620495 15.107835 225.260090
2019-12-07T00:26:00+00:00 -134.242814 14.988360 229.406929
2019-12-07T00:28:00+00:00 -136.975209 14.859927 233.749685
2019-12-07T00:30:00+00:00 -139.823604 14.721714 238.299795
2019-12-07T00:32:00+00:00 -142.794465 14.572903 243.069624
2019-12-07T00:34:00+00:00 -145.894611 14.412552 248.072487
2019-12-07T00:36:00+00:00 -149.131418 14.239676 253.322766
2019-12-07T00:38:00+00:00 -152.512742 14.053195 258.835981
2019-12-07T00:40:00+00:00 -156.047033 13.851957 264.628846
2019-12-07T00:42:00+00:00 -159.743437 13.634724 270.719598
2019-12-07T00:44:00+00:00 -163.611670 13.400120 277.127900
2019-12-07T00:46:00+00:00 -167.662285 13.146686 283.875138
2019-12-07T00:48:00+00:00 -171.906648 12.872867 290.984511
2019-12-07T00:50:00+00:00 -176.357059 12.576949 298.481425
2019-12-07T00:52:00+00:00 -181.026566 12.257054 306.393167
2019-12-07T00:54:00+00:00 -185.929646 11.911241 314.749953
2019-12-07T00:56:00+00:00 -191.081681 11.537328 323.584541
2019-12-07T00:58:00+00:00 -196.499462 11.132980 332.932890
2019-12-07T01:00:00+00:00 -202.201200 10.695726 342.834283

Additional Documentation¶

View the hdpws and sscws API documentation for a description of additional features.

In [ ]: