brahe 1.2.0

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
SQLite format 3@  	
	.�
VX^
-g��8	Ui,	.X�Q�}tabletracertracer
CREATE TABLE tracer (
    -- A row per file indicating the tracer used for that file.
    file_id integer primary key,
    tracer text,
    foreign key (file_id) references file (id)
)�
�etablearcarcCREATE TABLE arc (
    -- If recording branches, a row per context per from/to line transition executed.
    file_id integer,            -- foreign key to `file`.
    context_id integer,         -- foreign key to `context`.
    fromno integer,             -- line number jumped from.
    tono integer,               -- line number jumped to.
    foreign key (file_id) references file (id),
    foreign key (context_id) references context (id),
    unique (file_id, context_id, fromno, tono)
)%9indexsqlite_autoindex_arc_1arc��qtableline_bitsline_bits	CREATE TABLE line_bits (
    -- If recording lines, a row per context per file executed.
    -- All of the line numbers for that file/context are in one numbits.
    file_id integer,            -- foreign key to `file`.
    context_id integer,         -- foreign key to `context`.
    numbits blob,               -- see the numbits functions in coverage.numbits
    foreign key (file_id) references file (id),
    foreign key (context_id) references context (id),
    unique (file_id, context_id)
)1	Eindexsqlite_autoindex_line_bits_1line_bits
��	tablecontextcontextCREATE TABLE context (
    -- A row per context measured.
    id integer primary key,
    context text,
    unique (context)
)-Aindexsqlite_autoindex_context_1context��qtablefilefileCREATE TABLE file (
    -- A row per file measured.
    id integer primary key,
    path text,
    unique (path)
)';indexsqlite_autoindex_file_1file��tablemetametaCREATE TABLE meta (
    -- Key-value pairs, to record metadata about the data
    key text,
    value text,
    unique (key)
    -- Possible keys:
    --  'has_arcs' boolean      -- Is this data recording branches?
    --  'sys_argv' text         -- The coverage command line that recorded the data.
    --  'version' text          -- The version of coverage.py that made the file.
    --  'when' text             -- Datetime when the file was created.
    --  'hash' text             -- Hash of the data.
)';indexsqlite_autoindex_meta_1meta�++�utablecoverage_schemacoverage_schemaCREATE TABLE coverage_schema (
    -- One row, to record the version of the schema in this db.
    version integer
)
��
���has_arcs0version7.13.3
���has_arcs
	version
+1�>��q4
�
�
b
��P��C
�
�
_
	�	v	.��b��R�[��J�y1F+�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/basemap.pyC*�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/access.pyF)�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/transform.pyB(�	/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/utils.pyC'�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/orbits.pyA&�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/time.py@%�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/eop.pyE$�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/__main__.pyT#�-/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/datasets/groundstations.pyO"�#/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/datasets/celestrak.pyN!�!/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/datasets/__init__.pyE �/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/__init__.py>�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/ccsds.pyB�	/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/celestrak.pyC�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/spacetrack.py?�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/events.pyG�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/orbit_dynamics.py@�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/logging.pyF�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/gabbard.pyL�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/texture_utils.pyL�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/trajectory_3d.pyK�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/trajectories.pyN�!/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/access_geometry.pyF�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/backend.pyJ�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/groundtrack.pyG�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/__init__.py>�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/utils.pyD�
/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/integrators.py</Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/math.pyH�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/relative_motion.py?
�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/access.pyA�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/datasets.pyB�	/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/constants.pyE
�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/trajectories.pyA	�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/attitude.pyF�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/space_weather.py;}/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/eop.py?�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/frames.pyD�
/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/coordinates.pyD�
/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/propagators.py?�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/orbits.py</Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/time.pyA�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/__init__.py
+2��
���Sz�\�K��
��5cr���?D
`
�2	/
�	w
	��Q
��
c�G�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/basemap.py+D�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/access.py*G�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/transform.py)C�	/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/utils.py(D�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/orbits.py'B�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/time.py&A�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/eop.py%F�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/__main__.py$U�-/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/datasets/groundstations.py#P�#/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/datasets/celestrak.py"O�!/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/datasets/__init__.py!F�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/cli/__init__.py ?�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/ccsds.pyC�	/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/celestrak.pyD�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/spacetrack.py@�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/events.pyH�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/orbit_dynamics.pyA�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/logging.pyG�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/gabbard.pyM�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/texture_utils.pyM�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/trajectory_3d.pyL�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/trajectories.pyO�!/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/access_geometry.pyG�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/backend.pyK�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/groundtrack.pyH�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/plots/__init__.py?�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/utils.pyE�
/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/integrators.py=/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/math.pyI�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/relative_motion.py@�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/access.py
B�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/datasets.pyC�	/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/constants.pyF�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/trajectories.py
B�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/attitude.py	G�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/space_weather.py<}/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/eop.py@�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/frames.pyE�
/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/coordinates.pyE�
/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/propagators.py@�/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/orbits.py=/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/time.pyA�	/Users/duncan/repos/brahe-wt/de-cov-doc-fix/brahe/__init__.py
��
��
	
*
��������UL����^R>0
�
�
�
�
�
�
�
����+�=.#
�
�
�
�*	�@
)	
�
(	@'	$@���Q&	&�t�{��	%	@
$	I#	���	@��~"	�|��@�!!	D�/�	@�� 	����@@ ��@@�)	T�&�
	�	!@�	���@@@@@		C,	.������	4@������
	 	(&	���	
		 		$���؏	@	&@�����?
	(�'	P)�e��3����y�Hr�c�~����Ӗ]����	4&^�����0(
	R'����I�``	6%���q&�7#�~F��I�g$�	<#�O���y��3�´v����?�C
	�"��9O��q�� �`0��������1		!bD	�*�߲�?�!D�$I��]Wx_>ׯ?w`�����;�7x���7 ;��'d��?	�����'
	$��3�	 	@		  
		@�	(
h����
		. 	���	���
*���E�hv����}��Sa�>"07
)ZLo��������������	*	
)	(	'	&	%	$	#	"	!	 																(	)	&	'
	%	#	"
	!		*	$