diff --git a/.gitchangelog.rc b/.gitchangelog.rc new file mode 100644 index 0000000..19d9b85 --- /dev/null +++ b/.gitchangelog.rc @@ -0,0 +1,289 @@ +# -*- coding: utf-8; mode: python -*- +## +## Format +## +## ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...] +## +## Description +## +## ACTION is one of 'chg', 'fix', 'new' +## +## Is WHAT the change is about. +## +## 'chg' is for refactor, small improvement, cosmetic changes... +## 'fix' is for bug fixes +## 'new' is for new features, big improvement +## +## AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc'|'docs' +## +## Is WHO is concerned by the change. +## +## 'dev' is for developpers (API changes, refactors...) +## 'usr' is for final users (UI changes) +## 'pkg' is for packagers (packaging changes) +## 'test' is for testers (test only related changes) +## 'doc' is for doc guys (doc only changes) +## +## COMMIT_MSG is ... well ... the commit message itself. +## +## TAGs are additionnal adjective as 'refactor' 'minor' 'cosmetic' +## +## They are preceded with a '!' or a '@' (prefer the former, as the +## latter is wrongly interpreted in github.) Commonly used tags are: +## +## 'refactor' is obviously for refactoring code only +## 'minor' is for a very meaningless change (a typo, adding a comment) +## 'cosmetic' is for cosmetic driven change (re-indentation, 80-col...) +## 'wip' is for partial functionality but complete subfunctionality. +## +## Example: +## +## new: usr: support of bazaar implemented +## chg: re-indentend some lines !cosmetic +## new: dev: updated code to be compatible with last version of killer lib. +## fix: pkg: updated year of licence coverage. +## new: test: added a bunch of test around user usability of feature X. +## fix: typo in spelling my name in comment. !minor +## +## Please note that multi-line commit message are supported, and only the +## first line will be considered as the "summary" of the commit message. So +## tags, and other rules only applies to the summary. The body of the commit +## message will be displayed in the changelog without reformatting. + + +## +## ``ignore_regexps`` is a line of regexps +## +## Any commit having its full commit message matching any regexp listed here +## will be ignored and won't be reported in the changelog. +## +ignore_regexps = [ + r'@minor', r'!minor', + r'@cosmetic', r'!cosmetic', + r'@refactor', r'!refactor', + r'@wip', r'!wip', + r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:', + r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:', + r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$', + ] + + +## ``section_regexps`` is a list of 2-tuples associating a string label and a +## list of regexp +## +## Commit messages will be classified in sections thanks to this. Section +## titles are the label, and a commit is classified under this section if any +## of the regexps associated is matching. +## +## Please note that ``section_regexps`` will only classify commits and won't +## make any changes to the contents. So you'll probably want to go check +## ``subject_process`` (or ``body_process``) to do some changes to the subject, +## whenever you are tweaking this variable. +## +section_regexps = [ + ('New', [ + r'^[nN]ew\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n]*)$', + ]), + ('Changes', [ + r'^[cC]hg\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n]*)$', + ]), + ('Fix', [ + r'^[fF]ix\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n]*)$', + ]), + + ('Other', None ## Match all lines + ), + +] + + +## ``body_process`` is a callable +## +## This callable will be given the original body and result will +## be used in the changelog. +## +## Available constructs are: +## +## - any python callable that take one txt argument and return txt argument. +## +## - ReSub(pattern, replacement): will apply regexp substitution. +## +## - Indent(chars=" "): will indent the text with the prefix +## Please remember that template engines gets also to modify the text and +## will usually indent themselves the text if needed. +## +## - Wrap(regexp=r"\n\n"): re-wrap text in separate paragraph to fill 80-Columns +## +## - noop: do nothing +## +## - ucfirst: ensure the first letter is uppercase. +## (usually used in the ``subject_process`` pipeline) +## +## - final_dot: ensure text finishes with a dot +## (usually used in the ``subject_process`` pipeline) +## +## - strip: remove any spaces before or after the content of the string +## +## - SetIfEmpty(msg="No commit message."): will set the text to +## whatever given ``msg`` if the current text is empty. +## +## Additionally, you can `pipe` the provided filters, for instance: +#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') | Indent(chars=" ") +#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') +#body_process = noop +body_process = ReSub(r'((^|\n)[A-Z]\w+(-\w+)*: .*(\n\s+.*)*)+$', r'') | strip + + +## ``subject_process`` is a callable +## +## This callable will be given the original subject and result will +## be used in the changelog. +## +## Available constructs are those listed in ``body_process`` doc. +subject_process = (strip | + ReSub(r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n@]*)(@[a-z]+\s+)*$', r'\4') | + SetIfEmpty("No commit message.") | ucfirst | final_dot) + + +## ``tag_filter_regexp`` is a regexp +## +## Tags that will be used for the changelog must match this regexp. +## +tag_filter_regexp = r'^v[0-9]+\.[0-9]+\.[0-9]+$' + + + +## ``unreleased_version_label`` is a string or a callable that outputs a string +## +## This label will be used as the changelog Title of the last set of changes +## between last valid tag and HEAD if any. +unreleased_version_label = "%%version%% (unreleased)" + + +## ``output_engine`` is a callable +## +## This will change the output format of the generated changelog file +## +## Available choices are: +## +## - rest_py +## +## Legacy pure python engine, outputs ReSTructured text. +## This is the default. +## +## - mustache() +## +## Template name could be any of the available templates in +## ``templates/mustache/*.tpl``. +## Requires python package ``pystache``. +## Examples: +## - mustache("markdown") +## - mustache("restructuredtext") +## +## - makotemplate() +## +## Template name could be any of the available templates in +## ``templates/mako/*.tpl``. +## Requires python package ``mako``. +## Examples: +## - makotemplate("restructuredtext") +## +#output_engine = rest_py +#output_engine = mustache("restructuredtext") +output_engine = mustache("markdown") +#output_engine = makotemplate("restructuredtext") + + +## ``include_merge`` is a boolean +## +## This option tells git-log whether to include merge commits in the log. +## The default is to include them. +include_merge = True + + +## ``log_encoding`` is a string identifier +## +## This option tells gitchangelog what encoding is outputed by ``git log``. +## The default is to be clever about it: it checks ``git config`` for +## ``i18n.logOutputEncoding``, and if not found will default to git's own +## default: ``utf-8``. +#log_encoding = 'utf-8' + + +## ``publish`` is a callable +## +## Sets what ``gitchangelog`` should do with the output generated by +## the output engine. ``publish`` is a callable taking one argument +## that is an interator on lines from the output engine. +## +## Some helper callable are provided: +## +## Available choices are: +## +## - stdout +## +## Outputs directly to standard output +## (This is the default) +## +## - FileInsertAtFirstRegexMatch(file, pattern, idx=lamda m: m.start()) +## +## Creates a callable that will parse given file for the given +## regex pattern and will insert the output in the file. +## ``idx`` is a callable that receive the matching object and +## must return a integer index point where to insert the +## the output in the file. Default is to return the position of +## the start of the matched string. +## +## - FileRegexSubst(file, pattern, replace, flags) +## +## Apply a replace inplace in the given file. Your regex pattern must +## take care of everything and might be more complex. Check the README +## for a complete copy-pastable example. +## +# publish = FileInsertIntoFirstRegexMatch( +# "CHANGELOG.rst", +# r'/(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n/', +# idx=lambda m: m.start(1) +# ) +#publish = stdout + + +## ``revs`` is a list of callable or a list of string +## +## callable will be called to resolve as strings and allow dynamical +## computation of these. The result will be used as revisions for +## gitchangelog (as if directly stated on the command line). This allows +## to filter exaclty which commits will be read by gitchangelog. +## +## To get a full documentation on the format of these strings, please +## refer to the ``git rev-list`` arguments. There are many examples. +## +## Using callables is especially useful, for instance, if you +## are using gitchangelog to generate incrementally your changelog. +## +## Some helpers are provided, you can use them:: +## +## - FileFirstRegexMatch(file, pattern): will return a callable that will +## return the first string match for the given pattern in the given file. +## If you use named sub-patterns in your regex pattern, it'll output only +## the string matching the regex pattern named "rev". +## +## - Caret(rev): will return the rev prefixed by a "^", which is a +## way to remove the given revision and all its ancestor. +## +## Please note that if you provide a rev-list on the command line, it'll +## replace this value (which will then be ignored). +## +## If empty, then ``gitchangelog`` will act as it had to generate a full +## changelog. +## +## The default is to use all commits to make the changelog. +#revs = ["^1.0.3", ] +#revs = [ +# Caret( +# FileFirstRegexMatch( +# "CHANGELOG.rst", +# r"(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n")), +# "HEAD" +#] +revs = [] diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..0b06816 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,41 @@ +name: "CodeQL" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: "50 22 * * 5" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ python ] + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + queries: +security-and-quality + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/nosetests.yml b/.github/workflows/nosetests.yml index d5de908..78bf241 100644 --- a/.github/workflows/nosetests.yml +++ b/.github/workflows/nosetests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.8, 3.9, '3.10'] steps: diff --git a/GrayZone/machinetag.json b/GrayZone/machinetag.json new file mode 100644 index 0000000..7fc0c56 --- /dev/null +++ b/GrayZone/machinetag.json @@ -0,0 +1,243 @@ +{ + "namespace": "GrayZone", + "description": "Gray Zone of Active defense includes all elements which lay between reactive defense elements and offensive operations. It does fill the gray spot between them. Taxo may be used for active defense planning or modeling.", + "version": 3, + "predicates": [ + { + "value": "Adversary Emulation", + "expanded": "Adversary Emulation" + }, + { + "value": "Beacons", + "expanded": "Beacons" + }, + { + "value": "Deterrence", + "expanded": "Deterrence" + }, + { + "value": "Deception", + "expanded": "Deception" + }, + { + "value": "Tarpits, Sandboxes and Honeypots", + "expanded": "Tarpits, Sandboxes and Honeypots" + }, + { + "value": "Threat Intelligence", + "expanded": "Threat Intelligence" + }, + { + "value": "Threat Hunting", + "expanded": "Threat Hunting" + }, + { + "value": "Adversary Takedowns", + "expanded": "Adversary Takedowns" + }, + { + "value": "Ransomware", + "expanded": "Ransomware" + }, + { + "value": "Rescue Missions", + "expanded": "Rescue Missions" + }, + { + "value": "Sanctions, Indictments & Trade Remedies", + "expanded": "Sanctions, Indictments & Trade Remedies" + } + ], + "values": [ + { + "predicate": "Adversary Emulation", + "entry": [ + { + "value": "Threat Modeling", + "expanded": "Arch threat modeling", + "description": "Modeling threat in services or/and in applications" + }, + { + "value": "Purple Teaming", + "expanded": "Purple team collaboration", + "description": "Collaboration between red and blue team" + }, + { + "value": "Blue Team", + "expanded": "Blue Team activities", + "description": "Defenders team actions, TTPs etc." + }, + { + "value": "Red Team", + "expanded": "Red Team activities", + "description": "Actions, TTPs etc.of Red Team" + } + ] + }, + { + "predicate": "Beacons", + "entry": [ + { + "value": "Inform", + "expanded": "Information from beacon", + "description": "Provide defender with informations about beacon user, intentional or not" + }, + { + "value": "Notify", + "expanded": "Notification from beacon", + "description": "Beacon will just send alert, that has been accessed" + } + ] + }, + { + "predicate": "Deterrence", + "entry": [ + { + "value": "by Retaliation", + "expanded": "Retaliation risk", + "description": "Adversary is threatened by retaliation if it will continue in actions" + }, + { + "value": "by Denial", + "expanded": "Risk of Denial", + "description": "Deny action ever happened - example: if the attribution is important for adversary" + }, + { + "value": "by Entanglement", + "expanded": "Risk of reputation loss", + "description": "By continuing in action adversary may be exhibited to punishment from defenders ally" + } + ] + }, + { + "predicate": "Deception", + "entry": [ + { + "value": "Deception", + "expanded": "Deceptive actions", + "description": "Confuse adversary by deception, can be either whole campaign or just simple word in internal manuals" + }, + { + "value": "Denial", + "expanded": "Suppress anything", + "description": "You can deny any part of infrastructure or whole including servers, personal computers, users, machine accounts etc." + }, + { + "value": "CounterDeception", + "expanded": "Answer to deception", + "description": "Answer to deception from adversary is counter-deception, for example: answer to phish with shadow user account to uncover next adversary actions" + }, + { + "value": "Counter-Deception", + "expanded": "Active counterdeception", + "description": "Answer to adversary deception and his tactical goals, example: if You know the adversary goal(extraction) You can plant documents with fake content to enable damage on adversary sources (fake blueprints of engine, which explode on purpose)" + } + ] + }, + { + "predicate": "Tarpits, Sandboxes and Honeypots", + "entry": [ + { + "value": "Honeypots", + "expanded": "Honeypots", + "description": "Emulating technical resources as services or whole machines or identities" + }, + { + "value": "Sandboxes", + "expanded": "Sandboxes", + "description": "Place for secure detonation of anything" + }, + { + "value": "Tarpits", + "expanded": "Slow Downs", + "description": "You can slow adversary from action for example by sending slow responses to request" + } + ] + }, + { + "predicate": "Threat Intelligence", + "entry": [ + { + "value": "Passive - OSINT", + "expanded": "OpenSourceINTelligence", + "description": "Use of OSINT for creating of Threat Intelligence" + }, + { + "value": "Passive - platforms", + "expanded": "Platforms for TI", + "description": "Save, share and collaborate on threat intelligence platforms" + }, + { + "value": "Counter-Intelligence public", + "expanded": "Counter Intelligence", + "description": "Active retrieval of Threat Intelligence for purpose of defense collected with available public resources - example: active monitoring of web services to uncover action before happen (forum hacktivist group)" + }, + { + "value": "Counter-Intelligence government", + "expanded": "Counter Intelligence", + "description": "Active retrieval of Threat Intelligence for purpose of defense collected with non-public resources - example: cooperation between secret services in EU" + } + ] + }, + { + "predicate": "Threat Hunting", + "entry": [ + { + "value": "Threat Hunting", + "expanded": "Threat Hunting", + "description": "Threat Hunting is the activity of active search for possible signs of adversary in environment" + } + ] + }, + { + "predicate": "Adversary Takedowns", + "entry": [ + { + "value": "Botnet Takedowns", + "expanded": "Botnet Takedowns", + "description": "Activity with approval of legal governmental entities ie. courts to stop unwanted actions or prevent them" + }, + { + "value": "Domain Takedowns", + "expanded": "Domain Takedowns", + "description": "Activity with approval of legal governmental entities ie. courts to stop unwanted actions or prevent them" + }, + { + "value": "Infrastructure Takedowns", + "expanded": "Whole environment takedowns", + "description": "Activity with approval of legal governmental entities ie. courts to stop unwanted actions or prevent them" + } + ] + }, + { + "predicate": "Ransomware", + "entry": [ + { + "value": "Ransomware", + "expanded": "Ransomware by defenders", + "description": "Activity with approval of legal governmental entities ie. courts to stop unwanted actions or prevent them" + } + ] + }, + { + "predicate": "Rescue Missions", + "entry": [ + { + "value": "Rescue Missions", + "expanded": "Rescue Missions", + "description": "Activity with approval of legal governmental entities ie. courts to stop unwanted actions or prevent them" + } + ] + }, + { + "predicate": "Sanctions, Indictments & Trade Remedies", + "entry": [ + { + "value": "Sanctions, Indictments & Trade Remedies", + "expanded": "Business and diplomatic actions and counteractions", + "description": "Activity with approval of legal governmental entities ie. courts, states, governments to stop unwanted actions or prevent them" + } + ] + } + ] +} diff --git a/MANIFEST.json b/MANIFEST.json index c08cba9..129688d 100644 --- a/MANIFEST.json +++ b/MANIFEST.json @@ -18,10 +18,15 @@ "name": "DML", "version": 1 }, + { + "description": "Gray Zone of Active defense includes all elements which lay between reactive defense elements and offensive operations. It does fill the gray spot between them. Taxo may be used for active defense planning or modeling.", + "name": "GrayZone", + "version": 3 + }, { "description": "The Permissible Actions Protocol - or short: PAP - was designed to indicate how the received information can be used.", "name": "PAP", - "version": 2 + "version": 3 }, { "description": "The access method used to remotely access a system.", @@ -63,6 +68,16 @@ "name": "approved-category-of-action", "version": 1 }, + { + "description": "This taxonomy was designed to describe artificial satellites", + "name": "artificial-satellites", + "version": 1 + }, + { + "description": "A taxonomy describing security threats or incidents against the aviation sector.", + "name": "aviation", + "version": 1 + }, { "description": "Custom taxonomy for types of binary file.", "name": "binary-class", @@ -74,9 +89,14 @@ "version": 2 }, { - "description": "CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection", + "description": "CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection.", "name": "circl", - "version": 5 + "version": 6 + }, + { + "description": "La presente taxonomia es la primera versión disponible para el Centro Nacional de Seguridad Digital del Perú.", + "name": "cnsd", + "version": 20220513 }, { "description": "Course of action taken within organization to discover, detect, deny, disrupt, degrade, deceive and/or destroy an attack.", @@ -101,7 +121,12 @@ { "description": "A Course Of Action analysis considers six potential courses of action for the development of a cyber security capability.", "name": "course-of-action", - "version": 2 + "version": 3 + }, + { + "description": "Crowdsec IP address classifications and behaviors taxonomy.", + "name": "crowdsec", + "version": 1 }, { "description": "Threats targetting cryptocurrency, based on CipherTrace report.", @@ -149,9 +174,9 @@ "version": 1 }, { - "description": "Criminal motivation on the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project", + "description": "Criminal motivation and content detection the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project and extended by the JRC (Joint Research Centre) of the European Commission.", "name": "dark-web", - "version": 3 + "version": 6 }, { "description": "Data classification for data potentially at risk of exfiltration based on table 2.1 of Solving Cyber Risk book.", @@ -173,6 +198,21 @@ "name": "de-vs", "version": 1 }, + { + "description": "Taxonomy of Death Possibilities", + "name": "death-possibilities", + "version": 1 + }, + { + "description": "Deception is an important component of information operations, valuable for both offense and defense. ", + "name": "deception", + "version": 1 + }, + { + "description": "A taxonomy to describe domain-generation algorithms often called DGA. Ref: A Comprehensive Measurement Study of Domain Generating Malware Daniel Plohmann and others.", + "name": "dga", + "version": 2 + }, { "description": "DHS critical sectors as in https://www.dhs.gov/critical-infrastructure-sectors", "name": "dhs-ciip-sectors", @@ -183,6 +223,11 @@ "name": "diamond-model", "version": 1 }, + { + "description": "The diamond model for influence operations analysis is a framework that leads analysts and researchers toward a comprehensive understanding of a malign influence campaign by addressing the socio-political, technical, and psychological aspects of the campaign. The diamond model for influence operations analysis consists of 5 components: 4 corners and a core element. The 4 corners are divided into 2 axes: influencer and audience on the socio-political axis, capabilities and infrastructure on the technical axis. Narrative makes up the core of the diamond.", + "name": "diamond-model-for-influence-operations", + "version": 1 + }, { "description": "A subset of Information Security Marking Metadata ISM as required by Executive Order (EO) 13526. As described by DNI.gov as Data Encoding Specifications for Information Security Marking Metadata in Controlled Vocabulary Enumeration Values for ISM", "name": "dni-ism", @@ -193,6 +238,11 @@ "name": "domain-abuse", "version": 2 }, + { + "description": "This taxonomy aims to list doping substances", + "name": "doping-substances", + "version": 2 + }, { "description": "A taxonomy based on the superclass and class of drugs. Based on https://www.drugbank.ca/releases/latest", "name": "drugs", @@ -256,12 +306,12 @@ { "description": "Exercise is a taxonomy to describe if the information is part of one or more cyber or crisis exercise.", "name": "exercise", - "version": 8 + "version": 11 }, { - "description": "Reasons why an event has been extended. ", + "description": "Reasons why an event has been extended. This taxonomy must be used on the extended event. The competitive analysis aspect is from Psychology of Intelligence Analysis by Richard J. Heuer, Jr. ref:http://www.foo.be/docs/intelligence/PsychofIntelNew.pdf", "name": "extended-event", - "version": 1 + "version": 2 }, { "description": "The purpose of this taxonomy is to jointly tabulate both the of these failure modes in a single place. Intentional failures wherein the failure is caused by an active adversary attempting to subvert the system to attain her goals – either to misclassify the result, infer private training data, or to steal the underlying algorithm. Unintentional failures wherein the failure is because an ML system produces a formally correct but completely unsafe outcome.", @@ -271,13 +321,18 @@ { "description": "This taxonomy aims to ballpark the expected amount of false positives.", "name": "false-positive", - "version": 5 + "version": 7 }, { "description": "List of known file types.", "name": "file-type", "version": 1 }, + { + "description": "Financial taxonomy to describe financial services, infrastructure and financial scope.", + "name": "financial", + "version": 7 + }, { "description": "Flesch Reading Ease is a revised system for determining the comprehension difficulty of written material. The scoring of the flesh score can have a maximum of 121.22 and there is no limit on how low a score can be (negative score are valid).", "name": "flesch-reading-ease", @@ -291,7 +346,7 @@ { "description": "French gov information classification system", "name": "fr-classif", - "version": 3 + "version": 6 }, { "description": "Taxonomy related to the REGULATION (EU) 2016/679 OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (General Data Protection Regulation)", @@ -368,6 +423,11 @@ "name": "infoleak", "version": 7 }, + { + "description": "Taxonomy for tagging information by its origin: human-generated or AI-generated.", + "name": "information-origin", + "version": 2 + }, { "description": "Taxonomy to classify the information security data sources.", "name": "information-security-data-source", @@ -378,6 +438,26 @@ "name": "information-security-indicators", "version": 1 }, + { + "description": "Describes the target of cyber training and education.", + "name": "interactive-cyber-training-audience", + "version": 1 + }, + { + "description": "The technical setup consists of environment structure, deployment, and orchestration.", + "name": "interactive-cyber-training-technical-setup", + "version": 1 + }, + { + "description": "The training environment details the environment around the training, consisting of training type and scenario.", + "name": "interactive-cyber-training-training-environment", + "version": 1 + }, + { + "description": "The training setup further describes the training itself with the scoring, roles, the training mode as well as the customization level.", + "name": "interactive-cyber-training-training-setup", + "version": 1 + }, { "description": "The interception method used to intercept traffic.", "name": "interception-method", @@ -433,6 +513,11 @@ "name": "misp", "version": 12 }, + { + "description": "MISP workflow taxonomy to support result of workflow execution.", + "name": "misp-workflow", + "version": 3 + }, { "description": "MONARC Threats Taxonomy", "name": "monarc-threat", @@ -463,6 +548,11 @@ "name": "nis", "version": 2 }, + { + "description": "The taxonomy is meant for large scale cybersecurity incidents, as mentioned in the Commission Recommendation of 13 May 2022, also known as the provisional agreement. It has two core parts: The nature of the incident, i.e. the underlying cause, that triggered the incident, and the impact of the incident, i.e. the impact on services, in which sector(s) of economy and society.", + "name": "nis2", + "version": 3 + }, { "description": "Open Threat Taxonomy v1.1 base on James Tarala of SANS http://www.auditscripts.com/resources/open_threat_taxonomy_v1.1a.pdf, https://files.sans.org/summit/Threat_Hunting_Incident_Response_Summit_2016/PDFs/Using-Open-Tools-to-Convert-Threat-Intelligence-into-Practical-Defenses-James-Tarala-SANS-Institute.pdf, https://www.youtube.com/watch?v=5rdGOOFC_yE, and https://www.rsaconference.com/writable/presentations/file_upload/str-r04_using-an-open-source-threat-model-for-prioritized-defense-final.pdf", "name": "open_threat", @@ -491,18 +581,38 @@ { "description": "Taxonomy to classify phishing attacks including techniques, collection mechanisms and analysis status.", "name": "phishing", - "version": 4 + "version": 5 + }, + { + "description": "Non-exhaustive taxonomy of natural poison", + "name": "poison-taxonomy", + "version": 1 + }, + { + "description": "A political spectrum is a system to characterize and classify different political positions in relation to one another.", + "name": "political-spectrum", + "version": 1 }, { "description": "After an incident is scored, it is assigned a priority level. The six levels listed below are aligned with NCCIC, DHS, and the CISS to help provide a common lexicon when discussing incidents. This priority assignment drives NCCIC urgency, pre-approved incident response offerings, reporting requirements, and recommendations for leadership escalation. Generally, incident priority distribution should follow a similar pattern to the graph below. Based on https://www.us-cert.gov/NCCIC-Cyber-Incident-Scoring-System.", "name": "priority-level", "version": 2 }, + { + "description": "PyOTI automated enrichment schemes for point in time classification of indicators.", + "name": "pyoti", + "version": 3 + }, { "description": "Ransomware is used to define ransomware types and the elements that compose them.", "name": "ransomware", "version": 6 }, + { + "description": "The seven roles seen in most ransomware incidents.", + "name": "ransomware-roles", + "version": 1 + }, { "description": "Add a retenion time to events to automatically remove the IDS-flag on ip-dst or ip-src attributes. We calculate the time elapsed based on the date of the event. Supported time units are: d(ays), w(eeks), m(onths), y(ears). The numerical_value is just for sorting in the web-interface and is not used for calculations.", "name": "retention", @@ -511,7 +621,7 @@ { "description": "Reference Security Incident Classification Taxonomy", "name": "rsit", - "version": 1002 + "version": 1003 }, { "description": "Status of events used in Request Tracker.", @@ -519,9 +629,9 @@ "version": 2 }, { - "description": "Runtime or software packer used to combine compressed data with the decompression code. The decompression code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries.", + "description": "Runtime or software packer used to combine compressed or encrypted data with the decompression or decryption code. This code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries.", "name": "runtime-packer", - "version": 1 + "version": 2 }, { "description": "Flags describing the sample", @@ -538,11 +648,31 @@ "name": "scrippsco2-sampling-stations", "version": 1 }, + { + "description": "Sentinel indicator threat types.", + "name": "sentinel-threattype", + "version": 1 + }, { "description": "Threat taxonomy in the scope of securing smart airports by ENISA. https://www.enisa.europa.eu/publications/securing-smart-airports", "name": "smart-airports-threats", "version": 1 }, + { + "description": "Attack vectors used in social engineering as described in 'A Taxonomy of Social Engineering Defense Mechanisms' by Dalal Alharthi and others.", + "name": "social-engineering-attack-vectors", + "version": 1 + }, + { + "description": "SRB-CERT Taxonomy - Schemes of Classification in Incident Response and Detection", + "name": "srbcert", + "version": 3 + }, + { + "description": "A spectrum of state responsibility to more directly tie the goals of attribution to the needs of policymakers.", + "name": "state-responsibility", + "version": 1 + }, { "description": "Classification based on malware stealth techniques. Described in https://vxheaven.org/lib/pdf/Introducing%20Stealth%20Malware%20Taxonomy.pdf", "name": "stealth_malware", @@ -561,7 +691,7 @@ { "description": "Thales Group Taxonomy - was designed with the aim of enabling desired sharing and preventing unwanted sharing between Thales Group security communities.", "name": "thales_group", - "version": 2 + "version": 4 }, { "description": "The ThreatMatch Sectors, Incident types, Malware types and Alert types are applicable for any ThreatMatch instances and should be used for all CIISI and TIBER Projects.", @@ -574,9 +704,9 @@ "version": 1 }, { - "description": "The Traffic Light Protocol - or short: TLP - was designed with the objective to create a favorable classification scheme for sharing sensitive information while keeping the control over its distribution at the same time.", + "description": "The Traffic Light Protocol (TLP) (v2.0) was created to facilitate greater sharing of potentially sensitive information and more effective collaboration. Information sharing happens from an information source, towards one or more recipients. TLP is a set of four standard labels (a fifth label is included in amber to limit the diffusion) used to indicate the sharing boundaries to be applied by the recipients. Only labels listed in this standard are considered valid by FIRST. This taxonomy includes additional labels for backward compatibility which are no more validated by FIRST SIG.", "name": "tlp", - "version": 5 + "version": 10 }, { "description": "Taxonomy to describe Tor network infrastructure", @@ -593,6 +723,11 @@ "name": "type", "version": 1 }, + { + "description": "The Unified Kill Chain is a refinement to the Kill Chain.", + "name": "unified-kill-chain", + "version": 1 + }, { "description": "The Use Case Applicability categories reflect standard resolution categories, to clearly display alerting rule configuration problems.", "name": "use-case-applicability", @@ -616,9 +751,9 @@ { "description": "Workflow support language is a common language to support intelligence analysts to perform their analysis on data and information.", "name": "workflow", - "version": 10 + "version": 12 } ], "url": "https://raw.githubusercontent.com/MISP/misp-taxonomies/main/", - "version": "20210621" + "version": "20240304" } diff --git a/PAP/machinetag.json b/PAP/machinetag.json index c6be37e..8bf3381 100644 --- a/PAP/machinetag.json +++ b/PAP/machinetag.json @@ -2,23 +2,28 @@ "namespace": "PAP", "expanded": "Permissible Actions Protocol", "description": "The Permissible Actions Protocol - or short: PAP - was designed to indicate how the received information can be used.", - "version": 2, + "version": 3, "exclusive": true, "predicates": [ { "value": "RED", "expanded": "(PAP:RED) Non-detectable actions only. Recipients may not use PAP:RED information on the network. Only passive actions on logs, that are not detectable from the outside.", - "colour": "#ff0000" + "colour": "#ff2b2b" }, { "value": "AMBER", "expanded": "(PAP:AMBER) Passive cross check. Recipients may use PAP:AMBER information for conducting online checks, like using services provided by third parties (e.g. VirusTotal), or set up a monitoring honeypot.", - "colour": "#ffa800" + "colour": "#ffc000" }, { "value": "GREEN", "expanded": "(PAP:GREEN) Active actions allowed. Recipients may use PAP:GREEN information to ping the target, block incoming/outgoing traffic from/to the target or specifically configure honeypots to interact with the target.", - "colour": "#00ad1c" + "colour": "#33ff00" + }, + { + "value": "CLEAR", + "expanded": "(PAP:CLEAR) No restrictions in using this information.", + "colour": "#ffffff" }, { "value": "WHITE", diff --git a/README.md b/README.md index 4509447..6e362cf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ MISP Taxonomies is a set of common classification libraries to tag, classify and organise information. Taxonomy allows to express the same vocabulary among a distributed set of users and organisations. -Taxonomies that can be used in [MISP](https://github.com/MISP/MISP) (2.4) and other information sharing tool and expressed in Machine Tags (Triple Tags). A machine tag is composed of a namespace (MUST), a predicate (MUST) and an (OPTIONAL) value. Machine tags are often called triple tag due to their format. +Taxonomies that can be used in [MISP](https://github.com/MISP/MISP) and other information sharing tool, are expressed in Machine Tags (Triple Tags). A machine tag is composed of a namespace (MUST), a predicate (MUST) and an (OPTIONAL) value. Machine tags are often called triple tag due to their format. ![Overview of the MISP taxonomies](tools/docs/images/taxonomy-explanation.png) @@ -15,22 +15,27 @@ The following taxonomies can be used in MISP (as local or distributed tags) or i ### CERT-XLM [CERT-XLM](https://github.com/MISP/misp-taxonomies/tree/main/CERT-XLM) : -CERT-XLM Security Incident Classification. [Overview](https://www.misp-project.org/taxonomies.html#_CERT_XLM) +CERT-XLM Security Incident Classification. [Overview](https://www.misp-project.org/taxonomies.html#_cert_xlm) ### DFRLab-dichotomies-of-disinformation [DFRLab-dichotomies-of-disinformation](https://github.com/MISP/misp-taxonomies/tree/main/DFRLab-dichotomies-of-disinformation) : -DFRLab Dichotomies of Disinformation. [Overview](https://www.misp-project.org/taxonomies.html#_DFRLab_dichotomies_of_disinformation) +DFRLab Dichotomies of Disinformation. [Overview](https://www.misp-project.org/taxonomies.html#_dfrlab_dichotomies_of_disinformation) ### DML [DML](https://github.com/MISP/misp-taxonomies/tree/main/DML) : -The Detection Maturity Level (DML) model is a capability maturity model for referencing ones maturity in detecting cyber attacks. It's designed for organizations who perform intel-driven detection and response and who put an emphasis on having a mature detection program. [Overview](https://www.misp-project.org/taxonomies.html#_DML) +The Detection Maturity Level (DML) model is a capability maturity model for referencing ones maturity in detecting cyber attacks. It's designed for organizations who perform intel-driven detection and response and who put an emphasis on having a mature detection program. [Overview](https://www.misp-project.org/taxonomies.html#_dml) + +### GrayZone + +[GrayZone](https://github.com/MISP/misp-taxonomies/tree/main/GrayZone) : +Gray Zone of Active defense includes all elements which lay between reactive defense elements and offensive operations. It does fill the gray spot between them. Taxo may be used for active defense planning or modeling. [Overview](https://www.misp-project.org/taxonomies.html#_grayzone) ### PAP [PAP](https://github.com/MISP/misp-taxonomies/tree/main/PAP) : -The Permissible Actions Protocol - or short: PAP - was designed to indicate how the received information can be used. [Overview](https://www.misp-project.org/taxonomies.html#_PAP) +The Permissible Actions Protocol - or short: PAP - was designed to indicate how the received information can be used. [Overview](https://www.misp-project.org/taxonomies.html#_pap) ### access-method @@ -72,6 +77,16 @@ A series of assessment predicates describing the analyst capabilities to perform [approved-category-of-action](https://github.com/MISP/misp-taxonomies/tree/main/approved-category-of-action) : A pre-approved category of action for indicators being shared with partners (MIMIC). [Overview](https://www.misp-project.org/taxonomies.html#_approved_category_of_action) +### artificial-satellites + +[artificial-satellites](https://github.com/MISP/misp-taxonomies/tree/main/artificial-satellites) : +This taxonomy was designed to describe artificial satellites [Overview](https://www.misp-project.org/taxonomies.html#_artificial_satellites) + +### aviation + +[aviation](https://github.com/MISP/misp-taxonomies/tree/main/aviation) : +A taxonomy describing security threats or incidents against the aviation sector. [Overview](https://www.misp-project.org/taxonomies.html#_aviation) + ### binary-class [binary-class](https://github.com/MISP/misp-taxonomies/tree/main/binary-class) : @@ -85,7 +100,12 @@ Internal taxonomy for CCCS. [Overview](https://www.misp-project.org/taxonomies.h ### circl [circl](https://github.com/MISP/misp-taxonomies/tree/main/circl) : -CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection [Overview](https://www.misp-project.org/taxonomies.html#_circl) +CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection. [Overview](https://www.misp-project.org/taxonomies.html#_circl) + +### cnsd + +[cnsd](https://github.com/MISP/misp-taxonomies/tree/main/cnsd) : +La presente taxonomia es la primera versión disponible para el Centro Nacional de Seguridad Digital del Perú. [Overview](https://www.misp-project.org/taxonomies.html#_cnsd) ### coa @@ -112,6 +132,11 @@ The COPINE Scale is a rating system created in Ireland and used in the United Ki [course-of-action](https://github.com/MISP/misp-taxonomies/tree/main/course-of-action) : A Course Of Action analysis considers six potential courses of action for the development of a cyber security capability. [Overview](https://www.misp-project.org/taxonomies.html#_course_of_action) +### crowdsec + +[crowdsec](https://github.com/MISP/misp-taxonomies/tree/main/crowdsec) : +Crowdsec IP address classifications and behaviors taxonomy. [Overview](https://www.misp-project.org/taxonomies.html#_crowdsec) + ### cryptocurrency-threat [cryptocurrency-threat](https://github.com/MISP/misp-taxonomies/tree/main/cryptocurrency-threat) : @@ -160,7 +185,7 @@ Taxonomy to describe desired actions for Cytomic Orion [Overview](https://www.mi ### dark-web [dark-web](https://github.com/MISP/misp-taxonomies/tree/main/dark-web) : -Criminal motivation on the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project [Overview](https://www.misp-project.org/taxonomies.html#_dark_web) +Criminal motivation and content detection the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project and extended by the JRC (Joint Research Centre) of the European Commission. [Overview](https://www.misp-project.org/taxonomies.html#_dark_web) ### data-classification @@ -182,6 +207,21 @@ Distributed Denial of Service - or short: DDoS - taxonomy supports the descripti [de-vs](https://github.com/MISP/misp-taxonomies/tree/main/de-vs) : German (DE) Government classification markings (VS). [Overview](https://www.misp-project.org/taxonomies.html#_de_vs) +### death-possibilities + +[death-possibilities](https://github.com/MISP/misp-taxonomies/tree/main/death-possibilities) : +Taxonomy of Death Possibilities [Overview](https://www.misp-project.org/taxonomies.html#_death_possibilities) + +### deception + +[deception](https://github.com/MISP/misp-taxonomies/tree/main/deception) : +Deception is an important component of information operations, valuable for both offense and defense. [Overview](https://www.misp-project.org/taxonomies.html#_deception) + +### dga + +[dga](https://github.com/MISP/misp-taxonomies/tree/main/dga) : +A taxonomy to describe domain-generation algorithms often called DGA. Ref: A Comprehensive Measurement Study of Domain Generating Malware Daniel Plohmann and others. [Overview](https://www.misp-project.org/taxonomies.html#_dga) + ### dhs-ciip-sectors [dhs-ciip-sectors](https://github.com/MISP/misp-taxonomies/tree/main/dhs-ciip-sectors) : @@ -192,6 +232,11 @@ DHS critical sectors as in https://www.dhs.gov/critical-infrastructure-sectors [ [diamond-model](https://github.com/MISP/misp-taxonomies/tree/main/diamond-model) : The Diamond Model for Intrusion Analysis establishes the basic atomic element of any intrusion activity, the event, composed of four core features: adversary, infrastructure, capability, and victim. [Overview](https://www.misp-project.org/taxonomies.html#_diamond_model) +### diamond-model-for-influence-operations + +[diamond-model-for-influence-operations](https://github.com/MISP/misp-taxonomies/tree/main/diamond-model-for-influence-operations) : +The diamond model for influence operations analysis is a framework that leads analysts and researchers toward a comprehensive understanding of a malign influence campaign by addressing the socio-political, technical, and psychological aspects of the campaign. The diamond model for influence operations analysis consists of 5 components: 4 corners and a core element. The 4 corners are divided into 2 axes: influencer and audience on the socio-political axis, capabilities and infrastructure on the technical axis. Narrative makes up the core of the diamond. [Overview](https://www.misp-project.org/taxonomies.html#_diamond_model_for_influence_operations) + ### dni-ism [dni-ism](https://github.com/MISP/misp-taxonomies/tree/main/dni-ism) : @@ -202,6 +247,11 @@ A subset of Information Security Marking Metadata ISM as required by Executive O [domain-abuse](https://github.com/MISP/misp-taxonomies/tree/main/domain-abuse) : Domain Name Abuse - taxonomy to tag domain names used for cybercrime. [Overview](https://www.misp-project.org/taxonomies.html#_domain_abuse) +### doping-substances + +[doping-substances](https://github.com/MISP/misp-taxonomies/tree/main/doping-substances) : +This taxonomy aims to list doping substances [Overview](https://www.misp-project.org/taxonomies.html#_doping_substances) + ### drugs [drugs](https://github.com/MISP/misp-taxonomies/tree/main/drugs) : @@ -270,7 +320,7 @@ Exercise is a taxonomy to describe if the information is part of one or more cyb ### extended-event [extended-event](https://github.com/MISP/misp-taxonomies/tree/main/extended-event) : -Reasons why an event has been extended. [Overview](https://www.misp-project.org/taxonomies.html#_extended_event) +Reasons why an event has been extended. This taxonomy must be used on the extended event. The competitive analysis aspect is from Psychology of Intelligence Analysis by Richard J. Heuer, Jr. ref:http://www.foo.be/docs/intelligence/PsychofIntelNew.pdf [Overview](https://www.misp-project.org/taxonomies.html#_extended_event) ### failure-mode-in-machine-learning @@ -287,6 +337,11 @@ This taxonomy aims to ballpark the expected amount of false positives. [Overview [file-type](https://github.com/MISP/misp-taxonomies/tree/main/file-type) : List of known file types. [Overview](https://www.misp-project.org/taxonomies.html#_file_type) +### financial + +[financial](https://github.com/MISP/misp-taxonomies/tree/main/financial) : +Financial taxonomy to describe financial services, infrastructure and financial scope. [Overview](https://www.misp-project.org/taxonomies.html#_financial) + ### flesch-reading-ease [flesch-reading-ease](https://github.com/MISP/misp-taxonomies/tree/main/flesch-reading-ease) : @@ -377,6 +432,11 @@ How an incident is classified in its process to be resolved. The taxonomy is ins [infoleak](https://github.com/MISP/misp-taxonomies/tree/main/infoleak) : A taxonomy describing information leaks and especially information classified as being potentially leaked. The taxonomy is based on the work by CIRCL on the AIL framework. The taxonomy aim is to be used at large to improve classification of leaked information. [Overview](https://www.misp-project.org/taxonomies.html#_infoleak) +### information-origin + +[information-origin](https://github.com/MISP/misp-taxonomies/tree/main/information-origin) : +Taxonomy for tagging information by its origin: human-generated or AI-generated. [Overview](https://www.misp-project.org/taxonomies.html#_information_origin) + ### information-security-data-source [information-security-data-source](https://github.com/MISP/misp-taxonomies/tree/main/information-security-data-source) : @@ -387,6 +447,26 @@ Taxonomy to classify the information security data sources. [Overview](https://w [information-security-indicators](https://github.com/MISP/misp-taxonomies/tree/main/information-security-indicators) : A full set of operational indicators for organizations to use to benchmark their security posture. [Overview](https://www.misp-project.org/taxonomies.html#_information_security_indicators) +### interactive-cyber-training-audience + +[interactive-cyber-training-audience](https://github.com/MISP/misp-taxonomies/tree/main/interactive-cyber-training-audience) : +Describes the target of cyber training and education. [Overview](https://www.misp-project.org/taxonomies.html#_interactive_cyber_training_audience) + +### interactive-cyber-training-technical-setup + +[interactive-cyber-training-technical-setup](https://github.com/MISP/misp-taxonomies/tree/main/interactive-cyber-training-technical-setup) : +The technical setup consists of environment structure, deployment, and orchestration. [Overview](https://www.misp-project.org/taxonomies.html#_interactive_cyber_training_technical_setup) + +### interactive-cyber-training-training-environment + +[interactive-cyber-training-training-environment](https://github.com/MISP/misp-taxonomies/tree/main/interactive-cyber-training-training-environment) : +The training environment details the environment around the training, consisting of training type and scenario. [Overview](https://www.misp-project.org/taxonomies.html#_interactive_cyber_training_training_environment) + +### interactive-cyber-training-training-setup + +[interactive-cyber-training-training-setup](https://github.com/MISP/misp-taxonomies/tree/main/interactive-cyber-training-training-setup) : +The training setup further describes the training itself with the scoring, roles, the training mode as well as the customization level. [Overview](https://www.misp-project.org/taxonomies.html#_interactive_cyber_training_training_setup) + ### interception-method [interception-method](https://github.com/MISP/misp-taxonomies/tree/main/interception-method) : @@ -442,6 +522,11 @@ classification for the identification of type of misinformation among websites. [misp](https://github.com/MISP/misp-taxonomies/tree/main/misp) : MISP taxonomy to infer with MISP behavior or operation. [Overview](https://www.misp-project.org/taxonomies.html#_misp) +### misp-workflow + +[misp-workflow](https://github.com/MISP/misp-taxonomies/tree/main/misp-workflow) : +MISP workflow taxonomy to support result of workflow execution. [Overview](https://www.misp-project.org/taxonomies.html#_misp_workflow) + ### monarc-threat [monarc-threat](https://github.com/MISP/misp-taxonomies/tree/main/monarc-threat) : @@ -472,6 +557,11 @@ NATO classification markings. [Overview](https://www.misp-project.org/taxonomies [nis](https://github.com/MISP/misp-taxonomies/tree/main/nis) : The taxonomy is meant for large scale cybersecurity incidents, as mentioned in the Commission Recommendation of 13 September 2017, also known as the blueprint. It has two core parts: The nature of the incident, i.e. the underlying cause, that triggered the incident, and the impact of the incident, i.e. the impact on services, in which sector(s) of economy and society. [Overview](https://www.misp-project.org/taxonomies.html#_nis) +### nis2 + +[nis2](https://github.com/MISP/misp-taxonomies/tree/main/nis2) : +The taxonomy is meant for large scale cybersecurity incidents, as mentioned in the Commission Recommendation of 13 May 2022, also known as the provisional agreement. It has two core parts: The nature of the incident, i.e. the underlying cause, that triggered the incident, and the impact of the incident, i.e. the impact on services, in which sector(s) of economy and society. [Overview](https://www.misp-project.org/taxonomies.html#_nis2) + ### open_threat [open_threat](https://github.com/MISP/misp-taxonomies/tree/main/open_threat) : @@ -502,16 +592,36 @@ Penetration test (pentest) classification. [Overview](https://www.misp-project.o [phishing](https://github.com/MISP/misp-taxonomies/tree/main/phishing) : Taxonomy to classify phishing attacks including techniques, collection mechanisms and analysis status. [Overview](https://www.misp-project.org/taxonomies.html#_phishing) +### poison-taxonomy + +[poison-taxonomy](https://github.com/MISP/misp-taxonomies/tree/main/poison-taxonomy) : +Non-exhaustive taxonomy of natural poison [Overview](https://www.misp-project.org/taxonomies.html#_poison_taxonomy) + +### political-spectrum + +[political-spectrum](https://github.com/MISP/misp-taxonomies/tree/main/political-spectrum) : +A political spectrum is a system to characterize and classify different political positions in relation to one another. [Overview](https://www.misp-project.org/taxonomies.html#_political_spectrum) + ### priority-level [priority-level](https://github.com/MISP/misp-taxonomies/tree/main/priority-level) : After an incident is scored, it is assigned a priority level. The six levels listed below are aligned with NCCIC, DHS, and the CISS to help provide a common lexicon when discussing incidents. This priority assignment drives NCCIC urgency, pre-approved incident response offerings, reporting requirements, and recommendations for leadership escalation. Generally, incident priority distribution should follow a similar pattern to the graph below. Based on https://www.us-cert.gov/NCCIC-Cyber-Incident-Scoring-System. [Overview](https://www.misp-project.org/taxonomies.html#_priority_level) +### pyoti + +[pyoti](https://github.com/MISP/misp-taxonomies/tree/main/pyoti) : +PyOTI automated enrichment schemes for point in time classification of indicators. [Overview](https://www.misp-project.org/taxonomies.html#_pyoti) + ### ransomware [ransomware](https://github.com/MISP/misp-taxonomies/tree/main/ransomware) : Ransomware is used to define ransomware types and the elements that compose them. [Overview](https://www.misp-project.org/taxonomies.html#_ransomware) +### ransomware-roles + +[ransomware-roles](https://github.com/MISP/misp-taxonomies/tree/main/ransomware-roles) : +The seven roles seen in most ransomware incidents. [Overview](https://www.misp-project.org/taxonomies.html#_ransomware_roles) + ### retention [retention](https://github.com/MISP/misp-taxonomies/tree/main/retention) : @@ -530,7 +640,7 @@ Status of events used in Request Tracker. [Overview](https://www.misp-project.or ### runtime-packer [runtime-packer](https://github.com/MISP/misp-taxonomies/tree/main/runtime-packer) : -Runtime or software packer used to combine compressed data with the decompression code. The decompression code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries. [Overview](https://www.misp-project.org/taxonomies.html#_runtime_packer) +Runtime or software packer used to combine compressed or encrypted data with the decompression or decryption code. This code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries. [Overview](https://www.misp-project.org/taxonomies.html#_runtime_packer) ### scrippsco2-fgc @@ -547,11 +657,31 @@ Flags describing the sample for isotopic data (C14, O18) [Overview](https://www. [scrippsco2-sampling-stations](https://github.com/MISP/misp-taxonomies/tree/main/scrippsco2-sampling-stations) : Sampling stations of the Scripps CO2 Program [Overview](https://www.misp-project.org/taxonomies.html#_scrippsco2_sampling_stations) +### sentinel-threattype + +[sentinel-threattype](https://github.com/MISP/misp-taxonomies/tree/main/sentinel-threattype) : +Sentinel indicator threat types. [Overview](https://www.misp-project.org/taxonomies.html#_sentinel_threattype) + ### smart-airports-threats [smart-airports-threats](https://github.com/MISP/misp-taxonomies/tree/main/smart-airports-threats) : Threat taxonomy in the scope of securing smart airports by ENISA. https://www.enisa.europa.eu/publications/securing-smart-airports [Overview](https://www.misp-project.org/taxonomies.html#_smart_airports_threats) +### social-engineering-attack-vectors + +[social-engineering-attack-vectors](https://github.com/MISP/misp-taxonomies/tree/main/social-engineering-attack-vectors) : +Attack vectors used in social engineering as described in 'A Taxonomy of Social Engineering Defense Mechanisms' by Dalal Alharthi and others. [Overview](https://www.misp-project.org/taxonomies.html#_social_engineering_attack_vectors) + +### srbcert + +[srbcert](https://github.com/MISP/misp-taxonomies/tree/main/srbcert) : +SRB-CERT Taxonomy - Schemes of Classification in Incident Response and Detection [Overview](https://www.misp-project.org/taxonomies.html#_srbcert) + +### state-responsibility + +[state-responsibility](https://github.com/MISP/misp-taxonomies/tree/main/state-responsibility) : +A spectrum of state responsibility to more directly tie the goals of attribution to the needs of policymakers. [Overview](https://www.misp-project.org/taxonomies.html#_state_responsibility) + ### stealth_malware [stealth_malware](https://github.com/MISP/misp-taxonomies/tree/main/stealth_malware) : @@ -585,7 +715,7 @@ An overview of some of the known attacks related to DNS as described by Torabi, ### tlp [tlp](https://github.com/MISP/misp-taxonomies/tree/main/tlp) : -The Traffic Light Protocol - or short: TLP - was designed with the objective to create a favorable classification scheme for sharing sensitive information while keeping the control over its distribution at the same time. [Overview](https://www.misp-project.org/taxonomies.html#_tlp) +The Traffic Light Protocol (TLP) (v2.0) was created to facilitate greater sharing of potentially sensitive information and more effective collaboration. Information sharing happens from an information source, towards one or more recipients. TLP is a set of four standard labels (a fifth label is included in amber to limit the diffusion) used to indicate the sharing boundaries to be applied by the recipients. Only labels listed in this standard are considered valid by FIRST. This taxonomy includes additional labels for backward compatibility which are no more validated by FIRST SIG. [Overview](https://www.misp-project.org/taxonomies.html#_tlp) ### tor @@ -602,6 +732,11 @@ The Indicator of Trust provides insight about data on what can be trusted and kn [type](https://github.com/MISP/misp-taxonomies/tree/main/type) : Taxonomy to describe different types of intelligence gathering discipline which can be described the origin of intelligence. [Overview](https://www.misp-project.org/taxonomies.html#_type) +### unified-kill-chain + +[unified-kill-chain](https://github.com/MISP/misp-taxonomies/tree/main/unified-kill-chain) : +The Unified Kill Chain is a refinement to the Kill Chain. [Overview](https://www.misp-project.org/taxonomies.html#_unified_kill_chain) + ### use-case-applicability [use-case-applicability](https://github.com/MISP/misp-taxonomies/tree/main/use-case-applicability) : diff --git a/artificial-satellites/machinetag.json b/artificial-satellites/machinetag.json new file mode 100644 index 0000000..9a9d513 --- /dev/null +++ b/artificial-satellites/machinetag.json @@ -0,0 +1,12364 @@ +{ + "version": 1, + "description": "This taxonomy was designed to describe artificial satellites", + "expanded": "Artificial satellites taxonomy", + "namespace": "artificial-satellites", + "predicates": [ + { + "value": "Meteorological and Earth observation", + "expanded": "Satellites for meteorological and earth observation" + }, + { + "value": "Indian Space Research", + "expanded": "Indian Space Research Satellites" + }, + { + "value": "GEO", + "expanded": "GEO Active Geosynchronous - Communications Satellites" + }, + { + "value": "Tracking", + "expanded": " Tracking Satellites" + }, + { + "value": "Search & Rescue", + "expanded": " Search & Rescue (SARSAT) Satellites" + }, + { + "value": "Earth Ressources", + "expanded": " Earth Ressources Satellites" + }, + { + "value": "Disaster Monitoring", + "expanded": " Disaster Monitoring Satellites " + }, + { + "value": "GNSS", + "expanded": "GNSS - Navigation Satellites" + }, + { + "value": "Space & Earth Science", + "expanded": "Scientific - Space & Earth Science" + }, + { + "value": "Geodetic", + "expanded": "Scientific - Geodetic" + }, + { + "value": "Engineering", + "expanded": "Scientific - Engineering" + }, + { + "value": "Education", + "expanded": "Scientific - Education" + } + ], + "values": [ + { + "predicate": "Meteorological and Earth observation", + "entry": [ + { + "value": "3D-Winds", + "expanded": "Three-Dimensional Tropospheric Winds from Space-Based Lidar", + "numerical_value": 1, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : TBD km, Longitude : null, Inclination : null, Ect : null, Status : Mission concept, Payload : 3D-Winds Lidar, Last update : 2021-10-22 14:03:38" + }, + { + "value": "ACE", + "expanded": "Advanced Composition Explorer", + "numerical_value": 2, + "description": "Launch : 1997-08-25, (expected) EOL : 2025-11-30, Agencies : NASA,NOAA, Orbit : L1, Altitude : 1.5e+06 km, Longitude : null, Inclination : null, Ect : null, Status : Operational, Payload : CRIS (ACE),EPAM,MAG (ACE),SEPICA ,SIS,SWEPAM,SWICS,SWIMS,ULEIS, Last update : 2020-08-19 18:31:50" + }, + { + "value": "ACE (Aer.Clo.Eco.)", + "expanded": "Aerosol-Cloud Ecosystems", + "numerical_value": 3, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : null, Longitude : null, Inclination : null, Ect : null, Status : Mission concept, Payload : ACE Lidar,CPR (CloudSat),OCI,Polarimeters, Last update : 2016-06-30 01:57:09" + }, + { + "value": "ACRIMSat", + "expanded": "Active Cavity Radiometer Irradiance Monitor Satellite", + "numerical_value": 4, + "description": "Launch : 1999-12-20, (expected) EOL : 2013-12-14, Agencies : NASA, Orbit : SunSync, Altitude : 696 km, Longitude : null, Inclination : null, Ect : 10:50 description, Status : Inactive, Payload : ACRIM-III, Last update : 2015-07-27 19:40:14" + }, + { + "value": "ADEOS", + "expanded": "Advanced Earth Observing Satellite (original name: “Midori”)", + "numerical_value": 5, + "description": "Launch : 1996-08-17, (expected) EOL : 1997-06-30, Agencies : JAXA, Orbit : SunSync, Altitude : 797 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : AVNIR,ILAS-I,IMG,NSCAT,OCTS,POLDER,RIS,TOMS, Last update : 2015-07-27 19:41:38" + }, + { + "value": "ADEOS-2", + "expanded": "Advanced Earth Observing Satellite (original name: “Midori”)", + "numerical_value": 6, + "description": "Launch : 2002-12-14, (expected) EOL : 2003-10-25, Agencies : JAXA, Orbit : SunSync, Altitude : 812 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : AMSR,DCS (ADEOS),GLI,ILAS-II,POLDER,SeaWinds, Last update : 2015-07-27 19:42:57" + }, + { + "value": "Aditya-1", + "expanded": "Aditya", + "numerical_value": 7, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : ISRO, Orbit : L1, Altitude : 1500000 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : ASPEX,HEL1OS,Magnetometer (Aditya),PAPA,SUIT,SoLEXS,VELC, Last update : 2021-06-10 16:32:43" + }, + { + "value": "Aeolus", + "expanded": " Aeolus", + "numerical_value": 8, + "description": "Launch : 2018-08-22, (expected) EOL : 2021-11-30, Agencies : ESA, Orbit : SunSync, Altitude : 320 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : ALADIN, Last update : 2021-12-06 08:55:42" + }, + { + "value": "ALOS", + "expanded": "Advanced Land Observing Satellite", + "numerical_value": 9, + "description": "Launch : 2006-01-24, (expected) EOL : 2011-04-22, Agencies : JAXA, Orbit : SunSync, Altitude : 692 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : AVNIR-2,PALSAR,PRISM, Last update : 2019-10-27 22:34:40" + }, + { + "value": "ALOS-2", + "expanded": "Advanced Land Observing Satellite", + "numerical_value": 10, + "description": "Launch : 2014-05-24, (expected) EOL : 2021-11-30, Agencies : JAXA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Operational, Payload : CIRC,PALSAR-2, Last update : 2021-12-27 16:24:28" + }, + { + "value": "ALOS-3", + "expanded": "Advanced Land Observing Satellite", + "numerical_value": 11, + "description": "Launch : 2022-02-28, (expected) EOL : 2027-11-30, Agencies : JAXA, Orbit : SunSync, Altitude : 669 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : WISH, Last update : 2021-11-19 08:55:08" + }, + { + "value": "ALOS-4", + "expanded": "Advanced Land Observing Satellite", + "numerical_value": 12, + "description": "Launch : 2021-11-30, (expected) EOL : 2028-11-30, Agencies : JAXA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Planned, Payload : PALSAR-3, Last update : 2021-06-10 17:59:34" + }, + { + "value": "AlSat-1", + "expanded": "Algeria Satellite", + "numerical_value": 13, + "description": "Launch : 2002-11-28, (expected) EOL : 2010-08-15, Agencies : ASAL, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : SLIM6, Last update : 2015-07-27 19:44:40" + }, + { + "value": "AlSat-1B", + "expanded": "Algeria Satellite", + "numerical_value": 14, + "description": "Launch : 2016-09-26, (expected) EOL : 2021-11-30, Agencies : ASAL, Orbit : SunSync, Altitude : 690 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : SLIM6, Last update : 2022-01-03 16:01:58" + }, + { + "value": "AlSat-2", + "expanded": "Algeria Satellite", + "numerical_value": 15, + "description": "Launch : 2010-07-12, (expected) EOL : 2018-11-30, Agencies : ASAL, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Presumably inactive, Payload : NAOMI (AlSat), Last update : 2020-01-01 03:12:22" + }, + { + "value": "AlSat-2B", + "expanded": "Algeria Satellite", + "numerical_value": 16, + "description": "Launch : 2016-09-26, (expected) EOL : 2021-11-30, Agencies : ASAL, Orbit : SunSync, Altitude : 680 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : NAOMI (AlSat), Last update : 2021-12-27 16:39:04" + }, + { + "value": "ALTIUS", + "expanded": "Atmospheric Limb Tracker for Investigation of the Upcoming Stratosphere", + "numerical_value": 17, + "description": "Launch : 2024-11-30, (expected) EOL : 2027-11-30, Agencies : ESA,BIRA, Orbit : SunSync, Altitude : 690 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Planned, Payload : ALTIUS, Last update : 2021-10-27 13:25:09" + }, + { + "value": "Amazônia-1", + "expanded": "Amazônia", + "numerical_value": 18, + "description": "Launch : 2021-02-28, (expected) EOL : 2025-11-30, Agencies : INPE,AEB, Orbit : SunSync, Altitude : 752 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : AWFI, Last update : 2021-07-13 14:35:39" + }, + { + "value": "Amazônia-1B", + "expanded": "Amazônia", + "numerical_value": 19, + "description": "Launch : 2021-11-30, (expected) EOL : 2025-11-30, Agencies : INPE,AEB, Orbit : SunSync, Altitude : 752 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : AWFI, Last update : 2021-11-19 09:01:31" + }, + { + "value": "Amazônia-2", + "expanded": "Amazônia", + "numerical_value": 20, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : INPE,AEB, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : AWFI-2, Last update : 2017-08-02 20:57:08" + }, + { + "value": "Aqua", + "expanded": "Earth Observation System", + "numerical_value": 21, + "description": "Launch : 2002-05-04, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : AIRS,AMSR-E,AMSU-A,CERES,HSB,MODIS, Last update : 2022-01-13 15:31:48" + }, + { + "value": "Arctica-M N1", + "expanded": "Arctica in Molniya orbit", + "numerical_value": 22, + "description": "Launch : 2021-02-28, (expected) EOL : 2030-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Operational, Payload : DCS/A,GGAK-E/FM-E,GGAK-E/GALS-E (Arctica),GGAK-E/SKIF-6 (Arctica),MSU-GS/A, Last update : 2021-11-16 15:25:59" + }, + { + "value": "Arctica-M N2", + "expanded": "Arctica in Molniya orbit", + "numerical_value": 23, + "description": "Launch : 2022-11-30, (expected) EOL : 2032-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Planned, Payload : DCS/A,GGAK-E/FM-E,GGAK-E/GALS-E (Arctica),GGAK-E/SKIF-6 (Arctica),MSU-GS/A, Last update : 2021-11-16 15:27:18" + }, + { + "value": "Arctica-M N3", + "expanded": "Arctica in Molniya orbit", + "numerical_value": 24, + "description": "Launch : 2023-11-30, (expected) EOL : 2033-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Planned, Payload : DCS/A,GGAK-E/FM-E,GGAK-E/GALS-E (Arctica),GGAK-E/SKIF-6 (Arctica),MSU-GS/A, Last update : 2021-11-16 15:27:54" + }, + { + "value": "Arctica-M N4", + "expanded": "Arctica in Molniya orbit", + "numerical_value": 25, + "description": "Launch : 2024-11-30, (expected) EOL : 2034-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Planned, Payload : DCS/A,GGAK-E/FM-E,GGAK-E/GALS-E (Arctica),GGAK-E/SKIF-6 (Arctica),MSU-GS/A, Last update : 2021-11-16 15:28:24" + }, + { + "value": "Arctica-M N5", + "expanded": "Arctica in Molniya orbit", + "numerical_value": 26, + "description": "Launch : 2024-11-30, (expected) EOL : 2034-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Planned, Payload : DCS/A,GGAK-E/FM-E,GGAK-E/GALS-E (Arctica),GGAK-E/SKIF-6 (Arctica),MSU-GS/A, Last update : 2021-11-16 15:28:53" + }, + { + "value": "ARTEMIS-P1", + "expanded": "Acceleration, Reconnection, Turbulence, and Electrodynamics of the Moon's Interaction with the Sun", + "numerical_value": 27, + "description": "Launch : 2011-07-15, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : Moon, Altitude : null, Longitude : null, Inclination :6°, Ect : null, Status : Operational, Payload : EFI (THEMIS),ESA,FGM (THEMIS),SCM,SST, Last update : 2022-01-03 15:26:00" + }, + { + "value": "ARTEMIS-P2", + "expanded": "Acceleration, Reconnection, Turbulence, and Electrodynamics of the Moon's Interaction with the Sun", + "numerical_value": 28, + "description": "Launch : 2011-07-15, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : Moon, Altitude : null, Longitude : null, Inclination :6°, Ect : null, Status : Operational, Payload : EFI (THEMIS),ESA,FGM (THEMIS),SCM,SST, Last update : 2022-01-03 15:26:21" + }, + { + "value": "ASCENDS", + "expanded": "Active Sensing of CO2 Emissions over Nights, Days, and Seasons", + "numerical_value": 29, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : 450 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Mission concept, Payload : CO2 lidar,CO sensor, Last update : 2017-07-20 15:15:07" + }, + { + "value": "ASNARO-1", + "expanded": "Advanced Satellite with new system ARchitecture for Observation", + "numerical_value": 30, + "description": "Launch : 2014-11-06, (expected) EOL : 2021-11-30, Agencies : USEF,METI,NEC, Orbit : SunSync, Altitude : 504 km, Longitude : null, Inclination : null, Ect : 11:00 description, Status : Operational, Payload : OPS (ASNARO), Last update : 2022-01-03 12:36:07" + }, + { + "value": "ASNARO-2", + "expanded": "Advanced Satellite with new system ARchitecture for Observation", + "numerical_value": 31, + "description": "Launch : 2018-01-17, (expected) EOL : 2022-11-30, Agencies : USEF,METI,NEC, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : XSAR, Last update : 2019-10-27 13:23:32" + }, + { + "value": "ATS-1", + "expanded": "Application Technology Satellite", + "numerical_value": 32, + "description": "Launch : 1966-12-06, (expected) EOL : 1978-12-01, Agencies : NASA, Orbit : GEO, Altitude : 35786 km, Longitude :150 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : SSCC, Last update : 2016-10-18 17:19:44" + }, + { + "value": "ATS-3", + "expanded": "Application Technology Satellite", + "numerical_value": 33, + "description": "Launch : 1967-11-06, (expected) EOL : 1978-12-01, Agencies : NASA, Orbit : GEO, Altitude : 35786 km, Longitude :45 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : MSSCC, Last update : 2015-07-27 19:47:27" + }, + { + "value": "ATS-6", + "expanded": "Application Technology Satellite", + "numerical_value": 34, + "description": "Launch : 1974-04-30, (expected) EOL : 1979-08-03, Agencies : NASA, Orbit : GEO, Altitude : 35786 km, Longitude :94 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : VHRR (ATS), Last update : 2015-07-27 19:48:07" + }, + { + "value": "Aura", + "expanded": "Earth Observation System", + "numerical_value": 35, + "description": "Launch : 2004-07-15, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:45 asc, Status : Operational, Payload : HIRDLS,MLS (EOS-Aura),OMI ,TES-limb,TES-nadir, Last update : 2021-06-14 15:48:23" + }, + { + "value": "AWS", + "expanded": "Arctic Weather Satellite", + "numerical_value": 36, + "description": "Launch : 2023-11-30, (expected) EOL : 2028-11-30, Agencies : ESA, Orbit : SunSync, Altitude : 600 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : MWR (AWS), Last update : 2021-11-22 09:38:29" + }, + { + "value": "Beijing-1", + "expanded": "Beijing", + "numerical_value": 37, + "description": "Launch : 2005-10-27, (expected) EOL : 2009-11-30, Agencies : NRSCC, Orbit : SunSync, Altitude : 699 km, Longitude : null, Inclination : null, Ect : 08:15 asc, Status : Presumably inactive, Payload : CMT,SLIM6, Last update : 2019-12-27 20:34:43" + }, + { + "value": "BILSat", + "expanded": "BILTEN Satellte", + "numerical_value": 38, + "description": "Launch : 2003-09-27, (expected) EOL : 2006-08-15, Agencies : TÜBITAK-UZAY, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : COBAN,MSIS,PanCam, Last update : 2015-07-27 19:49:25" + }, + { + "value": "BIOMASS", + "expanded": "BIOMASS", + "numerical_value": 39, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : ESA, Orbit : SunSync, Altitude : 660 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : SAR-P, Last update : 2021-06-08 11:00:53" + }, + { + "value": "BIRD", + "expanded": "Bi-spectral Infra-Red Detection", + "numerical_value": 40, + "description": "Launch : 2001-10-22, (expected) EOL : 2007-07-01, Agencies : DLR, Orbit : SunSync, Altitude : 572 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : HORUS,HSRS,WAOSS-B, Last update : 2015-07-27 19:50:18" + }, + { + "value": "BlackSky-1", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 41, + "description": "Launch : 2018-11-29, (expected) EOL : 2021-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-03 16:16:19" + }, + { + "value": "BlackSky-10", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 42, + "description": "Launch : 2021-11-18, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-11 11:25:19" + }, + { + "value": "BlackSky-11", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 43, + "description": "Launch : 2021-11-18, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-11 11:25:50" + }, + { + "value": "BlackSky-12", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 44, + "description": "Launch : 2021-12-02, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-11 11:26:14" + }, + { + "value": "BlackSky-13", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 45, + "description": "Launch : 2021-12-02, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-11 11:26:39" + }, + { + "value": "BlackSky-14", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 46, + "description": "Launch : 2021-12-09, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : DRIFT, Altitude : 430 km, Longitude : null, Inclination :42°, Ect : null, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-11 11:27:03" + }, + { + "value": "BlackSky-15", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 47, + "description": "Launch : 2021-12-09, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : DRIFT, Altitude : 430 km, Longitude : null, Inclination :42°, Ect : null, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-11 11:27:27" + }, + { + "value": "BlackSky-16", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 48, + "description": "Launch : 2022-01-31, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : DRIFT, Altitude : 430 km, Longitude : null, Inclination :42°, Ect : null, Status : Planned, Payload : SpaceView 24, Last update : 2022-01-21 14:22:59" + }, + { + "value": "BlackSky-17", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 49, + "description": "Launch : 2022-01-31, (expected) EOL : 2023-11-30, Agencies : BSG, Orbit : DRIFT, Altitude : 430 km, Longitude : null, Inclination :42°, Ect : null, Status : Planned, Payload : SpaceView 24, Last update : 2022-01-21 14:23:15" + }, + { + "value": "BlackSky-2", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 50, + "description": "Launch : 2018-12-03, (expected) EOL : 2021-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2022-01-03 16:16:35" + }, + { + "value": "BlackSky-3", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 51, + "description": "Launch : 2019-06-28, (expected) EOL : 2021-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2019-12-01 20:06:20" + }, + { + "value": "BlackSky-4", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 52, + "description": "Launch : 2019-08-19, (expected) EOL : 2021-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2019-12-01 20:07:06" + }, + { + "value": "BlackSky-5", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 53, + "description": "Launch : 2020-08-07, (expected) EOL : 2021-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2021-03-24 09:42:49" + }, + { + "value": "BlackSky-6", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 54, + "description": "Launch : 2020-08-07, (expected) EOL : 2021-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 490 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2021-04-01 22:08:49" + }, + { + "value": "BlackSky-7", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 55, + "description": "Launch : 2021-03-22, (expected) EOL : 2022-11-30, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SpaceView 24, Last update : 2021-07-13 14:39:50" + }, + { + "value": "BlackSky-8", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 56, + "description": "Launch : 2021-05-15, (expected) EOL : 2021-05-15, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Lost at launch, Payload : SpaceView 24, Last update : 2021-08-25 21:21:21" + }, + { + "value": "BlackSky-9", + "expanded": "BlackSky Global Commercial Imaging Constellation", + "numerical_value": 57, + "description": "Launch : 2021-05-15, (expected) EOL : 2021-05-15, Agencies : BSG, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Lost at launch, Payload : SpaceView 24, Last update : 2021-08-25 21:22:57" + }, + { + "value": "C/NOFS", + "expanded": "Communication/Navigation Outage Forecasting System", + "numerical_value": 58, + "description": "Launch : 2008-04-16, (expected) EOL : 2015-11-28, Agencies : DoD,NASA,UCAR,USAF, Orbit : DRIFT, Altitude : 588 km, Longitude : null, Inclination :13°, Ect : null, Status : Inactive, Payload : CERTO,CINDI,CORISS,DIDM,PLP,VEFI, Last update : 2016-07-22 17:36:15" + }, + { + "value": "CALIPSO", + "expanded": "Cloud-Aerosol Lidar and Infrared Pathfinder Satellite Observations", + "numerical_value": 59, + "description": "Launch : 2006-04-28, (expected) EOL : 2022-11-30, Agencies : NASA,CNES, Orbit : SunSync, Altitude : 689 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : CALIOP,IIR,WFC, Last update : 2021-12-27 16:41:28" + }, + { + "value": "Capella", + "expanded": "Capella", + "numerical_value": 60, + "description": "Launch : 2018-12-03, (expected) EOL : 2039-11-30, Agencies : Capella, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : Capella SAR, Last update : 2022-01-14 10:18:38" + }, + { + "value": "CarbonSat", + "expanded": "CarbonSat", + "numerical_value": 61, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : , Orbit : SunSync, Altitude : null, Longitude : null, Inclination : null, Ect : null, Status : Mission concept, Payload : null, Last update : 2013-02-20 15:33:41" + }, + { + "value": "CartoSat-1 (IRS-P5)", + "expanded": "Satellite for Cartography", + "numerical_value": 62, + "description": "Launch : 2005-05-05, (expected) EOL : 2019-05-05, Agencies : ISRO, Orbit : SunSync, Altitude : 618 km, Longitude : null, Inclination : null, Ect : 10:15 description, Status : Inactive, Payload : PAN (CartoSat-1), Last update : 2020-01-03 20:24:08" + }, + { + "value": "CartoSat-2", + "expanded": "Satellite for Cartography", + "numerical_value": 63, + "description": "Launch : 2007-01-10, (expected) EOL : 2019-08-13, Agencies : ISRO, Orbit : SunSync, Altitude : 635 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : PAN (CartoSat-2A/B), Last update : 2020-01-03 20:29:02" + }, + { + "value": "CartoSat-2A", + "expanded": "Satellite for Cartography", + "numerical_value": 64, + "description": "Launch : 2008-04-28, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 635 km, Longitude : null, Inclination : null, Ect : 09:32 description, Status : Operational, Payload : PAN (CartoSat-2A/B), Last update : 2021-12-27 16:46:13" + }, + { + "value": "CartoSat-2B", + "expanded": "Satellite for Cartography", + "numerical_value": 65, + "description": "Launch : 2010-07-12, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Operational, Payload : PAN (CartoSat-2A/B), Last update : 2021-12-27 16:46:51" + }, + { + "value": "CartoSat-2C", + "expanded": "Satellite for Cartography", + "numerical_value": 66, + "description": "Launch : 2016-06-22, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 505 km, Longitude : null, Inclination : null, Ect : 09:28 description, Status : Operational, Payload : EvM,HRMX,PAN (CartoSat 2C/D, Last update : 2021-12-27 16:47:49" + }, + { + "value": "CartoSat-2D", + "expanded": "Satellite for Cartography", + "numerical_value": 67, + "description": "Launch : 2017-02-15, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 515 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Operational, Payload : EvM,HRMX,PAN (CartoSat 2C/D, Last update : 2020-01-04 15:24:19" + }, + { + "value": "CartoSat-2E", + "expanded": "Satellite for Cartography", + "numerical_value": 68, + "description": "Launch : 2017-06-23, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 505 km, Longitude : null, Inclination : null, Ect : 09:29 description, Status : Operational, Payload : EvM,HRMX,PAN (CartoSat 2C/D, Last update : 2020-01-04 15:25:37" + }, + { + "value": "CartoSat-2F", + "expanded": "Satellite for Cartography", + "numerical_value": 69, + "description": "Launch : 2018-01-12, (expected) EOL : 2022-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 505 km, Longitude : null, Inclination : null, Ect : 09:37 description, Status : Operational, Payload : EvM,HRMX,PAN (CartoSat 2C/D, Last update : 2020-01-04 15:26:14" + }, + { + "value": "CartoSat-3", + "expanded": "Satellite for Cartography", + "numerical_value": 70, + "description": "Launch : 2019-11-27, (expected) EOL : 2023-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 450 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Operational, Payload : MX,PAN (CartoSat-3), Last update : 2020-02-25 22:05:33" + }, + { + "value": "CAS 500-1", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 71, + "description": "Launch : 2021-03-22, (expected) EOL : 2024-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 528 km, Longitude : null, Inclination : null, Ect : 10:50 asc, Status : Operational, Payload : AEISS-HR, Last update : 2021-07-13 14:40:38" + }, + { + "value": "CAS 500-2", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 72, + "description": "Launch : 2021-11-30, (expected) EOL : 2024-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 528 km, Longitude : null, Inclination : null, Ect : 10:50 asc, Status : Planned, Payload : AEISS-HR, Last update : 2021-11-19 09:03:58" + }, + { + "value": "CASSIOPE", + "expanded": "CASSIOPE", + "numerical_value": 73, + "description": "Launch : 2013-09-29, (expected) EOL : 2021-12-17, Agencies : CSA, Orbit : MAG, Altitude : 670 km, Longitude : null, Inclination :80.97°, Ect : null, Status : Inactive, Payload : CER,FAI,GAP,IRM,MGF (CASSIOPE),NMS,RRI,SEI, Last update : 2022-01-26 14:52:58" + }, + { + "value": "CBERS-1", + "expanded": "China-Brazil Earth Resources Satellite", + "numerical_value": 74, + "description": "Launch : 1999-10-14, (expected) EOL : 2003-10-12, Agencies : CAST,AEB,CRESDA,INPE, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DCS (CBERS),HRCC,IRMSS,WFI, Last update : 2015-07-27 19:51:51" + }, + { + "value": "CBERS-2", + "expanded": "China-Brazil Earth Resources Satellite", + "numerical_value": 75, + "description": "Launch : 2003-10-21, (expected) EOL : 2007-11-15, Agencies : CAST,AEB,CRESDA,INPE, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DCS (CBERS),HRCC,IRMSS,WFI, Last update : 2015-07-27 19:52:36" + }, + { + "value": "CBERS-2B", + "expanded": "China-Brazil Earth Resources Satellite", + "numerical_value": 76, + "description": "Launch : 2007-09-19, (expected) EOL : 2010-05-16, Agencies : CAST,AEB,CRESDA,INPE, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DCS (CBERS),HRCC,HRPC,WFI, Last update : 2015-07-27 19:53:14" + }, + { + "value": "CBERS-3", + "expanded": "China-Brazil Earth Resources Satellite", + "numerical_value": 77, + "description": "Launch : 2013-12-09, (expected) EOL : 2013-12-09, Agencies : CAST,AEB,CRESDA,INPE, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Lost at launch, Payload : DCS (CBERS),IRMSS-2,MUXCAM,PANMUX,WFI-2, Last update : 2015-07-27 19:54:01" + }, + { + "value": "CBERS-4", + "expanded": "China-Brazil Earth Resources Satellite", + "numerical_value": 78, + "description": "Launch : 2014-12-07, (expected) EOL : 2021-11-30, Agencies : CAST,AEB,CRESDA,INPE, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : DCS (CBERS),IRMSS-2,MUXCAM,PANMUX,WFI-2, Last update : 2021-12-27 16:54:22" + }, + { + "value": "CBERS-4A", + "expanded": "China-Brazil Earth Resources Satellite", + "numerical_value": 79, + "description": "Launch : 2019-12-20, (expected) EOL : 2022-11-30, Agencies : CAST,AEB,CRESDA,INPE, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : DCS (CBERS),IRMSS-2,MUXCAM,PANMUX,WFI-2, Last update : 2020-04-01 01:14:47" + }, + { + "value": "CFOSAT", + "expanded": "Chinese-French Oceanography Satellite", + "numerical_value": 80, + "description": "Launch : 2018-10-29, (expected) EOL : 2021-11-30, Agencies : CNSA,CNES, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 07:00 description, Status : Operational, Payload : SCAT (CFOSAT),SWIM, Last update : 2021-10-15 09:55:36" + }, + { + "value": "CFOSAT follow-on", + "expanded": "Chinese-French Oceanography Satellite", + "numerical_value": 81, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : CNSA,CNES, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 07:00 description, Status : Planned, Payload : SCAT (CFOSAT),SWIM, Last update : 2021-10-22 14:20:22" + }, + { + "value": "CHAMP", + "expanded": "Challenging Mini-Satellite Payload", + "numerical_value": 82, + "description": "Launch : 2000-07-15, (expected) EOL : 2010-09-19, Agencies : DLR, Orbit : DRIFT, Altitude : 470 km, Longitude : null, Inclination :87°, Ect : null, Status : Inactive, Payload : ASC,BlackJack (CHAMP),DIDM,LRR (DLR),MIAS,STAR, Last update : 2015-08-24 18:55:52" + }, + { + "value": "CHIME", + "expanded": "Copernicus Sentinel Expansion Missions", + "numerical_value": 83, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 786 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Considered, Payload : CHIME, Last update : 2022-01-04 17:30:40" + }, + { + "value": "CICERO", + "expanded": "Community Initiative for Continuing Earth Radio Occultation", + "numerical_value": 84, + "description": "Launch : 2017-06-23, (expected) EOL : 2039-11-30, Agencies : GeoOptics, Orbit : SunSync, Altitude : 550 km, Longitude : null, Inclination : null, Ect : null, Status : Operational, Payload : CION, Last update : 2020-09-29 15:15:40" + }, + { + "value": "CIMR", + "expanded": "Copernicus Sentinel Expansion Missions", + "numerical_value": 85, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Considered, Payload : CIMR, Last update : 2022-01-04 17:39:47" + }, + { + "value": "CLARREO-1A", + "expanded": "Climate Absolute Radiance and Refractivity Observatory ", + "numerical_value": 86, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : DRIFT, Altitude : 609 km, Longitude : null, Inclination :90°, Ect : null, Status : Mission concept, Payload : GNSS-RO,IR spectrometer, Last update : 2016-06-30 01:46:02" + }, + { + "value": "CLARREO-1B", + "expanded": "Climate Absolute Radiance and Refractivity Observatory ", + "numerical_value": 87, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : DRIFT, Altitude : 609 km, Longitude : null, Inclination :90°, Ect : null, Status : Mission concept, Payload : SW spectrometer, Last update : 2016-06-30 01:46:43" + }, + { + "value": "CLARREO-2A", + "expanded": "Climate Absolute Radiance and Refractivity Observatory ", + "numerical_value": 88, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : DRIFT, Altitude : 609 km, Longitude : null, Inclination :90°, Ect : null, Status : Mission concept, Payload : GNSS-RO,IR spectrometer, Last update : 2016-06-30 01:47:21" + }, + { + "value": "CLARREO-2B", + "expanded": "Climate Absolute Radiance and Refractivity Observatory ", + "numerical_value": 89, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : DRIFT, Altitude : 609 km, Longitude : null, Inclination :90°, Ect : null, Status : Mission concept, Payload : SW spectrometer, Last update : 2016-06-30 01:48:19" + }, + { + "value": "CloudSat", + "expanded": "CloudSat", + "numerical_value": 90, + "description": "Launch : 2006-04-28, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 689 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : CPR (CloudSat), Last update : 2022-02-10 09:53:18" + }, + { + "value": "CLUSTER-A", + "expanded": "Cluster", + "numerical_value": 91, + "description": "Launch : 2000-07-16, (expected) EOL : 2024-11-30, Agencies : ESA,NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :90°, Ect : null, Status : Operational, Payload : ASPOC,CIS,EDI,EFW (CLUSTER),FGM,PEACE,RAPID,STAFF,WBD,WHISPER, Last update : 2021-01-27 14:37:43" + }, + { + "value": "CLUSTER-B", + "expanded": "Cluster", + "numerical_value": 92, + "description": "Launch : 2000-07-16, (expected) EOL : 2024-11-30, Agencies : ESA,NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :90°, Ect : null, Status : Operational, Payload : ASPOC,CIS,EDI,EFW (CLUSTER),FGM,PEACE,RAPID,STAFF,WBD,WHISPER, Last update : 2021-01-27 14:37:10" + }, + { + "value": "CLUSTER-C", + "expanded": "Cluster", + "numerical_value": 93, + "description": "Launch : 2000-08-09, (expected) EOL : 2025-11-30, Agencies : ESA,NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :90°, Ect : null, Status : Operational, Payload : ASPOC,CIS,EDI,EFW (CLUSTER),FGM,PEACE,RAPID,STAFF,WBD,WHISPER, Last update : 2021-01-27 14:39:23" + }, + { + "value": "CLUSTER-D", + "expanded": "Cluster", + "numerical_value": 94, + "description": "Launch : 2000-08-09, (expected) EOL : 2025-11-30, Agencies : ESA,NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :90°, Ect : null, Status : Operational, Payload : ASPOC,CIS,EDI,EFW (CLUSTER),FGM,PEACE,RAPID,STAFF,WBD,WHISPER, Last update : 2021-01-27 14:42:39" + }, + { + "value": "CO2M", + "expanded": "Copernicus Sentinel Expansion Missions", + "numerical_value": 95, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 735 km, Longitude : null, Inclination : null, Ect : 11:30 description, Status : Considered, Payload : CLIM,CO2I and NO2I,MAP, Last update : 2022-01-04 17:33:29" + }, + { + "value": "COMPIRA", + "expanded": "Coastal and Ocean measurement Mission with Precise and Innovative Radar Altimeter", + "numerical_value": 96, + "description": "Launch : 2021-11-30, (expected) EOL : 2025-11-30, Agencies : JAXA, Orbit : DRIFT, Altitude : TBD km, Longitude : null, Inclination :51°, Ect : null, Status : Planned, Payload : Altimeter (COMPIRA),SHIOSAI, Last update : 2021-11-19 09:10:14" + }, + { + "value": "COMS", + "expanded": "Communication, Oceanography and Meteorology Satellite", + "numerical_value": 97, + "description": "Launch : 2010-06-26, (expected) EOL : 2021-04-01, Agencies : KMA,KARI,ME,MLTM, Orbit : GEO, Altitude : 35786 km, Longitude :128.2 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : GOCI,MI, Last update : 2021-04-07 14:18:02" + }, + { + "value": "Coriolis", + "expanded": "Coriolis", + "numerical_value": 98, + "description": "Launch : 2003-01-06, (expected) EOL : 2020-11-30, Agencies : DoD,NASA, Orbit : SunSync, Altitude : 838 km, Longitude : null, Inclination : null, Ect : 06:10 description, Status : Presumably inactive, Payload : SMEI,WindSat, Last update : 2021-10-07 15:02:53" + }, + { + "value": "Coronas-F", + "expanded": "Complex Orbital Observations Near-Earth of Activity of the Sun", + "numerical_value": 99, + "description": "Launch : 2001-07-31, (expected) EOL : 2005-12-06, Agencies : Roscosmos, Orbit : DRIFT, Altitude : 550 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : AVS,DIFOS,DIOGENESS,HELICON,IMAP-5,IRIS (Coronas),RES-C,RESIK,RPS-1,SKL-particles,SKL-rad,SORS,SPR-N,SUFR-Sp-C,TEREK-C,VUSS, Last update : 2015-07-27 19:59:35" + }, + { + "value": "Coronas-I", + "expanded": "Complex Orbital Observations Near-Earth of Activity of the Sun", + "numerical_value": 100, + "description": "Launch : 1994-03-02, (expected) EOL : 1994-07-15, Agencies : Roscosmos, Orbit : DRIFT, Altitude : 550 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : AVS,DIFOS,DIOGENESS,HELICON,IRIS (Coronas),RES-C,SKL-particles,SKL-rad,SORS,SUFR-Sp-C,TEREK-C,VUSS, Last update : 2015-07-27 20:00:42" + }, + { + "value": "Coronas-Photon", + "expanded": "Complex Orbital Observations Near-Earth of Activity of the Sun", + "numerical_value": 101, + "description": "Launch : 2009-01-30, (expected) EOL : 2009-12-01, Agencies : Roscosmos, Orbit : DRIFT, Altitude : 550 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : BRM,Electron-M-PESCA,Konus-RF,Natalya-2M-particles,Natalya-2M-rad,PHOKA,Penguin-M,RT-2,SM-8M,STEP-F,TESIS, Last update : 2015-07-27 20:01:48" + }, + { + "value": "COSMIC-1", + "expanded": "Constellation Observing System for Meteorology, Ionosphere & Climate", + "numerical_value": 102, + "description": "Launch : 2006-04-14, (expected) EOL : 2020-05-06, Agencies : NSPO,NOAA,UCAR, Orbit : DRIFT, Altitude : 800 km, Longitude : null, Inclination :72°, Ect : null, Status : Inactive, Payload : CERTO/TBB,IGOR (COSMIC),TIP, Last update : 2021-05-20 23:07:10" + }, + { + "value": "COSMIC-2", + "expanded": "Constellation Observing System for Meteorology, Ionosphere & Climate", + "numerical_value": 103, + "description": "Launch : 2019-06-25, (expected) EOL : 2025-11-30, Agencies : NSPO,NOAA,UCAR, Orbit : DRIFT, Altitude : 520 km, Longitude : null, Inclination :24°, Ect : null, Status : Operational, Payload : RFB,TGRS (COSMIC-2),VIDI, Last update : 2021-05-20 23:11:10" + }, + { + "value": "COSMIC-2b", + "expanded": "Constellation Observing System for Meteorology, Ionosphere & Climate", + "numerical_value": 104, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NSPO,NOAA,UCAR, Orbit : DRIFT, Altitude : 800 km, Longitude : null, Inclination :72°, Ect : null, Status : Mission concept, Payload : TGRS (COSMIC-2), Last update : 2017-10-25 11:00:40" + }, + { + "value": "CRISTAL", + "expanded": "Copernicus Sentinel Expansion Missions", + "numerical_value": 105, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : ESA,EC,EUMETSAT, Orbit : DRIFT, Altitude : 717 km, Longitude : null, Inclination :92°, Ect : null, Status : Considered, Payload : AMR-C,GPS (ESA),IRIS (CRISTAL),LRR (ESA), Last update : 2022-01-04 17:38:21" + }, + { + "value": "CRRES", + "expanded": "Combined Release and Radiation Effects Satellite", + "numerical_value": 106, + "description": "Launch : 1990-07-25, (expected) EOL : 1991-10-12, Agencies : NASA,DoD, Orbit : DRIFT, Altitude : 3400 km, Longitude : null, Inclination :18°, Ect : null, Status : Inactive, Payload : MEA, Last update : 2016-10-10 16:55:24" + }, + { + "value": "CryoSat", + "expanded": "CryoSat", + "numerical_value": 107, + "description": "Launch : 2005-10-08, (expected) EOL : 2005-10-08, Agencies : ESA, Orbit : SunSync, Altitude : 717 km, Longitude : null, Inclination :92°, Ect : null, Status : Inactive, Payload : DORIS,LRR (ESA),SIRAL, Last update : 2021-03-11 16:26:11" + }, + { + "value": "CryoSat-2", + "expanded": "CryoSat", + "numerical_value": 108, + "description": "Launch : 2010-04-08, (expected) EOL : 2023-11-30, Agencies : ESA, Orbit : DRIFT, Altitude : 717 km, Longitude : null, Inclination :92°, Ect : null, Status : Operational, Payload : DORIS,LRR (ESA),SIRAL, Last update : 2021-06-08 10:16:58" + }, + { + "value": "CSG-1", + "expanded": "COSMO-SkyMed Second Generation", + "numerical_value": 109, + "description": "Launch : 2019-12-18, (expected) EOL : 2025-11-30, Agencies : ASI, Orbit : SunSync, Altitude : 619 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : CSG-SAR, Last update : 2020-04-01 01:13:17" + }, + { + "value": "CSG-2", + "expanded": "COSMO-SkyMed Second Generation", + "numerical_value": 110, + "description": "Launch : 2022-01-31, (expected) EOL : 2027-11-30, Agencies : ASI, Orbit : SunSync, Altitude : 619 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Commissioning, Payload : CSG-SAR, Last update : 2022-02-01 10:40:52" + }, + { + "value": "CSIM", + "expanded": "Compact Spectral Irradiance Monitor", + "numerical_value": 111, + "description": "Launch : 2018-12-03, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 587 km, Longitude : null, Inclination :97.7°, Ect : null, Status : Operational, Payload : SIM, Last update : 2019-07-15 15:10:31" + }, + { + "value": "CSK-1", + "expanded": "COSMO-SkyMed", + "numerical_value": 112, + "description": "Launch : 2007-06-08, (expected) EOL : 2021-11-30, Agencies : ASI, Orbit : SunSync, Altitude : 629.5 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : SAR-2000, Last update : 2021-12-27 16:58:46" + }, + { + "value": "CSK-2", + "expanded": "COSMO-SkyMed", + "numerical_value": 113, + "description": "Launch : 2007-12-09, (expected) EOL : 2021-11-30, Agencies : ASI, Orbit : SunSync, Altitude : 629.5 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : SAR-2000, Last update : 2021-12-27 16:59:03" + }, + { + "value": "CSK-3", + "expanded": "COSMO-SkyMed", + "numerical_value": 114, + "description": "Launch : 2008-10-25, (expected) EOL : 2021-11-30, Agencies : ASI, Orbit : SunSync, Altitude : 629.5 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : SAR-2000, Last update : 2021-12-27 16:59:21" + }, + { + "value": "CSK-4", + "expanded": "COSMO-SkyMed", + "numerical_value": 115, + "description": "Launch : 2010-11-06, (expected) EOL : 2021-11-30, Agencies : ASI, Orbit : SunSync, Altitude : 629.5 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : SAR-2000, Last update : 2021-12-27 16:59:39" + }, + { + "value": "CYGNSS (8 sats)", + "expanded": "Cyclone Global Navigation Satellite System", + "numerical_value": 116, + "description": "Launch : 2016-12-15, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 500 km, Longitude : null, Inclination :35°, Ect : null, Status : Operational, Payload : DDMI, Last update : 2021-06-14 11:36:23" + }, + { + "value": "Deimos-1", + "expanded": "Deimos", + "numerical_value": 117, + "description": "Launch : 2009-07-29, (expected) EOL : 2018-11-30, Agencies : Elecnor-Deimos, Orbit : SunSync, Altitude : 660 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Presumably inactive, Payload : SLIM6, Last update : 2020-01-01 03:14:49" + }, + { + "value": "Deimos-2", + "expanded": "Deimos", + "numerical_value": 118, + "description": "Launch : 2014-06-19, (expected) EOL : 2023-11-30, Agencies : Elecnor-Deimos, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : HiRAIS, Last update : 2017-08-03 00:15:34" + }, + { + "value": "DESDynI", + "expanded": "Deformation, Ecosystem Structure, and Dynamics of Ice", + "numerical_value": 119, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : 400 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Mission concept, Payload : InSAR,VCL, Last update : 2018-06-20 23:26:16" + }, + { + "value": "Diadéme-1", + "expanded": "Diadéme", + "numerical_value": 120, + "description": "Launch : 1967-02-08, (expected) EOL : 2049-11-30, Agencies : CNES, Orbit : DRIFT, Altitude : 698 km, Longitude : null, Inclination :39.9°, Ect : null, Status : Operational, Payload : RRA (CNES), Last update : 2015-07-28 09:56:31" + }, + { + "value": "Diadéme-2", + "expanded": "Diadéme", + "numerical_value": 121, + "description": "Launch : 1967-02-15, (expected) EOL : 2049-11-30, Agencies : CNES, Orbit : DRIFT, Altitude : 990 km, Longitude : null, Inclination :39.4°, Ect : null, Status : Operational, Payload : RRA (CNES), Last update : 2015-07-28 09:57:00" + }, + { + "value": "DMSP-F01", + "expanded": "Defense Meteorological Satellite Program - Block 5D-1", + "numerical_value": 122, + "description": "Launch : 1976-09-11, (expected) EOL : 1979-09-17, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 06:20 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSJ4, Last update : 2015-07-28 09:58:09" + }, + { + "value": "DMSP-F02", + "expanded": "Defense Meteorological Satellite Program - Block 5D-1", + "numerical_value": 123, + "description": "Launch : 1977-06-04, (expected) EOL : 1978-03-19, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 832 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4, Last update : 2015-07-28 09:58:50" + }, + { + "value": "DMSP-F03", + "expanded": "Defense Meteorological Satellite Program - Block 5D-1", + "numerical_value": 124, + "description": "Launch : 1978-04-30, (expected) EOL : 1979-12-01, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 810 km, Longitude : null, Inclination : null, Ect : 06:20 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSJ4, Last update : 2015-07-28 09:59:48" + }, + { + "value": "DMSP-F04", + "expanded": "Defense Meteorological Satellite Program - Block 5D-1", + "numerical_value": 125, + "description": "Launch : 1979-06-06, (expected) EOL : 1980-08-09, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 840 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Inactive, Payload : OLS,SEM/SSI/ES-2,SEM/SSJ4,SSM/T, Last update : 2015-07-28 10:01:01" + }, + { + "value": "DMSP-F05", + "expanded": "Defense Meteorological Satellite Program - Block 5D-1", + "numerical_value": 126, + "description": "Launch : 1980-07-14, (expected) EOL : 1980-07-14, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 06:20 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4, Last update : 2021-10-29 07:01:45" + }, + { + "value": "DMSP-F06", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 127, + "description": "Launch : 1982-12-21, (expected) EOL : 1997-11-10, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 824 km, Longitude : null, Inclination : null, Ect : 06:20 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4, Last update : 2015-07-28 10:03:42" + }, + { + "value": "DMSP-F07", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 128, + "description": "Launch : 1983-11-18, (expected) EOL : 1988-05-16, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 10:10 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4,SEM/SSM,SSM/T, Last update : 2015-07-28 10:04:22" + }, + { + "value": "DMSP-F08", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 129, + "description": "Launch : 1987-06-18, (expected) EOL : 2006-10-01, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 856 km, Longitude : null, Inclination : null, Ect : 06:10 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4,SSM/I,SSM/T, Last update : 2015-07-28 10:05:20" + }, + { + "value": "DMSP-F09", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 130, + "description": "Launch : 1988-02-03, (expected) EOL : 1994-08-01, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 832 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : OLS,SEM/SSI/ES-2,SEM/SSJ4,SSM/T, Last update : 2015-07-28 10:06:13" + }, + { + "value": "DMSP-F10", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 131, + "description": "Launch : 1990-12-01, (expected) EOL : 1997-10-24, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 790 km, Longitude : null, Inclination : null, Ect : 07:30 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4,SSM/I,SSM/T, Last update : 2015-07-28 10:07:01" + }, + { + "value": "DMSP-F11", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 132, + "description": "Launch : 1991-11-28, (expected) EOL : 2000-08-07, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 853 km, Longitude : null, Inclination : null, Ect : 05:00 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4,SSM/I,SSM/T,SSM/T-2, Last update : 2015-07-28 10:07:58" + }, + { + "value": "DMSP-F12", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 133, + "description": "Launch : 1994-08-29, (expected) EOL : 2008-10-13, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 850 km, Longitude : null, Inclination : null, Ect : 03:35 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4,SEM/SSM,SSM/I,SSM/T,SSM/T-2, Last update : 2015-07-28 10:08:49" + }, + { + "value": "DMSP-F13", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 134, + "description": "Launch : 1995-03-24, (expected) EOL : 2015-02-03, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 850 km, Longitude : null, Inclination : null, Ect : 05:51 description, Status : Inactive, Payload : OLS,SEM/SSB/X-2,SEM/SSI/ES-2,SEM/SSJ4,SEM/SSM,SSM/I,SSM/T, Last update : 2015-07-28 10:09:45" + }, + { + "value": "DMSP-F14", + "expanded": "Defense Meteorological Satellite Program - Block 5D-2", + "numerical_value": 135, + "description": "Launch : 1997-04-04, (expected) EOL : 2016-11-30, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 852 km, Longitude : null, Inclination : null, Ect : 05:00 description, Status : Presumably inactive, Payload : OLS,SEM/SSI/ES-2,SEM/SSJ4,SEM/SSM,SSM/I,SSM/T,SSM/T-2, Last update : 2021-10-29 07:41:10" + }, + { + "value": "DMSP-F15", + "expanded": "Defense Meteorological Satellite Program - Block 5D-3", + "numerical_value": 136, + "description": "Launch : 1999-12-12, (expected) EOL : 2020-11-30, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 850 km, Longitude : null, Inclination : null, Ect : 14:50 asc, Status : Inactive, Payload : OLS,SEM/SSI/ES-2,SEM/SSJ4,SESS/SSM-Boom,SSM/I,SSM/T,SSM/T-2, Last update : 2021-10-18 10:16:10" + }, + { + "value": "DMSP-F16", + "expanded": "Defense Meteorological Satellite Program - Block 5D-3", + "numerical_value": 137, + "description": "Launch : 2003-10-18, (expected) EOL : 2018-11-30, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 848 km, Longitude : null, Inclination : null, Ect : 06:20 description, Status : Presumably inactive, Payload : OLS,SESS/SSI/ES-3,SESS/SSJ5 ,SESS/SSM-Boom,SESS/SSULI,SESS/SSUSI,SSMIS, Last update : 2021-10-29 07:43:30" + }, + { + "value": "DMSP-F17", + "expanded": "Defense Meteorological Satellite Program - Block 5D-3", + "numerical_value": 138, + "description": "Launch : 2006-11-04, (expected) EOL : 2021-11-30, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 848 km, Longitude : null, Inclination : null, Ect : 06:40 description, Status : Operational, Payload : OLS,SESS/SSI/ES-3,SESS/SSJ5 ,SESS/SSM-Boom,SESS/SSULI,SESS/SSUSI,SSMIS, Last update : 2021-12-27 17:04:05" + }, + { + "value": "DMSP-F18", + "expanded": "Defense Meteorological Satellite Program - Block 5D-3", + "numerical_value": 139, + "description": "Launch : 2009-10-18, (expected) EOL : 2021-11-30, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 850 km, Longitude : null, Inclination : null, Ect : 04:50 description, Status : Operational, Payload : OLS,SESS/SSI/ES-3,SESS/SSJ5 ,SESS/SSM-Boom,SESS/SSULI,SESS/SSUSI,SSMIS, Last update : 2021-12-27 17:04:37" + }, + { + "value": "DMSP-F19", + "expanded": "Defense Meteorological Satellite Program - Block 5D-3", + "numerical_value": 140, + "description": "Launch : 2014-04-03, (expected) EOL : 2016-02-11, Agencies : DoD,NOAA, Orbit : SunSync, Altitude : 850 km, Longitude : null, Inclination : null, Ect : 06:36 description, Status : Inactive, Payload : OLS,SESS/SSI/ES-3,SESS/SSJ5 ,SESS/SSM-Boom,SESS/SSULI,SESS/SSUSI,SSMIS, Last update : 2020-04-16 17:07:25" + }, + { + "value": "DSCOVR", + "expanded": "Deep Space Climate Observatory", + "numerical_value": 141, + "description": "Launch : 2015-02-11, (expected) EOL : 2022-11-30, Agencies : NOAA,NASA, Orbit : L1, Altitude : 1.5e+06 km, Longitude :N/A , Inclination :N/A, Ect : N/A, Status : Operational, Payload : EPIC (DSCOVR),ES,FC,MAG (DSCOVR),NISTAR, Last update : 2021-05-20 16:18:19" + }, + { + "value": "DubaiSat-1", + "expanded": "DubaiSat", + "numerical_value": 142, + "description": "Launch : 2009-07-29, (expected) EOL : 2016-05-09, Agencies : EIAST, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DMAC, Last update : 2017-08-03 00:31:52" + }, + { + "value": "DubaiSat-2", + "expanded": "DubaiSat", + "numerical_value": 143, + "description": "Launch : 2013-11-21, (expected) EOL : 2021-11-30, Agencies : EIAST, Orbit : SunSync, Altitude : 600 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : HiRAIS, Last update : 2022-01-03 13:11:24" + }, + { + "value": "DubaiSat-3", + "expanded": "DubaiSat", + "numerical_value": 144, + "description": "Launch : 2018-10-29, (expected) EOL : 2022-11-30, Agencies : EIAST, Orbit : SunSync, Altitude : 613 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : KHCS, Last update : 2021-03-06 13:05:44" + }, + { + "value": "EarthCARE", + "expanded": "Earth Clouds, Aerosol and Radiation Explorer", + "numerical_value": 145, + "description": "Launch : 2022-11-30, (expected) EOL : 2025-11-30, Agencies : ESA,JAXA, Orbit : SunSync, Altitude : 394 km, Longitude : null, Inclination : null, Ect : 14:00 description, Status : Planned, Payload : ATLID,BBR,CPR (Earth-CARE),MSI, Last update : 2021-06-08 10:59:01" + }, + { + "value": "EgyptSat-1", + "expanded": "EgyptSat", + "numerical_value": 146, + "description": "Launch : 2007-04-17, (expected) EOL : 2010-07-19, Agencies : NARSS, Orbit : SunSync, Altitude : 668 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : IREI,MBEI, Last update : 2015-07-27 20:31:46" + }, + { + "value": "EgyptSat-2", + "expanded": "EgyptSat", + "numerical_value": 147, + "description": "Launch : 2014-04-16, (expected) EOL : 2015-06-09, Agencies : NARSS, Orbit : DRIFT, Altitude : 634 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : MSI (EgyptSat), Last update : 2021-11-04 14:02:13" + }, + { + "value": "EgyptSat-A", + "expanded": "EgyptSat", + "numerical_value": 148, + "description": "Launch : 2019-02-21, (expected) EOL : 2023-11-30, Agencies : NARSS, Orbit : SunSync, Altitude : 668 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : MSI (EgyptSat), Last update : 2019-05-24 16:53:14" + }, + { + "value": "Electro-GOMS", + "expanded": "Electro", + "numerical_value": 149, + "description": "Launch : 1994-10-31, (expected) EOL : 2000-11-15, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :76.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Electro),RMS-platform,RMS-solar,RMS/MAG,STR (Electro), Last update : 2015-07-28 10:17:12" + }, + { + "value": "Electro-L N1", + "expanded": "Electro", + "numerical_value": 150, + "description": "Launch : 2011-01-20, (expected) EOL : 2015-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :29.6 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Electro),GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/GALS-E,GGAK-E/SKIF-6,GGAK-E/VUSS-E,MSU-GS, Last update : 2017-07-18 12:35:53" + }, + { + "value": "Electro-L N2", + "expanded": "Electro", + "numerical_value": 151, + "description": "Launch : 2015-12-11, (expected) EOL : 2024-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :14.5 ° W, Inclination : null, Ect : null, Status : Operational, Payload : DCS (Electro),GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/GALS-E,GGAK-E/SKIF-6,GGAK-E/VUSS-E,MSU-GS, Last update : 2021-12-07 10:24:41" + }, + { + "value": "Electro-L N3", + "expanded": "Electro", + "numerical_value": 152, + "description": "Launch : 2019-12-24, (expected) EOL : 2028-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :76 ° E, Inclination : null, Ect : null, Status : Operational, Payload : DCS (Electro),GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/GALS-E,GGAK-E/SKIF-6,GGAK-E/VUSS-E,MSU-GS, Last update : 2021-03-20 13:46:00" + }, + { + "value": "Electro-L N4", + "expanded": "Electro", + "numerical_value": 153, + "description": "Launch : 2022-11-30, (expected) EOL : 2031-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :166 ° E, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Electro),GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/FM-E,GGAK-E/GALS-E,GGAK-E/ISP-2M,GGAK-E/SKIF-6,GGAK-E/VUSS-E,MSU-GS, Last update : 2022-01-25 12:00:00" + }, + { + "value": "Electro-L N5", + "expanded": "Electro", + "numerical_value": 154, + "description": "Launch : 2022-11-30, (expected) EOL : 2032-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :76 ° E, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Electro),GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/FM-E,GGAK-E/GALS-E,GGAK-E/ISP-2M,GGAK-E/SKIF-6,GGAK-E/VUSS-E,MSU-GS, Last update : 2020-08-18 19:34:27" + }, + { + "value": "Electro-M N1", + "expanded": "Electro", + "numerical_value": 155, + "description": "Launch : 2024-11-30, (expected) EOL : 2034-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :14.5 ° W, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Electro),ERBR,GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/FM-E,GGAK-E/GALS-E,GGAK-E/ISP-2M,GGAK-E/SKIF-6,GGAK-E/VUSS-E,IRFS-GS,LM,MSU-GSM, Last update : 2021-10-22 14:05:00" + }, + { + "value": "Electro-M N2", + "expanded": "Electro", + "numerical_value": 156, + "description": "Launch : 2025-11-30, (expected) EOL : 2035-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :76 ° E, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Electro),ERBR,GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/FM-E,GGAK-E/GALS-E,GGAK-E/ISP-2M,GGAK-E/SKIF-6,GGAK-E/VUSS-E,IRFS-GS,LM,MSU-GSM, Last update : 2021-10-22 14:05:30" + }, + { + "value": "Electro-M N3", + "expanded": "Electro", + "numerical_value": 157, + "description": "Launch : 2028-11-30, (expected) EOL : 2038-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : GEO, Altitude : 35786 km, Longitude :165.8 ° E, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Electro),ERBR,GEOS&R (Electro),GGAK-E/DIR-E,GGAK-E/FM-E,GGAK-E/GALS-E,GGAK-E/ISP-2M,GGAK-E/SKIF-6,GGAK-E/VUSS-E,IRFS-GS,LM,MSU-GSM, Last update : 2021-10-22 14:10:08" + }, + { + "value": "EnMAP", + "expanded": "Environmental Mapping and Analysis Programme", + "numerical_value": 158, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : DLR, Orbit : SunSync, Altitude : 653 km, Longitude : null, Inclination : null, Ect : 11:00 description, Status : Planned, Payload : HSI (EnMAP), Last update : 2021-11-25 14:34:10" + }, + { + "value": "Envisat", + "expanded": "Environmental Satellite", + "numerical_value": 159, + "description": "Launch : 2002-03-01, (expected) EOL : 2012-04-08, Agencies : ESA, Orbit : SunSync, Altitude : 774 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Inactive, Payload : AATSR,ASAR,DORIS,GOMOS,LRR (ESA),MERIS,MIPAS,MWR (Envisat),RA-2,SCIAMACHY-limb,SCIAMACHY-nadir, Last update : 2019-10-29 21:24:03" + }, + { + "value": "EOS 03", + "expanded": "Geostationary High Resolution Imager", + "numerical_value": 160, + "description": "Launch : 2021-08-11, (expected) EOL : 2021-08-11, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :85.5 ° E, Inclination : null, Ect : null, Status : Lost at launch, Payload : HyS-SWIR,HyS-VNIR,MX-LWIR,MX-VNIR, Last update : 2021-08-13 18:58:57" + }, + { + "value": "EOS-01", + "expanded": "Radar Imaging Satellite", + "numerical_value": 161, + "description": "Launch : 2020-11-07, (expected) EOL : 2024-11-30, Agencies : ISRO, Orbit : DRIFT, Altitude : 555 km, Longitude : null, Inclination :37°, Ect : null, Status : Operational, Payload : SAR-X (RISAT-2), Last update : 2022-02-16 15:33:56" + }, + { + "value": "EOS-04", + "expanded": "Radar Imaging Satellite", + "numerical_value": 162, + "description": "Launch : 2022-02-14, (expected) EOL : 2031-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 529 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Commissioning, Payload : SAR-C (RISAT), Last update : 2022-02-16 15:32:52" + }, + { + "value": "ERBS", + "expanded": "Earth Radiation Budget Satellite", + "numerical_value": 163, + "description": "Launch : 1984-10-05, (expected) EOL : 2005-10-14, Agencies : NASA, Orbit : DRIFT, Altitude : 610 km, Longitude : null, Inclination :57°, Ect : null, Status : Inactive, Payload : ERBE,SAGE-II, Last update : 2015-07-27 20:36:18" + }, + { + "value": "ERG", + "expanded": "Exploration of energization and Radiation in Geospace", + "numerical_value": 164, + "description": "Launch : 2016-12-20, (expected) EOL : 2021-11-30, Agencies : JAXA, Orbit : MAG, Altitude : 3000 km, Longitude : null, Inclination :31°, Ect : null, Status : Operational, Payload : HEP-e,LEP-e,LEP-i,MEP-e,MEP-i,MGF (ERG),PWE,XEP-e, Last update : 2022-01-03 16:12:33" + }, + { + "value": "ERS-1", + "expanded": "European Remote-sensing Satellite", + "numerical_value": 165, + "description": "Launch : 1991-07-17, (expected) EOL : 2000-03-10, Agencies : ESA, Orbit : SunSync, Altitude : 785 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : AMI-SAR,AMI-SCAT,ATSR,LRR (ESA),PRARE,RA, Last update : 2019-10-30 02:17:06" + }, + { + "value": "ERS-2", + "expanded": "European Remote-sensing Satellite", + "numerical_value": 166, + "description": "Launch : 1995-04-21, (expected) EOL : 2011-07-06, Agencies : ESA, Orbit : SunSync, Altitude : 785 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : AMI-SAR,AMI-SCAT,ATSR-2,GOME,LRR (ESA),MWR (Envisat),PRARE,RA, Last update : 2019-10-30 02:22:16" + }, + { + "value": "ESSA-1", + "expanded": "TIROS Operational System", + "numerical_value": 167, + "description": "Launch : 1966-02-03, (expected) EOL : 1967-03-08, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 770 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : FPR,VCS-WA, Last update : 2015-07-27 20:38:40" + }, + { + "value": "ESSA-2", + "expanded": "TIROS Operational System", + "numerical_value": 168, + "description": "Launch : 1966-02-28, (expected) EOL : 1970-10-16, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1390 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : APT, Last update : 2015-07-27 20:39:09" + }, + { + "value": "ESSA-3", + "expanded": "TIROS Operational System", + "numerical_value": 169, + "description": "Launch : 1966-10-02, (expected) EOL : 1968-12-02, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1440 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : AVCS,FPR, Last update : 2015-07-27 20:39:42" + }, + { + "value": "ESSA-4", + "expanded": "TIROS Operational System", + "numerical_value": 170, + "description": "Launch : 1967-01-26, (expected) EOL : 1968-05-05, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1380 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : APT, Last update : 2015-07-27 20:40:14" + }, + { + "value": "ESSA-5", + "expanded": "TIROS Operational System", + "numerical_value": 171, + "description": "Launch : 1967-04-20, (expected) EOL : 1970-02-20, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1390 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : AVCS,FPR, Last update : 2015-07-27 20:41:00" + }, + { + "value": "ESSA-6", + "expanded": "TIROS Operational System", + "numerical_value": 172, + "description": "Launch : 1967-11-10, (expected) EOL : 1969-12-03, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1450 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : APT, Last update : 2015-07-27 20:41:27" + }, + { + "value": "ESSA-7", + "expanded": "TIROS Operational System", + "numerical_value": 173, + "description": "Launch : 1968-08-16, (expected) EOL : 1970-03-10, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1450 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : AVCS,FPR, Last update : 2015-07-27 20:49:48" + }, + { + "value": "ESSA-8", + "expanded": "TIROS Operational System", + "numerical_value": 174, + "description": "Launch : 1968-12-15, (expected) EOL : 1976-03-12, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1440 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : APT, Last update : 2015-07-27 20:51:31" + }, + { + "value": "ESSA-9", + "expanded": "TIROS Operational System", + "numerical_value": 175, + "description": "Launch : 1969-02-26, (expected) EOL : 1972-11-12, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1470 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : AVCS,FPR, Last update : 2015-07-27 20:52:19" + }, + { + "value": "Explorer-VII", + "expanded": "Explorer-VII", + "numerical_value": 176, + "description": "Launch : 1959-10-13, (expected) EOL : 1961-08-24, Agencies : NASA, Orbit : DRIFT, Altitude : 722 km, Longitude : null, Inclination :50.28°, Ect : null, Status : Inactive, Payload : FPR, Last update : 2016-10-19 18:12:37" + }, + { + "value": "Falcon-Eye 1", + "expanded": "Falcon-Eye", + "numerical_value": 177, + "description": "Launch : 2019-07-11, (expected) EOL : 2019-07-11, Agencies : EIAST, Orbit : SunSync, Altitude : 610 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : HiRI, Last update : 2019-09-16 17:51:43" + }, + { + "value": "Falcon-Eye 2", + "expanded": "Falcon-Eye", + "numerical_value": 178, + "description": "Launch : 2020-12-02, (expected) EOL : 2024-11-30, Agencies : EIAST, Orbit : SunSync, Altitude : 610 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HiRI, Last update : 2021-03-06 14:29:31" + }, + { + "value": "FLEX", + "expanded": "FLuorescence EXplorer", + "numerical_value": 179, + "description": "Launch : 2023-11-30, (expected) EOL : 2026-11-30, Agencies : ESA, Orbit : SunSync, Altitude : 800 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Planned, Payload : FLORIS, Last update : 2020-08-21 13:32:45" + }, + { + "value": "FLOCK", + "expanded": "Planetscope", + "numerical_value": 180, + "description": "Launch : 2014-01-09, (expected) EOL : 2039-11-30, Agencies : Planet, Orbit : SunSync, Altitude : 475 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : FLOCK, Last update : 2022-01-15 13:59:13" + }, + { + "value": "FORMOSAT-1", + "expanded": "FORMOSAT", + "numerical_value": 181, + "description": "Launch : 1999-01-26, (expected) EOL : 2004-06-17, Agencies : NSPO,UCAR, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :35°, Ect : null, Status : Inactive, Payload : IPEI,OCI (FORMOSAT), Last update : 2017-08-01 11:17:04" + }, + { + "value": "FORMOSAT-2", + "expanded": "FORMOSAT", + "numerical_value": 182, + "description": "Launch : 2004-05-21, (expected) EOL : 2016-08-19, Agencies : NSPO,UCAR, Orbit : SunSync, Altitude : 891 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : ISUAL,RSI, Last update : 2017-08-01 01:47:34" + }, + { + "value": "FORMOSAT-5", + "expanded": "FORMOSAT", + "numerical_value": 183, + "description": "Launch : 2017-08-24, (expected) EOL : 2021-11-30, Agencies : NSPO,UCAR, Orbit : SunSync, Altitude : 720 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Operational, Payload : AIP,RSI (FORMOSAT-5), Last update : 2017-11-28 13:16:19" + }, + { + "value": "FORUM", + "expanded": "Far-infrared Outgoing Radiation Understanding and Monitoring", + "numerical_value": 184, + "description": "Launch : 2026-11-30, (expected) EOL : 2030-11-30, Agencies : ESA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : FSI, Last update : 2022-02-09 13:15:03" + }, + { + "value": "FY-1A", + "expanded": "Feng-Yun - 1", + "numerical_value": 185, + "description": "Launch : 1988-09-07, (expected) EOL : 1988-10-16, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 900 km, Longitude : null, Inclination : null, Ect : 15:30 asc, Status : Inactive, Payload : MVISR,SEM/HEPD,SEM/IMS, Last update : 2021-03-19 22:43:46" + }, + { + "value": "FY-1B", + "expanded": "Feng-Yun - 1", + "numerical_value": 186, + "description": "Launch : 1990-09-03, (expected) EOL : 1991-08-05, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 900 km, Longitude : null, Inclination : null, Ect : 07:50 description, Status : Inactive, Payload : MVISR,SEM/HEPD,SEM/IMS, Last update : 2018-10-11 15:18:05" + }, + { + "value": "FY-1C", + "expanded": "Feng-Yun - 1", + "numerical_value": 187, + "description": "Launch : 1999-05-10, (expected) EOL : 2004-04-26, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 862 km, Longitude : null, Inclination : null, Ect : 07:00 description, Status : Inactive, Payload : MVISR,SEM/HEPD,SEM/IMS, Last update : 2017-12-11 00:47:59" + }, + { + "value": "FY-1D", + "expanded": "Feng-Yun - 1", + "numerical_value": 188, + "description": "Launch : 2002-05-15, (expected) EOL : 2012-04-01, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 866 km, Longitude : null, Inclination : null, Ect : 09:00 description, Status : Inactive, Payload : MVISR,SEM/HEPD,SEM/IMS, Last update : 2017-12-11 00:48:29" + }, + { + "value": "FY-2A", + "expanded": "Feng-Yun - 2", + "numerical_value": 189, + "description": "Launch : 1997-06-10, (expected) EOL : 1998-04-08, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :105 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (FY),S-VISSR (FY-2A/B),SEM (FY-2), Last update : 2019-05-30 21:01:41" + }, + { + "value": "FY-2B", + "expanded": "Feng-Yun - 2", + "numerical_value": 190, + "description": "Launch : 2000-06-25, (expected) EOL : 2004-08-31, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :105 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (FY),S-VISSR (FY-2A/B),SEM (FY-2), Last update : 2019-05-30 21:02:21" + }, + { + "value": "FY-2C", + "expanded": "Feng-Yun - 2", + "numerical_value": 191, + "description": "Launch : 2004-10-19, (expected) EOL : 2009-11-23, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :105 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (FY),S-VISSR (FY-2C/D/E),SEM (FY-2), Last update : 2019-05-30 21:03:15" + }, + { + "value": "FY-2D", + "expanded": "Feng-Yun - 2", + "numerical_value": 192, + "description": "Launch : 2006-12-08, (expected) EOL : 2015-06-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :86.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (FY),S-VISSR (FY-2C/D/E),SEM (FY-2), Last update : 2019-05-30 21:03:58" + }, + { + "value": "FY-2E", + "expanded": "Feng-Yun - 2", + "numerical_value": 193, + "description": "Launch : 2008-12-23, (expected) EOL : 2018-12-31, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :86.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (FY),S-VISSR (FY-2C/D/E),SEM (FY-2), Last update : 2019-11-27 04:46:04" + }, + { + "value": "FY-2F", + "expanded": "Feng-Yun - 2", + "numerical_value": 194, + "description": "Launch : 2012-01-13, (expected) EOL : 2021-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :112 ° E, Inclination : null, Ect : null, Status : Stand-by, Payload : DCS (FY),S-VISSR (FY-2F/G/H),SEM (FY-2),SXM, Last update : 2021-12-29 18:05:12" + }, + { + "value": "FY-2G", + "expanded": "Feng-Yun - 2", + "numerical_value": 195, + "description": "Launch : 2014-12-31, (expected) EOL : 2021-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :105 ° E, Inclination : null, Ect : null, Status : Operational, Payload : DCS (FY),S-VISSR (FY-2F/G/H),SEM (FY-2),SXM, Last update : 2021-12-29 18:06:06" + }, + { + "value": "FY-2H", + "expanded": "Feng-Yun - 2", + "numerical_value": 196, + "description": "Launch : 2018-06-05, (expected) EOL : 2021-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :79 ° E, Inclination : null, Ect : null, Status : Operational, Payload : DCS (FY),S-VISSR (FY-2F/G/H),SEM (FY-2),SXM, Last update : 2019-05-31 00:42:17" + }, + { + "value": "FY-3A", + "expanded": "Feng-Yun - 3", + "numerical_value": 197, + "description": "Launch : 2008-05-27, (expected) EOL : 2015-01-05, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 834 km, Longitude : null, Inclination : null, Ect : 09:05 description, Status : Inactive, Payload : ERM-1,IRAS,MERSI-1,MWHS-1,MWRI,MWTS-1,SBUS,SEM/HEPD,SEM/IMS,SIM-1,TOU,VIRR (FY-3), Last update : 2019-10-28 20:10:18" + }, + { + "value": "FY-3B", + "expanded": "Feng-Yun - 3", + "numerical_value": 198, + "description": "Launch : 2010-11-04, (expected) EOL : 2020-05-31, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 836 km, Longitude : null, Inclination : null, Ect : 14:45 asc, Status : Inactive, Payload : ERM-1,IRAS,MERSI-1,MWHS-1,MWRI,MWTS-1,SBUS,SEM/HEPD,SEM/IMS,SIM-1,TOU,VIRR (FY-3), Last update : 2021-12-29 18:12:00" + }, + { + "value": "FY-3C", + "expanded": "Feng-Yun - 3", + "numerical_value": 199, + "description": "Launch : 2013-09-23, (expected) EOL : 2021-11-30, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 836 km, Longitude : null, Inclination : null, Ect : 09:07 description, Status : Operational, Payload : ERM-1,GNOS,IRAS,MERSI-1,MWHS-2,MWRI,MWTS-2,SBUS,SEM/HEPD,SEM/IMS,SIM-1,TOU,VIRR (FY-3), Last update : 2021-12-29 18:15:06" + }, + { + "value": "FY-3D", + "expanded": "Feng-Yun - 3", + "numerical_value": 200, + "description": "Launch : 2017-11-14, (expected) EOL : 2021-11-30, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 836 km, Longitude : null, Inclination : null, Ect : 13:29 asc, Status : Operational, Payload : GAS,GNOS,HIRAS,MERSI-2,MWHS-2,MWRI,MWTS-2,SWS/IPM,SWS/SEM/HEPD,SWS/SEM/IMS,SWS/WAI, Last update : 2021-07-16 10:19:11" + }, + { + "value": "FY-3E", + "expanded": "Feng-Yun - 3", + "numerical_value": 201, + "description": "Launch : 2021-07-04, (expected) EOL : 2025-11-30, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 836 km, Longitude : null, Inclination : null, Ect : 05:30 description, Status : Operational, Payload : GNOS-2,HIRAS-2,MERSI-LL,MWHS-2,MWTS-3,SIM-2,SSIM,SWS/SEM/HEPD,SWS/SEM/IMS,SWS/SEM/MFD,SWS/Tri-IPM,WindRAD,XEUVI, Last update : 2022-01-19 16:13:13" + }, + { + "value": "FY-3F", + "expanded": "Feng-Yun - 3", + "numerical_value": 202, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 836 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Planned, Payload : GNOS-2,HIRAS-2,MERSI-3,MWHS-2,MWRI,MWTS-3,OMS-limb,OMS-nadir,SWS/IPM,SWS/SEM/MFD,SWS/WAI, Last update : 2021-07-16 11:22:40" + }, + { + "value": "FY-3G", + "expanded": "Feng-Yun - 3", + "numerical_value": 203, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : CMA,NRSCC, Orbit : DRIFT, Altitude : null, Longitude : null, Inclination :50°, Ect : null, Status : Planned, Payload : GNOS-2,MERSI-RM,MWRI-RM,Rainradar, Last update : 2021-07-16 16:32:02" + }, + { + "value": "FY-3H", + "expanded": "Feng-Yun - 3", + "numerical_value": 204, + "description": "Launch : 2023-11-30, (expected) EOL : 2028-11-30, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 836 km, Longitude : null, Inclination : null, Ect : 14:00 asc, Status : Planned, Payload : ERM-2,GAS-2,GNOS-2,HIRAS-2,MERSI-3,MWHS-2,MWRI,MWTS-3,SIM-2,SWS/SEM/MFD, Last update : 2021-07-16 22:16:06" + }, + { + "value": "FY-3I", + "expanded": "Feng-Yun - 3", + "numerical_value": 205, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : CMA,NRSCC, Orbit : SunSync, Altitude : 836 km, Longitude : null, Inclination : null, Ect : 05:30 description, Status : Planned, Payload : GNOS-2,HIRAS-2,MERSI-LL,MWHS-2,MWTS-3,SIM-2,SSIM,SWS/SEM/HEPD,SWS/SEM/IMS,SWS/SEM/MFD,SWS/Tri-IPM,WindRAD, Last update : 2021-10-22 14:12:25" + }, + { + "value": "FY-3J", + "expanded": "Feng-Yun - 3", + "numerical_value": 206, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : CMA,NRSCC, Orbit : DRIFT, Altitude : null, Longitude : null, Inclination :50°, Ect : null, Status : Planned, Payload : GNOS-2,MERSI-RM,MWRI-RM,Rainradar, Last update : 2021-10-22 14:09:36" + }, + { + "value": "FY-4 MW", + "expanded": "Feng-Yun - 4", + "numerical_value": 207, + "description": "Launch : 2023-11-30, (expected) EOL : 2028-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : null, Longitude :TBD , Inclination : null, Ect : null, Status : Planned, Payload : null, Last update : 2021-05-26 11:44:15" + }, + { + "value": "FY-4A", + "expanded": "Feng-Yun - 4", + "numerical_value": 208, + "description": "Launch : 2016-12-10, (expected) EOL : 2021-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :104.7 ° E, Inclination : null, Ect : null, Status : Operational, Payload : AGRI,DCS (FY),GIIRS,LMI,SEP-fields,SEP/HEPS, Last update : 2021-12-29 18:16:27" + }, + { + "value": "FY-4B", + "expanded": "Feng-Yun - 4", + "numerical_value": 209, + "description": "Launch : 2021-06-02, (expected) EOL : 2027-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :123.5 ° E, Inclination : null, Ect : null, Status : Operational, Payload : AGRI,DCS (FY),GHI,GIIRS,SEP-fields,SEP/HEPS,SEP/LEPS,SEP/MEPS, Last update : 2022-02-01 16:12:53" + }, + { + "value": "FY-4C", + "expanded": "Feng-Yun - 4", + "numerical_value": 210, + "description": "Launch : 2024-11-30, (expected) EOL : 2031-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :86.5 ° E, Inclination : null, Ect : null, Status : Planned, Payload : AGRI,DCS (FY),GIIRS,LMI,MUSI,SUVI (FY-4),SXEUV,SXUS, Last update : 2021-06-04 13:41:39" + }, + { + "value": "FY-4D", + "expanded": "Feng-Yun - 4", + "numerical_value": 211, + "description": "Launch : 2025-11-30, (expected) EOL : 2032-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :105 ° E, Inclination : null, Ect : null, Status : Planned, Payload : AGRI,DCS (FY),GIIRS,LMI,MUSI,SEP-fields,SEP/HEPS,SEP/LEPS,SEP/MEPS,SUVI (FY-4),SXEUV,SXUS, Last update : 2021-10-22 14:06:00" + }, + { + "value": "FY-4E", + "expanded": "Feng-Yun - 4", + "numerical_value": 212, + "description": "Launch : 2026-11-30, (expected) EOL : 2033-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :86.5 ° E, Inclination : null, Ect : null, Status : Planned, Payload : AGRI,DCS (FY),GIIRS,LMI,MUSI,SEP-fields,SEP/HEPS,SEP/LEPS,SEP/MEPS,SUVI (FY-4),SXEUV,SXUS, Last update : 2021-10-22 14:06:47" + }, + { + "value": "FY-4F", + "expanded": "Feng-Yun - 4", + "numerical_value": 213, + "description": "Launch : 2029-11-30, (expected) EOL : 2036-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :105 ° E, Inclination : null, Ect : null, Status : Planned, Payload : AGRI,DCS (FY),GIIRS,LMI,MUSI,SEP-fields,SEP/HEPS,SEP/LEPS,SEP/MEPS,SUVI (FY-4),SXEUV,SXUS, Last update : 2021-10-22 14:07:19" + }, + { + "value": "FY-4G", + "expanded": "Feng-Yun - 4", + "numerical_value": 214, + "description": "Launch : 2032-11-30, (expected) EOL : 2039-11-30, Agencies : CMA,NRSCC, Orbit : GEO, Altitude : 35786 km, Longitude :86.5 ° E, Inclination : null, Ect : null, Status : Planned, Payload : AGRI,DCS (FY),GIIRS,LMI,MUSI,SEP-fields,SEP/HEPS,SEP/LEPS,SEP/MEPS,SUVI (FY-4),SXEUV,SXUS, Last update : 2021-10-22 14:07:52" + }, + { + "value": "GACM", + "expanded": "Global Atmospheric Composition Mission", + "numerical_value": 215, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : null, Longitude : null, Inclination : null, Ect : null, Status : Mission concept, Payload : O3 lidar, Last update : 2018-06-20 23:25:00" + }, + { + "value": "Galileo", + "expanded": "Galileo", + "numerical_value": 216, + "description": "Launch : 2011-10-21, (expected) EOL : 2030-11-30, Agencies : ESA,EC, Orbit : DRIFT, Altitude : 23222 km, Longitude : null, Inclination :56°, Ect : null, Status : Operational, Payload : EMU, Last update : 2016-10-11 19:48:03" + }, + { + "value": "GCOM-C", + "expanded": "Global Change Observation Mission", + "numerical_value": 217, + "description": "Launch : 2017-12-23, (expected) EOL : 2021-11-30, Agencies : JAXA, Orbit : SunSync, Altitude : 798 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : SGLI, Last update : 2021-09-10 14:29:02" + }, + { + "value": "GCOM-W", + "expanded": "Global Change Observation Mission", + "numerical_value": 218, + "description": "Launch : 2012-05-17, (expected) EOL : 2021-11-30, Agencies : JAXA, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : AMSR2, Last update : 2021-11-30 18:03:15" + }, + { + "value": "GEO-CAPE", + "expanded": "Geostationary Coastal and Air Pollution Events", + "numerical_value": 219, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : GEO, Altitude : 35786 km, Longitude :100 ° W, Inclination : null, Ect : null, Status : Mission concept, Payload : null, Last update : 2016-06-30 01:55:42" + }, + { + "value": "GEO-KOMPSAT-2A", + "expanded": "Communication, Oceanography and Meteorology Satellite", + "numerical_value": 220, + "description": "Launch : 2018-12-04, (expected) EOL : 2028-11-30, Agencies : KMA,KARI,ME,MLTM, Orbit : GEO, Altitude : 35786 km, Longitude :128.2 ° E, Inclination : null, Ect : null, Status : Operational, Payload : AMI,KSEM/CM,KSEM/MG,KSEM/PD, Last update : 2019-08-02 13:32:54" + }, + { + "value": "GEO-KOMPSAT-2B", + "expanded": "Communication, Oceanography and Meteorology Satellite", + "numerical_value": 221, + "description": "Launch : 2020-02-18, (expected) EOL : 2030-11-30, Agencies : KMA,KARI,ME,MLTM, Orbit : GEO, Altitude : 35786 km, Longitude :128.2 ° E, Inclination : null, Ect : null, Status : Operational, Payload : GEMS,GOCI-II, Last update : 2021-03-04 00:15:40" + }, + { + "value": "GeoCarb", + "expanded": "Geostationary Carbon Cycle Observatory", + "numerical_value": 222, + "description": "Launch : 2023-11-30, (expected) EOL : 2026-11-30, Agencies : NASA, Orbit : GEO, Altitude : 35786 km, Longitude :85 ° W, Inclination : null, Ect : null, Status : Planned, Payload : GeoCarb, Last update : 2022-01-17 08:59:45" + }, + { + "value": "GeoEye-1", + "expanded": "GeoEye", + "numerical_value": 223, + "description": "Launch : 2008-09-06, (expected) EOL : 2021-11-30, Agencies : Maxar,GeoEye, Orbit : SunSync, Altitude : 681 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : GIS, Last update : 2022-01-03 12:50:54" + }, + { + "value": "GEOSat", + "expanded": "Geodetic Satellite", + "numerical_value": 224, + "description": "Launch : 1985-03-12, (expected) EOL : 1990-01-31, Agencies : DoD,NASA, Orbit : DRIFT, Altitude : 785 km, Longitude : null, Inclination :108°, Ect : null, Status : Inactive, Payload : GRA, Last update : 2015-07-27 23:30:13" + }, + { + "value": "GEOTAIL", + "expanded": "GEOTAIL", + "numerical_value": 225, + "description": "Launch : 1992-07-02, (expected) EOL : 2021-11-30, Agencies : JAXA,NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :29°, Ect : null, Status : Operational, Payload : CPI,EFD,EPIC,HEP,LEP,MGF,PWI, Last update : 2022-01-03 12:41:15" + }, + { + "value": "GF-1", + "expanded": "Gao Fen", + "numerical_value": 226, + "description": "Launch : 2013-04-26, (expected) EOL : 2021-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS,WFV, Last update : 2022-01-03 15:29:02" + }, + { + "value": "GF-1-02", + "expanded": "Gao Fen", + "numerical_value": 227, + "description": "Launch : 2018-03-31, (expected) EOL : 2021-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS, Last update : 2018-07-03 16:13:47" + }, + { + "value": "GF-1-03", + "expanded": "Gao Fen", + "numerical_value": 228, + "description": "Launch : 2018-03-31, (expected) EOL : 2021-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS, Last update : 2018-07-03 16:14:41" + }, + { + "value": "GF-1-04", + "expanded": "Gao Fen", + "numerical_value": 229, + "description": "Launch : 2018-03-31, (expected) EOL : 2021-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS, Last update : 2018-07-03 16:15:37" + }, + { + "value": "GF-10", + "expanded": "Gao Fen", + "numerical_value": 230, + "description": "Launch : 2019-10-04, (expected) EOL : 2026-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 613 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2020-09-08 18:55:30" + }, + { + "value": "GF-11", + "expanded": "Gao Fen", + "numerical_value": 231, + "description": "Launch : 2018-07-31, (expected) EOL : 2025-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 412 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2020-09-08 18:47:59" + }, + { + "value": "GF-11-02", + "expanded": "Gao Fen", + "numerical_value": 232, + "description": "Launch : 2020-09-07, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 415 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2021-03-02 23:48:44" + }, + { + "value": "GF-11-03", + "expanded": "Gao Fen", + "numerical_value": 233, + "description": "Launch : 2021-11-20, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 450 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2022-02-01 16:16:46" + }, + { + "value": "GF-12", + "expanded": "Gao Fen", + "numerical_value": 234, + "description": "Launch : 2019-11-27, (expected) EOL : 2026-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 635 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-C (GF-3), Last update : 2020-09-08 18:56:16" + }, + { + "value": "GF-12-02", + "expanded": "Gao Fen", + "numerical_value": 235, + "description": "Launch : 2021-03-30, (expected) EOL : 2028-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 635 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-C (GF-3), Last update : 2021-08-25 17:16:20" + }, + { + "value": "GF-13", + "expanded": "Gao Fen", + "numerical_value": 236, + "description": "Launch : 2020-10-11, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : GEO, Altitude : 35786 km, Longitude :118 ° E, Inclination : null, Ect : null, Status : Operational, Payload : null, Last update : 2022-01-10 08:43:54" + }, + { + "value": "GF-14", + "expanded": "Gao Fen", + "numerical_value": 237, + "description": "Launch : 2020-12-06, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 488 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2021-06-16 15:53:24" + }, + { + "value": "GF-2", + "expanded": "Gao Fen", + "numerical_value": 238, + "description": "Launch : 2014-08-19, (expected) EOL : 2021-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 631 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2022-01-03 15:29:32" + }, + { + "value": "GF-3", + "expanded": "Gao Fen", + "numerical_value": 239, + "description": "Launch : 2016-08-09, (expected) EOL : 2023-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 758 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-C (GF-3), Last update : 2020-09-08 18:37:54" + }, + { + "value": "GF-3-02", + "expanded": "Gao Fen", + "numerical_value": 240, + "description": "Launch : 2021-11-22, (expected) EOL : 2028-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 740 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-C (GF-3), Last update : 2022-02-01 16:17:11" + }, + { + "value": "GF-4", + "expanded": "Gao Fen", + "numerical_value": 241, + "description": "Launch : 2015-12-28, (expected) EOL : 2022-11-30, Agencies : CNSA, Orbit : GEO, Altitude : 35786 km, Longitude :106 ° E, Inclination : null, Ect : null, Status : Operational, Payload : GF-4 imager, Last update : 2020-09-08 18:36:51" + }, + { + "value": "GF-5", + "expanded": "Gao Fen", + "numerical_value": 242, + "description": "Launch : 2018-05-08, (expected) EOL : 2019-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Inactive, Payload : AHSI,AIUS,DPC,EMI,GMI (GF-5),VIMS, Last update : 2021-11-18 14:17:21" + }, + { + "value": "GF-5-02", + "expanded": "Gao Fen", + "numerical_value": 243, + "description": "Launch : 2021-09-07, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : AHSI,AIUS,DPC,EMI,GMI (GF-5),VIMS, Last update : 2021-12-20 08:11:52" + }, + { + "value": "GF-6", + "expanded": "Gao Fen", + "numerical_value": 244, + "description": "Launch : 2018-06-02, (expected) EOL : 2025-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS,WFV, Last update : 2020-09-08 18:43:18" + }, + { + "value": "GF-7", + "expanded": "Gao Fen", + "numerical_value": 245, + "description": "Launch : 2019-11-03, (expected) EOL : 2026-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2020-09-08 18:51:17" + }, + { + "value": "GF-8", + "expanded": "Gao Fen", + "numerical_value": 246, + "description": "Launch : 2015-06-26, (expected) EOL : 2022-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 475 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2020-09-08 18:34:42" + }, + { + "value": "GF-9", + "expanded": "Gao Fen", + "numerical_value": 247, + "description": "Launch : 2015-09-14, (expected) EOL : 2022-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2020-09-08 18:35:46" + }, + { + "value": "GF-9-02", + "expanded": "Gao Fen", + "numerical_value": 248, + "description": "Launch : 2020-05-31, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2021-03-02 23:34:32" + }, + { + "value": "GF-9-03", + "expanded": "Gao Fen", + "numerical_value": 249, + "description": "Launch : 2020-06-17, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2021-03-02 23:35:16" + }, + { + "value": "GF-9-04", + "expanded": "Gao Fen", + "numerical_value": 250, + "description": "Launch : 2020-08-06, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2021-03-02 23:36:05" + }, + { + "value": "GF-9-05", + "expanded": "Gao Fen", + "numerical_value": 251, + "description": "Launch : 2020-08-23, (expected) EOL : 2027-11-30, Agencies : CNSA, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-2, Last update : 2021-03-02 23:36:59" + }, + { + "value": "GFO", + "expanded": "Geodetic Satellite", + "numerical_value": 252, + "description": "Launch : 1998-02-10, (expected) EOL : 2008-10-22, Agencies : DoD,NASA, Orbit : DRIFT, Altitude : 784 km, Longitude : null, Inclination :108°, Ect : null, Status : Inactive, Payload : GFO-RA,LRA (NASA),TRSR,WVR, Last update : 2015-07-27 23:32:42" + }, + { + "value": "GFZ-1", + "expanded": "GeoForschungsZentrum-1 Geodesy Satellite", + "numerical_value": 253, + "description": "Launch : 1995-04-19, (expected) EOL : 1999-06-23, Agencies : DLR, Orbit : DRIFT, Altitude : 398 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Inactive, Payload : RRA, Last update : 2015-07-27 23:33:34" + }, + { + "value": "GISAT-2", + "expanded": "Geostationary High Resolution Imager", + "numerical_value": 254, + "description": "Launch : 2021-11-30, (expected) EOL : 2028-11-30, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :83 ° E, Inclination : null, Ect : null, Status : Planned, Payload : HyS-SWIR,HyS-VNIR,MX-LWIR,MX-VNIR, Last update : 2021-06-10 13:42:04" + }, + { + "value": "Glory", + "expanded": "Glory", + "numerical_value": 255, + "description": "Launch : 2011-03-04, (expected) EOL : 2011-03-04, Agencies : NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Lost at launch, Payload : APS,CC,TIM , Last update : 2015-07-27 23:35:16" + }, + { + "value": "GNOMES", + "expanded": "GNSS Navigation and Occultation Measurement Satellites", + "numerical_value": 256, + "description": "Launch : 2020-08-30, (expected) EOL : 2039-11-30, Agencies : PlanetiQ, Orbit : SunSync, Altitude : 600 km, Longitude : null, Inclination : null, Ect : TBD, Status : Operational, Payload : Pyxis-RO, Last update : 2021-07-04 18:46:48" + }, + { + "value": "GOCE", + "expanded": "Gravity Field and Steady-State Ocean Circulation Explorer", + "numerical_value": 257, + "description": "Launch : 2009-03-17, (expected) EOL : 2013-10-21, Agencies : ESA, Orbit : SunSync, Altitude : 230 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Inactive, Payload : EGG,LRR (ESA),SSTI, Last update : 2015-07-27 23:39:52" + }, + { + "value": "GOES-1", + "expanded": "Geostationary Operational Environmental Satellite - 1st generation", + "numerical_value": 258, + "description": "Launch : 1975-10-16, (expected) EOL : 1985-03-07, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VISSR, Last update : 2015-07-28 10:52:00" + }, + { + "value": "GOES-10", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 259, + "description": "Launch : 1997-04-25, (expected) EOL : 2006-12-01, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 8-11),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER, Last update : 2021-03-20 22:10:37" + }, + { + "value": "GOES-10 (S-America)", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 260, + "description": "Launch : 2006-12-01, (expected) EOL : 2009-12-02, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :60 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 8-11),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER, Last update : 2021-03-20 22:11:34" + }, + { + "value": "GOES-11", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 261, + "description": "Launch : 2000-05-03, (expected) EOL : 2011-12-05, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 8-11),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER, Last update : 2021-03-20 22:12:28" + }, + { + "value": "GOES-12", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 262, + "description": "Launch : 2001-07-23, (expected) EOL : 2010-05-10, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 12-15),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER,SXI, Last update : 2021-03-20 22:13:24" + }, + { + "value": "GOES-12 (S-America)", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 263, + "description": "Launch : 2010-05-10, (expected) EOL : 2013-08-16, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :60 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 12-15),SEM/EPS,SEM/HEPAD,SEM/MAG,SOUNDER, Last update : 2021-03-20 22:14:15" + }, + { + "value": "GOES-13", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 264, + "description": "Launch : 2006-05-24, (expected) EOL : 2019-09-30, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :60 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 12-15),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER,SXI, Last update : 2020-08-19 14:40:40" + }, + { + "value": "GOES-14", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 265, + "description": "Launch : 2009-06-27, (expected) EOL : 2021-11-30, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :105 ° W, Inclination : null, Ect : null, Status : Stand-by, Payload : DCIS,GEOS&R ,IMAGER (GOES 12-15),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER,SXI, Last update : 2021-12-29 18:25:01" + }, + { + "value": "GOES-15", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 266, + "description": "Launch : 2010-03-04, (expected) EOL : 2021-11-30, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :128 ° W, Inclination : null, Ect : null, Status : Stand-by, Payload : DCIS,GEOS&R ,IMAGER (GOES 12-15),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER,SXI, Last update : 2021-12-29 18:26:15" + }, + { + "value": "GOES-16", + "expanded": "Geostationary Operational Environmental Satellite - 3rd generation", + "numerical_value": 267, + "description": "Launch : 2016-11-19, (expected) EOL : 2026-11-30, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :75.2 ° W, Inclination : null, Ect : null, Status : Operational, Payload : ABI,DCIS,EXIS,GEOS&R ,GLM,SEISS/EHIS,SEISS/MPS,SEISS/SGPS,SEM/MAG,SUVI, Last update : 2021-05-20 13:25:03" + }, + { + "value": "GOES-17", + "expanded": "Geostationary Operational Environmental Satellite - 3rd generation", + "numerical_value": 268, + "description": "Launch : 2018-03-01, (expected) EOL : 2028-11-30, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :137.2 ° W, Inclination : null, Ect : null, Status : Operational, Payload : ABI,DCIS,EXIS,GEOS&R ,GLM,SEISS/EHIS,SEISS/MPS,SEISS/SGPS,SEM/MAG,SUVI, Last update : 2021-10-22 18:10:05" + }, + { + "value": "GOES-2", + "expanded": "Geostationary Operational Environmental Satellite - 1st generation", + "numerical_value": 269, + "description": "Launch : 1977-06-16, (expected) EOL : 1993-07-01, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VISSR, Last update : 2015-07-28 11:03:33" + }, + { + "value": "GOES-3", + "expanded": "Geostationary Operational Environmental Satellite - 1st generation", + "numerical_value": 270, + "description": "Launch : 1978-06-16, (expected) EOL : 1993-07-01, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VISSR, Last update : 2015-07-28 11:04:18" + }, + { + "value": "GOES-4", + "expanded": "Geostationary Operational Environmental Satellite - 1st generation", + "numerical_value": 271, + "description": "Launch : 1980-09-09, (expected) EOL : 1988-11-22, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VAS, Last update : 2015-07-28 11:05:09" + }, + { + "value": "GOES-5", + "expanded": "Geostationary Operational Environmental Satellite - 1st generation", + "numerical_value": 272, + "description": "Launch : 1981-05-22, (expected) EOL : 1990-07-18, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VAS, Last update : 2015-07-28 11:06:09" + }, + { + "value": "GOES-6", + "expanded": "Geostationary Operational Environmental Satellite - 1st generation", + "numerical_value": 273, + "description": "Launch : 1983-04-28, (expected) EOL : 1989-07-01, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VAS, Last update : 2015-07-28 11:07:18" + }, + { + "value": "GOES-7", + "expanded": "Geostationary Operational Environmental Satellite - 1st generation", + "numerical_value": 274, + "description": "Launch : 1987-02-26, (expected) EOL : 1996-01-11, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VAS, Last update : 2015-07-28 11:08:36" + }, + { + "value": "GOES-8", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 275, + "description": "Launch : 1994-04-13, (expected) EOL : 2004-05-05, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 8-11),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER, Last update : 2021-03-20 22:07:16" + }, + { + "value": "GOES-9", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 276, + "description": "Launch : 1995-05-23, (expected) EOL : 2003-05-22, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 8-11),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER, Last update : 2021-03-20 22:08:24" + }, + { + "value": "GOES-9 (GMS backup)", + "expanded": "Geostationary Operational Environmental Satellite - 2nd generation", + "numerical_value": 277, + "description": "Launch : 2003-05-22, (expected) EOL : 2006-07-24, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :155 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,GEOS&R ,IMAGER (GOES 8-11),SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,SOUNDER, Last update : 2021-03-20 22:09:18" + }, + { + "value": "GOES-T", + "expanded": "Geostationary Operational Environmental Satellite - 3rd generation", + "numerical_value": 278, + "description": "Launch : 2022-02-28, (expected) EOL : 2032-11-30, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :137 ° W, Inclination : null, Ect : null, Status : Planned, Payload : ABI,DCIS,EXIS,GEOS&R ,GLM,SEISS/EHIS,SEISS/MPS,SEISS/SGPS,SEM/MAG,SUVI, Last update : 2021-11-18 21:12:35" + }, + { + "value": "GOES-U", + "expanded": "Geostationary Operational Environmental Satellite - 3rd generation", + "numerical_value": 279, + "description": "Launch : 2023-11-30, (expected) EOL : 2034-11-30, Agencies : NOAA,NASA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Planned, Payload : ABI,CCOR,DCIS,EXIS,GEOS&R ,GLM,SEISS/EHIS,SEISS/MPS,SEISS/SGPS,SEM/MAG,SUVI, Last update : 2021-06-11 11:15:45" + }, + { + "value": "Göktürk-1A", + "expanded": "Göktürk", + "numerical_value": 280, + "description": "Launch : 2016-12-05, (expected) EOL : 2021-11-30, Agencies : TÜBITAK-UZAY, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : HiRI, Last update : 2022-01-03 13:06:13" + }, + { + "value": "Göktürk-2", + "expanded": "Göktürk", + "numerical_value": 281, + "description": "Launch : 2012-12-18, (expected) EOL : 2021-11-30, Agencies : TÜBITAK-UZAY, Orbit : SunSync, Altitude : 679 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : EOS-C, Last update : 2022-02-05 15:35:10" + }, + { + "value": "GOSAT", + "expanded": "Greenhouse gas Observing Satellite", + "numerical_value": 282, + "description": "Launch : 2009-01-23, (expected) EOL : 2021-11-30, Agencies : JAXA,MOE, Orbit : SunSync, Altitude : 666 km, Longitude : null, Inclination : null, Ect : 13:00 description, Status : Operational, Payload : TANSO-CAI,TANSO-FTS, Last update : 2021-12-06 16:58:25" + }, + { + "value": "GOSAT-2", + "expanded": "Greenhouse gas Observing Satellite", + "numerical_value": 283, + "description": "Launch : 2018-10-29, (expected) EOL : 2022-11-30, Agencies : JAXA,MOE, Orbit : SunSync, Altitude : 613 km, Longitude : null, Inclination : null, Ect : 13:00 description, Status : Operational, Payload : TANSO-CAI/2,TANSO-FTS/2, Last update : 2019-03-23 17:21:27" + }, + { + "value": "GOSAT-GW", + "expanded": "Greenhouse gas Observing Satellite", + "numerical_value": 284, + "description": "Launch : 2022-11-30, (expected) EOL : 2029-11-30, Agencies : JAXA,MOE, Orbit : SunSync, Altitude : 666 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Planned, Payload : AMSR-3,TANSO-3, Last update : 2021-10-25 14:54:41" + }, + { + "value": "GPM Core Observatory", + "expanded": "Global Precipitation Measurement mission", + "numerical_value": 285, + "description": "Launch : 2014-02-27, (expected) EOL : 2025-11-30, Agencies : NASA,JAXA, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :65°, Ect : null, Status : Operational, Payload : DPR,GMI (core), Last update : 2021-06-14 11:34:10" + }, + { + "value": "GRACE (2 sats)", + "expanded": "Gravity Recovery and Climate Experiment", + "numerical_value": 286, + "description": "Launch : 2002-03-17, (expected) EOL : 2017-10-27, Agencies : NASA,DLR, Orbit : DRIFT, Altitude : 337 km, Longitude : null, Inclination :89°, Ect : null, Status : Inactive, Payload : BlackJack (GRACE),HAIRS,LRR (DLR),SCA (GRACE),SuperSTAR, Last update : 2020-04-06 01:00:10" + }, + { + "value": "GRACE-FO (2 sats)", + "expanded": "Gravity Recovery and Climate Experiment", + "numerical_value": 287, + "description": "Launch : 2018-05-22, (expected) EOL : 2022-11-30, Agencies : NASA,DLR, Orbit : DRIFT, Altitude : 490 km, Longitude : null, Inclination :89°, Ect : null, Status : Operational, Payload : HAIRS,LRR (DLR),SCA (GRACE),SuperSTAR,Tri-G (GRACE-FO), Last update : 2019-06-11 00:58:20" + }, + { + "value": "HCMM", + "expanded": "Heat Capacity Mapping Mission", + "numerical_value": 288, + "description": "Launch : 1978-04-26, (expected) EOL : 1980-09-30, Agencies : NASA, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 14:00 asc, Status : Inactive, Payload : HCMR, Last update : 2015-07-27 23:53:22" + }, + { + "value": "Himawari-1 (GMS-1)", + "expanded": "Himawari 1st generation (Geostationary Meteorological Satellite)", + "numerical_value": 289, + "description": "Launch : 1977-07-14, (expected) EOL : 1989-06-30, Agencies : JMA,JAXA, Orbit : GEO, Altitude : 35786 km, Longitude :140 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Himawari),SEM (GMS),VISSR (Himawari 1-4), Last update : 2021-03-11 15:40:27" + }, + { + "value": "Himawari-2 (GMS-2)", + "expanded": "Himawari 1st generation (Geostationary Meteorological Satellite)", + "numerical_value": 290, + "description": "Launch : 1981-08-11, (expected) EOL : 1987-11-20, Agencies : JMA,JAXA, Orbit : GEO, Altitude : 35786 km, Longitude :140 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Himawari),SEM (GMS),VISSR (Himawari 1-4), Last update : 2021-03-11 15:40:54" + }, + { + "value": "Himawari-3 (GMS-3)", + "expanded": "Himawari 1st generation (Geostationary Meteorological Satellite)", + "numerical_value": 291, + "description": "Launch : 1984-08-03, (expected) EOL : 1995-06-22, Agencies : JMA,JAXA, Orbit : GEO, Altitude : 35786 km, Longitude :140 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Himawari),SEM (GMS),VISSR (Himawari 1-4), Last update : 2021-03-11 15:41:59" + }, + { + "value": "Himawari-4 (GMS-4)", + "expanded": "Himawari 1st generation (Geostationary Meteorological Satellite)", + "numerical_value": 292, + "description": "Launch : 1989-09-06, (expected) EOL : 2000-02-24, Agencies : JMA,JAXA, Orbit : GEO, Altitude : 35786 km, Longitude :140 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Himawari),SEM (GMS),VISSR (Himawari 1-4), Last update : 2021-03-11 15:42:54" + }, + { + "value": "Himawari-5 (GMS-5)", + "expanded": "Himawari 1st generation (Geostationary Meteorological Satellite)", + "numerical_value": 293, + "description": "Launch : 1995-03-18, (expected) EOL : 2003-05-22, Agencies : JMA,JAXA, Orbit : GEO, Altitude : 35786 km, Longitude :140 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Himawari),VISSR (Himawari-5), Last update : 2021-03-11 15:43:23" + }, + { + "value": "Himawari-6 (MTSAT-1R)", + "expanded": "Himawari 2nd generation (Multifunction Transport Satellite)", + "numerical_value": 294, + "description": "Launch : 2005-02-26, (expected) EOL : 2015-12-04, Agencies : JMA,JCAB, Orbit : GEO, Altitude : 35786 km, Longitude :140 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Himawari),JAMI, Last update : 2021-03-11 15:44:09" + }, + { + "value": "Himawari-7 (MTSAT-2)", + "expanded": "Himawari 2nd generation (Multifunction Transport Satellite)", + "numerical_value": 295, + "description": "Launch : 2006-02-18, (expected) EOL : 2016-05-10, Agencies : JMA,JCAB, Orbit : GEO, Altitude : 35786 km, Longitude :145 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Himawari),IMAGER (MTSAT-2), Last update : 2021-03-11 15:44:35" + }, + { + "value": "Himawari-8", + "expanded": "Himawari 3rd generation", + "numerical_value": 296, + "description": "Launch : 2014-10-07, (expected) EOL : 2029-11-30, Agencies : JMA, Orbit : GEO, Altitude : 35786 km, Longitude :140.7 ° E, Inclination : null, Ect : null, Status : Operational, Payload : AHI,DCS (Himawari),SEDA, Last update : 2022-01-31 08:04:23" + }, + { + "value": "Himawari-9", + "expanded": "Himawari 3rd generation", + "numerical_value": 297, + "description": "Launch : 2016-11-02, (expected) EOL : 2029-11-30, Agencies : JMA, Orbit : GEO, Altitude : 35786 km, Longitude :140.7 ° E, Inclination : null, Ect : null, Status : Stand-by, Payload : AHI,DCS (Himawari),SEDA, Last update : 2021-03-11 15:46:03" + }, + { + "value": "HJ-1A", + "expanded": "Huan Jing", + "numerical_value": 298, + "description": "Launch : 2008-09-06, (expected) EOL : 2017-11-30, Agencies : CRESDA,CAST, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : HSI,WVC, Last update : 2019-12-28 20:13:00" + }, + { + "value": "HJ-1B", + "expanded": "Huan Jing", + "numerical_value": 299, + "description": "Launch : 2008-09-06, (expected) EOL : 2017-11-30, Agencies : CRESDA,CAST, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Presumably inactive, Payload : IRMSS (HJ),WVC, Last update : 2019-12-28 20:11:57" + }, + { + "value": "HJ-1C", + "expanded": "Huan Jing", + "numerical_value": 300, + "description": "Launch : 2012-11-18, (expected) EOL : 2021-11-30, Agencies : CRESDA,CAST, Orbit : SunSync, Altitude : 502 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Unclear, Payload : SAR-S, Last update : 2021-12-29 18:09:05" + }, + { + "value": "HJ-2A", + "expanded": "Huan Jing", + "numerical_value": 301, + "description": "Launch : 2020-09-27, (expected) EOL : 2024-11-30, Agencies : CRESDA,CAST, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HSI-2,IRMSS-2 (HJ),WVC-2, Last update : 2021-03-05 21:50:42" + }, + { + "value": "HJ-2B", + "expanded": "Huan Jing", + "numerical_value": 302, + "description": "Launch : 2020-09-27, (expected) EOL : 2024-11-30, Agencies : CRESDA,CAST, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HSI-2,IRMSS-2 (HJ),WVC-2, Last update : 2021-03-05 21:51:45" + }, + { + "value": "HRSAT-1A", + "expanded": "High Resolution Satellite - 1", + "numerical_value": 303, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 660 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : HRSAT-1, Last update : 2021-11-25 14:37:29" + }, + { + "value": "HRSAT-1B", + "expanded": "High Resolution Satellite - 1", + "numerical_value": 304, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 660 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : HRSAT-1, Last update : 2021-11-25 14:37:46" + }, + { + "value": "HRSAT-1C", + "expanded": "High Resolution Satellite - 1", + "numerical_value": 305, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 660 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : HRSAT-1, Last update : 2021-11-25 14:38:06" + }, + { + "value": "HRWS-SAR", + "expanded": "TerraSAR", + "numerical_value": 306, + "description": "Launch : 2025-11-30, (expected) EOL : 2033-11-30, Agencies : DLR, Orbit : SunSync, Altitude : 515 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Mission concept, Payload : HRWS-SAR, Last update : 2021-01-16 18:01:45" + }, + { + "value": "HY-1A", + "expanded": "Hai Yang 1", + "numerical_value": 307, + "description": "Launch : 2002-05-15, (expected) EOL : 2004-03-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 795 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : COCTS,CZI, Last update : 2020-06-11 10:44:45" + }, + { + "value": "HY-1B", + "expanded": "Hai Yang 1", + "numerical_value": 308, + "description": "Launch : 2007-04-11, (expected) EOL : 2016-02-13, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 798 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : COCTS,CZI, Last update : 2020-09-17 11:49:36" + }, + { + "value": "HY-1C", + "expanded": "Hai Yang 1", + "numerical_value": 309, + "description": "Launch : 2018-09-07, (expected) EOL : 2023-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 785 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : COCTS,CZI, Last update : 2020-06-11 15:15:22" + }, + { + "value": "HY-1D", + "expanded": "Hai Yang 1", + "numerical_value": 310, + "description": "Launch : 2020-06-10, (expected) EOL : 2025-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 798 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : COCTS,CZI, Last update : 2021-03-05 14:28:17" + }, + { + "value": "HY-1E", + "expanded": "Hai Yang 1", + "numerical_value": 311, + "description": "Launch : 2021-11-30, (expected) EOL : 2027-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 798 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Planned, Payload : COCTS,CZI, Last update : 2021-10-22 14:13:18" + }, + { + "value": "HY-1F", + "expanded": "Hai Yang 1", + "numerical_value": 312, + "description": "Launch : 2023-11-30, (expected) EOL : 2029-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 798 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Planned, Payload : COCTS,CZI, Last update : 2021-10-22 14:13:53" + }, + { + "value": "HY-2A", + "expanded": "Hai Yang 2", + "numerical_value": 313, + "description": "Launch : 2011-08-16, (expected) EOL : 2021-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 975 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : ALT (sso),CMR,DORIS,LRA (NASA),MWRI (HY-2),SCAT (sso), Last update : 2022-01-26 14:59:37" + }, + { + "value": "HY-2B", + "expanded": "Hai Yang 2", + "numerical_value": 314, + "description": "Launch : 2018-10-25, (expected) EOL : 2022-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 973 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : ALT (sso),CMR,DORIS,LRA (NASA),MWRI (HY-2),SCAT (sso), Last update : 2021-09-17 10:29:30" + }, + { + "value": "HY-2C", + "expanded": "Hai Yang 2", + "numerical_value": 315, + "description": "Launch : 2020-09-21, (expected) EOL : 2024-11-30, Agencies : NSOAS,CAST, Orbit : DRIFT, Altitude : 1336 km, Longitude : null, Inclination :66°, Ect : null, Status : Operational, Payload : ALT (high),CMR,DORIS,LRA (NASA),SCAT (incl), Last update : 2021-09-17 10:34:21" + }, + { + "value": "HY-2D", + "expanded": "Hai Yang 2", + "numerical_value": 316, + "description": "Launch : 2021-05-19, (expected) EOL : 2025-11-30, Agencies : NSOAS,CAST, Orbit : DRIFT, Altitude : 973 km, Longitude : null, Inclination :66°, Ect : null, Status : Operational, Payload : ALT (sso),CMR,DORIS,LRA (NASA),SCAT (sso), Last update : 2022-01-26 15:04:58" + }, + { + "value": "HY-2E", + "expanded": "Hai Yang 2", + "numerical_value": 317, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 973 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : ALT (sso),CMR,DORIS,LRA (NASA),SCAT (sso), Last update : 2021-08-26 17:45:05" + }, + { + "value": "HY-2F", + "expanded": "Hai Yang 2", + "numerical_value": 318, + "description": "Launch : 2023-11-30, (expected) EOL : 2028-11-30, Agencies : NSOAS,CAST, Orbit : DRIFT, Altitude : 1336 km, Longitude : null, Inclination :66°, Ect : null, Status : Planned, Payload : ALT (high),CMR,DORIS,LRA (NASA),SCAT (incl), Last update : 2021-08-26 17:46:18" + }, + { + "value": "HY-2G", + "expanded": "Hai Yang 2", + "numerical_value": 319, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : NSOAS,CAST, Orbit : DRIFT, Altitude : 1336 km, Longitude : null, Inclination :66°, Ect : null, Status : Planned, Payload : ALT (high),CMR,DORIS,LRA (NASA),SCAT (incl), Last update : 2021-08-26 17:47:38" + }, + { + "value": "HY-2H", + "expanded": "Hai Yang 2", + "numerical_value": 320, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : 973 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : null, Last update : 2021-10-22 14:19:35" + }, + { + "value": "HY-3A", + "expanded": "Hai Yang 3", + "numerical_value": 321, + "description": "Launch : 2021-11-30, (expected) EOL : 2028-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : TBD km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : W-SAR, Last update : 2022-01-17 10:52:24" + }, + { + "value": "HY-3B", + "expanded": "Hai Yang 3", + "numerical_value": 322, + "description": "Launch : 2021-11-30, (expected) EOL : 2028-11-30, Agencies : NSOAS,CAST, Orbit : SunSync, Altitude : TBD km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : W-SAR, Last update : 2022-01-17 10:53:51" + }, + { + "value": "HY-3C", + "expanded": "Hai Yang 3", + "numerical_value": 323, + "description": "Launch : 2023-11-30, (expected) EOL : 2031-11-30, Agencies : NSOAS,CAST, Orbit : GEO, Altitude : 35786 km, Longitude :TBD , Inclination : null, Ect : null, Status : Planned, Payload : null, Last update : 2021-10-22 14:19:08" + }, + { + "value": "HY-3D", + "expanded": "Hai Yang 3", + "numerical_value": 324, + "description": "Launch : 2024-11-30, (expected) EOL : 2032-11-30, Agencies : NSOAS,CAST, Orbit : GEO, Altitude : 35786 km, Longitude :TBD , Inclination : null, Ect : null, Status : Mission concept, Payload : null, Last update : 2020-08-20 20:19:50" + }, + { + "value": "HySIS", + "expanded": "Hyper Spectral Imaging Spectrometer", + "numerical_value": 325, + "description": "Launch : 2018-11-29, (expected) EOL : 2022-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:34 description, Status : Operational, Payload : HySIS, Last update : 2020-01-04 14:02:51" + }, + { + "value": "HyspIRI", + "expanded": "Hyperspectral Infra-Red Imager", + "numerical_value": 326, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : TBD km, Longitude : null, Inclination : null, Ect : null, Status : Mission concept, Payload : null, Last update : 2016-06-30 01:54:05" + }, + { + "value": "IBEX", + "expanded": "Interstellar Boundary Explorer", + "numerical_value": 327, + "description": "Launch : 2008-10-19, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :11°, Ect : null, Status : Operational, Payload : IBEX, Last update : 2022-01-03 15:23:02" + }, + { + "value": "ICESat", + "expanded": "Ice, Cloud and land Elevation Satellite", + "numerical_value": 328, + "description": "Launch : 2003-01-12, (expected) EOL : 2010-08-14, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :94°, Ect : null, Status : Inactive, Payload : GLAS,LRA (NASA),TRSR, Last update : 2015-07-28 00:17:52" + }, + { + "value": "ICESat-2", + "expanded": "Ice, Cloud and land Elevation Satellite", + "numerical_value": 329, + "description": "Launch : 2018-09-15, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 481 km, Longitude : null, Inclination :94°, Ect : null, Status : Operational, Payload : ATLAS,LRA (NASA),TRSR, Last update : 2021-12-29 21:40:34" + }, + { + "value": "ICEYE", + "expanded": "ICEYE", + "numerical_value": 330, + "description": "Launch : 2018-12-03, (expected) EOL : 2039-11-30, Agencies : ICEYE,ESA, Orbit : SunSync, Altitude : 600 km, Longitude : null, Inclination : null, Ect : TBD, Status : Operational, Payload : ICEYE SAR, Last update : 2022-01-15 13:56:39" + }, + { + "value": "ICON", + "expanded": " Ionospheric Connection Explorer ", + "numerical_value": 331, + "description": "Launch : 2019-10-11, (expected) EOL : 2023-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 575 km, Longitude : null, Inclination :27°, Ect : null, Status : Operational, Payload : EUV (ICON),FUV (ICON),IVM,MIGHTI, Last update : 2020-02-25 21:58:35" + }, + { + "value": "Ikonos", + "expanded": "GeoEye", + "numerical_value": 332, + "description": "Launch : 1999-09-24, (expected) EOL : 2015-03-31, Agencies : Maxar,GeoEye, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : OSA, Last update : 2017-08-03 10:33:23" + }, + { + "value": "IMAGE", + "expanded": "Imager for Magnetopause-to-Aurora Global Exploration", + "numerical_value": 333, + "description": "Launch : 2000-03-25, (expected) EOL : 2005-12-15, Agencies : NASA, Orbit : MAG, Altitude : 6782 km, Longitude : null, Inclination :90°, Ect : null, Status : Inactive, Payload : EUV,FUV/GEO,FUV/SI,FUV/WIC,HENA,LENA,MENA,RPI, Last update : 2015-07-28 11:39:42" + }, + { + "value": "IMS-1", + "expanded": "Indian Mini-Satellite", + "numerical_value": 334, + "description": "Launch : 2008-04-28, (expected) EOL : 2012-09-20, Agencies : ISRO, Orbit : SunSync, Altitude : 632 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : HySI-T,Mx-T, Last update : 2018-03-20 12:29:30" + }, + { + "value": "INSAT-1A", + "expanded": "Indian National Satellite - 1", + "numerical_value": 335, + "description": "Launch : 1982-04-10, (expected) EOL : 1982-09-06, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),VHRR (INSAT), Last update : 2015-07-28 12:23:57" + }, + { + "value": "INSAT-1B", + "expanded": "Indian National Satellite - 1", + "numerical_value": 336, + "description": "Launch : 1983-08-30, (expected) EOL : 1993-07-15, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),VHRR (INSAT), Last update : 2015-07-28 12:24:40" + }, + { + "value": "INSAT-1C", + "expanded": "Indian National Satellite - 1", + "numerical_value": 337, + "description": "Launch : 1988-07-22, (expected) EOL : 1989-11-22, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :93.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),VHRR (INSAT), Last update : 2015-07-28 12:25:13" + }, + { + "value": "INSAT-1D", + "expanded": "Indian National Satellite - 1", + "numerical_value": 338, + "description": "Launch : 1990-06-12, (expected) EOL : 2002-05-14, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),VHRR (INSAT), Last update : 2015-07-28 12:25:50" + }, + { + "value": "INSAT-2A", + "expanded": "Indian National Satellite - 2", + "numerical_value": 339, + "description": "Launch : 1992-07-10, (expected) EOL : 2002-05-30, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),SAS&R,VHRR (INSAT), Last update : 2015-07-28 12:26:29" + }, + { + "value": "INSAT-2B", + "expanded": "Indian National Satellite - 2", + "numerical_value": 340, + "description": "Launch : 1993-07-23, (expected) EOL : 2004-07-01, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :93.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),SAS&R,VHRR (INSAT), Last update : 2015-07-28 12:27:14" + }, + { + "value": "INSAT-2C", + "expanded": "Indian National Satellite - 2", + "numerical_value": 341, + "description": "Launch : 1995-12-07, (expected) EOL : 2002-04-15, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :93.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : null, Last update : 2015-07-28 12:27:58" + }, + { + "value": "INSAT-2D", + "expanded": "Indian National Satellite - 2", + "numerical_value": 342, + "description": "Launch : 1997-06-04, (expected) EOL : 1997-10-04, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :93.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),SAS&R,VHRR (INSAT), Last update : 2015-07-28 12:28:35" + }, + { + "value": "INSAT-2E", + "expanded": "Indian National Satellite - 2", + "numerical_value": 343, + "description": "Launch : 1999-04-03, (expected) EOL : 2012-04-15, Agencies : ISRO, Orbit : GEO, Altitude : 35786 km, Longitude :83 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : CCD,DCS (INSAT),SAS&R,VHRR (INSAT), Last update : 2015-07-28 12:29:33" + }, + { + "value": "INSAT-3A", + "expanded": "Indian National Satellite - 3", + "numerical_value": 344, + "description": "Launch : 2003-04-10, (expected) EOL : 2016-08-31, Agencies : ISRO,IMD, Orbit : GEO, Altitude : 35786 km, Longitude :93.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : CCD,DCS (INSAT),SAS&R,VHRR (INSAT), Last update : 2017-07-17 17:09:14" + }, + { + "value": "INSAT-3B", + "expanded": "Indian National Satellite - 3", + "numerical_value": 345, + "description": "Launch : 2000-03-22, (expected) EOL : 2010-11-02, Agencies : ISRO,IMD, Orbit : GEO, Altitude : 35786 km, Longitude :83 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : null, Last update : 2017-01-20 10:45:19" + }, + { + "value": "INSAT-3C", + "expanded": "Indian National Satellite - 3", + "numerical_value": 346, + "description": "Launch : 2002-01-24, (expected) EOL : 2013-11-30, Agencies : ISRO,IMD, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : null, Last update : 2017-07-17 17:18:07" + }, + { + "value": "INSAT-3D", + "expanded": "Indian National Satellite - 3", + "numerical_value": 347, + "description": "Launch : 2013-07-25, (expected) EOL : 2021-11-30, Agencies : ISRO,IMD, Orbit : GEO, Altitude : 35786 km, Longitude :82 ° E, Inclination : null, Ect : null, Status : Operational, Payload : DCS (INSAT),IMAGER (INSAT),SAS&R,SOUNDER (INSAT), Last update : 2021-06-10 13:52:04" + }, + { + "value": "INSAT-3DR", + "expanded": "Indian National Satellite - 3", + "numerical_value": 348, + "description": "Launch : 2016-09-08, (expected) EOL : 2024-11-30, Agencies : ISRO,IMD, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Operational, Payload : DCS (INSAT),IMAGER (INSAT),SAS&R,SOUNDER (INSAT), Last update : 2021-06-10 13:39:40" + }, + { + "value": "INSAT-3DS", + "expanded": "Indian National Satellite - 3", + "numerical_value": 349, + "description": "Launch : 2021-11-30, (expected) EOL : 2028-11-30, Agencies : ISRO,IMD, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Planned, Payload : DCS (INSAT),IMAGER (INSAT),SAS&R,SOUNDER (INSAT), Last update : 2021-06-10 13:36:32" + }, + { + "value": "Ionosphera-M N1 & N2", + "expanded": "Ionozond", + "numerical_value": 350, + "description": "Launch : 2021-11-30, (expected) EOL : 2024-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : ESEP,GALS/1,LAERTES,MAYAK,NBK/2,Ozonometer-TM,PES,SPER/1,ST/1, Last update : 2021-11-26 19:08:42" + }, + { + "value": "Ionosphera-M N3 & N4", + "expanded": "Ionozond", + "numerical_value": 351, + "description": "Launch : 2022-11-30, (expected) EOL : 2025-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : ESEP,GALS/1,LAERTES,MAYAK,NBK/2,Ozonometer-TM,PES,SPER/1,ST/1, Last update : 2021-11-26 19:09:20" + }, + { + "value": "IRIS", + "expanded": "Interface Region Imaging Spectrograph", + "numerical_value": 352, + "description": "Launch : 2013-06-28, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 649 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : IRIS (IRIS), Last update : 2022-01-03 15:20:22" + }, + { + "value": "IRS-1A", + "expanded": "Indian Remote-sensing Satellite", + "numerical_value": 353, + "description": "Launch : 1988-03-17, (expected) EOL : 1992-07-01, Agencies : ISRO, Orbit : SunSync, Altitude : 904 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : LISS-1,LISS-2, Last update : 2015-07-28 12:33:59" + }, + { + "value": "IRS-1B", + "expanded": "Indian Remote-sensing Satellite", + "numerical_value": 354, + "description": "Launch : 1991-08-29, (expected) EOL : 2001-07-01, Agencies : ISRO, Orbit : SunSync, Altitude : 904 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : LISS-1,LISS-2, Last update : 2015-07-28 12:34:49" + }, + { + "value": "IRS-1C", + "expanded": "Indian Remote-sensing Satellite", + "numerical_value": 355, + "description": "Launch : 1995-12-28, (expected) EOL : 2005-09-21, Agencies : ISRO, Orbit : SunSync, Altitude : 817 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : LISS-3 (IRS-1),PAN (IRS),WiFS, Last update : 2015-07-28 12:35:39" + }, + { + "value": "IRS-1D", + "expanded": "Indian Remote-sensing Satellite", + "numerical_value": 356, + "description": "Launch : 1997-09-29, (expected) EOL : 2010-01-15, Agencies : ISRO, Orbit : SunSync, Altitude : 778 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : LISS-3 (IRS-1),PAN (IRS),WiFS, Last update : 2015-07-28 12:36:27" + }, + { + "value": "IRS-1E (IRS-P1)", + "expanded": "Indian Remote-sensing Satellite", + "numerical_value": 357, + "description": "Launch : 1993-09-20, (expected) EOL : 1993-09-20, Agencies : ISRO, Orbit : SunSync, Altitude : 904 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Lost at launch, Payload : LISS-1,MEOSS, Last update : 2015-07-28 12:37:52" + }, + { + "value": "IRS-P2", + "expanded": "Indian Remote-sensing Satellite", + "numerical_value": 358, + "description": "Launch : 1994-10-15, (expected) EOL : 1997-09-15, Agencies : ISRO, Orbit : SunSync, Altitude : 817 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : LISS-2M, Last update : 2015-07-28 12:38:32" + }, + { + "value": "IRS-P3", + "expanded": "Indian Remote-sensing Satellite", + "numerical_value": 359, + "description": "Launch : 1996-03-21, (expected) EOL : 2004-10-15, Agencies : ISRO, Orbit : SunSync, Altitude : 817 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : IXAE,MOS,WiFS (IRS-P3), Last update : 2015-07-28 12:39:15" + }, + { + "value": "ISS ASIM", + "expanded": "International Space Station", + "numerical_value": 360, + "description": "Launch : 2018-04-02, (expected) EOL : 2021-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : MMIA,MXGS, Last update : 2022-01-03 16:14:09" + }, + { + "value": "ISS CATS", + "expanded": "International Space Station", + "numerical_value": 361, + "description": "Launch : 2015-01-10, (expected) EOL : 2016-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Inactive, Payload : CATS, Last update : 2018-12-28 01:22:51" + }, + { + "value": "ISS CLARREO-PF", + "expanded": "International Space Station", + "numerical_value": 362, + "description": "Launch : 2022-11-30, (expected) EOL : 2023-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Planned, Payload : HySICS, Last update : 2021-06-14 14:39:54" + }, + { + "value": "ISS COWVR", + "expanded": "International Space Station", + "numerical_value": 363, + "description": "Launch : 2021-12-21, (expected) EOL : 2023-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Commissioning, Payload : COWVR, Last update : 2021-12-23 18:28:24" + }, + { + "value": "ISS DESIS", + "expanded": "International Space Station", + "numerical_value": 364, + "description": "Launch : 2018-06-29, (expected) EOL : 2022-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : null, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : DESIS, Last update : 2019-07-17 12:52:25" + }, + { + "value": "ISS ECOSTRESS", + "expanded": "International Space Station", + "numerical_value": 365, + "description": "Launch : 2018-06-29, (expected) EOL : 2021-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : ECOSTRESS, Last update : 2022-01-03 15:38:17" + }, + { + "value": "ISS EMIT", + "expanded": "International Space Station", + "numerical_value": 366, + "description": "Launch : 2021-11-30, (expected) EOL : 2022-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Planned, Payload : EMIT, Last update : 2021-06-14 14:41:04" + }, + { + "value": "ISS GARI", + "expanded": "International Space Station", + "numerical_value": 367, + "description": "Launch : 2021-12-21, (expected) EOL : 2023-01-10, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : GARI, Last update : 2022-01-04 19:27:31" + }, + { + "value": "ISS GEDI", + "expanded": "International Space Station", + "numerical_value": 368, + "description": "Launch : 2018-12-05, (expected) EOL : 2022-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : GEDI Lidar, Last update : 2021-10-07 11:40:57" + }, + { + "value": "ISS HICO", + "expanded": "International Space Station", + "numerical_value": 369, + "description": "Launch : 2009-09-25, (expected) EOL : 2014-09-24, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Inactive, Payload : HICO, Last update : 2015-07-28 12:40:46" + }, + { + "value": "ISS HISUI", + "expanded": "International Space Station", + "numerical_value": 370, + "description": "Launch : 2019-12-05, (expected) EOL : 2021-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : HISUI, Last update : 2020-04-01 01:10:30" + }, + { + "value": "ISS LIS", + "expanded": "International Space Station", + "numerical_value": 371, + "description": "Launch : 2017-02-19, (expected) EOL : 2022-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : LIS (ISS), Last update : 2021-06-14 14:31:25" + }, + { + "value": "ISS MOLI", + "expanded": "International Space Station", + "numerical_value": 372, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Planned, Payload : MOLI imager,MOLI lidar, Last update : 2019-10-21 19:55:28" + }, + { + "value": "ISS OCO-3", + "expanded": "International Space Station", + "numerical_value": 373, + "description": "Launch : 2019-05-04, (expected) EOL : 2021-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : OCO (ISS), Last update : 2021-10-07 11:40:27" + }, + { + "value": "ISS RainCube", + "expanded": "International Space Station", + "numerical_value": 374, + "description": "Launch : 2018-05-21, (expected) EOL : 2020-12-22, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Inactive, Payload : RainCube, Last update : 2022-01-03 19:00:21" + }, + { + "value": "ISS RapidScat", + "expanded": "International Space Station", + "numerical_value": 375, + "description": "Launch : 2014-09-21, (expected) EOL : 2016-08-19, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Inactive, Payload : RapidScat, Last update : 2019-10-30 19:17:25" + }, + { + "value": "ISS SAGE-III", + "expanded": "International Space Station", + "numerical_value": 376, + "description": "Launch : 2017-02-19, (expected) EOL : 2025-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : SAGE-III, Last update : 2021-06-14 14:30:40" + }, + { + "value": "ISS TEMPEST-1", + "expanded": "International Space Station", + "numerical_value": 377, + "description": "Launch : 2021-12-21, (expected) EOL : 2024-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 400 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Commissioning, Payload : MM Radiometer, Last update : 2022-01-04 22:13:03" + }, + { + "value": "ISS TEMPEST-D", + "expanded": "International Space Station", + "numerical_value": 378, + "description": "Launch : 2018-05-21, (expected) EOL : 2021-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 400 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : MM Radiometer, Last update : 2022-01-04 22:05:57" + }, + { + "value": "ISS TSIS-1", + "expanded": "International Space Station", + "numerical_value": 379, + "description": "Launch : 2017-12-15, (expected) EOL : 2022-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Operational, Payload : TSIS, Last update : 2021-06-14 14:32:42" + }, + { + "value": "ISS TSIS-2", + "expanded": "International Space Station", + "numerical_value": 380, + "description": "Launch : 2022-11-30, (expected) EOL : 2025-11-30, Agencies : NASA,CSA,ESA,JAXA,Roscosmos, Orbit : DRIFT, Altitude : 407 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Planned, Payload : TSIS, Last update : 2021-06-14 14:36:01" + }, + { + "value": "ITOS-1 (TIROS-M)", + "expanded": "NOAA 3rd generation / Improved TIROS Operational System", + "numerical_value": 381, + "description": "Launch : 1970-01-23, (expected) EOL : 1971-06-18, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1470 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : APT,AVCS,FPR,SPM,SR, Last update : 2015-07-28 12:42:22" + }, + { + "value": "JASON-1", + "expanded": "Joint Altimetry Satellite Oceanography Network", + "numerical_value": 382, + "description": "Launch : 2001-12-07, (expected) EOL : 2013-07-01, Agencies : NASA,CNES,EUMETSAT,NOAA, Orbit : DRIFT, Altitude : 1324 km, Longitude : null, Inclination :66°, Ect : null, Status : Inactive, Payload : DORIS,JMR,LRA (NASA),Poseidon-2,TRSR, Last update : 2019-10-29 21:05:57" + }, + { + "value": "JASON-2", + "expanded": "Joint Altimetry Satellite Oceanography Network", + "numerical_value": 383, + "description": "Launch : 2008-06-20, (expected) EOL : 2019-10-01, Agencies : NASA,CNES,EUMETSAT,NOAA, Orbit : DRIFT, Altitude : 1309.5 km, Longitude : null, Inclination :66°, Ect : null, Status : Inactive, Payload : AMR,CARMEN,DORIS,LPT,LRA (NASA),Poseidon-3,TRSR, Last update : 2021-05-20 17:30:33" + }, + { + "value": "JASON-3", + "expanded": "Joint Altimetry Satellite Oceanography Network", + "numerical_value": 384, + "description": "Launch : 2016-01-17, (expected) EOL : 2022-11-30, Agencies : NASA,CNES,EUMETSAT,NOAA, Orbit : DRIFT, Altitude : 1336 km, Longitude : null, Inclination :66°, Ect : null, Status : Operational, Payload : AMR,CARMEN,DORIS,LPT,LRA (NASA),Poseidon-3B,TRSR, Last update : 2021-12-01 18:46:22" + }, + { + "value": "JERS", + "expanded": "Japanese Earth Resources Satellite", + "numerical_value": 385, + "description": "Launch : 1992-02-11, (expected) EOL : 1998-10-11, Agencies : JAXA, Orbit : SunSync, Altitude : 568 km, Longitude : null, Inclination : null, Ect : 10:45 description, Status : Inactive, Payload : OPS (JERS),SAR (JERS), Last update : 2015-07-28 12:45:03" + }, + { + "value": "Jilin-1", + "expanded": "Jilin", + "numerical_value": 386, + "description": "Launch : 2015-10-07, (expected) EOL : 2021-11-30, Agencies : CRESDA, Orbit : SunSync, Altitude : 658 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : PMS-2, Last update : 2022-01-03 15:45:29" + }, + { + "value": "JPSS-2", + "expanded": "Joint Polar Satellite System", + "numerical_value": 387, + "description": "Launch : 2022-08-31, (expected) EOL : 2028-11-30, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 824 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Planned, Payload : ATMS,CrIS,OMPS-limb,OMPS-nadir,RBI,VIIRS, Last update : 2021-12-01 18:26:40" + }, + { + "value": "JPSS-3", + "expanded": "Joint Polar Satellite System", + "numerical_value": 388, + "description": "Launch : 2026-11-30, (expected) EOL : 2033-11-30, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 824 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Planned, Payload : ATMS,CrIS,Libera,OMPS-limb,OMPS-nadir,VIIRS, Last update : 2021-05-20 14:17:01" + }, + { + "value": "JPSS-4", + "expanded": "Joint Polar Satellite System", + "numerical_value": 389, + "description": "Launch : 2031-11-30, (expected) EOL : 2038-11-30, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 824 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Planned, Payload : ATMS,CrIS,Libera,OMPS-limb,OMPS-nadir,VIIRS, Last update : 2021-05-20 14:26:43" + }, + { + "value": "Kalpana-1", + "expanded": "Kalpana", + "numerical_value": 390, + "description": "Launch : 2002-09-12, (expected) EOL : 2017-08-31, Agencies : ISRO,IMD, Orbit : GEO, Altitude : 35786 km, Longitude :74 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (INSAT),VHRR (INSAT), Last update : 2018-10-06 12:54:37" + }, + { + "value": "KANOPUS-V-IK-1", + "expanded": "KANOPUS Vulkan", + "numerical_value": 391, + "description": "Launch : 2017-07-14, (expected) EOL : 2021-11-30, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 510 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : MSS (KANOPUS),MSU-IK-SR,PSS, Last update : 2017-10-18 01:15:27" + }, + { + "value": "KANOPUS-V1", + "expanded": "KANOPUS Vulkan", + "numerical_value": 392, + "description": "Launch : 2012-07-22, (expected) EOL : 2020-07-01, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 510 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : MSS (KANOPUS),PSS, Last update : 2022-01-12 20:23:07" + }, + { + "value": "KANOPUS-V3", + "expanded": "KANOPUS Vulkan", + "numerical_value": 393, + "description": "Launch : 2018-02-01, (expected) EOL : 2022-11-30, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 510 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : MSS (KANOPUS),PSS, Last update : 2022-01-12 20:24:41" + }, + { + "value": "KANOPUS-V4", + "expanded": "KANOPUS Vulkan", + "numerical_value": 394, + "description": "Launch : 2018-02-01, (expected) EOL : 2022-11-30, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 510 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : MSS (KANOPUS),PSS, Last update : 2022-01-12 20:24:55" + }, + { + "value": "KANOPUS-V5", + "expanded": "KANOPUS Vulkan", + "numerical_value": 395, + "description": "Launch : 2018-12-27, (expected) EOL : 2022-11-30, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 510 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : MSS (KANOPUS),PSS, Last update : 2022-01-12 20:25:14" + }, + { + "value": "KANOPUS-V6", + "expanded": "KANOPUS Vulkan", + "numerical_value": 396, + "description": "Launch : 2018-12-27, (expected) EOL : 2022-11-30, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 510 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : MSS (KANOPUS),PSS, Last update : 2022-01-12 20:25:32" + }, + { + "value": "KazEOSat-1", + "expanded": "Kazakhstan Earth Observation Satellite", + "numerical_value": 397, + "description": "Launch : 2014-04-30, (expected) EOL : 2021-11-30, Agencies : Kazcosmos, Orbit : SunSync, Altitude : 759 km, Longitude : null, Inclination : null, Ect : 10:15 description, Status : Unclear, Payload : NAOMI (KazEOSat), Last update : 2022-01-03 15:31:35" + }, + { + "value": "KazEOSat-2", + "expanded": "Kazakhstan Earth Observation Satellite", + "numerical_value": 398, + "description": "Launch : 2014-06-19, (expected) EOL : 2021-11-30, Agencies : Kazcosmos, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Unclear, Payload : KEIS, Last update : 2022-01-03 15:31:56" + }, + { + "value": "KOMPSAT-1", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 399, + "description": "Launch : 1999-12-20, (expected) EOL : 2008-01-31, Agencies : KARI, Orbit : SunSync, Altitude : 685 km, Longitude : null, Inclination : null, Ect : 10:50 asc, Status : Inactive, Payload : EOC,OSMI,SPS/HEPD,SPS/IMS, Last update : 2015-07-28 12:51:10" + }, + { + "value": "KOMPSAT-2", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 400, + "description": "Launch : 2006-07-28, (expected) EOL : 2021-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 685 km, Longitude : null, Inclination : null, Ect : 10:50 asc, Status : Operational, Payload : MSC, Last update : 2021-12-29 18:22:42" + }, + { + "value": "KOMPSAT-3", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 401, + "description": "Launch : 2012-05-17, (expected) EOL : 2021-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 675 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : AEISS, Last update : 2021-12-29 21:25:54" + }, + { + "value": "KOMPSAT-3A", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 402, + "description": "Launch : 2015-03-26, (expected) EOL : 2021-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 528 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : AEISS,IIP, Last update : 2022-01-03 12:43:00" + }, + { + "value": "KOMPSAT-5", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 403, + "description": "Launch : 2013-08-22, (expected) EOL : 2021-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 550 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : AOPOD,COSI,LRR (DLR), Last update : 2021-12-29 21:44:04" + }, + { + "value": "KOMPSAT-6", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 404, + "description": "Launch : 2022-09-30, (expected) EOL : 2025-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 550 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Planned, Payload : COSI, Last update : 2021-11-25 14:49:23" + }, + { + "value": "KOMPSAT-7", + "expanded": "Korea Multi-Purpose Satellite", + "numerical_value": 405, + "description": "Launch : 2022-06-30, (expected) EOL : 2024-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 685 km, Longitude : null, Inclination : null, Ect : 10:50 asc, Status : Planned, Payload : AEISS-HR, Last update : 2021-11-25 14:48:00" + }, + { + "value": "Kondor-E", + "expanded": "Kondor-Experimental SAR Spacecraft", + "numerical_value": 406, + "description": "Launch : 2013-06-27, (expected) EOL : 2013-11-30, Agencies : NPOMash, Orbit : DRIFT, Altitude : 500 km, Longitude : null, Inclination :74.75°, Ect : null, Status : Inactive, Payload : SAR-10, Last update : 2019-10-27 13:29:47" + }, + { + "value": "Kondor-E1", + "expanded": "Kondor-Experimental SAR Spacecraft", + "numerical_value": 407, + "description": "Launch : 2014-12-19, (expected) EOL : 2018-11-30, Agencies : NPOMash, Orbit : DRIFT, Altitude : 500 km, Longitude : null, Inclination :74.75°, Ect : null, Status : Presumably inactive, Payload : SAR-10, Last update : 2020-01-01 03:19:51" + }, + { + "value": "LAGEOS-1", + "expanded": "Laser Geodynamics Satellite", + "numerical_value": 408, + "description": "Launch : 1976-05-04, (expected) EOL : 2025-11-30, Agencies : ASI,NASA, Orbit : DRIFT, Altitude : 5900 km, Longitude : null, Inclination :109.8°, Ect : null, Status : Operational, Payload : LRA (ASI), Last update : 2018-12-28 15:53:38" + }, + { + "value": "LAGEOS-2", + "expanded": "Laser Geodynamics Satellite", + "numerical_value": 409, + "description": "Launch : 1992-10-22, (expected) EOL : 2041-11-30, Agencies : ASI,NASA, Orbit : DRIFT, Altitude : 5780 km, Longitude : null, Inclination :52.6°, Ect : null, Status : Operational, Payload : LRA (ASI), Last update : 2018-12-28 15:54:44" + }, + { + "value": "Landsat-1 (ERTS)", + "expanded": "Landsat", + "numerical_value": 410, + "description": "Launch : 1972-07-23, (expected) EOL : 1978-01-02, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 907 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Inactive, Payload : DCS (Landsat),MSS,RBV, Last update : 2015-07-28 18:39:13" + }, + { + "value": "Landsat-2", + "expanded": "Landsat", + "numerical_value": 411, + "description": "Launch : 1975-01-22, (expected) EOL : 1982-02-25, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 908 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Inactive, Payload : DCS (Landsat),MSS,RBV, Last update : 2015-07-28 18:40:09" + }, + { + "value": "Landsat-3", + "expanded": "Landsat", + "numerical_value": 412, + "description": "Launch : 1978-03-05, (expected) EOL : 1983-03-31, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 915 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Inactive, Payload : DCS (Landsat),MSS,RBV, Last update : 2015-07-28 18:41:07" + }, + { + "value": "Landsat-4", + "expanded": "Landsat", + "numerical_value": 413, + "description": "Launch : 1982-07-16, (expected) EOL : 1992-11-30, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Inactive, Payload : GPS (NASA),MSS,TM, Last update : 2015-07-28 18:50:17" + }, + { + "value": "Landsat-5", + "expanded": "Landsat", + "numerical_value": 414, + "description": "Launch : 1984-03-01, (expected) EOL : 2011-11-18, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 09:45 description, Status : Inactive, Payload : GPS (NASA),MSS,TM, Last update : 2015-07-28 18:58:27" + }, + { + "value": "Landsat-6", + "expanded": "Landsat", + "numerical_value": 415, + "description": "Launch : 1993-10-05, (expected) EOL : 1993-10-05, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 09:45 description, Status : Lost at launch, Payload : ETM, Last update : 2015-07-28 18:59:33" + }, + { + "value": "Landsat-7", + "expanded": "Landsat", + "numerical_value": 416, + "description": "Launch : 1999-04-15, (expected) EOL : 2021-11-30, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Operational, Payload : ETM+, Last update : 2021-12-29 21:30:48" + }, + { + "value": "Landsat-8", + "expanded": "Landsat Data Continuity Mission", + "numerical_value": 417, + "description": "Launch : 2013-02-11, (expected) EOL : 2021-11-30, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:11 description, Status : Operational, Payload : OLI,TIRS, Last update : 2021-12-29 21:32:11" + }, + { + "value": "Landsat-9", + "expanded": "Landsat Data Continuity Mission", + "numerical_value": 418, + "description": "Launch : 2021-09-27, (expected) EOL : 2027-11-30, Agencies : USGS,NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Operational, Payload : OLI,TIRS, Last update : 2022-02-04 08:56:46" + }, + { + "value": "LARES-1", + "expanded": "Laser Geodynamics Satellite", + "numerical_value": 419, + "description": "Launch : 2012-02-13, (expected) EOL : 2029-11-30, Agencies : ASI,NASA, Orbit : DRIFT, Altitude : 1450 km, Longitude : null, Inclination :69.5°, Ect : null, Status : Operational, Payload : LRA (ASI), Last update : 2020-03-18 23:02:49" + }, + { + "value": "LARES-2", + "expanded": "Laser Geodynamics Satellite", + "numerical_value": 420, + "description": "Launch : 2022-03-31, (expected) EOL : 2049-11-30, Agencies : ASI,NASA, Orbit : DRIFT, Altitude : 5899 km, Longitude : null, Inclination :70.16°, Ect : null, Status : Planned, Payload : LRA (ASI), Last update : 2021-11-19 01:17:00" + }, + { + "value": "Lemur-2", + "expanded": "Low Earth Multi-Use Receiver", + "numerical_value": 421, + "description": "Launch : 2015-09-28, (expected) EOL : 2039-11-30, Agencies : SPIRE, Orbit : SunSync, Altitude : 550 km, Longitude : null, Inclination : null, Ect : null, Status : Operational, Payload : STRATOS, Last update : 2022-01-14 10:59:28" + }, + { + "value": "LIST", + "expanded": "Lidar Surface Topography", + "numerical_value": 422, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : null, Longitude : null, Inclination : null, Ect : null, Status : Mission concept, Payload : null, Last update : 2018-06-20 23:23:11" + }, + { + "value": "LSTM", + "expanded": "Copernicus Sentinel Expansion Missions", + "numerical_value": 423, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Considered, Payload : LSTM, Last update : 2022-01-04 17:35:12" + }, + { + "value": "MAIA", + "expanded": "Multi-Angle Imager for Aerosols", + "numerical_value": 424, + "description": "Launch : 2022-11-30, (expected) EOL : 2025-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 740 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : MAIA, Last update : 2021-06-14 14:29:56" + }, + { + "value": "MATS", + "expanded": "Mesospheric Airglow/Aerosol Tomography and Spectroscopy", + "numerical_value": 425, + "description": "Launch : 2021-11-30, (expected) EOL : 2023-11-30, Agencies : SNSA, Orbit : SunSync, Altitude : 600 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : MATS, Last update : 2021-11-25 14:50:59" + }, + { + "value": "Megha-Tropiques", + "expanded": "Megha-Tropiques", + "numerical_value": 426, + "description": "Launch : 2011-10-12, (expected) EOL : 2021-11-30, Agencies : ISRO,CNES, Orbit : DRIFT, Altitude : 867 km, Longitude : null, Inclination :20°, Ect : null, Status : Operational, Payload : MADRAS,ROSA,SAPHIR,ScaRaB, Last update : 2022-01-08 15:31:07" + }, + { + "value": "MERLIN", + "expanded": "Methane Remote Sensing Mission", + "numerical_value": 427, + "description": "Launch : 2025-11-30, (expected) EOL : 2028-11-30, Agencies : CNES,DLR, Orbit : SunSync, Altitude : 506 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Planned, Payload : IPDA lidar, Last update : 2021-06-03 20:11:12" + }, + { + "value": "Meteor-1-1", + "expanded": "Meteor-1", + "numerical_value": 428, + "description": "Launch : 1969-03-26, (expected) EOL : 1970-01-26, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 560 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:13:55" + }, + { + "value": "Meteor-1-10", + "expanded": "Meteor-1", + "numerical_value": 429, + "description": "Launch : 1971-12-29, (expected) EOL : 1972-09-29, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 870 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:17:23" + }, + { + "value": "Meteor-1-11", + "expanded": "Meteor-1", + "numerical_value": 430, + "description": "Launch : 1972-03-30, (expected) EOL : 1972-12-30, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 870 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:17:50" + }, + { + "value": "Meteor-1-12", + "expanded": "Meteor-1", + "numerical_value": 431, + "description": "Launch : 1972-06-30, (expected) EOL : 1973-03-30, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 880 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:18:15" + }, + { + "value": "Meteor-1-13", + "expanded": "Meteor-1", + "numerical_value": 432, + "description": "Launch : 1972-10-26, (expected) EOL : 1973-07-26, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:18:37" + }, + { + "value": "Meteor-1-14", + "expanded": "Meteor-1", + "numerical_value": 433, + "description": "Launch : 1973-03-20, (expected) EOL : 1973-12-20, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 850 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:18:57" + }, + { + "value": "Meteor-1-15", + "expanded": "Meteor-1", + "numerical_value": 434, + "description": "Launch : 1973-05-29, (expected) EOL : 1974-02-28, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:19:18" + }, + { + "value": "Meteor-1-16", + "expanded": "Meteor-1", + "numerical_value": 435, + "description": "Launch : 1974-03-05, (expected) EOL : 1974-12-05, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 850 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:19:43" + }, + { + "value": "Meteor-1-17", + "expanded": "Meteor-1", + "numerical_value": 436, + "description": "Launch : 1974-04-24, (expected) EOL : 1975-01-24, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 870 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:20:06" + }, + { + "value": "Meteor-1-19", + "expanded": "Meteor-1", + "numerical_value": 437, + "description": "Launch : 1974-10-28, (expected) EOL : 1975-12-01, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 18:16:18" + }, + { + "value": "Meteor-1-2", + "expanded": "Meteor-1", + "numerical_value": 438, + "description": "Launch : 1969-10-06, (expected) EOL : 1970-07-06, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 530 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:14:14" + }, + { + "value": "Meteor-1-20", + "expanded": "Meteor-1", + "numerical_value": 439, + "description": "Launch : 1974-12-17, (expected) EOL : 1975-09-17, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:20:52" + }, + { + "value": "Meteor-1-21", + "expanded": "Meteor-1", + "numerical_value": 440, + "description": "Launch : 1975-04-01, (expected) EOL : 1976-07-01, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 870 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2014-01-24 19:50:44" + }, + { + "value": "Meteor-1-22", + "expanded": "Meteor-1", + "numerical_value": 441, + "description": "Launch : 1975-09-18, (expected) EOL : 1976-12-01, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 850 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:21:35" + }, + { + "value": "Meteor-1-23", + "expanded": "Meteor-1", + "numerical_value": 442, + "description": "Launch : 1975-12-25, (expected) EOL : 1976-09-25, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:22:00" + }, + { + "value": "Meteor-1-24", + "expanded": "Meteor-1", + "numerical_value": 443, + "description": "Launch : 1976-04-07, (expected) EOL : 1977-01-07, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:22:22" + }, + { + "value": "Meteor-1-26", + "expanded": "Meteor-1", + "numerical_value": 444, + "description": "Launch : 1976-10-15, (expected) EOL : 1977-07-15, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 18:17:36" + }, + { + "value": "Meteor-1-27", + "expanded": "Meteor-1", + "numerical_value": 445, + "description": "Launch : 1977-04-05, (expected) EOL : 1978-01-05, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:23:10" + }, + { + "value": "Meteor-1-3", + "expanded": "Meteor-1", + "numerical_value": 446, + "description": "Launch : 1970-03-17, (expected) EOL : 1970-12-17, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 680 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:14:33" + }, + { + "value": "Meteor-1-4", + "expanded": "Meteor-1", + "numerical_value": 447, + "description": "Launch : 1970-04-28, (expected) EOL : 1971-01-28, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 560 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:14:51" + }, + { + "value": "Meteor-1-5", + "expanded": "Meteor-1", + "numerical_value": 448, + "description": "Launch : 1970-06-23, (expected) EOL : 1971-03-23, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 840 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:15:14" + }, + { + "value": "Meteor-1-6", + "expanded": "Meteor-1", + "numerical_value": 449, + "description": "Launch : 1970-10-15, (expected) EOL : 1971-07-15, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 440 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:15:33" + }, + { + "value": "Meteor-1-7", + "expanded": "Meteor-1", + "numerical_value": 450, + "description": "Launch : 1971-01-20, (expected) EOL : 1971-10-20, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 540 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:16:09" + }, + { + "value": "Meteor-1-8", + "expanded": "Meteor-1", + "numerical_value": 451, + "description": "Launch : 1971-04-17, (expected) EOL : 1972-01-17, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 250 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:16:32" + }, + { + "value": "Meteor-1-9", + "expanded": "Meteor-1", + "numerical_value": 452, + "description": "Launch : 1971-07-16, (expected) EOL : 1972-04-16, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 350 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : AC,IR (Meteor-1),TV (Meteor-1), Last update : 2013-02-13 17:16:57" + }, + { + "value": "Meteor-2-1", + "expanded": "Meteor-2", + "numerical_value": 453, + "description": "Launch : 1975-07-11, (expected) EOL : 1977-01-11, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.3°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:24:21" + }, + { + "value": "Meteor-2-10", + "expanded": "Meteor-2", + "numerical_value": 454, + "description": "Launch : 1983-10-28, (expected) EOL : 1985-04-28, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 810 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:26:55" + }, + { + "value": "Meteor-2-11", + "expanded": "Meteor-2", + "numerical_value": 455, + "description": "Launch : 1984-07-05, (expected) EOL : 1986-01-05, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:27:13" + }, + { + "value": "Meteor-2-12", + "expanded": "Meteor-2", + "numerical_value": 456, + "description": "Launch : 1985-02-06, (expected) EOL : 1986-07-06, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 940 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:27:28" + }, + { + "value": "Meteor-2-13", + "expanded": "Meteor-2", + "numerical_value": 457, + "description": "Launch : 1985-12-26, (expected) EOL : 1987-06-26, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:27:45" + }, + { + "value": "Meteor-2-14", + "expanded": "Meteor-2", + "numerical_value": 458, + "description": "Launch : 1986-05-27, (expected) EOL : 1987-11-27, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:28:04" + }, + { + "value": "Meteor-2-15", + "expanded": "Meteor-2", + "numerical_value": 459, + "description": "Launch : 1987-01-05, (expected) EOL : 1988-07-05, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:28:21" + }, + { + "value": "Meteor-2-16", + "expanded": "Meteor-2", + "numerical_value": 460, + "description": "Launch : 1987-08-18, (expected) EOL : 1989-02-18, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:28:39" + }, + { + "value": "Meteor-2-17", + "expanded": "Meteor-2", + "numerical_value": 461, + "description": "Launch : 1988-01-30, (expected) EOL : 1990-07-30, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:28:57" + }, + { + "value": "Meteor-2-18", + "expanded": "Meteor-2", + "numerical_value": 462, + "description": "Launch : 1989-02-28, (expected) EOL : 1990-08-28, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 940 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:29:11" + }, + { + "value": "Meteor-2-19", + "expanded": "Meteor-2", + "numerical_value": 463, + "description": "Launch : 1990-06-27, (expected) EOL : 1991-12-27, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:29:27" + }, + { + "value": "Meteor-2-2", + "expanded": "Meteor-2", + "numerical_value": 464, + "description": "Launch : 1977-01-06, (expected) EOL : 1978-07-06, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 880 km, Longitude : null, Inclination :81.3°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:24:43" + }, + { + "value": "Meteor-2-20", + "expanded": "Meteor-2", + "numerical_value": 465, + "description": "Launch : 1990-09-28, (expected) EOL : 1992-03-28, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:30:01" + }, + { + "value": "Meteor-2-21", + "expanded": "Meteor-2", + "numerical_value": 466, + "description": "Launch : 1993-08-31, (expected) EOL : 1995-02-28, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 950 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:30:18" + }, + { + "value": "Meteor-2-3", + "expanded": "Meteor-2", + "numerical_value": 467, + "description": "Launch : 1977-12-14, (expected) EOL : 1979-06-14, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:25:00" + }, + { + "value": "Meteor-2-4", + "expanded": "Meteor-2", + "numerical_value": 468, + "description": "Launch : 1979-03-01, (expected) EOL : 1980-09-01, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 850 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:25:14" + }, + { + "value": "Meteor-2-5", + "expanded": "Meteor-2", + "numerical_value": 469, + "description": "Launch : 1979-10-31, (expected) EOL : 1981-04-30, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 870 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:25:31" + }, + { + "value": "Meteor-2-6", + "expanded": "Meteor-2", + "numerical_value": 470, + "description": "Launch : 1980-09-09, (expected) EOL : 1982-03-09, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:25:49" + }, + { + "value": "Meteor-2-7", + "expanded": "Meteor-2", + "numerical_value": 471, + "description": "Launch : 1981-05-14, (expected) EOL : 1982-11-14, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 860 km, Longitude : null, Inclination :81.3°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:26:04" + }, + { + "value": "Meteor-2-8", + "expanded": "Meteor-2", + "numerical_value": 472, + "description": "Launch : 1982-03-25, (expected) EOL : 1983-09-25, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 940 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:26:19" + }, + { + "value": "Meteor-2-9", + "expanded": "Meteor-2", + "numerical_value": 473, + "description": "Launch : 1982-12-14, (expected) EOL : 1984-06-14, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 840 km, Longitude : null, Inclination :81.3°, Ect : null, Status : Inactive, Payload : IR (Meteor-2),RMK-2,SM (Meteor-2),TV (Meteor-2), Last update : 2013-02-13 17:26:36" + }, + { + "value": "Meteor-3-1", + "expanded": "Meteor-3", + "numerical_value": 474, + "description": "Launch : 1985-10-24, (expected) EOL : 1987-10-24, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 1200 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Klimat,MR-900B,MR-2000M,RMK-2,SM (Meteor-3), Last update : 2013-02-13 17:10:02" + }, + { + "value": "Meteor-3-2", + "expanded": "Meteor-3", + "numerical_value": 475, + "description": "Launch : 1988-07-26, (expected) EOL : 1990-07-26, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 1200 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Klimat,MR-900B,MR-2000M,RMK-2,SM (Meteor-3), Last update : 2013-02-13 17:10:33" + }, + { + "value": "Meteor-3-3", + "expanded": "Meteor-3", + "numerical_value": 476, + "description": "Launch : 1989-10-24, (expected) EOL : 1991-10-24, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 1240 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Klimat,MR-900B,MR-2000M,RMK-2,SM (Meteor-3), Last update : 2013-02-13 17:11:03" + }, + { + "value": "Meteor-3-4", + "expanded": "Meteor-3", + "numerical_value": 477, + "description": "Launch : 1991-04-24, (expected) EOL : 1993-04-24, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 1200 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Klimat,MR-900B,MR-2000M,RMK-2,SM (Meteor-3), Last update : 2013-02-13 17:11:41" + }, + { + "value": "Meteor-3-5", + "expanded": "Meteor-3", + "numerical_value": 478, + "description": "Launch : 1991-08-15, (expected) EOL : 1993-08-15, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 1200 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Klimat,MR-900B,MR-2000M,RMK-2,SM (Meteor-3),TOMS, Last update : 2013-02-13 17:12:15" + }, + { + "value": "Meteor-3-6", + "expanded": "Meteor-3", + "numerical_value": 479, + "description": "Launch : 1994-01-25, (expected) EOL : 1996-01-25, Agencies : RosHydroMet,Roscosmos, Orbit : DRIFT, Altitude : 1210 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Klimat,MR-900B,MR-2000M,PRARE,RMK-2,SM (Meteor-3),ScaRaB, Last update : 2013-02-13 17:12:46" + }, + { + "value": "Meteor-3M", + "expanded": "Meteor-3M", + "numerical_value": 480, + "description": "Launch : 2001-12-10, (expected) EOL : 2006-04-05, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 1020 km, Longitude : null, Inclination : null, Ect : 09:15 asc, Status : Inactive, Payload : GGAK-M/KGI-4C,GGAK-M/MSGI-MKA,Klimat,MIVZA,MR-2000M1,MSU-E,MTVZA,SAGE-III,SFM-2, Last update : 2015-07-28 19:11:58" + }, + { + "value": "Meteor-M N1", + "expanded": "Meteor-3M", + "numerical_value": 481, + "description": "Launch : 2009-09-17, (expected) EOL : 2014-09-23, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 826 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKOR-M,KMSS,MSU-MR,MTVZA-GY,SSPD,Severjanin-M, Last update : 2021-04-19 13:40:13" + }, + { + "value": "Meteor-M N2", + "expanded": "Meteor-3M", + "numerical_value": 482, + "description": "Launch : 2014-07-08, (expected) EOL : 2021-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 09:30 asc, Status : Operational, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKFS-2,IKOR-M,KMSS,MSU-MR,MTVZA-GY,SSPD,Severjanin-M, Last update : 2021-12-06 16:41:49" + }, + { + "value": "Meteor-M N2-1", + "expanded": "Meteor-3M", + "numerical_value": 483, + "description": "Launch : 2017-11-28, (expected) EOL : 2017-11-28, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 816.4 km, Longitude : null, Inclination : null, Ect : 15:09 asc, Status : Inactive, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKFS-2,IKOR-M,KMSS,MSU-MR,MTVZA-GY,S&RSAT,SSPD,Severjanin-M, Last update : 2021-04-19 13:45:34" + }, + { + "value": "Meteor-M N2-2", + "expanded": "Meteor-3M", + "numerical_value": 484, + "description": "Launch : 2019-07-05, (expected) EOL : 2023-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 821 km, Longitude : null, Inclination : null, Ect : 15:00 asc, Status : Operational, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKFS-2,IKOR-M,KMSS,MSU-MR,MTVZA-GY,SSPD,Severjanin-M, Last update : 2022-01-25 12:17:35" + }, + { + "value": "Meteor-M N2-3", + "expanded": "Meteor-3M", + "numerical_value": 485, + "description": "Launch : 2022-11-30, (expected) EOL : 2025-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 820.7 km, Longitude : null, Inclination : null, Ect : 09:00 description, Status : Planned, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKFS-2,IKOR-M,KMSS,MSU-MR,MTVZA-GY,MeteoSAR,SSPD, Last update : 2021-11-25 14:52:45" + }, + { + "value": "Meteor-M N2-4", + "expanded": "Meteor-3M", + "numerical_value": 486, + "description": "Launch : 2022-11-30, (expected) EOL : 2026-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 820.7 km, Longitude : null, Inclination : null, Ect : 15:00 asc, Status : Planned, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKFS-2,IKOR-M,KMSS,MSU-MR,MTVZA-GY,MeteoSAR,SSPD, Last update : 2022-01-25 12:01:39" + }, + { + "value": "Meteor-M N2-5", + "expanded": "Meteor-3M", + "numerical_value": 487, + "description": "Launch : 2023-11-30, (expected) EOL : 2028-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 820.7 km, Longitude : null, Inclination : null, Ect : 15:00 description, Status : Planned, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKFS-2,IKOR-M,KMSS,MSU-MR,MTVZA-GY,MeteoSAR,SSPD, Last update : 2021-11-03 09:12:21" + }, + { + "value": "Meteor-M N2-6", + "expanded": "Meteor-3M", + "numerical_value": 488, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 820.7 km, Longitude : null, Inclination : null, Ect : 09:00 asc, Status : Planned, Payload : GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,IKFS-2,IKOR-M,KMSS,MSU-MR,MTVZA-GY,MeteoSAR,SSPD, Last update : 2021-11-03 09:12:55" + }, + { + "value": "Meteor-MP N1", + "expanded": "Meteor-3M", + "numerical_value": 489, + "description": "Launch : 2024-11-30, (expected) EOL : 2031-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 830 km, Longitude : null, Inclination : null, Ect : 15:30 asc, Status : Planned, Payload : ACS-limb,ACS-nadir,ARMA-MP,BRLK “Briz”,GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,GORIZONT-MP,IKFS-3,IKOR-M,MSU-MR-MP,MTVZA-GY-MP,SSPD, Last update : 2021-10-22 14:08:27" + }, + { + "value": "Meteor-MP N2", + "expanded": "Meteor-3M", + "numerical_value": 490, + "description": "Launch : 2025-11-30, (expected) EOL : 2032-11-30, Agencies : RosHydroMet,Roscosmos, Orbit : SunSync, Altitude : 830 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : ACS-limb,ACS-nadir,ARMA-MP,BRLK “Briz”,GGAK-E/GALS-E (Meteor),GGAK-E/SKIF-6 (Meteor),GGAK-M/RIMS-M,GORIZONT-MP,IKFS-3,IKOR-M,MSU-MR-MP,MTVZA-GY-MP,SSPD, Last update : 2021-10-22 14:08:53" + }, + { + "value": "Meteor-P1", + "expanded": "Meteor-Priroda", + "numerical_value": 491, + "description": "Launch : 1974-07-09, (expected) EOL : 1976-07-09, Agencies : Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 890 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : IR (Meteor-1),MSU-M,MSU-S,SHF,TV (Meteor-1), Last update : 2013-02-13 19:37:41" + }, + { + "value": "Meteor-P2", + "expanded": "Meteor-Priroda", + "numerical_value": 492, + "description": "Launch : 1976-05-15, (expected) EOL : 1978-05-15, Agencies : Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 890 km, Longitude : null, Inclination :81.2°, Ect : null, Status : Inactive, Payload : IR (Meteor-1),MSU-M,MSU-S,R10-M,SHF,SI-GDR, Last update : 2013-02-13 19:48:07" + }, + { + "value": "Meteor-P3", + "expanded": "Meteor-Priroda", + "numerical_value": 493, + "description": "Launch : 1977-07-29, (expected) EOL : 1979-07-29, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MSU-M,MSU-S,R10-M,SHF,SI-GDR, Last update : 2013-02-13 19:55:27" + }, + { + "value": "Meteor-P4", + "expanded": "Meteor-Priroda", + "numerical_value": 494, + "description": "Launch : 1979-01-25, (expected) EOL : 1981-01-25, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 640 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MSU-M,MSU-S,R10-M,SI-GDR, Last update : 2013-02-13 19:59:25" + }, + { + "value": "Meteor-P5", + "expanded": "Meteor-Priroda", + "numerical_value": 495, + "description": "Launch : 1980-06-18, (expected) EOL : 1982-06-18, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MSS Fragment,MSU-E (Resurs-O1),MSU-M,MSU-S,MSU-SK (Resurs),R10-M, Last update : 2013-02-13 20:09:09" + }, + { + "value": "Meteor-P6", + "expanded": "Meteor-Priroda", + "numerical_value": 496, + "description": "Launch : 1981-07-10, (expected) EOL : 1983-07-10, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MSU-M,MSU-S,R10-M,SHF, Last update : 2013-02-13 20:14:21" + }, + { + "value": "Meteosat-1", + "expanded": "Meteosat First Generation", + "numerical_value": 497, + "description": "Launch : 1977-11-23, (expected) EOL : 1979-11-24, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:39:12" + }, + { + "value": "Meteosat-10", + "expanded": "Meteosat Second Generation (MSG)", + "numerical_value": 498, + "description": "Launch : 2012-07-05, (expected) EOL : 2029-11-30, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :9.5 ° E, Inclination : null, Ect : null, Status : Operational, Payload : DCS (Meteosat),GEOS&R ,GERB,SEVIRI, Last update : 2021-03-11 13:50:57" + }, + { + "value": "Meteosat-11", + "expanded": "Meteosat Second Generation (MSG)", + "numerical_value": 499, + "description": "Launch : 2015-07-15, (expected) EOL : 2032-11-30, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Operational, Payload : DCS (Meteosat),GEOS&R ,GERB,SEVIRI, Last update : 2021-03-11 13:52:02" + }, + { + "value": "Meteosat-2", + "expanded": "Meteosat First Generation", + "numerical_value": 500, + "description": "Launch : 1981-06-19, (expected) EOL : 1991-12-02, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:40:27" + }, + { + "value": "Meteosat-3", + "expanded": "Meteosat First Generation", + "numerical_value": 501, + "description": "Launch : 1988-06-15, (expected) EOL : 1991-08-01, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:41:03" + }, + { + "value": "Meteosat-3 (ADC)", + "expanded": "Meteosat First Generation", + "numerical_value": 502, + "description": "Launch : 1991-08-01, (expected) EOL : 1993-02-01, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :50 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:41:43" + }, + { + "value": "Meteosat-3 (X-ADC)", + "expanded": "Meteosat First Generation", + "numerical_value": 503, + "description": "Launch : 1993-02-01, (expected) EOL : 1995-11-22, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:42:43" + }, + { + "value": "Meteosat-4", + "expanded": "Meteosat First Generation", + "numerical_value": 504, + "description": "Launch : 1989-03-06, (expected) EOL : 1995-11-08, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:43:00" + }, + { + "value": "Meteosat-5", + "expanded": "Meteosat First Generation", + "numerical_value": 505, + "description": "Launch : 1991-03-02, (expected) EOL : 1998-06-01, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:43:32" + }, + { + "value": "Meteosat-5 (IODC)", + "expanded": "Meteosat First Generation", + "numerical_value": 506, + "description": "Launch : 1998-06-01, (expected) EOL : 2007-04-26, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :63 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:44:01" + }, + { + "value": "Meteosat-6", + "expanded": "Meteosat First Generation", + "numerical_value": 507, + "description": "Launch : 1993-11-20, (expected) EOL : 2007-04-27, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:44:30" + }, + { + "value": "Meteosat-6 (IODC)", + "expanded": "Meteosat First Generation", + "numerical_value": 508, + "description": "Launch : 2007-04-27, (expected) EOL : 2011-04-15, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :67.5 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:44:54" + }, + { + "value": "Meteosat-7", + "expanded": "Meteosat First Generation", + "numerical_value": 509, + "description": "Launch : 1997-09-02, (expected) EOL : 2006-12-05, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-11 13:45:21" + }, + { + "value": "Meteosat-7 (IODC)", + "expanded": "Meteosat First Generation", + "numerical_value": 510, + "description": "Launch : 2006-12-05, (expected) EOL : 2017-02-01, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :58 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),MVIRI, Last update : 2021-03-16 01:16:35" + }, + { + "value": "Meteosat-8", + "expanded": "Meteosat Second Generation (MSG)", + "numerical_value": 511, + "description": "Launch : 2002-08-28, (expected) EOL : 2016-07-04, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :3.7 ° E, Inclination : null, Ect : null, Status : Inactive, Payload : DCS (Meteosat),GEOS&R ,GERB,SEVIRI, Last update : 2021-03-11 13:47:32" + }, + { + "value": "Meteosat-8 (IODC)", + "expanded": "Meteosat Second Generation (MSG)", + "numerical_value": 512, + "description": "Launch : 2016-09-15, (expected) EOL : 2022-10-31, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :41.5 ° E, Inclination : null, Ect : null, Status : Operational, Payload : DCS (Meteosat),GEOS&R ,GERB,SEVIRI, Last update : 2021-10-23 10:13:57" + }, + { + "value": "Meteosat-9", + "expanded": "Meteosat Second Generation (MSG)", + "numerical_value": 513, + "description": "Launch : 2005-12-21, (expected) EOL : 2022-04-01, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :3.5 ° E, Inclination : null, Ect : null, Status : Stand-by, Payload : DCS (Meteosat),GEOS&R ,GERB,SEVIRI, Last update : 2021-11-02 10:44:10" + }, + { + "value": "Meteosat-9 (IODC)", + "expanded": "Meteosat Second Generation (MSG)", + "numerical_value": 514, + "description": "Launch : 2022-04-01, (expected) EOL : 2024-11-30, Agencies : EUMETSAT,ESA, Orbit : GEO, Altitude : 35786 km, Longitude :45.5 ° E, Inclination : null, Ect : null, Status : Planned, Payload : GEOS&R ,SEVIRI, Last update : 2021-11-02 10:38:53" + }, + { + "value": "Metop-A", + "expanded": "EUMETSAT Polar System", + "numerical_value": 515, + "description": "Launch : 2006-10-19, (expected) EOL : 2021-11-15, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 827 km, Longitude : null, Inclination : null, Ect : 07:50 description, Status : Inactive, Payload : A-DCS,AMSU-A,ASCAT,AVHRR/3,GOME-2,GRAS,HIRS/4,IASI,MHS,S&RSAT,SEM/MEPED,SEM/TED, Last update : 2021-11-17 13:06:12" + }, + { + "value": "Metop-B", + "expanded": "EUMETSAT Polar System", + "numerical_value": 516, + "description": "Launch : 2012-09-17, (expected) EOL : 2023-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 827 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Operational, Payload : A-DCS,AMSU-A,ASCAT,AVHRR/3,GOME-2,GRAS,HIRS/4,IASI,MHS,S&RSAT,SEM/MEPED,SEM/TED, Last update : 2021-09-22 11:02:26" + }, + { + "value": "Metop-C", + "expanded": "EUMETSAT Polar System", + "numerical_value": 517, + "description": "Launch : 2018-11-07, (expected) EOL : 2026-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 817 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Operational, Payload : A-DCS,AMSU-A,ASCAT,AVHRR/3,GOME-2,GRAS,IASI,MHS, Last update : 2021-10-18 10:41:37" + }, + { + "value": "Metop-SG-A1", + "expanded": "EPS Second Generation", + "numerical_value": 518, + "description": "Launch : 2023-11-30, (expected) EOL : 2030-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : 3MI,IASI-NG,METimage,MWS,RO,Sentinel-5, Last update : 2021-03-01 14:41:36" + }, + { + "value": "Metop-SG-A2", + "expanded": "EPS Second Generation", + "numerical_value": 519, + "description": "Launch : 2030-11-30, (expected) EOL : 2037-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : 3MI,IASI-NG,METimage,MWS,RO,Sentinel-5, Last update : 2021-03-01 14:42:03" + }, + { + "value": "Metop-SG-A3", + "expanded": "EPS Second Generation", + "numerical_value": 520, + "description": "Launch : 2036-11-30, (expected) EOL : 2043-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : 3MI,IASI-NG,METimage,MWS,RO,Sentinel-5, Last update : 2021-02-24 16:28:14" + }, + { + "value": "Metop-SG-B1", + "expanded": "EPS Second Generation", + "numerical_value": 521, + "description": "Launch : 2024-11-30, (expected) EOL : 2031-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : A-DCS,ICI ,MWI (MetOp-SG),RO,SCA (Scatterometer), Last update : 2021-06-10 10:03:56" + }, + { + "value": "Metop-SG-B2", + "expanded": "EPS Second Generation", + "numerical_value": 522, + "description": "Launch : 2030-11-30, (expected) EOL : 2037-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : A-DCS,ICI ,MWI (MetOp-SG),RO,SCA (Scatterometer), Last update : 2020-07-16 11:13:09" + }, + { + "value": "Metop-SG-B3", + "expanded": "EPS Second Generation", + "numerical_value": 523, + "description": "Launch : 2037-11-30, (expected) EOL : 2044-11-30, Agencies : EUMETSAT,ESA, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : A-DCS,ICI ,MWI (MetOp-SG),RO,SCA (Scatterometer), Last update : 2020-07-16 11:44:38" + }, + { + "value": "MicroCarb", + "expanded": "MicroCarb", + "numerical_value": 524, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : CNES, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : MicroCarb, Last update : 2021-06-03 20:08:34" + }, + { + "value": "MISTiC Winds", + "expanded": "Midwave Infrared Sounding of Temperature and humidity in a Constellation for Winds", + "numerical_value": 525, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Mission concept, Payload : null, Last update : 2016-06-30 21:43:40" + }, + { + "value": "MMS-A", + "expanded": "Magnetospheric MultiScale mission", + "numerical_value": 526, + "description": "Launch : 2015-03-13, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :28°, Ect : null, Status : Operational, Payload : AFG,ASPOC (MMS),DFG,DP,EDI (MMS),EIS (MSS),FEEPS,FPI,HPCA,SCM (MMS), Last update : 2022-01-03 11:42:07" + }, + { + "value": "MMS-B", + "expanded": "Magnetospheric MultiScale mission", + "numerical_value": 527, + "description": "Launch : 2015-03-13, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :28°, Ect : null, Status : Operational, Payload : AFG,ASPOC (MMS),DFG,DP,EDI (MMS),EIS (MSS),FEEPS,FPI,HPCA,SCM (MMS), Last update : 2022-01-03 11:42:22" + }, + { + "value": "MMS-C", + "expanded": "Magnetospheric MultiScale mission", + "numerical_value": 528, + "description": "Launch : 2015-03-13, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :28°, Ect : null, Status : Operational, Payload : AFG,ASPOC (MMS),DFG,DP,EDI (MMS),EIS (MSS),FEEPS,FPI,HPCA,SCM (MMS), Last update : 2022-01-03 11:42:37" + }, + { + "value": "MMS-D", + "expanded": "Magnetospheric MultiScale mission", + "numerical_value": 529, + "description": "Launch : 2015-03-13, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :28°, Ect : null, Status : Operational, Payload : AFG,ASPOC (MMS),DFG,DP,EDI (MMS),EIS (MSS),FEEPS,FPI,HPCA,SCM (MMS), Last update : 2022-01-03 11:42:50" + }, + { + "value": "Mohammed VI-A", + "expanded": "Mohammed VI", + "numerical_value": 530, + "description": "Launch : 2017-11-08, (expected) EOL : 2021-11-30, Agencies : CRTS, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HiRI, Last update : 2018-02-22 18:44:11" + }, + { + "value": "Mohammed VI-B", + "expanded": "Mohammed VI", + "numerical_value": 531, + "description": "Launch : 2018-11-21, (expected) EOL : 2022-11-30, Agencies : CRTS, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HiRI, Last update : 2019-03-23 17:31:08" + }, + { + "value": "Monitor-E", + "expanded": "Monitor - Experimental", + "numerical_value": 532, + "description": "Launch : 2005-08-26, (expected) EOL : 2008-08-15, Agencies : Roscosmos, Orbit : SunSync, Altitude : 540 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : MS (Monitor),PAN (Monitor-E), Last update : 2015-07-28 19:52:00" + }, + { + "value": "MOS-1", + "expanded": "Marine Observatory Satellite ", + "numerical_value": 533, + "description": "Launch : 1987-02-19, (expected) EOL : 1995-11-29, Agencies : JAXA, Orbit : SunSync, Altitude : 908 km, Longitude : null, Inclination : null, Ect : 10:15 description, Status : Inactive, Payload : MESSR,MSR,VTIR, Last update : 2015-07-28 19:53:25" + }, + { + "value": "MOS-1B", + "expanded": "Marine Observatory Satellite ", + "numerical_value": 534, + "description": "Launch : 1990-02-07, (expected) EOL : 1996-04-25, Agencies : JAXA, Orbit : SunSync, Altitude : 908 km, Longitude : null, Inclination : null, Ect : 10:35 description, Status : Inactive, Payload : MESSR,MSR,VTIR, Last update : 2013-02-22 17:12:36" + }, + { + "value": "MTG-I1", + "expanded": "Meteosat Third Generation (MTG) - “I” imaging, “S” sounding", + "numerical_value": 535, + "description": "Launch : 2021-11-30, (expected) EOL : 2029-11-30, Agencies : EUMETSAT,EC,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Meteosat),FCI,GEOS&R ,LI, Last update : 2021-11-29 14:34:48" + }, + { + "value": "MTG-I2", + "expanded": "Meteosat Third Generation (MTG) - “I” imaging, “S” sounding", + "numerical_value": 536, + "description": "Launch : 2024-11-30, (expected) EOL : 2032-11-30, Agencies : EUMETSAT,EC,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Meteosat),FCI,GEOS&R ,LI, Last update : 2020-07-12 20:40:00" + }, + { + "value": "MTG-I3", + "expanded": "Meteosat Third Generation (MTG) - “I” imaging, “S” sounding", + "numerical_value": 537, + "description": "Launch : 2031-11-30, (expected) EOL : 2039-11-30, Agencies : EUMETSAT,EC,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Meteosat),FCI,GEOS&R ,LI, Last update : 2021-09-22 10:30:19" + }, + { + "value": "MTG-I4", + "expanded": "Meteosat Third Generation (MTG) - “I” imaging, “S” sounding", + "numerical_value": 538, + "description": "Launch : 2035-11-30, (expected) EOL : 2043-11-30, Agencies : EUMETSAT,EC,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : DCS (Meteosat),FCI,GEOS&R ,LI, Last update : 2021-09-22 10:31:06" + }, + { + "value": "MTG-S1", + "expanded": "Meteosat Third Generation (MTG) - “I” imaging, “S” sounding", + "numerical_value": 539, + "description": "Launch : 2023-11-30, (expected) EOL : 2031-11-30, Agencies : EUMETSAT,EC,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : IRS,Sentinel-4, Last update : 2021-09-22 10:32:22" + }, + { + "value": "MTG-S2", + "expanded": "Meteosat Third Generation (MTG) - “I” imaging, “S” sounding", + "numerical_value": 540, + "description": "Launch : 2033-11-30, (expected) EOL : 2041-11-30, Agencies : EUMETSAT,EC,ESA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : IRS,Sentinel-4, Last update : 2021-09-22 10:33:11" + }, + { + "value": "NEMO-AM", + "expanded": "Nanosatellite for Earth Monitoring and Observation-Aerosol Monitoring", + "numerical_value": 541, + "description": "Launch : 2021-11-30, (expected) EOL : 2025-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : MADPI, Last update : 2021-11-25 14:56:53" + }, + { + "value": "NI-SAR", + "expanded": "NASA-ISRO Synthetic Aperture Radar", + "numerical_value": 542, + "description": "Launch : 2022-11-30, (expected) EOL : 2025-11-30, Agencies : NASA,ISRO, Orbit : SunSync, Altitude : 747 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : SAR-L (NISAR),SAR-S (NISAR) , Last update : 2021-06-14 14:28:02" + }, + { + "value": "NigeriaSat-1", + "expanded": "NigeriaSat", + "numerical_value": 543, + "description": "Launch : 2003-09-27, (expected) EOL : 2011-11-15, Agencies : NASRDA, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : SLIM6, Last update : 2015-07-28 19:54:35" + }, + { + "value": "NigeriaSat-2", + "expanded": "NigeriaSat", + "numerical_value": 544, + "description": "Launch : 2011-08-17, (expected) EOL : 2021-11-30, Agencies : NASRDA, Orbit : SunSync, Altitude : 718 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : MRI,VHRI, Last update : 2021-12-29 21:54:56" + }, + { + "value": "NigeriaSat-X", + "expanded": "NigeriaSat", + "numerical_value": 545, + "description": "Launch : 2011-08-17, (expected) EOL : 2021-11-30, Agencies : NASRDA, Orbit : SunSync, Altitude : 681 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Unclear, Payload : SLIM6, Last update : 2021-12-29 21:58:10" + }, + { + "value": "Nimbus-1", + "expanded": "Nimbus", + "numerical_value": 546, + "description": "Launch : 1964-08-28, (expected) EOL : 1964-09-23, Agencies : NASA, Orbit : SunSync, Altitude : 634 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : APT,AVCS,HRIR, Last update : 2015-07-28 19:58:16" + }, + { + "value": "Nimbus-2", + "expanded": "Nimbus", + "numerical_value": 547, + "description": "Launch : 1966-05-15, (expected) EOL : 1969-01-17, Agencies : NASA, Orbit : SunSync, Altitude : 1140 km, Longitude : null, Inclination : null, Ect : 11:30 description, Status : Inactive, Payload : APT,AVCS,HRIR,MRIR, Last update : 2015-07-28 20:00:06" + }, + { + "value": "Nimbus-3", + "expanded": "Nimbus", + "numerical_value": 548, + "description": "Launch : 1969-04-13, (expected) EOL : 1972-01-22, Agencies : NASA, Orbit : SunSync, Altitude : 1100 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : HRIR,IDCS,IRIS-B,IRLS,MRIR,MUSE,SIRS-A, Last update : 2015-07-28 20:01:29" + }, + { + "value": "Nimbus-4", + "expanded": "Nimbus", + "numerical_value": 549, + "description": "Launch : 1970-04-08, (expected) EOL : 1980-09-30, Agencies : NASA, Orbit : SunSync, Altitude : 1100 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : BUV,FWS,IDCS,IRIS-D,IRLS,MUSE,SCR (Nimbus-4),SIRS-B,THIR, Last update : 2015-07-28 20:15:28" + }, + { + "value": "Nimbus-5", + "expanded": "Nimbus", + "numerical_value": 550, + "description": "Launch : 1972-12-10, (expected) EOL : 1983-03-29, Agencies : NASA, Orbit : SunSync, Altitude : 1100 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : ESMR (Nimbus-5),ITPR,NEMS,SCMR,SCR (Nimbus-5),THIR, Last update : 2015-07-28 20:16:32" + }, + { + "value": "Nimbus-6", + "expanded": "Nimbus", + "numerical_value": 551, + "description": "Launch : 1975-06-12, (expected) EOL : 1983-03-29, Agencies : NASA, Orbit : SunSync, Altitude : 1100 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : ERB,ESMR (Nimbus-6),HIRS,LRIR,PMR,SCAMS,THIR,TWERLE, Last update : 2015-07-28 20:17:27" + }, + { + "value": "Nimbus-7", + "expanded": "Nimbus", + "numerical_value": 552, + "description": "Launch : 1978-10-24, (expected) EOL : 1994-08-01, Agencies : NASA, Orbit : SunSync, Altitude : 947 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : CZCS,ERB,LIMS,SAM-II,SAMS,SBUV,SMMR,THIR,TOMS, Last update : 2015-07-28 20:18:22" + }, + { + "value": "NMP-EO-1", + "expanded": "New Millennium Program - Earth Observing -1", + "numerical_value": 553, + "description": "Launch : 2000-11-21, (expected) EOL : 2017-03-30, Agencies : NASA,USGS, Orbit : SunSync, Altitude : 691 km, Longitude : null, Inclination : null, Ect : 09:45 description, Status : Inactive, Payload : ALI,Hyperion,LAC, Last update : 2017-07-19 13:26:18" + }, + { + "value": "NOAA-1", + "expanded": "NOAA 3rd generation / Improved TIROS Operational System", + "numerical_value": 554, + "description": "Launch : 1970-12-11, (expected) EOL : 1971-08-19, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1450 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Inactive, Payload : APT,AVCS,FPR,SPM,SR, Last update : 2015-07-28 20:20:45" + }, + { + "value": "NOAA-10", + "expanded": "NOAA 4th generation / Polar Operational Environmental Satellites", + "numerical_value": 555, + "description": "Launch : 1986-09-17, (expected) EOL : 2001-08-30, Agencies : NOAA, Orbit : SunSync, Altitude : 810 km, Longitude : null, Inclination : null, Ect : 07:30 description, Status : Inactive, Payload : AVHRR,Argos,ERBE (NOAA),HIRS/2,MSU,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED, Last update : 2020-03-23 17:31:36" + }, + { + "value": "NOAA-11", + "expanded": "NOAA 4th generation / Polar Operational Environmental Satellites", + "numerical_value": 556, + "description": "Launch : 1988-09-24, (expected) EOL : 2004-06-16, Agencies : NOAA, Orbit : SunSync, Altitude : 843 km, Longitude : null, Inclination : null, Ect : 14:10 asc, Status : Inactive, Payload : AVHRR/2,Argos,HIRS/2,MSU,S&RSAT,SBUV/2,SSU, Last update : 2021-03-19 07:14:50" + }, + { + "value": "NOAA-12", + "expanded": "NOAA 4th generation / Polar Operational Environmental Satellites", + "numerical_value": 557, + "description": "Launch : 1991-05-14, (expected) EOL : 2007-08-10, Agencies : NOAA, Orbit : SunSync, Altitude : 804 km, Longitude : null, Inclination : null, Ect : 05:10 description, Status : Inactive, Payload : AVHRR/2,Argos,HIRS/2,MSU,SEM/MEPED,SEM/TED, Last update : 2020-03-23 17:32:23" + }, + { + "value": "NOAA-13", + "expanded": "NOAA 4th generation / Polar Operational Environmental Satellites", + "numerical_value": 558, + "description": "Launch : 1993-08-09, (expected) EOL : 1993-08-21, Agencies : NOAA, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 14:00 asc, Status : Inactive, Payload : AVHRR/2,Argos,HIRS/2,MSU,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED, Last update : 2021-03-19 00:49:31" + }, + { + "value": "NOAA-14", + "expanded": "NOAA 4th generation / Polar Operational Environmental Satellites", + "numerical_value": 559, + "description": "Launch : 1994-12-30, (expected) EOL : 2007-05-23, Agencies : NOAA, Orbit : SunSync, Altitude : 844 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : AVHRR/2,Argos,HIRS/2,MSU,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED,SSU, Last update : 2019-11-29 22:46:29" + }, + { + "value": "NOAA-15", + "expanded": "NOAA 5th generation / Polar Operational Environmental Satellites", + "numerical_value": 560, + "description": "Launch : 1998-05-13, (expected) EOL : 2021-11-30, Agencies : NOAA, Orbit : SunSync, Altitude : 813 km, Longitude : null, Inclination : null, Ect : 07:25 description, Status : Operational, Payload : AMSU-A,AMSU-B,AVHRR/3,DCS/2,HIRS/3,S&RSAT,SEM/MEPED,SEM/TED, Last update : 2022-01-02 22:24:38" + }, + { + "value": "NOAA-16", + "expanded": "NOAA 5th generation / Polar Operational Environmental Satellites", + "numerical_value": 561, + "description": "Launch : 2000-09-21, (expected) EOL : 2014-06-09, Agencies : NOAA, Orbit : SunSync, Altitude : 849 km, Longitude : null, Inclination : null, Ect : 09:01 description, Status : Inactive, Payload : AMSU-A,AMSU-B,AVHRR/3,DCS/2,HIRS/3,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED, Last update : 2019-10-25 17:35:56" + }, + { + "value": "NOAA-17", + "expanded": "NOAA 5th generation / Polar Operational Environmental Satellites", + "numerical_value": 562, + "description": "Launch : 2002-06-24, (expected) EOL : 2013-04-10, Agencies : NOAA, Orbit : SunSync, Altitude : 810 km, Longitude : null, Inclination : null, Ect : 07:03 description, Status : Inactive, Payload : AMSU-A,AMSU-B,AVHRR/3,DCS/2,HIRS/3,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED, Last update : 2019-10-25 18:26:54" + }, + { + "value": "NOAA-18", + "expanded": "NOAA 5th generation / Polar Operational Environmental Satellites", + "numerical_value": 563, + "description": "Launch : 2005-05-20, (expected) EOL : 2021-11-30, Agencies : NOAA, Orbit : SunSync, Altitude : 854 km, Longitude : null, Inclination : null, Ect : 07:53 description, Status : Operational, Payload : AMSU-A,AVHRR/3,DCS/2,HIRS/4,MHS,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED, Last update : 2022-01-02 22:25:32" + }, + { + "value": "NOAA-19", + "expanded": "NOAA 5th generation / Polar Operational Environmental Satellites", + "numerical_value": 564, + "description": "Launch : 2009-02-06, (expected) EOL : 2021-11-30, Agencies : NOAA, Orbit : SunSync, Altitude : 870 km, Longitude : null, Inclination : null, Ect : 07:00 description, Status : Operational, Payload : A-DCS,AMSU-A,AVHRR/3,HIRS/4,MHS,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED, Last update : 2021-12-06 17:07:41" + }, + { + "value": "NOAA-2", + "expanded": "NOAA 3rd generation / Improved TIROS Operational System", + "numerical_value": 565, + "description": "Launch : 1972-10-13, (expected) EOL : 1975-01-30, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1450 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : SPM,SR,VHRR (NOAA),VTPR, Last update : 2015-07-28 20:34:44" + }, + { + "value": "NOAA-20", + "expanded": "Joint Polar Satellite System", + "numerical_value": 566, + "description": "Launch : 2017-11-18, (expected) EOL : 2023-11-30, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 834 km, Longitude : null, Inclination : null, Ect : 13:25 asc, Status : Operational, Payload : ATMS,CERES,CrIS,OMPS-nadir,VIIRS, Last update : 2021-05-20 13:49:18" + }, + { + "value": "NOAA-3", + "expanded": "NOAA 3rd generation / Improved TIROS Operational System", + "numerical_value": 567, + "description": "Launch : 1973-11-06, (expected) EOL : 1976-08-31, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1500 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : SPM,SR,VHRR (NOAA),VTPR, Last update : 2015-07-28 20:35:25" + }, + { + "value": "NOAA-4", + "expanded": "NOAA 3rd generation / Improved TIROS Operational System", + "numerical_value": 568, + "description": "Launch : 1974-11-15, (expected) EOL : 1978-11-18, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1450 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : SPM,SR,VHRR (NOAA),VTPR, Last update : 2015-07-28 20:36:09" + }, + { + "value": "NOAA-5", + "expanded": "NOAA 3rd generation / Improved TIROS Operational System", + "numerical_value": 569, + "description": "Launch : 1976-07-29, (expected) EOL : 1979-07-16, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 1510 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : SPM,SR,VHRR (NOAA),VTPR, Last update : 2015-07-28 20:37:15" + }, + { + "value": "NOAA-6", + "expanded": "National Oceanic and Atmospheric Administration - 4th generation", + "numerical_value": 570, + "description": "Launch : 1979-06-27, (expected) EOL : 1987-03-31, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 840 km, Longitude : null, Inclination : null, Ect : 07:30 description, Status : Inactive, Payload : AVHRR,Argos,HIRS/2,MSU,SEM/MEPED,SEM/TED,SSU, Last update : 2015-07-28 20:38:17" + }, + { + "value": "NOAA-7", + "expanded": "National Oceanic and Atmospheric Administration - 4th generation", + "numerical_value": 571, + "description": "Launch : 1981-06-23, (expected) EOL : 1986-06-07, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 860 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : AVHRR/2,Argos,HIRS/2,MSU,SEM/MEPED,SEM/TED,SSU, Last update : 2015-07-28 20:39:21" + }, + { + "value": "NOAA-8", + "expanded": "NOAA 4th generation / Polar Operational Environmental Satellites", + "numerical_value": 572, + "description": "Launch : 1983-03-28, (expected) EOL : 1985-12-29, Agencies : NOAA, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 07:30 description, Status : Inactive, Payload : AVHRR,Argos,HIRS/2,MSU,S&RSAT,SEM/MEPED,SEM/TED,SSU, Last update : 2015-07-28 20:40:30" + }, + { + "value": "NOAA-9", + "expanded": "NOAA 4th generation / Polar Operational Environmental Satellites", + "numerical_value": 573, + "description": "Launch : 1984-12-12, (expected) EOL : 1998-02-13, Agencies : NOAA, Orbit : SunSync, Altitude : 850 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : AVHRR/2,Argos,ERBE (NOAA),HIRS/2,MSU,S&RSAT,SBUV/2,SEM/MEPED,SEM/TED,SSU, Last update : 2015-07-28 20:41:35" + }, + { + "value": "NovaSAR-S", + "expanded": "NovaSAR-S", + "numerical_value": 574, + "description": "Launch : 2018-09-16, (expected) EOL : 2024-11-30, Agencies : SSTL,UKSA, Orbit : SunSync, Altitude : 580 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : S-SAR, Last update : 2019-10-27 13:21:12" + }, + { + "value": "Obzor-O N1", + "expanded": "Operative Monitoring Satellite - Optical", + "numerical_value": 575, + "description": "Launch : 2022-11-30, (expected) EOL : 2029-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : null, Last update : 2017-01-14 10:50:57" + }, + { + "value": "Obzor-O N2", + "expanded": "Operative Monitoring Satellite - Optical", + "numerical_value": 576, + "description": "Launch : 2024-11-30, (expected) EOL : 2031-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : null, Last update : 2017-01-14 10:52:53" + }, + { + "value": "Obzor-O N3", + "expanded": "Operative Monitoring Satellite - Optical", + "numerical_value": 577, + "description": "Launch : 2025-11-30, (expected) EOL : 2032-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : null, Last update : 2017-03-12 13:44:27" + }, + { + "value": "Obzor-O N4", + "expanded": "Operative Monitoring Satellite - Optical", + "numerical_value": 578, + "description": "Launch : 2026-11-30, (expected) EOL : 2033-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : null, Last update : 2017-03-12 13:45:58" + }, + { + "value": "Obzor-R N1", + "expanded": "Operative Monitoring Satellite - Radar", + "numerical_value": 579, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : BRLK “Briz”, Last update : 2022-01-12 17:41:27" + }, + { + "value": "Obzor-R N2", + "expanded": "Operative Monitoring Satellite - Radar", + "numerical_value": 580, + "description": "Launch : 2023-11-30, (expected) EOL : 2028-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : BRLK “Briz”, Last update : 2022-01-12 17:42:25" + }, + { + "value": "Obzor-R N3", + "expanded": "Operative Monitoring Satellite - Radar", + "numerical_value": 581, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : BRLK “Briz”, Last update : 2022-01-12 17:43:13" + }, + { + "value": "Obzor-R N4", + "expanded": "Operative Monitoring Satellite - Radar", + "numerical_value": 582, + "description": "Launch : 2026-11-30, (expected) EOL : 2033-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : BRLK “Briz”, Last update : 2022-01-12 17:44:03" + }, + { + "value": "OceanSat-1 (IRS-P4)", + "expanded": "Satellite for the Ocean", + "numerical_value": 583, + "description": "Launch : 1999-05-26, (expected) EOL : 2010-08-08, Agencies : ISRO, Orbit : SunSync, Altitude : 723 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : MSMR,OCM (OceanSat-1), Last update : 2019-10-29 15:53:58" + }, + { + "value": "OceanSat-2", + "expanded": "Satellite for the Ocean", + "numerical_value": 584, + "description": "Launch : 2009-09-23, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 730 km, Longitude : null, Inclination : null, Ect : 11:53 description, Status : Operational, Payload : OCM (OceanSat-2),OSCAT,ROSA (OceanSat), Last update : 2022-01-02 22:28:37" + }, + { + "value": "OceanSat-3", + "expanded": "Satellite for the Ocean", + "numerical_value": 585, + "description": "Launch : 2022-03-31, (expected) EOL : 2026-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 723 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Planned, Payload : A-DCS,OCM (OceanSat-3),OSCAT,SSTM, Last update : 2022-01-12 21:18:38" + }, + { + "value": "OceanSat-3A", + "expanded": "Satellite for the Ocean", + "numerical_value": 586, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 723 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Planned, Payload : OCM (OceanSat-3),OSCAT,SSTM, Last update : 2021-11-04 11:42:40" + }, + { + "value": "OCO", + "expanded": "Orbiting Carbon Observatory ", + "numerical_value": 587, + "description": "Launch : 2009-02-24, (expected) EOL : 2009-02-24, Agencies : NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:15 asc, Status : Lost at launch, Payload : OCO , Last update : 2015-07-28 20:47:53" + }, + { + "value": "OCO-2", + "expanded": "Orbiting Carbon Observatory ", + "numerical_value": 588, + "description": "Launch : 2014-07-02, (expected) EOL : 2025-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : OCO , Last update : 2021-06-14 11:34:56" + }, + { + "value": "Odin", + "expanded": "Odin", + "numerical_value": 589, + "description": "Launch : 2001-02-20, (expected) EOL : 2021-11-30, Agencies : SNSA,CNES,CSA, Orbit : SunSync, Altitude : 552 km, Longitude : null, Inclination : null, Ect : 06:42 description, Status : Operational, Payload : OSIRIS,SMR, Last update : 2021-04-16 15:29:28" + }, + { + "value": "Okean-O-1", + "expanded": "Okean-O", + "numerical_value": 590, + "description": "Launch : 1999-07-17, (expected) EOL : 2000-09-15, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 648 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Delta-2D,Kondor-2,MSU-M,MSU-SK (Okean),MSU-V,R225,R600,RLSBO,Trasser, Last update : 2015-07-28 20:50:27" + }, + { + "value": "Okean-O1-1", + "expanded": "Okean Operational 1", + "numerical_value": 591, + "description": "Launch : 1986-07-29, (expected) EOL : 1988-07-29, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 660 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:49:33" + }, + { + "value": "Okean-O1-2", + "expanded": "Okean Operational 1", + "numerical_value": 592, + "description": "Launch : 1987-07-16, (expected) EOL : 1989-07-16, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 660 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:50:18" + }, + { + "value": "Okean-O1-3", + "expanded": "Okean Operational 1", + "numerical_value": 593, + "description": "Launch : 1988-07-05, (expected) EOL : 1990-07-05, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 660 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean),Trasser, Last update : 2019-10-22 01:51:18" + }, + { + "value": "Okean-O1-4", + "expanded": "Okean Operational 1", + "numerical_value": 594, + "description": "Launch : 1989-06-09, (expected) EOL : 1989-06-09, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 660 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:51:55" + }, + { + "value": "Okean-O1-5", + "expanded": "Okean Operational 1", + "numerical_value": 595, + "description": "Launch : 1990-02-28, (expected) EOL : 1992-02-28, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 660 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:52:31" + }, + { + "value": "Okean-O1-6", + "expanded": "Okean Operational 1", + "numerical_value": 596, + "description": "Launch : 1991-06-04, (expected) EOL : 1993-06-04, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 660 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:53:01" + }, + { + "value": "Okean-O1-7", + "expanded": "Okean Operational 1", + "numerical_value": 597, + "description": "Launch : 1994-10-11, (expected) EOL : 1996-10-11, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 660 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:53:32" + }, + { + "value": "OrbView-1/MicroLab", + "expanded": "Orbview-1 (former: MicroLab)", + "numerical_value": 598, + "description": "Launch : 1995-04-01, (expected) EOL : 2000-04-03, Agencies : NASA,UCAR, Orbit : DRIFT, Altitude : 785 km, Longitude : null, Inclination :70°, Ect : null, Status : Inactive, Payload : GPS/MET,OTD, Last update : 2015-08-24 18:58:23" + }, + { + "value": "OrbView-2/SeaStar", + "expanded": "OrbView-2 (former: SeaStar)", + "numerical_value": 599, + "description": "Launch : 1997-08-01, (expected) EOL : 2010-12-11, Agencies : GeoEye, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : SeaWiFS, Last update : 2015-07-28 20:59:34" + }, + { + "value": "OrbView-3", + "expanded": "GeoEye", + "numerical_value": 600, + "description": "Launch : 2003-06-26, (expected) EOL : 2007-04-23, Agencies : Maxar,GeoEye, Orbit : SunSync, Altitude : 470 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : OHRIS, Last update : 2015-07-28 21:00:20" + }, + { + "value": "OrbView-4", + "expanded": "GeoEye", + "numerical_value": 601, + "description": "Launch : 2001-09-21, (expected) EOL : 2001-09-21, Agencies : Maxar,GeoEye, Orbit : SunSync, Altitude : 470 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Lost at launch, Payload : OHIS,OHRIS, Last update : 2015-07-28 21:01:45" + }, + { + "value": "Ørsted", + "expanded": "Ørsted (Oersted)", + "numerical_value": 602, + "description": "Launch : 1999-02-23, (expected) EOL : 2013-12-31, Agencies : DNSC,CNES,NASA, Orbit : DRIFT, Altitude : 750 km, Longitude : null, Inclination :96.5°, Ect : null, Status : Inactive, Payload : ASC,CPD,FVM,OVM,TRSR (Ørsted), Last update : 2017-07-22 17:23:30" + }, + { + "value": "PACE", + "expanded": "Pre-ACE (ACE = Aerosol-Cloud Ecosystems)", + "numerical_value": 603, + "description": "Launch : 2023-11-30, (expected) EOL : 2026-11-30, Agencies : NASA,CNES, Orbit : SunSync, Altitude : 676 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Planned, Payload : OCI,Polarimeters, Last update : 2021-06-14 14:28:59" + }, + { + "value": "PARASOL", + "expanded": "Polarisation et Anisotropie des Réflectances au sommet de l'Atmosphère, couplées avec un Satellite d'Observation emportant un Lidar", + "numerical_value": 604, + "description": "Launch : 2004-12-18, (expected) EOL : 2013-12-18, Agencies : CNES, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 15:20 asc, Status : Inactive, Payload : POLDER, Last update : 2015-07-28 21:35:09" + }, + { + "value": "Parker Solar Probe", + "expanded": "Parker Solar Probe", + "numerical_value": 605, + "description": "Launch : 2018-08-12, (expected) EOL : 2024-11-30, Agencies : NASA, Orbit : Solar, Altitude : null, Longitude : null, Inclination :3.4°, Ect : null, Status : Operational, Payload : FIELDS,ISIS-EPI,SWEAPI,WISPR, Last update : 2020-02-27 19:37:03" + }, + { + "value": "PATH", + "expanded": "Precipitation and All-weather Temperature and Humidity", + "numerical_value": 606, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : GEO, Altitude : 35786 km, Longitude : null, Inclination : null, Ect : null, Status : Mission concept, Payload : GeoSTAR, Last update : 2018-06-20 23:22:21" + }, + { + "value": "PCW-1", + "expanded": "Polar Communications and Weather", + "numerical_value": 607, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : CSA, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Mission concept, Payload : ISR,SWS, Last update : 2018-12-06 03:28:44" + }, + { + "value": "PCW-2", + "expanded": "Polar Communications and Weather", + "numerical_value": 608, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : CSA, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Mission concept, Payload : ISR,SWS, Last update : 2018-12-06 03:37:07" + }, + { + "value": "PeruSat-1", + "expanded": "PeruSat", + "numerical_value": 609, + "description": "Launch : 2016-09-16, (expected) EOL : 2025-11-30, Agencies : CONIDA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : NAOMI (KazEOSat), Last update : 2017-08-03 12:14:28" + }, + { + "value": "Picard", + "expanded": "Picard", + "numerical_value": 610, + "description": "Launch : 2010-06-15, (expected) EOL : 2014-04-04, Agencies : CNES, Orbit : SunSync, Altitude : 725 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Inactive, Payload : PREMOS,SODISM,SOVAP, Last update : 2017-01-05 01:09:31" + }, + { + "value": "Pléiades-1A", + "expanded": "Pléiades", + "numerical_value": 611, + "description": "Launch : 2011-12-17, (expected) EOL : 2021-11-30, Agencies : CNES, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HiRI, Last update : 2020-02-26 13:47:07" + }, + { + "value": "Pléiades-1B", + "expanded": "Pléiades", + "numerical_value": 612, + "description": "Launch : 2012-12-02, (expected) EOL : 2021-11-30, Agencies : CNES, Orbit : SunSync, Altitude : 694 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HiRI, Last update : 2020-02-25 13:22:56" + }, + { + "value": "Pléiades-Neo 3", + "expanded": "Pléiades Neo", + "numerical_value": 613, + "description": "Launch : 2021-04-29, (expected) EOL : 2030-11-30, Agencies : Airbus, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : Pléiades-Neo, Last update : 2021-08-25 16:50:07" + }, + { + "value": "Pléiades-Neo 4", + "expanded": "Pléiades Neo", + "numerical_value": 614, + "description": "Launch : 2021-08-17, (expected) EOL : 2030-11-30, Agencies : Airbus, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : Pléiades-Neo, Last update : 2022-02-01 16:15:26" + }, + { + "value": "Pléiades-Neo C", + "expanded": "Pléiades Neo", + "numerical_value": 615, + "description": "Launch : 2021-11-30, (expected) EOL : 2031-11-30, Agencies : Airbus, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : Pléiades-Neo, Last update : 2021-11-25 15:00:29" + }, + { + "value": "Pléiades-Neo D", + "expanded": "Pléiades Neo", + "numerical_value": 616, + "description": "Launch : 2021-11-30, (expected) EOL : 2031-11-30, Agencies : Airbus, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : Pléiades-Neo, Last update : 2021-11-25 15:00:56" + }, + { + "value": "Polar", + "expanded": "Polar", + "numerical_value": 617, + "description": "Launch : 1996-02-24, (expected) EOL : 2008-04-15, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :86°, Ect : null, Status : Inactive, Payload : CAMMICE,CEPPAD,EFI (Polar),HYDRA,MFE,PIXIE,PWI (Polar),TIDE/PSI,TIMAS,UVI,VIS, Last update : 2015-07-28 21:48:30" + }, + { + "value": "PREFIRE", + "expanded": "Polar Radiant Energy in the Far-InfraRed Experiment", + "numerical_value": 618, + "description": "Launch : 2022-11-30, (expected) EOL : 2026-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 560 km, Longitude : null, Inclination :90°, Ect : null, Status : Planned, Payload : PREFIRE, Last update : 2021-11-25 15:03:34" + }, + { + "value": "PRISMA", + "expanded": "PRecursore IperSpettrale della Missione Applicativa", + "numerical_value": 619, + "description": "Launch : 2019-03-22, (expected) EOL : 2023-11-30, Agencies : ASI, Orbit : SunSync, Altitude : 615 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : HYC,PAN, Last update : 2019-07-06 01:00:47" + }, + { + "value": "PROBA-1", + "expanded": "Project for On-Board Autonomy", + "numerical_value": 620, + "description": "Launch : 2001-10-22, (expected) EOL : 2021-11-30, Agencies : ESA, Orbit : SunSync, Altitude : 615 km, Longitude : null, Inclination : null, Ect : 07:30 description, Status : Operational, Payload : CHRIS,SREM-dose,SREM-particles, Last update : 2022-01-03 09:00:11" + }, + { + "value": "PROBA-2", + "expanded": "Project for On-Board Autonomy", + "numerical_value": 621, + "description": "Launch : 2009-11-02, (expected) EOL : 2021-11-30, Agencies : ESA, Orbit : SunSync, Altitude : 730 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : DSLP,LYRA,SWAP,TPMU, Last update : 2022-01-03 12:48:38" + }, + { + "value": "PROBA-V", + "expanded": "Project for On-Board Autonomy", + "numerical_value": 622, + "description": "Launch : 2013-05-07, (expected) EOL : 2020-05-31, Agencies : ESA, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 11:00 asc, Status : Presumably inactive, Payload : EPD (PROBA-V),Végétation-P, Last update : 2022-01-03 13:13:58" + }, + { + "value": "PUNCH", + "expanded": "Polarimeter to UNify the Corona and Heliosphere", + "numerical_value": 623, + "description": "Launch : 2022-11-30, (expected) EOL : 2025-11-30, Agencies : NASA,NRL, Orbit : SunSync, Altitude : 570 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Planned, Payload : NFI,STEAM,WFI (PUNCH), Last update : 2022-01-31 11:12:45" + }, + { + "value": "QuickBird", + "expanded": "WorldView", + "numerical_value": 624, + "description": "Launch : 2001-10-18, (expected) EOL : 2015-01-27, Agencies : Maxar,DigitalGlobe, Orbit : SunSync, Altitude : 482 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : BGIS-2000, Last update : 2015-07-28 21:52:49" + }, + { + "value": "QuikSCAT", + "expanded": "Quick Scatterometer Mission", + "numerical_value": 625, + "description": "Launch : 1999-06-19, (expected) EOL : 2009-11-23, Agencies : NASA, Orbit : SunSync, Altitude : 803 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Inactive, Payload : SeaWinds, Last update : 2019-10-22 16:50:07" + }, + { + "value": "RadarSat-1", + "expanded": "RadarSat", + "numerical_value": 626, + "description": "Launch : 1995-11-04, (expected) EOL : 2013-03-29, Agencies : CSA, Orbit : SunSync, Altitude : 798 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Inactive, Payload : SAR (RadarSat-1), Last update : 2019-10-27 14:02:59" + }, + { + "value": "RadarSat-2", + "expanded": "RadarSat", + "numerical_value": 627, + "description": "Launch : 2007-12-14, (expected) EOL : 2021-11-30, Agencies : CSA, Orbit : SunSync, Altitude : 798 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR (RadarSat-1), Last update : 2022-01-02 22:12:24" + }, + { + "value": "RapidEye (5 sats)", + "expanded": "RapidEye", + "numerical_value": 628, + "description": "Launch : 2008-08-29, (expected) EOL : 2020-02-29, Agencies : RapidEye,DLR,Planet, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 11:00 description, Status : Presumably inactive, Payload : REIS, Last update : 2022-01-02 22:16:02" + }, + { + "value": "RASAT", + "expanded": "Remote Sensing Satellite", + "numerical_value": 629, + "description": "Launch : 2011-08-17, (expected) EOL : 2021-11-30, Agencies : TÜBITAK-UZAY, Orbit : SunSync, Altitude : 690 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Operational, Payload : OIS, Last update : 2022-02-05 15:34:09" + }, + { + "value": "RCM-1", + "expanded": "RadarSat Constellation Mission", + "numerical_value": 630, + "description": "Launch : 2019-06-12, (expected) EOL : 2025-11-30, Agencies : CSA, Orbit : SunSync, Altitude : 592 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR RCM, Last update : 2019-10-27 14:07:57" + }, + { + "value": "RCM-2", + "expanded": "RadarSat Constellation Mission", + "numerical_value": 631, + "description": "Launch : 2019-06-12, (expected) EOL : 2025-11-30, Agencies : CSA, Orbit : SunSync, Altitude : 592 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR RCM, Last update : 2019-10-27 14:11:52" + }, + { + "value": "RCM-3", + "expanded": "RadarSat Constellation Mission", + "numerical_value": 632, + "description": "Launch : 2019-06-12, (expected) EOL : 2025-11-30, Agencies : CSA, Orbit : SunSync, Altitude : 592 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR RCM, Last update : 2021-04-08 11:18:48" + }, + { + "value": "ResourceSat-1 (IRS-P6)", + "expanded": "Satellite for Earth Resources", + "numerical_value": 633, + "description": "Launch : 2003-10-17, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 817 km, Longitude : null, Inclination : null, Ect : 10:42 description, Status : Operational, Payload : AWiFS,LISS-3 (ResourceSat),LISS-4, Last update : 2022-01-02 22:23:43" + }, + { + "value": "ResourceSat-2", + "expanded": "Satellite for Earth Resources", + "numerical_value": 634, + "description": "Launch : 2011-04-20, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 817 km, Longitude : null, Inclination : null, Ect : 10:33 description, Status : Operational, Payload : AWiFS,LISS-3 (ResourceSat),LISS-4, Last update : 2022-01-02 22:26:59" + }, + { + "value": "ResourceSat-2A", + "expanded": "Satellite for Earth Resources", + "numerical_value": 635, + "description": "Launch : 2016-12-07, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 817 km, Longitude : null, Inclination : null, Ect : 10:20 description, Status : Operational, Payload : AWiFS,LISS-3 (ResourceSat),LISS-4, Last update : 2022-01-02 22:23:11" + }, + { + "value": "ResourceSat-3", + "expanded": "Satellite for Earth Resources", + "numerical_value": 636, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 795 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : ALISS-3,ATCOR, Last update : 2021-11-25 15:04:59" + }, + { + "value": "ResourceSat-3A", + "expanded": "Satellite for Earth Resources", + "numerical_value": 637, + "description": "Launch : 2023-11-30, (expected) EOL : 2027-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 795 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : ALISS-3,ATCOR, Last update : 2021-11-25 15:08:57" + }, + { + "value": "ResourceSat-3S", + "expanded": "Satellite for Earth Resources", + "numerical_value": 638, + "description": "Launch : 2022-06-30, (expected) EOL : 2025-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 633 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : MX (ResourceSat-3S),PAN (ResourceSat-3S, Last update : 2021-11-25 15:06:31" + }, + { + "value": "ResourceSat-3SA", + "expanded": "Satellite for Earth Resources", + "numerical_value": 639, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : ISRO, Orbit : SunSync, Altitude : 633 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : MX (ResourceSat-3S),PAN (ResourceSat-3S, Last update : 2021-11-25 15:08:42" + }, + { + "value": "Resurs-DK", + "expanded": "Resurs-P", + "numerical_value": 640, + "description": "Launch : 2006-06-15, (expected) EOL : 2015-11-30, Agencies : Roscosmos, Orbit : DRIFT, Altitude : 570 km, Longitude : null, Inclination :70.4°, Ect : null, Status : Inactive, Payload : ARINA,Geoton-1,PAMELA, Last update : 2018-08-12 11:18:14" + }, + { + "value": "Resurs-O1-1", + "expanded": "Resurs Operational - 1", + "numerical_value": 641, + "description": "Launch : 1985-10-03, (expected) EOL : 1986-11-11, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MSU-E (Resurs-O1),MSU-SK (Resurs),SAR-Travers, Last update : 2015-07-29 11:09:40" + }, + { + "value": "Resurs-O1-2", + "expanded": "Resurs Operational - 1", + "numerical_value": 642, + "description": "Launch : 1988-04-20, (expected) EOL : 1999-06-01, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 650 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MSU-E (Resurs-O1),MSU-SK (Resurs), Last update : 2015-07-29 11:10:28" + }, + { + "value": "Resurs-O1-3", + "expanded": "Resurs Operational - 1", + "numerical_value": 643, + "description": "Launch : 1994-11-04, (expected) EOL : 2001-05-15, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 675 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MSU-E (Resurs-O1),MSU-SK (Resurs), Last update : 2015-07-29 11:11:06" + }, + { + "value": "Resurs-O1-4", + "expanded": "Resurs Operational - 1", + "numerical_value": 644, + "description": "Launch : 1998-07-10, (expected) EOL : 2002-01-15, Agencies : Roscosmos,RosHydroMet, Orbit : SunSync, Altitude : 835 km, Longitude : null, Inclination : null, Ect : 10:15 asc, Status : Inactive, Payload : MP-900B,MSU-E (Resurs-O1),MSU-SK1,ScaRaB, Last update : 2015-07-29 11:11:46" + }, + { + "value": "Resurs-P1", + "expanded": "Resurs-P", + "numerical_value": 645, + "description": "Launch : 2013-06-25, (expected) EOL : 2021-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 473 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : GSA,Geoton-L1,ShMSA-SR,ShMSA-VR , Last update : 2022-01-17 11:08:54" + }, + { + "value": "Resurs-P2", + "expanded": "Resurs-P", + "numerical_value": 646, + "description": "Launch : 2014-12-26, (expected) EOL : 2018-10-10, Agencies : Roscosmos, Orbit : SunSync, Altitude : 475 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : GSA,Geoton-L1,Nucleon,ShMSA-SR,ShMSA-VR , Last update : 2022-01-12 17:36:15" + }, + { + "value": "Resurs-P3", + "expanded": "Resurs-P", + "numerical_value": 647, + "description": "Launch : 2016-03-13, (expected) EOL : 2017-05-16, Agencies : Roscosmos, Orbit : SunSync, Altitude : 477 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : GSA,Geoton-L1,ShMSA-SR,ShMSA-VR , Last update : 2022-01-12 17:38:05" + }, + { + "value": "Resurs-P4", + "expanded": "Resurs-P", + "numerical_value": 648, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 477 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : GSA,Geoton-L1,ShMSA-SR,ShMSA-VR , Last update : 2022-01-12 17:40:04" + }, + { + "value": "Resurs-P5", + "expanded": "Resurs-P", + "numerical_value": 649, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 477 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : GSA,Geoton-L1,ShMSA-SR,ShMSA-VR , Last update : 2022-01-12 17:39:32" + }, + { + "value": "RHESSI", + "expanded": "Reuven Ramaty High Energy Solar Spectroscopic Imager", + "numerical_value": 650, + "description": "Launch : 2002-02-05, (expected) EOL : 2018-08-16, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :38°, Ect : null, Status : Inactive, Payload : RHESSI, Last update : 2020-02-27 19:41:17" + }, + { + "value": "RISAT-1", + "expanded": "Radar Imaging Satellite", + "numerical_value": 651, + "description": "Launch : 2012-04-26, (expected) EOL : 2017-03-31, Agencies : ISRO, Orbit : SunSync, Altitude : 546 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Inactive, Payload : SAR-C (RISAT), Last update : 2020-01-04 13:53:08" + }, + { + "value": "RISAT-2", + "expanded": "Radar Imaging Satellite", + "numerical_value": 652, + "description": "Launch : 2009-04-20, (expected) EOL : 2021-11-30, Agencies : ISRO, Orbit : DRIFT, Altitude : 440 km, Longitude : null, Inclination :41°, Ect : null, Status : Operational, Payload : SAR-X (RISAT-2), Last update : 2022-01-02 22:35:16" + }, + { + "value": "RISAT-2B", + "expanded": "Radar Imaging Satellite", + "numerical_value": 653, + "description": "Launch : 2019-05-22, (expected) EOL : 2023-11-30, Agencies : ISRO, Orbit : DRIFT, Altitude : 555 km, Longitude : null, Inclination :37°, Ect : null, Status : Operational, Payload : SAR-X (RISAT-2), Last update : 2022-02-16 15:35:16" + }, + { + "value": "RISAT-2BR1", + "expanded": "Radar Imaging Satellite", + "numerical_value": 654, + "description": "Launch : 2019-12-11, (expected) EOL : 2023-11-30, Agencies : ISRO, Orbit : DRIFT, Altitude : 555 km, Longitude : null, Inclination :37°, Ect : null, Status : Operational, Payload : SAR-X (RISAT-2), Last update : 2022-02-16 15:34:42" + }, + { + "value": "ROSE-L", + "expanded": "Copernicus Sentinel Expansion Missions", + "numerical_value": 655, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 693 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Considered, Payload : ROSE-L, Last update : 2022-01-04 17:36:16" + }, + { + "value": "SAC-A", + "expanded": "Satélite de Aplicaciones Cientificas", + "numerical_value": 656, + "description": "Launch : 1998-12-04, (expected) EOL : 1999-08-15, Agencies : CONAE,AEB,INPE,NASA, Orbit : DRIFT, Altitude : 395 km, Longitude : null, Inclination :51.6°, Ect : null, Status : Inactive, Payload : null, Last update : 2015-07-29 11:16:35" + }, + { + "value": "SAC-B", + "expanded": "Satélite de Aplicaciones Cientificas", + "numerical_value": 657, + "description": "Launch : 1996-11-04, (expected) EOL : 1996-11-04, Agencies : CONAE,AEB,INPE,NASA, Orbit : DRIFT, Altitude : 550 km, Longitude : null, Inclination :38°, Ect : null, Status : Lost at launch, Payload : CUBIC,GXRE/GRaBS,GXRE/SOXS,HXRS,ISENA, Last update : 2015-07-29 11:19:54" + }, + { + "value": "SAC-C", + "expanded": "Satélite de Aplicaciones Cientificas", + "numerical_value": 658, + "description": "Launch : 2000-11-21, (expected) EOL : 2013-08-15, Agencies : CONAE,AEB,INPE,NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:20 description, Status : Inactive, Payload : DCS (SAC),FVM,GOLPE,HRTC,HSTC,ICARE,IST,MMRS,OVM, Last update : 2015-07-29 11:21:01" + }, + { + "value": "SAC-D", + "expanded": "Satélite de Aplicaciones Cientificas", + "numerical_value": 659, + "description": "Launch : 2011-06-10, (expected) EOL : 2015-06-07, Agencies : CONAE,AEB,INPE,NASA, Orbit : SunSync, Altitude : 661 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Inactive, Payload : Aquarius,DCS (SAC),HSC,ICARE,MWR (SAC-D),NIRST,ROSA, Last update : 2017-01-05 01:08:23" + }, + { + "value": "SAC-E/SABIA-MAR A", + "expanded": "Satélite de Aplicaciones Cientificas", + "numerical_value": 660, + "description": "Launch : 2021-11-30, (expected) EOL : 2026-11-30, Agencies : CONAE,AEB,INPE,NASA, Orbit : SunSync, Altitude : 645 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : DCS (SAC),HSC,MUS-nir/swir, Last update : 2021-01-16 12:43:11" + }, + { + "value": "SAC-E/SABIA-MAR B", + "expanded": "Satélite de Aplicaciones Cientificas", + "numerical_value": 661, + "description": "Launch : 2022-11-30, (expected) EOL : 2027-11-30, Agencies : CONAE,AEB,INPE,NASA, Orbit : SunSync, Altitude : 645 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : DCS (SAC),HSC,MUS-uv/vis/nir, Last update : 2021-01-16 12:46:10" + }, + { + "value": "SAMPEX", + "expanded": "Solar Anomalous and Magnetospheric Particle Explorer", + "numerical_value": 662, + "description": "Launch : 1992-07-03, (expected) EOL : 2012-11-13, Agencies : NASA, Orbit : DRIFT, Altitude : 590 km, Longitude : null, Inclination :82°, Ect : null, Status : Inactive, Payload : HILT,LEICA,MAST,PET, Last update : 2015-07-29 11:24:55" + }, + { + "value": "SAOCOM-1A", + "expanded": "SAtélite Argentino de Observación COn Microondas", + "numerical_value": 663, + "description": "Launch : 2018-10-08, (expected) EOL : 2022-11-30, Agencies : CONAE, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : SAR-L, Last update : 2019-10-27 12:56:58" + }, + { + "value": "SAOCOM-1B", + "expanded": "SAtélite Argentino de Observación COn Microondas", + "numerical_value": 664, + "description": "Launch : 2020-08-30, (expected) EOL : 2024-11-30, Agencies : CONAE, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : SAR-L, Last update : 2021-07-13 14:36:38" + }, + { + "value": "SAOCOM-2A", + "expanded": "SAtélite Argentino de Observación COn Microondas", + "numerical_value": 665, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : CONAE, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Planned, Payload : SAR-L, Last update : 2021-11-25 15:14:20" + }, + { + "value": "SAOCOM-2B", + "expanded": "SAtélite Argentino de Observación COn Microondas", + "numerical_value": 666, + "description": "Launch : 2025-11-30, (expected) EOL : 2030-11-30, Agencies : CONAE, Orbit : SunSync, Altitude : 620 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Planned, Payload : SAR-L, Last update : 2021-11-25 15:15:21" + }, + { + "value": "SARAL", + "expanded": "Satellite with ARgos and ALtiKa", + "numerical_value": 667, + "description": "Launch : 2013-02-25, (expected) EOL : 2021-11-30, Agencies : CNES,ISRO, Orbit : SunSync, Altitude : 800 km, Longitude : null, Inclination : null, Ect : 05:56 asc, Status : Operational, Payload : A-DCS,AltiKa,DORIS,LRA (CNES), Last update : 2022-01-03 09:02:29" + }, + { + "value": "ScatSat-1", + "expanded": "Satellite for the Ocean", + "numerical_value": 668, + "description": "Launch : 2016-09-26, (expected) EOL : 2021-02-28, Agencies : ISRO, Orbit : SunSync, Altitude : 732 km, Longitude : null, Inclination : null, Ect : 08:45 description, Status : Inactive, Payload : OSCAT, Last update : 2021-06-10 16:21:34" + }, + { + "value": "SCD-1", + "expanded": "Satélite de Coleta de Dados", + "numerical_value": 669, + "description": "Launch : 1993-02-09, (expected) EOL : 2021-11-30, Agencies : INPE,AEB, Orbit : DRIFT, Altitude : 750 km, Longitude : null, Inclination :25°, Ect : null, Status : Operational, Payload : DCS (CBERS), Last update : 2022-01-03 09:03:30" + }, + { + "value": "SCD-2", + "expanded": "Satélite de Coleta de Dados", + "numerical_value": 670, + "description": "Launch : 1998-10-22, (expected) EOL : 2021-11-30, Agencies : INPE,AEB, Orbit : DRIFT, Altitude : 750 km, Longitude : null, Inclination :25°, Ect : null, Status : Operational, Payload : DCS (CBERS), Last update : 2022-01-03 09:03:55" + }, + { + "value": "SCISAT-1", + "expanded": "Science Satellite / Atmospheric Chemistry Experiment", + "numerical_value": 671, + "description": "Launch : 2003-08-13, (expected) EOL : 2023-11-30, Agencies : CSA,NASA, Orbit : DRIFT, Altitude : 650 km, Longitude : null, Inclination :73.9°, Ect : null, Status : Operational, Payload : ACE-FTS,MAESTRO, Last update : 2021-09-03 15:34:27" + }, + { + "value": "SCLP", + "expanded": "Snow and Cold Land Processes", + "numerical_value": 672, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NASA, Orbit : SunSync, Altitude : TBD km, Longitude : null, Inclination : null, Ect : TBD, Status : Mission concept, Payload : SAR-X/Ku, Last update : 2018-06-20 23:21:14" + }, + { + "value": "SDO", + "expanded": "Solar Dynamics Observatory", + "numerical_value": 673, + "description": "Launch : 2010-02-11, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : GeoSync, Altitude : 35756 km, Longitude :105 ° W, Inclination :29.6°, Ect : null, Status : Operational, Payload : AIA,EVE,HMI, Last update : 2022-01-03 11:40:07" + }, + { + "value": "SeaSat", + "expanded": "SeaSat", + "numerical_value": 674, + "description": "Launch : 1978-06-27, (expected) EOL : 1978-10-10, Agencies : NASA, Orbit : DRIFT, Altitude : 785 km, Longitude : null, Inclination :108°, Ect : null, Status : Inactive, Payload : ALT (SeaSat),LRR (NASA),SAR,SASS,SMMR,VIRR (Seasat), Last update : 2015-07-29 11:27:26" + }, + { + "value": "Sentinel-1A", + "expanded": "Sentinel-1", + "numerical_value": 675, + "description": "Launch : 2014-04-03, (expected) EOL : 2021-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 693 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-C (Sentinel-1), Last update : 2022-01-03 09:05:47" + }, + { + "value": "Sentinel-1B", + "expanded": "Sentinel-1", + "numerical_value": 676, + "description": "Launch : 2016-04-25, (expected) EOL : 2022-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 693 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-C (Sentinel-1), Last update : 2019-11-27 18:02:24" + }, + { + "value": "Sentinel-1C", + "expanded": "Sentinel-1", + "numerical_value": 677, + "description": "Launch : 2021-11-30, (expected) EOL : 2028-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 693 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : SAR-C (Sentinel-1), Last update : 2019-12-05 19:32:49" + }, + { + "value": "Sentinel-1D", + "expanded": "Sentinel-1", + "numerical_value": 678, + "description": "Launch : 2022-11-30, (expected) EOL : 2029-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 693 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : SAR-C (Sentinel-1), Last update : 2019-10-27 12:47:55" + }, + { + "value": "Sentinel-2A", + "expanded": "Sentinel-2", + "numerical_value": 679, + "description": "Launch : 2015-06-23, (expected) EOL : 2021-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 786 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : MSI (Sentinel-2A), Last update : 2019-11-27 17:56:51" + }, + { + "value": "Sentinel-2B", + "expanded": "Sentinel-2", + "numerical_value": 680, + "description": "Launch : 2017-03-07, (expected) EOL : 2023-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 786 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : MSI (Sentinel-2A), Last update : 2019-11-27 17:58:22" + }, + { + "value": "Sentinel-2C", + "expanded": "Sentinel-2", + "numerical_value": 681, + "description": "Launch : 2023-11-30, (expected) EOL : 2030-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 786 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : MSI (Sentinel-2A), Last update : 2021-03-10 16:01:48" + }, + { + "value": "Sentinel-2D", + "expanded": "Sentinel-2", + "numerical_value": 682, + "description": "Launch : 2024-11-30, (expected) EOL : 2031-11-30, Agencies : ESA,EC, Orbit : SunSync, Altitude : 786 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Planned, Payload : MSI (Sentinel-2A), Last update : 2021-03-10 16:08:47" + }, + { + "value": "Sentinel-3A", + "expanded": "Sentinel-3", + "numerical_value": 683, + "description": "Launch : 2016-02-16, (expected) EOL : 2022-11-30, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 814.5 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Operational, Payload : DORIS,GPS (ESA),LRR (ESA),MWR (Sentinel-3),OLCI ,SLSTR,SRAL, Last update : 2020-08-21 13:22:25" + }, + { + "value": "Sentinel-3B", + "expanded": "Sentinel-3", + "numerical_value": 684, + "description": "Launch : 2018-04-25, (expected) EOL : 2024-11-30, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 814.5 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Operational, Payload : DORIS,GPS (ESA),LRR (ESA),MWR (Sentinel-3),OLCI ,SLSTR,SRAL, Last update : 2020-08-21 13:23:05" + }, + { + "value": "Sentinel-3C", + "expanded": "Sentinel-3", + "numerical_value": 685, + "description": "Launch : 2022-11-30, (expected) EOL : 2029-11-30, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 810 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Planned, Payload : DORIS,GPS (ESA),LRR (ESA),MWR (Sentinel-3),OLCI ,SLSTR,SRAL, Last update : 2020-07-17 10:22:25" + }, + { + "value": "Sentinel-3D", + "expanded": "Sentinel-3", + "numerical_value": 686, + "description": "Launch : 2024-11-30, (expected) EOL : 2031-11-30, Agencies : ESA,EC,EUMETSAT, Orbit : SunSync, Altitude : 810 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Planned, Payload : DORIS,GPS (ESA),LRR (ESA),MWR (Sentinel-3),OLCI ,SLSTR,SRAL, Last update : 2021-03-10 15:47:55" + }, + { + "value": "Sentinel-5P", + "expanded": "Sentinel-5 precursor", + "numerical_value": 687, + "description": "Launch : 2017-10-13, (expected) EOL : 2023-11-30, Agencies : ESA,NSO, Orbit : SunSync, Altitude : 824 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : TROPOMI, Last update : 2021-06-08 10:53:58" + }, + { + "value": "Sentinel-6A", + "expanded": "Sentinel-6", + "numerical_value": 688, + "description": "Launch : 2020-11-21, (expected) EOL : 2026-11-30, Agencies : EUMETSAT,CNES,EC,ESA,NASA,NOAA, Orbit : DRIFT, Altitude : 1336 km, Longitude : null, Inclination :66°, Ect : null, Status : Operational, Payload : AMR-C,DORIS,GNSS-RO (Sentinel-6),GPS (ESA),LRA (NASA),Poseidon-4, Last update : 2021-05-20 22:23:22" + }, + { + "value": "Sentinel-6B", + "expanded": "Sentinel-6", + "numerical_value": 689, + "description": "Launch : 2024-11-30, (expected) EOL : 2031-11-30, Agencies : EUMETSAT,CNES,EC,ESA,NASA,NOAA, Orbit : DRIFT, Altitude : 1336 km, Longitude : null, Inclination :66°, Ect : null, Status : Planned, Payload : AMR-C,DORIS,GNSS-RO (Sentinel-6),GPS (ESA),LRA (NASA),Poseidon-4, Last update : 2021-05-20 23:02:25" + }, + { + "value": "SEOSAR/Paz", + "expanded": "Satélite Español de Observación SAR (also Paz)", + "numerical_value": 690, + "description": "Launch : 2018-02-22, (expected) EOL : 2022-11-30, Agencies : MDE,CDTI, Orbit : SunSync, Altitude : 514 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : LRR (DLR),ROHPP,SAR-X (Paz (SEOSAR)), Last update : 2019-10-27 13:10:00" + }, + { + "value": "SEOSat/Ingenio", + "expanded": "Spanish Earth Observation Satellite (also Ingenio)", + "numerical_value": 691, + "description": "Launch : 2020-11-17, (expected) EOL : 2020-11-17, Agencies : CDTI,ESA, Orbit : SunSync, Altitude : 668 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Lost at launch, Payload : MS (Ingenio),PAN (Ingenio), Last update : 2021-06-16 11:47:18" + }, + { + "value": "SES-14", + "expanded": "Société Européenne des Satellites", + "numerical_value": 692, + "description": "Launch : 2018-01-25, (expected) EOL : 2021-11-30, Agencies : SES, Orbit : GEO, Altitude : 35786 km, Longitude :47.5 ° W, Inclination : null, Ect : null, Status : Operational, Payload : GOLD, Last update : 2022-01-03 16:07:47" + }, + { + "value": "SICH-1", + "expanded": "Okean Operational 1", + "numerical_value": 693, + "description": "Launch : 1995-08-31, (expected) EOL : 2001-12-14, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 650 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : Kondor,MSU-SK (Okean),MWR,RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:54:11" + }, + { + "value": "SICH-1M", + "expanded": "Okean Operational 1", + "numerical_value": 694, + "description": "Launch : 2004-12-24, (expected) EOL : 2006-04-15, Agencies : NSAU,Roscosmos,RosHydroMet, Orbit : DRIFT, Altitude : 650 km, Longitude : null, Inclination :82.5°, Ect : null, Status : Inactive, Payload : MSU-EU,MTVZA-OK (MW),MTVZA-OK (optical),RLSBO,RM-08 (Okean), Last update : 2019-10-22 01:54:37" + }, + { + "value": "SICH-2", + "expanded": "SICH 2", + "numerical_value": 695, + "description": "Launch : 2011-08-17, (expected) EOL : 2012-12-12, Agencies : NSAU, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:50 description, Status : Inactive, Payload : IREI,MBEI,Potential, Last update : 2017-01-05 01:06:33" + }, + { + "value": "SICH-2-30", + "expanded": "SICH 2", + "numerical_value": 696, + "description": "Launch : 2022-01-13, (expected) EOL : 2026-11-30, Agencies : NSAU, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 10:50 description, Status : Commissioning, Payload : IREI,MBEI,Potential, Last update : 2022-01-14 10:43:01" + }, + { + "value": "SJ-9A", + "expanded": "Shijian 9", + "numerical_value": 697, + "description": "Launch : 2012-10-14, (expected) EOL : 2021-11-30, Agencies : CRESDA,CAST, Orbit : SunSync, Altitude : 645 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : MUX (SJ-9),PAN (SJ-9), Last update : 2022-01-03 15:43:28" + }, + { + "value": "SJ-9B", + "expanded": "Shijian 9", + "numerical_value": 698, + "description": "Launch : 2012-10-14, (expected) EOL : 2021-11-30, Agencies : CRESDA,CAST, Orbit : SunSync, Altitude : 645 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : IRS (SJ-9), Last update : 2022-01-03 15:43:44" + }, + { + "value": "SkySat-1", + "expanded": "Sky Satellite", + "numerical_value": 699, + "description": "Launch : 2013-11-21, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 587 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SkySat, Last update : 2022-01-03 15:34:15" + }, + { + "value": "SkySat-10", + "expanded": "Sky Satellite", + "numerical_value": 700, + "description": "Launch : 2017-10-31, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2018-02-01 13:39:18" + }, + { + "value": "SkySat-11", + "expanded": "Sky Satellite", + "numerical_value": 701, + "description": "Launch : 2017-10-31, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2018-02-01 13:40:00" + }, + { + "value": "SkySat-12", + "expanded": "Sky Satellite", + "numerical_value": 702, + "description": "Launch : 2017-10-31, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2018-02-01 13:40:50" + }, + { + "value": "SkySat-13", + "expanded": "Sky Satellite", + "numerical_value": 703, + "description": "Launch : 2017-10-31, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2018-02-01 13:41:26" + }, + { + "value": "SkySat-14", + "expanded": "Sky Satellite", + "numerical_value": 704, + "description": "Launch : 2018-12-03, (expected) EOL : 2022-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2019-03-23 17:40:16" + }, + { + "value": "SkySat-15", + "expanded": "Sky Satellite", + "numerical_value": 705, + "description": "Launch : 2018-12-03, (expected) EOL : 2022-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2019-03-23 17:41:31" + }, + { + "value": "SkySat-16", + "expanded": "Sky Satellite", + "numerical_value": 706, + "description": "Launch : 2020-06-13, (expected) EOL : 2024-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2021-06-17 18:00:49" + }, + { + "value": "SkySat-17", + "expanded": "Sky Satellite", + "numerical_value": 707, + "description": "Launch : 2020-06-13, (expected) EOL : 2024-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2021-06-17 18:01:20" + }, + { + "value": "SkySat-18", + "expanded": "Sky Satellite", + "numerical_value": 708, + "description": "Launch : 2020-06-13, (expected) EOL : 2024-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2021-06-17 18:02:03" + }, + { + "value": "SkySat-19", + "expanded": "Sky Satellite", + "numerical_value": 709, + "description": "Launch : 2020-08-18, (expected) EOL : 2024-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2021-06-17 18:02:40" + }, + { + "value": "SkySat-2", + "expanded": "Sky Satellite", + "numerical_value": 710, + "description": "Launch : 2014-07-08, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 600 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SkySat, Last update : 2022-01-03 15:34:34" + }, + { + "value": "SkySat-20", + "expanded": "Sky Satellite", + "numerical_value": 711, + "description": "Launch : 2020-08-18, (expected) EOL : 2024-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2021-06-17 18:03:13" + }, + { + "value": "SkySat-21", + "expanded": "Sky Satellite", + "numerical_value": 712, + "description": "Launch : 2020-08-18, (expected) EOL : 2024-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2021-06-17 18:03:57" + }, + { + "value": "SkySat-4", + "expanded": "Sky Satellite", + "numerical_value": 713, + "description": "Launch : 2016-09-16, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 507 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SkySat, Last update : 2022-01-03 15:34:52" + }, + { + "value": "SkySat-5", + "expanded": "Sky Satellite", + "numerical_value": 714, + "description": "Launch : 2016-09-16, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 507 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SkySat, Last update : 2022-01-03 15:35:07" + }, + { + "value": "SkySat-6", + "expanded": "Sky Satellite", + "numerical_value": 715, + "description": "Launch : 2016-09-16, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 507 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SkySat, Last update : 2022-01-03 15:35:30" + }, + { + "value": "SkySat-7", + "expanded": "Sky Satellite", + "numerical_value": 716, + "description": "Launch : 2016-09-16, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 509 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SkySat, Last update : 2022-01-03 15:35:47" + }, + { + "value": "SkySat-8", + "expanded": "Sky Satellite", + "numerical_value": 717, + "description": "Launch : 2017-10-31, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2018-02-01 13:37:38" + }, + { + "value": "SkySat-9", + "expanded": "Sky Satellite", + "numerical_value": 718, + "description": "Launch : 2017-10-31, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : SkySat, Last update : 2018-02-01 13:38:33" + }, + { + "value": "SkySat-C1", + "expanded": "Sky Satellite", + "numerical_value": 719, + "description": "Launch : 2016-06-22, (expected) EOL : 2021-11-30, Agencies : Terra Bella,Planet, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : SkySat, Last update : 2022-01-03 15:58:58" + }, + { + "value": "SMAP", + "expanded": "Soil Moisture Active-Passive", + "numerical_value": 720, + "description": "Launch : 2015-01-31, (expected) EOL : 2025-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 685 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SMAP, Last update : 2021-06-14 11:35:34" + }, + { + "value": "SMM", + "expanded": "Solar Maximum Mission", + "numerical_value": 721, + "description": "Launch : 1980-02-14, (expected) EOL : 1989-11-24, Agencies : NASA, Orbit : DRIFT, Altitude : 510 km, Longitude : null, Inclination :28.5°, Ect : null, Status : Inactive, Payload : ACRIM-I,CP,GRS,HXIS,HXRBS,UVSP,XRP, Last update : 2015-07-29 11:53:50" + }, + { + "value": "SMOS", + "expanded": "Soil Moisture and Ocean Salinity", + "numerical_value": 722, + "description": "Launch : 2009-11-02, (expected) EOL : 2021-11-30, Agencies : ESA,CDTI,CNES, Orbit : SunSync, Altitude : 755 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : GPS (ESA),MIRAS,STA, Last update : 2021-12-06 09:21:32" + }, + { + "value": "SMS-1", + "expanded": "Synchronous Meteorological Satellite", + "numerical_value": 723, + "description": "Launch : 1974-05-17, (expected) EOL : 1981-01-21, Agencies : NASA,NOAA, Orbit : GEO, Altitude : 35786 km, Longitude :75 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VISSR, Last update : 2015-07-29 11:55:25" + }, + { + "value": "SMS-2", + "expanded": "Synchronous Meteorological Satellite", + "numerical_value": 724, + "description": "Launch : 1975-02-06, (expected) EOL : 1982-08-05, Agencies : NASA,NOAA, Orbit : GEO, Altitude : 35786 km, Longitude :135 ° W, Inclination : null, Ect : null, Status : Inactive, Payload : DCIS,SEM/EPS,SEM/HEPAD,SEM/MAG,SEM/XRS-EUV,VISSR, Last update : 2015-07-29 11:56:12" + }, + { + "value": "SNPP", + "expanded": "Joint Polar Satellite System", + "numerical_value": 725, + "description": "Launch : 2011-10-28, (expected) EOL : 2022-11-30, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 833 km, Longitude : null, Inclination : null, Ect : 13:25 asc, Status : Operational, Payload : ATMS,CERES,CrIS,OMPS-limb,OMPS-nadir,VIIRS, Last update : 2021-12-01 18:24:53" + }, + { + "value": "SOHO", + "expanded": "Solar and Heliospheric Observatory", + "numerical_value": 726, + "description": "Launch : 1995-12-02, (expected) EOL : 2021-11-30, Agencies : ESA,NASA, Orbit : L1, Altitude : 1.5e+06 km, Longitude : null, Inclination : null, Ect : null, Status : Operational, Payload : CDS,CELIAS,COSTEP,EIT,ERNE,GOLF,LASCO,MDI,SEM (SOHO),SUMER,SWAN,UVCS,VIRGO, Last update : 2022-01-03 11:47:21" + }, + { + "value": "Solar Orbiter", + "expanded": "Solar Orbiter", + "numerical_value": 727, + "description": "Launch : 2020-02-10, (expected) EOL : 2029-11-30, Agencies : ESA,NASA, Orbit : Solar, Altitude : N/A km, Longitude : null, Inclination :25°, Ect : null, Status : Operational, Payload : EPD,EUI,MAG (Solar Orbiter),METIS,PHI,RPW,SPICE,STIX,SWA,SoloHI, Last update : 2021-03-03 14:56:42" + }, + { + "value": "Solar-A (Yohkoh)", + "expanded": "Solar", + "numerical_value": 728, + "description": "Launch : 1991-08-30, (expected) EOL : 2001-12-15, Agencies : JAXA, Orbit : DRIFT, Altitude : 645 km, Longitude : null, Inclination :31.3°, Ect : null, Status : Inactive, Payload : BCS,HXT,SXT,WBS, Last update : 2015-07-29 12:02:29" + }, + { + "value": "Solar-B (Hinode)", + "expanded": "Solar", + "numerical_value": 729, + "description": "Launch : 2006-09-23, (expected) EOL : 2021-11-30, Agencies : JAXA, Orbit : SunSync, Altitude : 680 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Operational, Payload : EIS,SOT,XRT, Last update : 2022-01-03 11:38:02" + }, + { + "value": "SORCE", + "expanded": "Solar Radiation and Climate Experiment", + "numerical_value": 730, + "description": "Launch : 2003-01-25, (expected) EOL : 2020-02-25, Agencies : NASA, Orbit : DRIFT, Altitude : 640 km, Longitude : null, Inclination :40°, Ect : null, Status : Inactive, Payload : SIM,SOLSTICE,TIM ,XPS, Last update : 2020-04-12 10:28:08" + }, + { + "value": "SPOT-1", + "expanded": "Satellite Pour l’Observation de la Terre", + "numerical_value": 731, + "description": "Launch : 1986-02-22, (expected) EOL : 2003-08-02, Agencies : CNES,Spot Image, Orbit : SunSync, Altitude : 822 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : HRV, Last update : 2015-07-29 12:04:36" + }, + { + "value": "SPOT-2", + "expanded": "Satellite Pour l’Observation de la Terre", + "numerical_value": 732, + "description": "Launch : 1990-01-22, (expected) EOL : 2009-07-01, Agencies : CNES,Spot Image, Orbit : SunSync, Altitude : 822 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DORIS,HRV, Last update : 2015-07-29 12:09:06" + }, + { + "value": "SPOT-3", + "expanded": "Satellite Pour l’Observation de la Terre", + "numerical_value": 733, + "description": "Launch : 1993-09-26, (expected) EOL : 1996-11-14, Agencies : CNES,Spot Image, Orbit : SunSync, Altitude : 822 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DORIS,HRV,POAM, Last update : 2015-07-29 12:09:46" + }, + { + "value": "SPOT-4", + "expanded": "Satellite Pour l’Observation de la Terre", + "numerical_value": 734, + "description": "Launch : 1998-03-24, (expected) EOL : 2013-01-11, Agencies : CNES,Spot Image, Orbit : SunSync, Altitude : 832 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DORIS,HRVIR,PASTEC,POAM,Végétation , Last update : 2017-01-05 01:21:03" + }, + { + "value": "SPOT-5", + "expanded": "Satellite Pour l’Observation de la Terre", + "numerical_value": 735, + "description": "Launch : 2002-05-04, (expected) EOL : 2015-03-27, Agencies : CNES,Spot Image, Orbit : SunSync, Altitude : 832 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : DORIS,HRG,HRS,Végétation , Last update : 2015-07-29 12:15:16" + }, + { + "value": "SPOT-6", + "expanded": "Satellite Pour l’Observation de la Terre - Follow-on", + "numerical_value": 736, + "description": "Launch : 2012-09-09, (expected) EOL : 2021-11-30, Agencies : Spot Image, Orbit : SunSync, Altitude : 695 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : NAOMI (SPOT), Last update : 2017-08-03 01:18:18" + }, + { + "value": "SPOT-7", + "expanded": "Satellite Pour l’Observation de la Terre - Follow-on", + "numerical_value": 737, + "description": "Launch : 2014-06-30, (expected) EOL : 2023-11-30, Agencies : Spot Image, Orbit : SunSync, Altitude : 695 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : NAOMI (SPOT), Last update : 2017-08-03 01:18:51" + }, + { + "value": "SSOT", + "expanded": "Sistema Satellital para Observation de la Tierra", + "numerical_value": 738, + "description": "Launch : 2011-12-17, (expected) EOL : 2021-11-30, Agencies : ACE, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : NAOMI (SSOT), Last update : 2022-01-03 12:49:39" + }, + { + "value": "SSTL-S1 1", + "expanded": "Beijing-2 Constellation", + "numerical_value": 739, + "description": "Launch : 2015-07-10, (expected) EOL : 2021-11-30, Agencies : SSTL,21AT,UKSA, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : VHRI-100, Last update : 2018-08-25 12:37:19" + }, + { + "value": "SSTL-S1 2", + "expanded": "Beijing-2 Constellation", + "numerical_value": 740, + "description": "Launch : 2015-07-10, (expected) EOL : 2021-11-30, Agencies : SSTL,21AT,UKSA, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : VHRI-100, Last update : 2018-08-25 12:40:05" + }, + { + "value": "SSTL-S1 3", + "expanded": "Beijing-2 Constellation", + "numerical_value": 741, + "description": "Launch : 2015-07-10, (expected) EOL : 2021-11-30, Agencies : SSTL,21AT,UKSA, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : VHRI-100, Last update : 2018-08-25 12:42:24" + }, + { + "value": "SSTL-S1 4", + "expanded": "Beijing-2 Constellation", + "numerical_value": 742, + "description": "Launch : 2018-09-16, (expected) EOL : 2024-11-30, Agencies : SSTL,21AT,UKSA, Orbit : SunSync, Altitude : 630 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Operational, Payload : VHRI-100, Last update : 2018-12-28 00:46:05" + }, + { + "value": "STARLETTE", + "expanded": "Satellite de Taille Adaptée avec Réflecteurs Laser pour les Etudes de la Terre", + "numerical_value": 743, + "description": "Launch : 1975-02-06, (expected) EOL : 2049-11-30, Agencies : CNES, Orbit : DRIFT, Altitude : 812 km, Longitude : null, Inclination :49.8°, Ect : null, Status : Operational, Payload : LR, Last update : 2015-07-29 12:26:50" + }, + { + "value": "STELLA", + "expanded": "Satellite de Taille Adaptée avec Réflecteurs Laser pour les Etudes de la Terre", + "numerical_value": 744, + "description": "Launch : 1993-09-30, (expected) EOL : 2049-11-30, Agencies : CNES, Orbit : DRIFT, Altitude : 800 km, Longitude : null, Inclination :98.6°, Ect : null, Status : Operational, Payload : LR, Last update : 2015-07-29 12:27:30" + }, + { + "value": "STEREO-A", + "expanded": "Solar-TErrestrial RElations Observatory", + "numerical_value": 745, + "description": "Launch : 2006-10-26, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : Ecliptic, Altitude : null, Longitude : null, Inclination :23.44°, Ect : null, Status : Operational, Payload : IMPACT/MAG,IMPACT/SEP,IMPACT/STE,IMPACT/SWEA,PLASTIC,S/WAVES,SECCHI/COR-1,SECCHI/COR-2,SECCHI/EUVI,SECCHI/HI-1,SECCHI/HI-2, Last update : 2022-01-03 16:19:18" + }, + { + "value": "STEREO-B", + "expanded": "Solar-TErrestrial RElations Observatory", + "numerical_value": 746, + "description": "Launch : 2006-10-26, (expected) EOL : 2014-10-01, Agencies : NASA, Orbit : Ecliptic, Altitude : null, Longitude : null, Inclination :23.44°, Ect : null, Status : Inactive, Payload : IMPACT/MAG,IMPACT/SEP,IMPACT/STE,IMPACT/SWEA,PLASTIC,S/WAVES,SECCHI/COR-1,SECCHI/COR-2,SECCHI/EUVI,SECCHI/HI-1,SECCHI/HI-2, Last update : 2020-02-27 23:55:07" + }, + { + "value": "STPSat-1", + "expanded": "Space Test Program Satellite", + "numerical_value": 747, + "description": "Launch : 2007-03-09, (expected) EOL : 2009-10-07, Agencies : DoD, Orbit : DRIFT, Altitude : 550 km, Longitude : null, Inclination :37.4°, Ect : null, Status : Inactive, Payload : CITRIS,SHIMMER, Last update : 2015-07-29 12:28:41" + }, + { + "value": "STPSat-2", + "expanded": "Space Test Program Satellite", + "numerical_value": 748, + "description": "Launch : 2010-11-20, (expected) EOL : 2018-11-30, Agencies : DoD, Orbit : DRIFT, Altitude : 647 km, Longitude : null, Inclination :72°, Ect : null, Status : Presumably inactive, Payload : ODTML, Last update : 2020-01-01 03:19:10" + }, + { + "value": "STPSat-3", + "expanded": "Space Test Program Satellite", + "numerical_value": 749, + "description": "Launch : 2013-11-20, (expected) EOL : 2021-11-30, Agencies : DoD, Orbit : DRIFT, Altitude : 500 km, Longitude : null, Inclination :40.5°, Ect : null, Status : Unclear, Payload : SWATS,TIM ,iMESA-R, Last update : 2022-01-03 13:02:55" + }, + { + "value": "STSat-1", + "expanded": "Science and Technology Satellite", + "numerical_value": 750, + "description": "Launch : 2003-09-27, (expected) EOL : 2005-10-15, Agencies : KARI, Orbit : SunSync, Altitude : 690 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : FIMS,SPP-fields,SPP-particles, Last update : 2015-07-29 12:31:22" + }, + { + "value": "STSat-2", + "expanded": "Science and Technology Satellite", + "numerical_value": 751, + "description": "Launch : 2009-08-25, (expected) EOL : 2009-08-25, Agencies : KARI, Orbit : MAG, Altitude : 670 km, Longitude : null, Inclination :80°, Ect : null, Status : Lost at launch, Payload : DREAM,LRA (KARI), Last update : 2015-07-29 12:32:15" + }, + { + "value": "STSat-2C", + "expanded": "Science and Technology Satellite", + "numerical_value": 752, + "description": "Launch : 2013-01-30, (expected) EOL : 2014-09-15, Agencies : KARI, Orbit : MAG, Altitude : 670 km, Longitude : null, Inclination :80°, Ect : null, Status : Inactive, Payload : LP,LRA (KARI),SREM-dose,SREM-particles, Last update : 2015-07-29 12:33:18" + }, + { + "value": "STSat-3", + "expanded": "Science and Technology Satellite", + "numerical_value": 753, + "description": "Launch : 2013-11-21, (expected) EOL : 2021-11-30, Agencies : KARI, Orbit : SunSync, Altitude : 700 km, Longitude : null, Inclination : null, Ect : 17:30 asc, Status : Operational, Payload : COMIS,MIRIS/MEOC,MIRIS/MSOC, Last update : 2022-01-03 15:17:57" + }, + { + "value": "SumbandilaSat", + "expanded": "SumbandilaSat", + "numerical_value": 754, + "description": "Launch : 2009-09-17, (expected) EOL : 2011-07-15, Agencies : SANSA, Orbit : SunSync, Altitude : 504 km, Longitude : null, Inclination : null, Ect : 09:00 description, Status : Inactive, Payload : MSI (Sansa), Last update : 2015-07-29 12:35:04" + }, + { + "value": "SuperView-1", + "expanded": "SuperView", + "numerical_value": 755, + "description": "Launch : 2016-12-28, (expected) EOL : 2021-11-30, Agencies : SpacEyes,CAST, Orbit : SunSync, Altitude : 534 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-3, Last update : 2022-01-03 16:09:40" + }, + { + "value": "SuperView-2", + "expanded": "SuperView", + "numerical_value": 756, + "description": "Launch : 2016-12-28, (expected) EOL : 2021-11-30, Agencies : SpacEyes,CAST, Orbit : SunSync, Altitude : 534 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-3, Last update : 2022-01-03 16:10:19" + }, + { + "value": "SuperView-3", + "expanded": "SuperView", + "numerical_value": 757, + "description": "Launch : 2018-01-09, (expected) EOL : 2022-11-30, Agencies : SpacEyes,CAST, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-3, Last update : 2018-04-26 12:57:47" + }, + { + "value": "SuperView-4", + "expanded": "SuperView", + "numerical_value": 758, + "description": "Launch : 2018-01-09, (expected) EOL : 2022-11-30, Agencies : SpacEyes,CAST, Orbit : SunSync, Altitude : 500 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : PMS-3, Last update : 2018-04-26 12:59:10" + }, + { + "value": "SWARM-A", + "expanded": "The Earth’s Magnetic Field and Environment Explorers", + "numerical_value": 759, + "description": "Launch : 2013-11-22, (expected) EOL : 2021-11-30, Agencies : ESA,CNES,CSA, Orbit : DRIFT, Altitude : 460 km, Longitude : null, Inclination :87.35°, Ect : null, Status : Operational, Payload : ACC,ASM,EFI (SWARM),GPS (ESA),LRR (DLR),STR (SWARM),VFM, Last update : 2022-01-03 09:08:33" + }, + { + "value": "SWARM-B", + "expanded": "The Earth’s Magnetic Field and Environment Explorers", + "numerical_value": 760, + "description": "Launch : 2013-11-22, (expected) EOL : 2021-11-30, Agencies : ESA,CNES,CSA, Orbit : DRIFT, Altitude : 530 km, Longitude : null, Inclination :87.75°, Ect : null, Status : Operational, Payload : ACC,ASM,EFI (SWARM),GPS (ESA),LRR (DLR),STR (SWARM),VFM, Last update : 2022-01-03 09:08:16" + }, + { + "value": "SWARM-C", + "expanded": "The Earth’s Magnetic Field and Environment Explorers", + "numerical_value": 761, + "description": "Launch : 2013-11-22, (expected) EOL : 2021-11-30, Agencies : ESA,CNES,CSA, Orbit : DRIFT, Altitude : 460 km, Longitude : null, Inclination :87.35°, Ect : null, Status : Operational, Payload : ACC,ASM,EFI (SWARM),GPS (ESA),LRR (DLR),STR (SWARM),VFM, Last update : 2022-01-03 09:07:48" + }, + { + "value": "SWFO-L1", + "expanded": "Space Weather Follow-On", + "numerical_value": 762, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : NOAA,NASA, Orbit : L1, Altitude : 1.5e+06 km, Longitude : null, Inclination : null, Ect : null, Status : Planned, Payload : CCOR,SWIS/MAG,SWIS/STIS,SWIS/SWiPS, Last update : 2021-09-17 11:58:53" + }, + { + "value": "SWOT", + "expanded": "Surface Water and Ocean Topography", + "numerical_value": 763, + "description": "Launch : 2021-11-30, (expected) EOL : 2025-11-30, Agencies : NASA,CNES, Orbit : DRIFT, Altitude : 891 km, Longitude : null, Inclination :78°, Ect : null, Status : Planned, Payload : Altimeter,KaRIN,MW radiometer, Last update : 2021-11-18 20:26:09" + }, + { + "value": "TacSat-2", + "expanded": "Tactical Satellite", + "numerical_value": 764, + "description": "Launch : 2006-12-12, (expected) EOL : 2007-12-21, Agencies : DoD, Orbit : DRIFT, Altitude : 418 km, Longitude : null, Inclination :40°, Ect : null, Status : Inactive, Payload : IGOR (TacSat-2), Last update : 2015-07-29 12:37:42" + }, + { + "value": "Tandem-L", + "expanded": "TerraSAR", + "numerical_value": 765, + "description": "Launch : 2023-11-30, (expected) EOL : 2035-11-30, Agencies : DLR, Orbit : SunSync, Altitude : 745 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Planned, Payload : L-SAR, Last update : 2021-01-16 19:48:30" + }, + { + "value": "TanDEM-X", + "expanded": "TerraSAR", + "numerical_value": 766, + "description": "Launch : 2010-06-21, (expected) EOL : 2025-11-30, Agencies : DLR, Orbit : SunSync, Altitude : 515 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-X,TOR, Last update : 2021-01-16 19:56:47" + }, + { + "value": "TANSAT", + "expanded": "Scientific Exploratory Satellite for Atmospheric CO2", + "numerical_value": 767, + "description": "Launch : 2016-12-21, (expected) EOL : 2021-11-30, Agencies : MOST,CAS,CMA, Orbit : SunSync, Altitude : 712 km, Longitude : null, Inclination : null, Ect : 13:30 asc, Status : Operational, Payload : ACGS,CAPI, Last update : 2022-01-03 15:55:44" + }, + { + "value": "TEMPO", + "expanded": "Tropospheric Emissions: Monitoring of Pollution,", + "numerical_value": 768, + "description": "Launch : 2022-11-30, (expected) EOL : 2024-11-30, Agencies : NASA, Orbit : GEO, Altitude : 35786 km, Longitude :100 ° W, Inclination : null, Ect : null, Status : Planned, Payload : TEMPO, Last update : 2022-02-14 17:05:36" + }, + { + "value": "Terra", + "expanded": "Earth Observation System", + "numerical_value": 769, + "description": "Launch : 1999-12-18, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 705 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : ASTER,CERES,MISR,MODIS,MOPITT, Last update : 2021-06-14 15:19:51" + }, + { + "value": "TerraSAR-X", + "expanded": "TerraSAR", + "numerical_value": 770, + "description": "Launch : 2007-06-15, (expected) EOL : 2023-11-30, Agencies : DLR, Orbit : SunSync, Altitude : 515 km, Longitude : null, Inclination : null, Ect : 06:00 description, Status : Operational, Payload : SAR-X,TOR, Last update : 2021-01-16 18:09:37" + }, + { + "value": "TH-1A", + "expanded": "Tian Hui - 1", + "numerical_value": 771, + "description": "Launch : 2010-08-24, (expected) EOL : 2017-11-30, Agencies : PLA,CAST, Orbit : SunSync, Altitude : 503 km, Longitude : null, Inclination : null, Ect : 13:30 description, Status : Presumably inactive, Payload : MS (TH),PAN (TH), Last update : 2019-12-29 16:00:45" + }, + { + "value": "TH-1B", + "expanded": "Tian Hui - 1", + "numerical_value": 772, + "description": "Launch : 2012-05-06, (expected) EOL : 2021-11-30, Agencies : PLA,CAST, Orbit : SunSync, Altitude : 498 km, Longitude : null, Inclination : null, Ect : 13:30 description, Status : Unclear, Payload : MS (TH),PAN (TH), Last update : 2022-01-03 12:56:55" + }, + { + "value": "TH-1C", + "expanded": "Tian Hui - 1", + "numerical_value": 773, + "description": "Launch : 2015-10-26, (expected) EOL : 2021-11-30, Agencies : PLA,CAST, Orbit : SunSync, Altitude : 498 km, Longitude : null, Inclination : null, Ect : 13:30 description, Status : Operational, Payload : MS (TH),PAN (TH), Last update : 2022-01-03 13:00:05" + }, + { + "value": "THEMIS-A", + "expanded": "Time History of Events and Macroscale Interactions during Substorms", + "numerical_value": 774, + "description": "Launch : 2007-02-17, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :6°, Ect : null, Status : Operational, Payload : EFI (THEMIS),ESA,FGM (THEMIS),SCM,SST, Last update : 2022-01-03 12:40:27" + }, + { + "value": "THEMIS-D", + "expanded": "Time History of Events and Macroscale Interactions during Substorms", + "numerical_value": 775, + "description": "Launch : 2007-02-17, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :6°, Ect : null, Status : Operational, Payload : EFI (THEMIS),ESA,FGM (THEMIS),SCM,SST, Last update : 2022-01-03 12:39:01" + }, + { + "value": "THEMIS-E", + "expanded": "Time History of Events and Macroscale Interactions during Substorms", + "numerical_value": 776, + "description": "Launch : 2007-02-17, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :6°, Ect : null, Status : Operational, Payload : EFI (THEMIS),ESA,FGM (THEMIS),SCM,SST, Last update : 2022-01-03 12:40:43" + }, + { + "value": "THEOS-1", + "expanded": "Thailand Earth Observation System", + "numerical_value": 777, + "description": "Launch : 2008-10-01, (expected) EOL : 2024-11-30, Agencies : GISTDA, Orbit : SunSync, Altitude : 822 km, Longitude : null, Inclination : null, Ect : 10:00 description, Status : Operational, Payload : MS (THEOS),PAN (THEOS), Last update : 2021-04-08 11:41:51" + }, + { + "value": "THEOS-2 Main", + "expanded": "Thailand Earth Observation System", + "numerical_value": 778, + "description": "Launch : 2021-11-30, (expected) EOL : 2031-11-30, Agencies : GISTDA, Orbit : SunSync, Altitude : 621 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Planned, Payload : MS (THEOS-2),PAN (THEOS-2), Last update : 2021-04-08 11:43:58" + }, + { + "value": "THEOS-2 Small", + "expanded": "Thailand Earth Observation System", + "numerical_value": 779, + "description": "Launch : 2021-11-30, (expected) EOL : 2024-11-30, Agencies : GISTDA, Orbit : SunSync, Altitude : 590 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Planned, Payload : CERIA, Last update : 2021-04-08 12:53:31" + }, + { + "value": "TIMED", + "expanded": "Thermosphere, Ionosphere, Mesosphere Energetics and Dynamics mission", + "numerical_value": 780, + "description": "Launch : 2001-12-07, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 625 km, Longitude : null, Inclination :74°, Ect : null, Status : Operational, Payload : GUVI,SABER,SEE,TIDI , Last update : 2022-01-03 11:31:17" + }, + { + "value": "TIROS-1", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 781, + "description": "Launch : 1960-04-01, (expected) EOL : 1960-06-17, Agencies : NASA, Orbit : DRIFT, Altitude : 720 km, Longitude : null, Inclination :48.4°, Ect : null, Status : Inactive, Payload : VCS-NA,VCS-WA, Last update : 2015-07-29 12:57:14" + }, + { + "value": "TIROS-10", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 782, + "description": "Launch : 1965-07-02, (expected) EOL : 1967-07-01, Agencies : NASA, Orbit : SunSync, Altitude : 790 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : VCS-WA, Last update : 2015-07-29 12:58:19" + }, + { + "value": "TIROS-2", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 783, + "description": "Launch : 1960-11-23, (expected) EOL : 1961-12-24, Agencies : NASA, Orbit : DRIFT, Altitude : 670 km, Longitude : null, Inclination :48.6°, Ect : null, Status : Inactive, Payload : FPR,MRIR,VCS-NA,VCS-WA, Last update : 2015-07-29 12:59:35" + }, + { + "value": "TIROS-3", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 784, + "description": "Launch : 1961-07-12, (expected) EOL : 1962-02-27, Agencies : NASA, Orbit : DRIFT, Altitude : 780 km, Longitude : null, Inclination :47.9°, Ect : null, Status : Inactive, Payload : FPR,MRIR,VCS-WA, Last update : 2015-07-29 13:00:26" + }, + { + "value": "TIROS-4", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 785, + "description": "Launch : 1962-02-02, (expected) EOL : 1962-07-19, Agencies : NASA, Orbit : DRIFT, Altitude : 770 km, Longitude : null, Inclination :48.3°, Ect : null, Status : Inactive, Payload : FPR,MRIR,VCS-MA,VCS-WA, Last update : 2015-07-29 13:01:08" + }, + { + "value": "TIROS-5", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 786, + "description": "Launch : 1962-06-19, (expected) EOL : 1963-11-27, Agencies : NASA, Orbit : DRIFT, Altitude : 750 km, Longitude : null, Inclination :58.1°, Ect : null, Status : Inactive, Payload : VCS-MA,VCS-WA, Last update : 2015-07-29 13:01:58" + }, + { + "value": "TIROS-6", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 787, + "description": "Launch : 1962-09-18, (expected) EOL : 1963-10-12, Agencies : NASA, Orbit : DRIFT, Altitude : 700 km, Longitude : null, Inclination :58.3°, Ect : null, Status : Inactive, Payload : VCS-MA,VCS-WA, Last update : 2015-07-29 13:05:44" + }, + { + "value": "TIROS-7", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 788, + "description": "Launch : 1963-06-19, (expected) EOL : 1968-06-03, Agencies : NASA, Orbit : DRIFT, Altitude : 680 km, Longitude : null, Inclination :58.2°, Ect : null, Status : Inactive, Payload : FPR,LP,MRIR,VCS-WA, Last update : 2015-07-29 13:06:43" + }, + { + "value": "TIROS-8", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 789, + "description": "Launch : 1963-12-21, (expected) EOL : 1967-07-01, Agencies : NASA, Orbit : DRIFT, Altitude : 730 km, Longitude : null, Inclination :58.5°, Ect : null, Status : Inactive, Payload : APT,VCS-WA, Last update : 2015-07-29 13:07:30" + }, + { + "value": "TIROS-9", + "expanded": "Television and Infra-Red Observation Satellite", + "numerical_value": 790, + "description": "Launch : 1965-01-22, (expected) EOL : 1968-06-12, Agencies : NASA, Orbit : SunSync, Altitude : 1350 km, Longitude : null, Inclination : null, Ect : 09:30 description, Status : Inactive, Payload : VCS-WA, Last update : 2015-07-29 13:08:10" + }, + { + "value": "TIROS-N", + "expanded": "National Oceanic and Atmospheric Administration - 4th generation", + "numerical_value": 791, + "description": "Launch : 1978-10-13, (expected) EOL : 1981-02-27, Agencies : NOAA,NASA, Orbit : SunSync, Altitude : 850 km, Longitude : null, Inclination : null, Ect : 14:30 asc, Status : Inactive, Payload : AVHRR,Argos,HIRS/2,MSU,SEM/MEPED,SEM/TED,SSU, Last update : 2015-07-29 13:09:18" + }, + { + "value": "TOMS Earth Probe", + "expanded": "Total Ozone Mapping Spectrometer - Earth Probe", + "numerical_value": 792, + "description": "Launch : 1996-07-02, (expected) EOL : 2006-12-02, Agencies : NASA, Orbit : SunSync, Altitude : 750 km, Longitude : null, Inclination : null, Ect : 12:00 description, Status : Inactive, Payload : TOMS, Last update : 2015-07-29 13:10:04" + }, + { + "value": "TOPEX-Poseidon", + "expanded": "Topography Experiment + Poseidon", + "numerical_value": 793, + "description": "Launch : 1992-08-10, (expected) EOL : 2005-10-09, Agencies : NASA,CNES, Orbit : DRIFT, Altitude : 1336 km, Longitude : null, Inclination :66°, Ect : null, Status : Inactive, Payload : DORIS,GPSDR,LRA (NASA),NRA,SSALT,TMR, Last update : 2015-07-29 13:11:03" + }, + { + "value": "TopSat", + "expanded": "TopSat", + "numerical_value": 794, + "description": "Launch : 2005-10-27, (expected) EOL : 2008-08-17, Agencies : UKSA, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : RALCam-1, Last update : 2015-07-29 13:11:41" + }, + { + "value": "TRACE", + "expanded": "Transition Region and Coronal Explorer", + "numerical_value": 795, + "description": "Launch : 1998-04-02, (expected) EOL : 2010-06-21, Agencies : NASA, Orbit : SunSync, Altitude : 627 km, Longitude : null, Inclination : null, Ect : 06:00 asc, Status : Inactive, Payload : TRACE, Last update : 2015-07-29 13:13:04" + }, + { + "value": "TRISHNA", + "expanded": "TRISHA", + "numerical_value": 796, + "description": "Launch : 2024-11-30, (expected) EOL : 2029-11-30, Agencies : ISRO,CNES, Orbit : SunSync, Altitude : 761 km, Longitude : null, Inclination : null, Ect : 13:00 asc, Status : Planned, Payload : TRISHNA, Last update : 2021-11-25 15:17:19" + }, + { + "value": "TRMM", + "expanded": "Tropical Rainfall Measuring Mission", + "numerical_value": 797, + "description": "Launch : 1997-11-27, (expected) EOL : 2015-04-08, Agencies : NASA,JAXA, Orbit : DRIFT, Altitude : 402 km, Longitude : null, Inclination :35°, Ect : null, Status : Inactive, Payload : CERES,LIS,PR,TMI ,VIRS, Last update : 2019-10-30 18:23:55" + }, + { + "value": "TROPICS-01", + "expanded": "Time-Resolved Observations of Precipitation structure and storm Intensity with a Constellation of Smallsats", + "numerical_value": 798, + "description": "Launch : 2021-06-30, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : SunSync, Altitude : 536 km, Longitude : null, Inclination : null, Ect : 14:00 description, Status : Operational, Payload : TMS, Last update : 2021-10-07 11:22:02" + }, + { + "value": "TROPICS-02", + "expanded": "Time-Resolved Observations of Precipitation structure and storm Intensity with a Constellation of Smallsats", + "numerical_value": 799, + "description": "Launch : 2021-11-30, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :30°, Ect : null, Status : Planned, Payload : TMS, Last update : 2021-10-07 11:28:06" + }, + { + "value": "TROPICS-03", + "expanded": "Time-Resolved Observations of Precipitation structure and storm Intensity with a Constellation of Smallsats", + "numerical_value": 800, + "description": "Launch : 2021-11-30, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :30°, Ect : null, Status : Planned, Payload : TMS, Last update : 2021-10-07 11:28:56" + }, + { + "value": "TROPICS-04", + "expanded": "Time-Resolved Observations of Precipitation structure and storm Intensity with a Constellation of Smallsats", + "numerical_value": 801, + "description": "Launch : 2021-11-30, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :30°, Ect : null, Status : Planned, Payload : TMS, Last update : 2021-10-07 11:30:26" + }, + { + "value": "TROPICS-05", + "expanded": "Time-Resolved Observations of Precipitation structure and storm Intensity with a Constellation of Smallsats", + "numerical_value": 802, + "description": "Launch : 2021-11-30, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :30°, Ect : null, Status : Planned, Payload : TMS, Last update : 2021-10-07 11:31:10" + }, + { + "value": "TROPICS-06", + "expanded": "Time-Resolved Observations of Precipitation structure and storm Intensity with a Constellation of Smallsats", + "numerical_value": 803, + "description": "Launch : 2021-11-30, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :30°, Ect : null, Status : Planned, Payload : TMS, Last update : 2021-10-07 11:31:47" + }, + { + "value": "TROPICS-07", + "expanded": "Time-Resolved Observations of Precipitation structure and storm Intensity with a Constellation of Smallsats", + "numerical_value": 804, + "description": "Launch : 2021-11-30, (expected) EOL : 2022-11-30, Agencies : NASA, Orbit : DRIFT, Altitude : 600 km, Longitude : null, Inclination :30°, Ect : null, Status : Planned, Payload : TMS, Last update : 2021-10-07 11:32:34" + }, + { + "value": "TRUTHS", + "expanded": "Traceable Radiometry Underpinning Terrestrial- and Helio- Studies", + "numerical_value": 805, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : ESA,UKSA, Orbit : DRIFT, Altitude : 610 km, Longitude : null, Inclination :90°, Ect : null, Status : Considered, Payload : CSAR,HIS, Last update : 2022-01-04 19:24:07" + }, + { + "value": "TWINS (2 sats)", + "expanded": "Two Wide-angle Imaging Neutral-atom Spectrometers", + "numerical_value": 806, + "description": "Launch : 2006-06-28, (expected) EOL : 2019-11-30, Agencies : NASA,USAF, Orbit : Molniya, Altitude : null, Longitude : null, Inclination :63.4°, Ect : null, Status : Presumably inactive, Payload : LAD,TWINS, Last update : 2021-10-07 14:39:21" + }, + { + "value": "UARS", + "expanded": "Upper Atmosphere Research Satellite", + "numerical_value": 807, + "description": "Launch : 1991-09-12, (expected) EOL : 2005-12-14, Agencies : NASA, Orbit : DRIFT, Altitude : 570 km, Longitude : null, Inclination :57°, Ect : null, Status : Inactive, Payload : ACRIM-II,CLAES,HALOE,HRDI,ISAMS,MLS ,PEM/AXIS,PEM/EPS ,PEM/VMAG,SOLSTICE,SUSIM,WINDII, Last update : 2015-07-29 13:23:29" + }, + { + "value": "UK-DMC-1", + "expanded": "UK contribution to the Disaster Monitoring Constellation", + "numerical_value": 808, + "description": "Launch : 2003-09-27, (expected) EOL : 2011-11-15, Agencies : SSTL,UKSA, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Inactive, Payload : SLIM6, Last update : 2015-07-29 13:24:50" + }, + { + "value": "UK-DMC-2", + "expanded": "UK contribution to the Disaster Monitoring Constellation", + "numerical_value": 809, + "description": "Launch : 2009-07-29, (expected) EOL : 2018-11-30, Agencies : SSTL,UKSA, Orbit : SunSync, Altitude : 686 km, Longitude : null, Inclination : null, Ect : 10:30 asc, Status : Presumably inactive, Payload : SLIM6, Last update : 2020-01-01 03:16:51" + }, + { + "value": "VAP (2 sat)", + "expanded": "Van Allen Probes", + "numerical_value": 810, + "description": "Launch : 2012-08-30, (expected) EOL : 2019-10-18, Agencies : NASA, Orbit : MAG, Altitude : null, Longitude : null, Inclination :18°, Ect : null, Status : Inactive, Payload : ECT/HOPE,ECT/MagEIS,ECT/REPT,EFW (VAP),EMFISIS,RBSPICE,RPS, Last update : 2019-10-25 11:34:46" + }, + { + "value": "VENµS", + "expanded": "Vegetation and Environment monitoring on a New Micro-Satellite", + "numerical_value": 811, + "description": "Launch : 2017-08-02, (expected) EOL : 2021-11-30, Agencies : CNES,ISA, Orbit : SunSync, Altitude : 720 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : VSSC, Last update : 2018-07-11 13:39:30" + }, + { + "value": "VNREDSat-1", + "expanded": "Vietnam Natural Resources, Environment and Disaster-monitoring Satellite,", + "numerical_value": 812, + "description": "Launch : 2013-05-07, (expected) EOL : 2021-11-30, Agencies : STI-VAST, Orbit : SunSync, Altitude : 704 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : NAOMI (AlSat), Last update : 2022-01-03 15:27:55" + }, + { + "value": "VRSS-1", + "expanded": "Venezuelan Remote Sensing Satellite", + "numerical_value": 813, + "description": "Launch : 2012-09-29, (expected) EOL : 2021-11-30, Agencies : ABAE,CAST, Orbit : SunSync, Altitude : 645 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : PMC,WMC, Last update : 2022-01-03 13:01:06" + }, + { + "value": "VRSS-2", + "expanded": "Venezuelan Remote Sensing Satellite", + "numerical_value": 814, + "description": "Launch : 2017-10-09, (expected) EOL : 2021-11-30, Agencies : ABAE,CAST, Orbit : SunSync, Altitude : 636 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : null, Last update : 2018-01-18 12:59:43" + }, + { + "value": "WIND", + "expanded": "Wind ", + "numerical_value": 815, + "description": "Launch : 1994-11-01, (expected) EOL : 2021-11-30, Agencies : NASA, Orbit : L1, Altitude : 1.5e+06 km, Longitude : null, Inclination : null, Ect : null, Status : Operational, Payload : EPACT,KONUS,MFI,PLASMA,SMS,SWE,TGRS,WAVES, Last update : 2022-01-03 12:52:04" + }, + { + "value": "WorldView-1", + "expanded": "WorldView", + "numerical_value": 816, + "description": "Launch : 2007-09-18, (expected) EOL : 2021-11-30, Agencies : Maxar,DigitalGlobe, Orbit : SunSync, Altitude : 499 km, Longitude : null, Inclination : null, Ect : 13:30 description, Status : Operational, Payload : WV60, Last update : 2022-01-03 12:55:03" + }, + { + "value": "WorldView-2", + "expanded": "WorldView", + "numerical_value": 817, + "description": "Launch : 2009-10-01, (expected) EOL : 2021-11-30, Agencies : Maxar,DigitalGlobe, Orbit : SunSync, Altitude : 770 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : WV110, Last update : 2017-08-03 10:23:21" + }, + { + "value": "WorldView-3", + "expanded": "WorldView", + "numerical_value": 818, + "description": "Launch : 2014-08-13, (expected) EOL : 2021-11-30, Agencies : Maxar,DigitalGlobe, Orbit : SunSync, Altitude : 770 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : WV110, Last update : 2022-01-03 12:56:02" + }, + { + "value": "WorldView-4", + "expanded": "WorldView", + "numerical_value": 819, + "description": "Launch : 2016-11-11, (expected) EOL : 2019-01-07, Agencies : Maxar,DigitalGlobe, Orbit : SunSync, Altitude : 617 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Inactive, Payload : SpaceView-110, Last update : 2021-09-17 14:24:09" + }, + { + "value": "X-Sat", + "expanded": "X-Sat", + "numerical_value": 820, + "description": "Launch : 2011-04-20, (expected) EOL : 2018-11-30, Agencies : NTU, Orbit : SunSync, Altitude : 820 km, Longitude : null, Inclination : null, Ect : 10:20 description, Status : Presumably inactive, Payload : IRIS (X-Sat), Last update : 2020-01-01 03:17:28" + }, + { + "value": "XMM-Newton", + "expanded": "X-ray Multi-Mirror Mission Observatory - Newton", + "numerical_value": 821, + "description": "Launch : 1999-12-10, (expected) EOL : 2021-11-30, Agencies : ESA, Orbit : DRIFT, Altitude : 40000 km, Longitude : null, Inclination :40°, Ect : null, Status : Operational, Payload : EPIC (XMM),OM,RGS, Last update : 2022-01-03 16:04:30" + }, + { + "value": "XOVWM", + "expanded": "Extended Ocean Vector Winds Mission", + "numerical_value": 822, + "description": "Launch : TBD, (expected) EOL : TBD, Agencies : NOAA, Orbit : SunSync, Altitude : TBD km, Longitude : null, Inclination : null, Ect : TBD, Status : Mission concept, Payload : null, Last update : 2018-06-21 01:46:30" + }, + { + "value": "Zond-M", + "expanded": "Ionozond", + "numerical_value": 823, + "description": "Launch : 2024-11-30, (expected) EOL : 2027-11-30, Agencies : Roscosmos, Orbit : SunSync, Altitude : 600 km, Longitude : null, Inclination : null, Ect : TBD, Status : Planned, Payload : FM-G,LETITsIYA-Camera,NBK/2,Ozonometer-3,RESPEKT,RIMS-A,SOLIST,SRF,ST/2,STEK,SUF, Last update : 2021-11-26 19:07:50" + }, + { + "value": "ZY-1-2C", + "expanded": "Zi Yuan 1-2", + "numerical_value": 824, + "description": "Launch : 2011-12-22, (expected) EOL : 2018-11-30, Agencies : CAST,CRESDA, Orbit : SunSync, Altitude : 781 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Presumably inactive, Payload : HRCC-2,HRPC-2, Last update : 2020-01-01 03:18:12" + }, + { + "value": "ZY-1-2D", + "expanded": "Zi Yuan 1-2", + "numerical_value": 825, + "description": "Launch : 2019-09-12, (expected) EOL : 2023-11-30, Agencies : CAST,CRESDA, Orbit : SunSync, Altitude : 781 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : null, Last update : 2020-04-06 20:39:38" + }, + { + "value": "ZY-3-01", + "expanded": "Zi Yuan - 3", + "numerical_value": 826, + "description": "Launch : 2012-01-09, (expected) EOL : 2021-11-30, Agencies : CAST,CRESDA, Orbit : SunSync, Altitude : 506 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Unclear, Payload : MSC (ZY),TAC, Last update : 2022-01-03 12:44:41" + }, + { + "value": "ZY-3-02", + "expanded": "Zi Yuan - 3", + "numerical_value": 827, + "description": "Launch : 2016-05-30, (expected) EOL : 2021-11-30, Agencies : CAST,CRESDA, Orbit : SunSync, Altitude : 506 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : MSC (ZY),TAC, Last update : 2022-01-03 12:45:45" + }, + { + "value": "ZY-3-03", + "expanded": "Zi Yuan - 3", + "numerical_value": 828, + "description": "Launch : 2020-07-25, (expected) EOL : 2024-11-30, Agencies : CAST,CRESDA, Orbit : SunSync, Altitude : 506 km, Longitude : null, Inclination : null, Ect : 10:30 description, Status : Operational, Payload : MSC (ZY),TAC, Last update : 2021-03-05 22:59:59" + } + ] + }, + { + "predicate": "Indian Space Research", + "entry": [ + { + "value": "INS-2TD", + "expanded": "INS-2TD", + "numerical_value": 829, + "description": "Launch Date : Feb 14, 2022, Launch Vehicle : PSLV-C52/EOS-04 Mission, Orbit Type : null, Application : Experimental, Remarks :null" + }, + { + "value": "EOS-04", + "expanded": "EOS-04", + "numerical_value": 830, + "description": "Launch Date : Feb 14, 2022, Launch Vehicle : PSLV-C52/EOS-04 Mission, Orbit Type : null, Application : Earth Observation, Remarks :null" + }, + { + "value": "EOS-03", + "expanded": "EOS-03", + "numerical_value": 831, + "description": "Launch Date : Aug 12, 2021, Launch Vehicle : GSLV-F10 / EOS-03, Orbit Type : GTO, Application : Earth Observation , Remarks :Launch unsuccessful" + }, + { + "value": "CMS-01", + "expanded": "CMS-01", + "numerical_value": 832, + "description": "Launch Date : Dec 17, 2020, Launch Vehicle : PSLV-C50/CMS-01, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "EOS-01", + "expanded": "EOS-01", + "numerical_value": 833, + "description": "Launch Date : Nov 07, 2020, Launch Vehicle : PSLV-C49/EOS-01, Orbit Type : LEO, Application : Disaster Management System, Earth Observation, Remarks :null" + }, + { + "value": "GSAT-30", + "expanded": "GSAT-30", + "numerical_value": 834, + "description": "Launch Date : Jan 17, 2020, Launch Vehicle : Ariane-5 VA-251, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "RISAT-2BR1", + "expanded": "RISAT-2BR1", + "numerical_value": 835, + "description": "Launch Date : Dec 11, 2019, Launch Vehicle : PSLV-C48/RISAT-2BR1, Orbit Type : LEO, Application : Disaster Management System, Earth Observation, Remarks :null" + }, + { + "value": "Cartosat-3", + "expanded": "Cartosat-3", + "numerical_value": 836, + "description": "Launch Date : Nov 27, 2019, Launch Vehicle : PSLV-C47 / Cartosat-3 Mission, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "Chandrayaan2", + "expanded": "Chandrayaan2", + "numerical_value": 837, + "description": "Launch Date : Jul 22, 2019, Launch Vehicle : GSLV-Mk III - M1 / Chandrayaan-2 Mission, Orbit Type : Lunar, Application : Planetary Observation, Remarks :null" + }, + { + "value": "RISAT-2B", + "expanded": "RISAT-2B", + "numerical_value": 838, + "description": "Launch Date : May 22, 2019, Launch Vehicle : PSLV-C46 Mission, Orbit Type : LEO, Application : Disaster Management System, Earth Observation, Remarks :null" + }, + { + "value": "EMISAT", + "expanded": "EMISAT", + "numerical_value": 839, + "description": "Launch Date : Apr 01, 2019, Launch Vehicle : PSLV-C45/EMISAT MISSION, Orbit Type : SSPO , Application :null, Remarks :null" + }, + { + "value": "GSAT-31", + "expanded": "GSAT-31", + "numerical_value": 840, + "description": "Launch Date : Feb 06, 2019, Launch Vehicle : Ariane-5 VA-247, Orbit Type : GTO, Application : Communication, Remarks :null" + }, + { + "value": "Microsat-R", + "expanded": "Microsat-R", + "numerical_value": 841, + "description": "Launch Date : Jan 24, 2019, Launch Vehicle : PSLV-C44, Orbit Type : SSPO , Application :null, Remarks :null" + }, + { + "value": "GSAT-7A", + "expanded": "GSAT-7A", + "numerical_value": 842, + "description": "Launch Date : Dec 19, 2018, Launch Vehicle : GSLV-F11 / GSAT-7A Mission, Orbit Type : null, Application : Communication, Remarks :null" + }, + { + "value": "GSAT-11 Mission", + "expanded": "GSAT-11 Mission", + "numerical_value": 843, + "description": "Launch Date : Dec 05, 2018, Launch Vehicle : Ariane-5 VA-246, Orbit Type : GTO, Application : Communication, Remarks :null" + }, + { + "value": "HysIS", + "expanded": "HysIS", + "numerical_value": 844, + "description": "Launch Date : Nov 29, 2018, Launch Vehicle : PSLV-C43 / HysIS Mission, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "GSAT-29", + "expanded": "GSAT-29", + "numerical_value": 845, + "description": "Launch Date : Nov 14, 2018, Launch Vehicle : GSLV Mk III-D2 / GSAT-29 Mission, Orbit Type : GTO, Application : Communication, Remarks :null" + }, + { + "value": "IRNSS-1I", + "expanded": "IRNSS-1I", + "numerical_value": 846, + "description": "Launch Date : Apr 12, 2018, Launch Vehicle : PSLV-C41/IRNSS-1I, Orbit Type : GSO, Application : Navigation, Remarks :null" + }, + { + "value": "GSAT-6A", + "expanded": "GSAT-6A", + "numerical_value": 847, + "description": "Launch Date : Mar 29, 2018, Launch Vehicle : GSLV-F08/GSAT-6A Mission, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "Microsat", + "expanded": "Microsat", + "numerical_value": 848, + "description": "Launch Date : Jan 12, 2018, Launch Vehicle : PSLV-C40/Cartosat-2 Series Satellite Mission, Orbit Type : SSPO, Application : Experimental, Remarks :null" + }, + { + "value": "Cartosat-2 Series Satellite (2)", + "expanded": "Cartosat-2 Series Satellite (2)", + "numerical_value": 849, + "description": "Launch Date : Jan 12, 2018, Launch Vehicle : PSLV-C40/Cartosat-2 Series Satellite Mission, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INS-1C", + "expanded": "INS-1C", + "numerical_value": 850, + "description": "Launch Date : Jan 12, 2018, Launch Vehicle : PSLV-C40/Cartosat-2 Series Satellite Mission, Orbit Type : SSPO, Application : Experimental, Remarks :null" + }, + { + "value": "IRNSS-1H", + "expanded": "IRNSS-1H", + "numerical_value": 851, + "description": "Launch Date : Aug 31, 2017, Launch Vehicle : PSLV-C39/IRNSS-1H Mission, Orbit Type : null, Application : Navigation , Remarks :Launch Unsuccessful" + }, + { + "value": "GSAT-17", + "expanded": "GSAT-17", + "numerical_value": 852, + "description": "Launch Date : Jun 29, 2017, Launch Vehicle : Ariane-5 VA-238, Orbit Type : GTO, Application : Communication, Remarks :null" + }, + { + "value": "Cartosat-2 Series Satellite", + "expanded": "Cartosat-2 Series Satellite", + "numerical_value": 853, + "description": "Launch Date : Jun 23, 2017, Launch Vehicle : PSLV-C38 / Cartosat-2 Series Satellite, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "GSAT-19", + "expanded": "GSAT-19", + "numerical_value": 854, + "description": "Launch Date : Jun 05, 2017, Launch Vehicle : GSLV Mk III-D1/GSAT-19 Mission, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "GSAT-9", + "expanded": "GSAT-9", + "numerical_value": 855, + "description": "Launch Date : May 05, 2017, Launch Vehicle : GSLV-F09 / GSAT-9, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "INS-1B", + "expanded": "INS-1B", + "numerical_value": 856, + "description": "Launch Date : Feb 15, 2017, Launch Vehicle : PSLV-C37 / Cartosat -2 Series Satellite, Orbit Type : SSPO, Application : Experimental, Remarks :null" + }, + { + "value": "Cartosat -2 Series Satellite", + "expanded": "Cartosat -2 Series Satellite", + "numerical_value": 857, + "description": "Launch Date : Feb 15, 2017, Launch Vehicle : PSLV-C37 / Cartosat -2 Series Satellite, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INS-1A", + "expanded": "INS-1A", + "numerical_value": 858, + "description": "Launch Date : Feb 15, 2017, Launch Vehicle : PSLV-C37 / Cartosat -2 Series Satellite, Orbit Type : SSPO, Application : Experimental, Remarks :null" + }, + { + "value": "RESOURCESAT-2A", + "expanded": "RESOURCESAT-2A", + "numerical_value": 859, + "description": "Launch Date : Dec 07, 2016, Launch Vehicle : PSLV-C36 / RESOURCESAT-2A, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "GSAT-18", + "expanded": "GSAT-18", + "numerical_value": 860, + "description": "Launch Date : Oct 06, 2016, Launch Vehicle : Ariane-5 VA-231, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "SCATSAT-1", + "expanded": "SCATSAT-1", + "numerical_value": 861, + "description": "Launch Date : Sep 26, 2016, Launch Vehicle : PSLV-C35 / SCATSAT-1, Orbit Type : SSPO, Application : Climate & Environment, Remarks :null" + }, + { + "value": "INSAT-3DR", + "expanded": "INSAT-3DR", + "numerical_value": 862, + "description": "Launch Date : Sep 08, 2016, Launch Vehicle : GSLV-F05 / INSAT-3DR, Orbit Type : GSO, Application : Climate & Environment, Disaster Management System, Remarks :null" + }, + { + "value": "CARTOSAT-2 Series Satellite", + "expanded": "CARTOSAT-2 Series Satellite", + "numerical_value": 863, + "description": "Launch Date : Jun 22, 2016, Launch Vehicle : PSLV-C34 / CARTOSAT-2 Series Satellite, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "IRNSS-1G", + "expanded": "IRNSS-1G", + "numerical_value": 864, + "description": "Launch Date : Apr 28, 2016, Launch Vehicle : PSLV-C33/IRNSS-1G, Orbit Type : GEO, Application : Navigation, Remarks :null" + }, + { + "value": "IRNSS-1F", + "expanded": "IRNSS-1F", + "numerical_value": 865, + "description": "Launch Date : Mar 10, 2016, Launch Vehicle : PSLV-C32/IRNSS-1F, Orbit Type : GEO, Application : Navigation, Remarks :null" + }, + { + "value": "IRNSS-1E", + "expanded": "IRNSS-1E", + "numerical_value": 866, + "description": "Launch Date : Jan 20, 2016, Launch Vehicle : PSLV-C31/IRNSS-1E, Orbit Type : GSO, Application : Navigation, Remarks :null" + }, + { + "value": "GSAT-15", + "expanded": "GSAT-15", + "numerical_value": 867, + "description": "Launch Date : Nov 11, 2015, Launch Vehicle : Ariane-5 VA-227, Orbit Type : GEO, Application : Communication, Navigation, Remarks :null" + }, + { + "value": "Astrosat", + "expanded": "Astrosat", + "numerical_value": 868, + "description": "Launch Date : Sep 28, 2015, Launch Vehicle : PSLV-C30/AstroSat MISSION, Orbit Type : null, Application : Space Science, Remarks :null" + }, + { + "value": "GSAT-6", + "expanded": "GSAT-6", + "numerical_value": 869, + "description": "Launch Date : Aug 27, 2015, Launch Vehicle : GSLV-D6, Orbit Type : GTO, Application : Communication, Remarks :null" + }, + { + "value": "IRNSS-1D", + "expanded": "IRNSS-1D", + "numerical_value": 870, + "description": "Launch Date : Mar 28, 2015, Launch Vehicle : PSLV-C27/IRNSS-1D, Orbit Type : GSO, Application : Navigation, Remarks :null" + }, + { + "value": "Crew module Atmospheric Re-entry Experiment (CARE)", + "expanded": "Crew module Atmospheric Re-entry Experiment (CARE)", + "numerical_value": 871, + "description": "Launch Date : Dec 18, 2014, Launch Vehicle : LVM-3/CARE Mission, Orbit Type : null, Application : Experimental, Remarks :null" + }, + { + "value": "GSAT-16", + "expanded": "GSAT-16", + "numerical_value": 872, + "description": "Launch Date : Dec 07, 2014, Launch Vehicle : Ariane-5 VA-221, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "IRNSS-1C", + "expanded": "IRNSS-1C", + "numerical_value": 873, + "description": "Launch Date : Oct 16, 2014, Launch Vehicle : PSLV-C26/IRNSS-1C, Orbit Type : GEO, Application : Navigation, Remarks :null" + }, + { + "value": "IRNSS-1B", + "expanded": "IRNSS-1B", + "numerical_value": 874, + "description": "Launch Date : Apr 04, 2014, Launch Vehicle : PSLV-C24/IRNSS-1B, Orbit Type : GSO, Application : Navigation, Remarks :null" + }, + { + "value": "GSAT-14", + "expanded": "GSAT-14", + "numerical_value": 875, + "description": "Launch Date : Jan 05, 2014, Launch Vehicle : GSLV-D5/GSAT-14, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "Mars Orbiter Mission Spacecraft", + "expanded": "Mars Orbiter Mission Spacecraft", + "numerical_value": 876, + "description": "Launch Date : Nov 05, 2013, Launch Vehicle : PSLV-C25, Orbit Type : Martian, Application : Planetary Observation, Remarks :null" + }, + { + "value": "GSAT-7", + "expanded": "GSAT-7", + "numerical_value": 877, + "description": "Launch Date : Aug 30, 2013, Launch Vehicle : Ariane-5 VA-215, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "INSAT-3D", + "expanded": "INSAT-3D", + "numerical_value": 878, + "description": "Launch Date : Jul 26, 2013, Launch Vehicle : Ariane-5 VA-214, Orbit Type : GSO, Application : Climate & Environment, Disaster Management System, Remarks :null" + }, + { + "value": "IRNSS-1A", + "expanded": "IRNSS-1A", + "numerical_value": 879, + "description": "Launch Date : Jul 01, 2013, Launch Vehicle : PSLV-C22/IRNSS-1A, Orbit Type : GSO, Application : Navigation, Remarks :null" + }, + { + "value": "SARAL", + "expanded": "SARAL", + "numerical_value": 880, + "description": "Launch Date : Feb 25, 2013, Launch Vehicle : PSLV-C20/SARAL, Orbit Type : SSPO, Application : Climate & Environment, Earth Observation, Remarks :null" + }, + { + "value": "GSAT-10", + "expanded": "GSAT-10", + "numerical_value": 881, + "description": "Launch Date : Sep 29, 2012, Launch Vehicle : Ariane-5 VA-209, Orbit Type : GEO, Application : Communication, Navigation, Remarks :null" + }, + { + "value": "RISAT-1", + "expanded": "RISAT-1", + "numerical_value": 882, + "description": "Launch Date : Apr 26, 2012, Launch Vehicle : PSLV-C19/RISAT-1, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "Megha-Tropiques", + "expanded": "Megha-Tropiques", + "numerical_value": 883, + "description": "Launch Date : Oct 12, 2011, Launch Vehicle : PSLV-C18/Megha-Tropiques, Orbit Type : SSPO, Application : Climate & Environment, Earth Observation, Remarks :null" + }, + { + "value": "GSAT-12", + "expanded": "GSAT-12", + "numerical_value": 884, + "description": "Launch Date : Jul 15, 2011, Launch Vehicle : PSLV-C17/GSAT-12, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "GSAT-8", + "expanded": "GSAT-8", + "numerical_value": 885, + "description": "Launch Date : May 21, 2011, Launch Vehicle : Ariane-5 VA-202, Orbit Type : GEO, Application : Communication, Navigation, Remarks :null" + }, + { + "value": "RESOURCESAT-2", + "expanded": "RESOURCESAT-2", + "numerical_value": 886, + "description": "Launch Date : Apr 20, 2011, Launch Vehicle : PSLV-C16/RESOURCESAT-2, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "YOUTHSAT", + "expanded": "YOUTHSAT", + "numerical_value": 887, + "description": "Launch Date : Apr 20, 2011, Launch Vehicle : PSLV-C16/RESOURCESAT-2, Orbit Type : SSPO, Application : Student Satellite, Remarks :null" + }, + { + "value": "GSAT-5P", + "expanded": "GSAT-5P", + "numerical_value": 888, + "description": "Launch Date : Dec 25, 2010, Launch Vehicle : GSLV-F06 / GSAT-5P, Orbit Type : GSO, Application : Communication , Remarks :Launch Unsuccessful" + }, + { + "value": "CARTOSAT-2B", + "expanded": "CARTOSAT-2B", + "numerical_value": 889, + "description": "Launch Date : Jul 12, 2010, Launch Vehicle : PSLV-C15/CARTOSAT-2B, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "GSAT-4", + "expanded": "GSAT-4", + "numerical_value": 890, + "description": "Launch Date : Apr 15, 2010, Launch Vehicle : GSLV-D3 / GSAT-4, Orbit Type : GSO, Application : Communication , Remarks :Launch Unsuccessful" + }, + { + "value": "Oceansat-2", + "expanded": "Oceansat-2", + "numerical_value": 891, + "description": "Launch Date : Sep 23, 2009, Launch Vehicle : PSLV-C14 / OCEANSAT-2, Orbit Type : SSPO, Application : Climate & Environment, Earth Observation, Remarks :null" + }, + { + "value": "RISAT-2", + "expanded": "RISAT-2", + "numerical_value": 892, + "description": "Launch Date : Apr 20, 2009, Launch Vehicle : PSLV-C12 / RISAT-2, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "Chandrayaan-1", + "expanded": "Chandrayaan-1", + "numerical_value": 893, + "description": "Launch Date : Oct 22, 2008, Launch Vehicle : PSLV-C11, Orbit Type : Lunar, Application : Planetary Observation, Remarks :null" + }, + { + "value": "CARTOSAT – 2A", + "expanded": "CARTOSAT – 2A", + "numerical_value": 894, + "description": "Launch Date : Apr 28, 2008, Launch Vehicle : PSLV-C9 / CARTOSAT – 2A, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "IMS-1", + "expanded": "IMS-1", + "numerical_value": 895, + "description": "Launch Date : Apr 28, 2008, Launch Vehicle : PSLV-C9 / CARTOSAT – 2A, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INSAT-4CR", + "expanded": "INSAT-4CR", + "numerical_value": 896, + "description": "Launch Date : Sep 02, 2007, Launch Vehicle : GSLV-F04 / INSAT-4CR, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "INSAT-4B", + "expanded": "INSAT-4B", + "numerical_value": 897, + "description": "Launch Date : Mar 12, 2007, Launch Vehicle : Ariane5, Orbit Type : GSO, Application : Communication , Remarks :INSAT-4B has undergone post mission disposal (PMD) at the end of its life followed by decommissioning on 24 January 2022" + }, + { + "value": "CARTOSAT-2", + "expanded": "CARTOSAT-2", + "numerical_value": 898, + "description": "Launch Date : Jan 10, 2007, Launch Vehicle : PSLV-C7 / CARTOSAT-2 / SRE-1, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "SRE-1", + "expanded": "SRE-1", + "numerical_value": 899, + "description": "Launch Date : Jan 10, 2007, Launch Vehicle : PSLV-C7 / CARTOSAT-2 / SRE-1, Orbit Type : SSPO, Application : Experimental, Remarks :null" + }, + { + "value": "INSAT-4C", + "expanded": "INSAT-4C", + "numerical_value": 900, + "description": "Launch Date : Jul 10, 2006, Launch Vehicle : GSLV-F02 / INSAT-4C, Orbit Type : GSO, Application : Communication , Remarks :Launch Unsuccessful" + }, + { + "value": "INSAT-4A", + "expanded": "INSAT-4A", + "numerical_value": 901, + "description": "Launch Date : Dec 22, 2005, Launch Vehicle : Ariane5-V169, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "HAMSAT", + "expanded": "HAMSAT", + "numerical_value": 902, + "description": "Launch Date : May 05, 2005, Launch Vehicle : PSLV-C6/CARTOSAT-1/HAMSAT, Orbit Type : SSPO, Application : Communication, Remarks :null" + }, + { + "value": "CARTOSAT-1", + "expanded": "CARTOSAT-1", + "numerical_value": 903, + "description": "Launch Date : May 05, 2005, Launch Vehicle : PSLV-C6/CARTOSAT-1/HAMSAT, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "EDUSAT", + "expanded": "EDUSAT", + "numerical_value": 904, + "description": "Launch Date : Sep 20, 2004, Launch Vehicle : GSLV-F01 / EDUSAT(GSAT-3), Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "IRS-P6 / RESOURCESAT-1", + "expanded": "IRS-P6 / RESOURCESAT-1", + "numerical_value": 905, + "description": "Launch Date : Oct 17, 2003, Launch Vehicle : PSLV-C5 /RESOURCESAT-1, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INSAT-3E", + "expanded": "INSAT-3E", + "numerical_value": 906, + "description": "Launch Date : Sep 28, 2003, Launch Vehicle : Ariane5-V162, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "GSAT-2", + "expanded": "GSAT-2", + "numerical_value": 907, + "description": "Launch Date : May 08, 2003, Launch Vehicle : GSLV-D2 / GSAT-2, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "INSAT-3A", + "expanded": "INSAT-3A", + "numerical_value": 908, + "description": "Launch Date : Apr 10, 2003, Launch Vehicle : Ariane5-V160, Orbit Type : GSO, Application : Climate & Environment, Communication, Remarks :null" + }, + { + "value": "KALPANA-1", + "expanded": "KALPANA-1", + "numerical_value": 909, + "description": "Launch Date : Sep 12, 2002, Launch Vehicle : PSLV-C4 /KALPANA-1, Orbit Type : GSO, Application : Climate & Environment, Communication, Remarks :null" + }, + { + "value": "INSAT-3C", + "expanded": "INSAT-3C", + "numerical_value": 910, + "description": "Launch Date : Jan 24, 2002, Launch Vehicle : Ariane5-V147, Orbit Type : GSO, Application : Climate & Environment, Communication, Remarks :null" + }, + { + "value": "The Technology Experiment Satellite (TES)", + "expanded": "The Technology Experiment Satellite (TES)", + "numerical_value": 911, + "description": "Launch Date : Oct 22, 2001, Launch Vehicle : PSLV-C3 / TES, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "GSAT-1", + "expanded": "GSAT-1", + "numerical_value": 912, + "description": "Launch Date : Apr 18, 2001, Launch Vehicle : GSLV-D1 / GSAT-1, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "INSAT-3B", + "expanded": "INSAT-3B", + "numerical_value": 913, + "description": "Launch Date : Mar 22, 2000, Launch Vehicle : Ariane-5G, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "Oceansat(IRS-P4)", + "expanded": "Oceansat(IRS-P4)", + "numerical_value": 914, + "description": "Launch Date : May 26, 1999, Launch Vehicle : PSLV-C2/IRS-P4, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INSAT-2E", + "expanded": "INSAT-2E", + "numerical_value": 915, + "description": "Launch Date : Apr 03, 1999, Launch Vehicle : Ariane-42P H10-3, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "IRS-1D", + "expanded": "IRS-1D", + "numerical_value": 916, + "description": "Launch Date : Sep 29, 1997, Launch Vehicle : PSLV-C1 / IRS-1D, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INSAT-2D", + "expanded": "INSAT-2D", + "numerical_value": 917, + "description": "Launch Date : Jun 04, 1997, Launch Vehicle : Ariane-44L H10-3, Orbit Type : GSO, Application : Communication , Remarks :Failed in Orbit" + }, + { + "value": "IRS-P3", + "expanded": "IRS-P3", + "numerical_value": 918, + "description": "Launch Date : Mar 21, 1996, Launch Vehicle : PSLV-D3 / IRS-P3, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "IRS-1C", + "expanded": "IRS-1C", + "numerical_value": 919, + "description": "Launch Date : Dec 28, 1995, Launch Vehicle : Molniya, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INSAT-2C", + "expanded": "INSAT-2C", + "numerical_value": 920, + "description": "Launch Date : Dec 07, 1995, Launch Vehicle : Ariane-44L H10-3, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "IRS-P2", + "expanded": "IRS-P2", + "numerical_value": 921, + "description": "Launch Date : Oct 15, 1994, Launch Vehicle : PSLV-D2, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "SROSS-C2", + "expanded": "SROSS-C2", + "numerical_value": 922, + "description": "Launch Date : May 04, 1994, Launch Vehicle : ASLV-D4, Orbit Type : null, Application : Experimental, Remarks :null" + }, + { + "value": "IRS-1E", + "expanded": "IRS-1E", + "numerical_value": 923, + "description": "Launch Date : Sep 20, 1993, Launch Vehicle : PSLV-D1, Orbit Type : LEO, Application : Earth Observation , Remarks :Launch Unsuccessful" + }, + { + "value": "INSAT-2B", + "expanded": "INSAT-2B", + "numerical_value": 924, + "description": "Launch Date : Jul 23, 1993, Launch Vehicle : Ariane-44L H10+, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "INSAT-2A", + "expanded": "INSAT-2A", + "numerical_value": 925, + "description": "Launch Date : Jul 10, 1992, Launch Vehicle : Ariane-44L H10, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "SROSS-C", + "expanded": "SROSS-C", + "numerical_value": 926, + "description": "Launch Date : May 20, 1992, Launch Vehicle : ASLV-D3, Orbit Type : null, Application : Experimental, Remarks :null" + }, + { + "value": "IRS-1B", + "expanded": "IRS-1B", + "numerical_value": 927, + "description": "Launch Date : Aug 29, 1991, Launch Vehicle : Vostok, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INSAT-1D", + "expanded": "INSAT-1D", + "numerical_value": 928, + "description": "Launch Date : Jun 12, 1990, Launch Vehicle : Delta 4925, Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "INSAT-1C", + "expanded": "INSAT-1C", + "numerical_value": 929, + "description": "Launch Date : Jul 22, 1988, Launch Vehicle : Ariane-3, Orbit Type : GSO, Application : Communication , Remarks :Partial Failure in Orbit" + }, + { + "value": "SROSS-2", + "expanded": "SROSS-2", + "numerical_value": 930, + "description": "Launch Date : Jul 13, 1988, Launch Vehicle : ASLV-D2, Orbit Type : null, Application : Earth Observation, Experimental , Remarks :Launch Unsuccessful" + }, + { + "value": "IRS-1A", + "expanded": "IRS-1A", + "numerical_value": 931, + "description": "Launch Date : Mar 17, 1988, Launch Vehicle : Vostok, Orbit Type : SSPO, Application : Earth Observation, Remarks :null" + }, + { + "value": "SROSS-1", + "expanded": "SROSS-1", + "numerical_value": 932, + "description": "Launch Date : Mar 24, 1987, Launch Vehicle : ASLV-D1, Orbit Type : null, Application : Experimental , Remarks :Launch Unsuccessful" + }, + { + "value": "INSAT-1B", + "expanded": "INSAT-1B", + "numerical_value": 933, + "description": "Launch Date : Aug 30, 1983, Launch Vehicle : Shuttle [PAM-D], Orbit Type : GSO, Application : Communication, Remarks :null" + }, + { + "value": "Rohini Satellite RS-D2", + "expanded": "Rohini Satellite RS-D2", + "numerical_value": 934, + "description": "Launch Date : Apr 17, 1983, Launch Vehicle : SLV-3, Orbit Type : LEO, Application : Earth Observation, Remarks :null" + }, + { + "value": "INSAT-1A", + "expanded": "INSAT-1A", + "numerical_value": 935, + "description": "Launch Date : Apr 10, 1982, Launch Vehicle : Delta, Orbit Type : GSO, Application : Communication , Remarks :Failed in Orbit" + }, + { + "value": "Bhaskara-II", + "expanded": "Bhaskara-II", + "numerical_value": 936, + "description": "Launch Date : Nov 20, 1981, Launch Vehicle : C-1 Intercosmos, Orbit Type : LEO, Application : Earth Observation, Experimental, Remarks :null" + }, + { + "value": "APPLE", + "expanded": "APPLE", + "numerical_value": 937, + "description": "Launch Date : Jun 19, 1981, Launch Vehicle : Ariane -1(V-3), Orbit Type : GSO, Application : Communication, Experimental, Remarks :null" + }, + { + "value": "Rohini Satellite RS-D1", + "expanded": "Rohini Satellite RS-D1", + "numerical_value": 938, + "description": "Launch Date : May 31, 1981, Launch Vehicle : SLV-3D1, Orbit Type : LEO, Application : Earth Observation, Remarks :null" + }, + { + "value": "Rohini Satellite RS-1", + "expanded": "Rohini Satellite RS-1", + "numerical_value": 939, + "description": "Launch Date : Jul 18, 1980, Launch Vehicle : SLV-3E2, Orbit Type : null, Application : null, Remarks : null" + }, + { + "value": "Rohini Technology Payload (RTP)", + "expanded": "Rohini Technology Payload (RTP)", + "numerical_value": 940, + "description": "Launch Date : Aug 10, 1979, Launch Vehicle : SLV-3E1, Orbit Type : null, Application : null, Remarks : Launch Unsuccessful" + }, + { + "value": "Bhaskara-I", + "expanded": "Bhaskara-I", + "numerical_value": 941, + "description": "Launch Date : Jun 07, 1979, Launch Vehicle : C-1Intercosmos, Orbit Type : LEO, Application : Earth Observation, Experimental, Remarks :null" + }, + { + "value": "Aryabhata", + "expanded": "Aryabhata", + "numerical_value": 942, + "description": "Launch Date : Apr 19, 1975, Launch Vehicle : C-1 Intercosmos, Orbit Type : null, Application : Experimental, Remarks :null" + } + ] + }, + { + "predicate": "GEO", + "entry": [ + { + "value": "TDRS 3", + "expanded": "TDRS 3", + "numerical_value": 943, + "description": "Object_Id : 1988-091B, Epoch : 2022-02-25T21:53:10.198176,Mean_Motion : 1.0028047, Eccentricity : 0.0039957, Inclination : 13.7937, Ra_Of_Asc_Node : 352.1995, Arg_Of_Pericenter : 331.4185, Mean_Anomaly : 111.287, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 19548, Element_Set_No : 999, Rev_At_Epoch : 10960, Bstar : 0, Mean_Motion_Dot : -3.0399999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FLTSATCOM 8 (USA 46)", + "expanded": "FLTSATCOM 8 (USA 46)", + "numerical_value": 944, + "description": "Object_Id : 1989-077A, Epoch : 2022-02-25T21:59:42.829152, Mean_Motion : 1.00272871, Eccentricity : 0.0003268, Inclination : 12.8908, Ra_Of_Asc_Node : 0.9834, Arg_Of_Pericenter : 60.3277, Mean_Anomaly : 136.1879, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 20253, Element_Set_No : 999, Rev_At_Epoch : 24484, Bstar : 0, Mean_Motion_Dot : -8.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SKYNET 4C", + "expanded": "SKYNET 4C", + "numerical_value": 945, + "description": "Object_Id : 1990-079A, Epoch : 2022-02-25T15:24:42.605856, Mean_Motion : 1.00276392, Eccentricity : 0.0003001, Inclination : 13.837, Ra_Of_Asc_Node : 0.9045, Arg_Of_Pericenter : 340.5536, Mean_Anomaly : 78.6538, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 20776, Element_Set_No : 999, Rev_At_Epoch : 11512, Bstar : 0, Mean_Motion_Dot : 1.2099999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 5", + "expanded": "TDRS 5", + "numerical_value": 946, + "description": "Object_Id : 1991-054B, Epoch : 2022-02-25T17:53:50.036928, Mean_Motion : 1.00269041, Eccentricity : 0.0027472, Inclination : 14.245, Ra_Of_Asc_Node : 5.5315, Arg_Of_Pericenter : 354.4397, Mean_Anomaly : 256.4029, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 21639, Element_Set_No : 999, Rev_At_Epoch : 11194, Bstar : 0, Mean_Motion_Dot : 7.799999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 6", + "expanded": "TDRS 6", + "numerical_value": 947, + "description": "Object_Id : 1993-003B, Epoch : 2022-02-25T09:59:47.812704, Mean_Motion : 1.00270741, Eccentricity : 0.0007786, Inclination : 14.1231, Ra_Of_Asc_Node : 8.7627, Arg_Of_Pericenter : 90.1285, Mean_Anomaly : 160.4467, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 22314, Element_Set_No : 999, Rev_At_Epoch : 10663, Bstar : 0, Mean_Motion_Dot : -3E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "UFO 2 (USA 95)", + "expanded": "UFO 2 (USA 95)", + "numerical_value": 948, + "description": "Object_Id : 1993-056A, Epoch : 2022-02-25T17:16:17.874048, Mean_Motion : 1.00271128, Eccentricity : 0.000417, Inclination : 11.4398, Ra_Of_Asc_Node : 11.751, Arg_Of_Pericenter : 311.9651, Mean_Anomaly : 119.5912, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 22787, Element_Set_No : 999, Rev_At_Epoch : 10278, Bstar : 0, Mean_Motion_Dot : 1.2E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 99 (MILSTAR-1 1)", + "expanded": "USA 99 (MILSTAR-1 1)", + "numerical_value": 949, + "description": "Object_Id : 1994-009A, Epoch : 2022-02-25T23:20:21.763104, Mean_Motion : 1.00274208, Eccentricity : 0.0002506, Inclination : 15.1668, Ra_Of_Asc_Node : 44.2958, Arg_Of_Pericenter : 279.5095, Mean_Anomaly : 92.0556, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 22988, Element_Set_No : 999, Rev_At_Epoch : 1588, Bstar : 0, Mean_Motion_Dot : -2.0599999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 107 (DSP 17)", + "expanded": "USA 107 (DSP 17)", + "numerical_value": 950, + "description": "Object_Id : 1994-084A, Epoch : 2022-02-25T11:44:40.801632, Mean_Motion : 1.00269958, Eccentricity : 7.630000000000001E-05, Inclination : 14.5863, Ra_Of_Asc_Node : 6.6614, Arg_Of_Pericenter : 64.2534, Mean_Anomaly : 164.0575, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 23435, Element_Set_No : 999, Rev_At_Epoch : 1718, Bstar : 0, Mean_Motion_Dot : -1.6999999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "UFO 4 (USA 108)", + "expanded": "UFO 4 (USA 108)", + "numerical_value": 951, + "description": "Object_Id : 1995-003A, Epoch : 2022-02-25T16:07:39.182592, Mean_Motion : 1.00275917, Eccentricity : 0.0002804, Inclination : 9.8335, Ra_Of_Asc_Node : 18.2771, Arg_Of_Pericenter : 16.6084, Mean_Anomaly : 174.7233, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 23467, Element_Set_No : 999, Rev_At_Epoch : 9918, Bstar : 0, Mean_Motion_Dot : -2.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMSC 1", + "expanded": "AMSC 1", + "numerical_value": 952, + "description": "Object_Id : 1995-019A, Epoch : 2022-02-25T14:38:33.593856, Mean_Motion : 1.00271939, Eccentricity : 0.0007162, Inclination : 11.8425, Ra_Of_Asc_Node : 26.956, Arg_Of_Pericenter : 318.7973, Mean_Anomaly : 281.8173, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 23553, Element_Set_No : 999, Rev_At_Epoch : 9840, Bstar : 0, Mean_Motion_Dot : -1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 7", + "expanded": "TDRS 7", + "numerical_value": 953, + "description": "Object_Id : 1995-035B, Epoch : 2022-02-25T20:43:56.939808, Mean_Motion : 1.00271897, Eccentricity : 0.0028336, Inclination : 14.0185, Ra_Of_Asc_Node : 359.4421, Arg_Of_Pericenter : 41.5154, Mean_Anomaly : 150.5294, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 23613, Element_Set_No : 999, Rev_At_Epoch : 9748, Bstar : 0, Mean_Motion_Dot : -2.0699999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 113", + "expanded": "USA 113", + "numerical_value": 954, + "description": "Object_Id : 1995-038A, Epoch : 2022-02-25T21:22:40.329120, Mean_Motion : 1.00272611, Eccentricity : 0.0001705, Inclination : 11.9803, Ra_Of_Asc_Node : 25.7702, Arg_Of_Pericenter : 291.5114, Mean_Anomaly : 262.9577, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 23628, Element_Set_No : 999, Rev_At_Epoch : 1584, Bstar : 0, Mean_Motion_Dot : -3.4699999999999994E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 115 (MILSTAR-1 2)", + "expanded": "USA 115 (MILSTAR-1 2)", + "numerical_value": 955, + "description": "Object_Id : 1995-060A, Epoch : 2022-02-25T23:11:49.341120, Mean_Motion : 1.00272308, Eccentricity : 0.0002664, Inclination : 13.4817, Ra_Of_Asc_Node : 15.1165, Arg_Of_Pericenter : 329.7761, Mean_Anomaly : 38.8127, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 23712, Element_Set_No : 999, Rev_At_Epoch : 1588, Bstar : 0, Mean_Motion_Dot : -2.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 3-F1", + "expanded": "INMARSAT 3-F1", + "numerical_value": 956, + "description": "Object_Id : 1996-020A, Epoch : 2022-02-25T14:45:42.688224, Mean_Motion : 0.99978204, Eccentricity : 0.0004331, Inclination : 7.3099, Ra_Of_Asc_Node : 58.8211, Arg_Of_Pericenter : 306.4566, Mean_Anomaly : 70.7821, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 23839, Element_Set_No : 999, Rev_At_Epoch : 9453, Bstar : 0, Mean_Motion_Dot : 7.799999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 3-F2", + "expanded": "INMARSAT 3-F2", + "numerical_value": 957, + "description": "Object_Id : 1996-053A, Epoch : 2022-02-25T20:02:45.249216, Mean_Motion : 0.99990513, Eccentricity : 0.0006667, Inclination : 6.2658, Ra_Of_Asc_Node : 67.8087, Arg_Of_Pericenter : 311.8252, Mean_Anomaly : 17.7543, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 24307, Element_Set_No : 999, Rev_At_Epoch : 9319, Bstar : 0, Mean_Motion_Dot : -2.87E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-1 (GE-1)", + "expanded": "AMC-1 (GE-1)", + "numerical_value": 958, + "description": "Object_Id : 1996-054A, Epoch : 2022-02-26T02:35:26.956032, Mean_Motion : 1.00271032, Eccentricity : 0.0003366, Inclination : 5.3568999999999996, Ra_Of_Asc_Node : 74.0813, Arg_Of_Pericenter : 270.7428, Mean_Anomaly : 79.0388, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 24315, Element_Set_No : 999, Rev_At_Epoch : 9325, Bstar : 0, Mean_Motion_Dot : 5.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 3-F3", + "expanded": "INMARSAT 3-F3", + "numerical_value": 959, + "description": "Object_Id : 1996-070A, Epoch : 2022-02-25T17:45:07.704864, Mean_Motion : 1.00003914, Eccentricity : 0.0004927, Inclination : 6.8949, Ra_Of_Asc_Node : 62.4921, Arg_Of_Pericenter : 288.4643, Mean_Anomaly : 252.9072, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 24674, Element_Set_No : 999, Rev_At_Epoch : 9218, Bstar : 0, Mean_Motion_Dot : 3.0000000000000004E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 25 (G-25)", + "expanded": "GALAXY 25 (G-25)", + "numerical_value": 960, + "description": "Object_Id : 1997-026A, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00272162, Eccentricity : 0.0003251, Inclination : 3.4153000000000002, Ra_Of_Asc_Node : 84.7667, Arg_Of_Pericenter : 247.8853, Mean_Anomaly : 300.0735, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 24812, Element_Set_No : 999, Rev_At_Epoch : 9060, Bstar : 0, Mean_Motion_Dot : -1.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 5 (IS-5)", + "expanded": "INTELSAT 5 (IS-5)", + "numerical_value": 961, + "description": "Object_Id : 1997-046A, Epoch : 2022-02-25T17:51:32.023296, Mean_Motion : 1.00134482, Eccentricity : 0.0001968, Inclination : 6.9906, Ra_Of_Asc_Node : 61.8191, Arg_Of_Pericenter : 208.3097, Mean_Anomaly : 357.4721, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 24916, Element_Set_No : 999, Rev_At_Epoch : 8985, Bstar : 0, Mean_Motion_Dot : 1.14E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-3 (GE-3)", + "expanded": "AMC-3 (GE-3)", + "numerical_value": 962, + "description": "Object_Id : 1997-050A, Epoch : 2022-02-26T02:52:16.732704, Mean_Motion : 1.00270838, Eccentricity : 0.0003291, Inclination : 4.2727, Ra_Of_Asc_Node : 80.5174, Arg_Of_Pericenter : 274.294, Mean_Anomaly : 132.1825, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 24936, Element_Set_No : 999, Rev_At_Epoch : 8968, Bstar : 0, Mean_Motion_Dot : -2.7299999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 134", + "expanded": "USA 134", + "numerical_value": 963, + "description": "Object_Id : 1997-065A, Epoch : 2022-02-25T23:14:04.981344, Mean_Motion : 1.0026988, Eccentricity : 0.0006262, Inclination : 10.9251, Ra_Of_Asc_Node : 32.1802, Arg_Of_Pericenter : 333.3213, Mean_Anomaly : 26.4133, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25019, Element_Set_No : 999, Rev_At_Epoch : 1584, Bstar : 0, Mean_Motion_Dot : -6.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 1G", + "expanded": "ASTRA 1G", + "numerical_value": 964, + "description": "Object_Id : 1997-076A, Epoch : 2022-02-26T03:18:31.683744, Mean_Motion : 1.00273943, Eccentricity : 0.0003759, Inclination : 5.991, Ra_Of_Asc_Node : 69.1246, Arg_Of_Pericenter : 271.6886, Mean_Anomaly : 244.1585, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25071, Element_Set_No : 999, Rev_At_Epoch : 8877, Bstar : 0, Mean_Motion_Dot : 1.0299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 3-F5", + "expanded": "INMARSAT 3-F5", + "numerical_value": 965, + "description": "Object_Id : 1998-006B, Epoch : 2022-02-25T20:04:08.139648, Mean_Motion : 1.00274617, Eccentricity : 0.000484, Inclination : 6.1517, Ra_Of_Asc_Node : 66.5811, Arg_Of_Pericenter : 275.8788, Mean_Anomaly : 60.2133, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25153, Element_Set_No : 999, Rev_At_Epoch : 8812, Bstar : 0, Mean_Motion_Dot : -3E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "UFO 8 (USA 138)", + "expanded": "UFO 8 (USA 138)", + "numerical_value": 966, + "description": "Object_Id : 1998-016A, Epoch : 2022-02-25T17:42:06.848928, Mean_Motion : 1.00274613, Eccentricity : 0.0002524, Inclination : 9.3061, Ra_Of_Asc_Node : 30.3422, Arg_Of_Pericenter : 319.8519, Mean_Anomaly : 242.5306, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25258, Element_Set_No : 999, Rev_At_Epoch : 8808, Bstar : 0, Mean_Motion_Dot : -3.2999999999999996E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 2A", + "expanded": "ASTRA 2A", + "numerical_value": 967, + "description": "Object_Id : 1998-050A, Epoch : 2022-02-26T03:21:02.397312, Mean_Motion : 1.00268036, Eccentricity : 0.0002268, Inclination : 3.1265, Ra_Of_Asc_Node : 86.7557, Arg_Of_Pericenter : 248.14, Mean_Anomaly : 259.303, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25462, Element_Set_No : 999, Rev_At_Epoch : 8597, Bstar : 0, Mean_Motion_Dot : 1.36E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-4A", + "expanded": "JCSAT-4A", + "numerical_value": 968, + "description": "Object_Id : 1999-006A, Epoch : 2022-02-26T03:26:18.895200, Mean_Motion : 0.98808526, Eccentricity : 0.0026505, Inclination : 5.9875, Ra_Of_Asc_Node : 69.6161, Arg_Of_Pericenter : 358.5901, Mean_Anomaly : 185.7371, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25630, Element_Set_No : 999, Rev_At_Epoch : 8422, Bstar : 0, Mean_Motion_Dot : 1.8999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SKYNET 4E", + "expanded": "SKYNET 4E", + "numerical_value": 969, + "description": "Object_Id : 1999-009B, Epoch : 2022-02-26T03:12:37.509408, Mean_Motion : 1.00270484, Eccentricity : 0.0003098, Inclination : 11.1915, Ra_Of_Asc_Node : 17.5197, Arg_Of_Pericenter : 308.1322, Mean_Anomaly : 237.2409, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25639, Element_Set_No : 999, Rev_At_Epoch : 8425, Bstar : 0, Mean_Motion_Dot : -4.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ABS-7", + "expanded": "ABS-7", + "numerical_value": 970, + "description": "Object_Id : 1999-046A, Epoch : 2022-02-25T21:39:42.715872, Mean_Motion : 0.99969995, Eccentricity : 0.0003624, Inclination : 2.4818, Ra_Of_Asc_Node : 88.8518, Arg_Of_Pericenter : 309.7229, Mean_Anomaly : 100.4989, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25894, Element_Set_No : 999, Rev_At_Epoch : 8136, Bstar : 0, Mean_Motion_Dot : 6.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ABS-6", + "expanded": "ABS-6", + "numerical_value": 971, + "description": "Object_Id : 1999-053A, Epoch : 2022-02-26T03:58:35.557248, Mean_Motion : 1.00273785, Eccentricity : 0.0002307, Inclination : 0.0671, Ra_Of_Asc_Node : 298.413, Arg_Of_Pericenter : 11.6385, Mean_Anomaly : 64.5476, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25924, Element_Set_No : 999, Rev_At_Epoch : 8208, Bstar : 0, Mean_Motion_Dot : -1.31E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-4 (GE-4)", + "expanded": "AMC-4 (GE-4)", + "numerical_value": 972, + "description": "Object_Id : 1999-060A, Epoch : 2022-02-26T02:34:19.136352, Mean_Motion : 1.00270958, Eccentricity : 0.0002966, Inclination : 1.2396, Ra_Of_Asc_Node : 93.1495, Arg_Of_Pericenter : 245.7033, Mean_Anomaly : 80.7249, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25954, Element_Set_No : 999, Rev_At_Epoch : 8172, Bstar : 0, Mean_Motion_Dot : 7.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "UFO 10 (USA 146)", + "expanded": "UFO 10 (USA 146)", + "numerical_value": 973, + "description": "Object_Id : 1999-063A, Epoch : 2022-02-25T20:33:29.782080, Mean_Motion : 1.0027209, Eccentricity : 0.0002386, Inclination : 8.576, Ra_Of_Asc_Node : 33.8002, Arg_Of_Pericenter : 321.1978, Mean_Anomaly : 86.2919, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 25967, Element_Set_No : 999, Rev_At_Epoch : 8158, Bstar : 0, Mean_Motion_Dot : -1.95E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 11 (G-11)", + "expanded": "GALAXY 11 (G-11)", + "numerical_value": 974, + "description": "Object_Id : 1999-071A, Epoch : 2022-02-25T14:42:50.887008, Mean_Motion : 1.00271041, Eccentricity : 4.110000000000001E-05, Inclination : 2.7263, Ra_Of_Asc_Node : 89.2284, Arg_Of_Pericenter : 88.1322, Mean_Anomaly : 105.6677, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26038, Element_Set_No : 999, Rev_At_Epoch : 8131, Bstar : 0, Mean_Motion_Dot : -1.7199999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 148", + "expanded": "USA 148", + "numerical_value": 975, + "description": "Object_Id : 2000-001A, Epoch : 2022-02-25T17:44:37.563360, Mean_Motion : 1.00270916, Eccentricity : 0.000187, Inclination : 9.363, Ra_Of_Asc_Node : 43.0671, Arg_Of_Pericenter : 283.7251, Mean_Anomaly : 275.2435, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26052, Element_Set_No : 999, Rev_At_Epoch : 1719, Bstar : 0, Mean_Motion_Dot : 3.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASIASTAR", + "expanded": "ASIASTAR", + "numerical_value": 976, + "description": "Object_Id : 2000-016A, Epoch : 2022-02-26T01:59:46.833216, Mean_Motion : 1.00269201, Eccentricity : 0.0004259, Inclination : 5.4203, Ra_Of_Asc_Node : 72.8676, Arg_Of_Pericenter : 273.5003, Mean_Anomaly : 304.4693, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26107, Element_Set_No : 999, Rev_At_Epoch : 8038, Bstar : 0, Mean_Motion_Dot : -3.45E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 149 (DSP 20)", + "expanded": "USA 149 (DSP 20)", + "numerical_value": 977, + "description": "Object_Id : 2000-024A, Epoch : 2022-02-25T16:16:50.824992, Mean_Motion : 1.00278167, Eccentricity : 0.0001476, Inclination : 12.0007, Ra_Of_Asc_Node : 22.2342, Arg_Of_Pericenter : 358.6905, Mean_Anomaly : 213.0755, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26356, Element_Set_No : 999, Rev_At_Epoch : 1714, Bstar : 0, Mean_Motion_Dot : 8.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 8", + "expanded": "TDRS 8", + "numerical_value": 978, + "description": "Object_Id : 2000-034A, Epoch : 2022-02-25T12:28:48.696384, Mean_Motion : 1.00279423, Eccentricity : 0.0022479, Inclination : 10.1912, Ra_Of_Asc_Node : 43.3193, Arg_Of_Pericenter : 329.5458, Mean_Anomaly : 58.7207, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26388, Element_Set_No : 999, Rev_At_Epoch : 7941, Bstar : 0, Mean_Motion_Dot : -2.4100000000000002E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 9 (IS-9)", + "expanded": "INTELSAT 9 (IS-9)", + "numerical_value": 979, + "description": "Object_Id : 2000-043A, Epoch : 2022-02-25T21:48:33.204096, Mean_Motion : 1.00271051, Eccentricity : 0.0002279, Inclination : 6.9772, Ra_Of_Asc_Node : 61.9918, Arg_Of_Pericenter : 275.4124, Mean_Anomaly : 95.464, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26451, Element_Set_No : 999, Rev_At_Epoch : 7908, Bstar : 0, Mean_Motion_Dot : -2.98E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "NSS-11 (AAP-1)", + "expanded": "NSS-11 (AAP-1)", + "numerical_value": 980, + "description": "Object_Id : 2000-059A, Epoch : 2022-02-26T02:20:07.608192, Mean_Motion : 1.00271951, Eccentricity : 0.0002676, Inclination : 0.0619, Ra_Of_Asc_Node : 294.5012, Arg_Of_Pericenter : 63.9238, Mean_Anomaly : 8.5024, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26554, Element_Set_No : 999, Rev_At_Epoch : 7841, Bstar : 0, Mean_Motion_Dot : 1.3999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 153", + "expanded": "USA 153", + "numerical_value": 981, + "description": "Object_Id : 2000-065A, Epoch : 2022-02-25T20:58:08.468832, Mean_Motion : 1.00272025, Eccentricity : 0.0001894, Inclination : 8.9122, Ra_Of_Asc_Node : 46.3967, Arg_Of_Pericenter : 276.4935, Mean_Anomaly : 281.7921, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26575, Element_Set_No : 999, Rev_At_Epoch : 1584, Bstar : 0, Mean_Motion_Dot : -3.33E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-6 (GE-6)", + "expanded": "AMC-6 (GE-6)", + "numerical_value": 982, + "description": "Object_Id : 2000-067A, Epoch : 2022-02-25T17:56:18.377952, Mean_Motion : 1.0027088, Eccentricity : 0.0002574, Inclination : 0.0553, Ra_Of_Asc_Node : 296.1198, Arg_Of_Pericenter : 43.061, Mean_Anomaly : 306.4291, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26580, Element_Set_No : 999, Rev_At_Epoch : 7815, Bstar : 0, Mean_Motion_Dot : 9.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 1R (IS-1R)", + "expanded": "INTELSAT 1R (IS-1R)", + "numerical_value": 983, + "description": "Object_Id : 2000-072A, Epoch : 2022-02-25T17:38:05.708256, Mean_Motion : 1.0027216, Eccentricity : 0.0001735, Inclination : 4.1702, Ra_Of_Asc_Node : 81.0158, Arg_Of_Pericenter : 356.6059, Mean_Anomaly : 139.572, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26608, Element_Set_No : 999, Rev_At_Epoch : 2555, Bstar : 0, Mean_Motion_Dot : -1.49E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ANIK F1", + "expanded": "ANIK F1", + "numerical_value": 984, + "description": "Object_Id : 2000-076A, Epoch : 2022-02-26T02:41:36.203712, Mean_Motion : 1.00270535, Eccentricity : 0.0005101, Inclination : 1.1545, Ra_Of_Asc_Node : 94.0179, Arg_Of_Pericenter : 291.4574, Mean_Anomaly : 61.6365, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26624, Element_Set_No : 999, Rev_At_Epoch : 7796, Bstar : 0, Mean_Motion_Dot : -7.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 2D", + "expanded": "ASTRA 2D", + "numerical_value": 985, + "description": "Object_Id : 2000-081A, Epoch : 2022-02-26T03:19:47.040960, Mean_Motion : 1.0027274, Eccentricity : 0.0002207, Inclination : 7.0583, Ra_Of_Asc_Node : 61.0458, Arg_Of_Pericenter : 270.3674, Mean_Anomaly : 258.1571, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26638, Element_Set_No : 999, Rev_At_Epoch : 7762, Bstar : 0, Mean_Motion_Dot : 1.18E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-8 (GE-8)", + "expanded": "AMC-8 (GE-8)", + "numerical_value": 986, + "description": "Object_Id : 2000-081B, Epoch : 2022-02-26T02:34:19.136352, Mean_Motion : 1.00273457, Eccentricity : 0.0002839, Inclination : 2.1675, Ra_Of_Asc_Node : 89.7988, Arg_Of_Pericenter : 256.0793, Mean_Anomaly : 73.6124, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26639, Element_Set_No : 999, Rev_At_Epoch : 7751, Bstar : 0, Mean_Motion_Dot : 7.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 157 (MILSTAR-2 2)", + "expanded": "USA 157 (MILSTAR-2 2)", + "numerical_value": 987, + "description": "Object_Id : 2001-009A, Epoch : 2022-02-26T00:53:58.151904, Mean_Motion : 1.00266589, Eccentricity : 0.0002058, Inclination : 9.9078, Ra_Of_Asc_Node : 27.6709, Arg_Of_Pericenter : 313.8674, Mean_Anomaly : 63.6844, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26715, Element_Set_No : 999, Rev_At_Epoch : 1588, Bstar : 0, Mean_Motion_Dot : 5E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 133 WEST A", + "expanded": "EUTELSAT 133 WEST A", + "numerical_value": 988, + "description": "Object_Id : 2001-011A, Epoch : 2022-02-25T17:58:03.876672, Mean_Motion : 1.0027004, Eccentricity : 0.0002513, Inclination : 3.4397, Ra_Of_Asc_Node : 83.8277, Arg_Of_Pericenter : 273.105, Mean_Anomaly : 295.2904, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26719, Element_Set_No : 999, Rev_At_Epoch : 7677, Bstar : 0, Mean_Motion_Dot : 6.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 10 (IS-10)", + "expanded": "INTELSAT 10 (IS-10)", + "numerical_value": 989, + "description": "Object_Id : 2001-019A, Epoch : 2022-02-25T17:43:59.884320, Mean_Motion : 1.00270231, Eccentricity : 0.0002863, Inclination : 5.3142, Ra_Of_Asc_Node : 74.3071, Arg_Of_Pericenter : 273.7208, Mean_Anomaly : 251.3209, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26766, Element_Set_No : 999, Rev_At_Epoch : 2985, Bstar : 0, Mean_Motion_Dot : 2.2999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 901 (IS-901)", + "expanded": "INTELSAT 901 (IS-901)", + "numerical_value": 990, + "description": "Object_Id : 2001-024A, Epoch : 2022-02-25T20:11:40.278624, Mean_Motion : 1.00272485, Eccentricity : 8.920000000000001E-05, Inclination : 0.0429, Ra_Of_Asc_Node : 277.3083, Arg_Of_Pericenter : 96.7123, Mean_Anomaly : 57.0761, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26824, Element_Set_No : 999, Rev_At_Epoch : 720, Bstar : 0, Mean_Motion_Dot : -2.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 2C", + "expanded": "ASTRA 2C", + "numerical_value": 991, + "description": "Object_Id : 2001-025A, Epoch : 2022-02-26T02:52:09.197760, Mean_Motion : 1.0026931, Eccentricity : 0.0002697, Inclination : 4.2984, Ra_Of_Asc_Node : 80.3192, Arg_Of_Pericenter : 265.2872, Mean_Anomaly : 140.8757, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26853, Element_Set_No : 999, Rev_At_Epoch : 7581, Bstar : 0, Mean_Motion_Dot : -2.71E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 159 (DSP 21)", + "expanded": "USA 159 (DSP 21)", + "numerical_value": 992, + "description": "Object_Id : 2001-033A, Epoch : 2022-02-25T06:18:42.788736, Mean_Motion : 1.00277451, Eccentricity : 8.310000000000001E-05, Inclination : 11.3244, Ra_Of_Asc_Node : 26.4619, Arg_Of_Pericenter : 93.7858, Mean_Anomaly : 80.3099, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26880, Element_Set_No : 999, Rev_At_Epoch : 1719, Bstar : 0, Mean_Motion_Dot : -3.02E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 902 (IS-902)", + "expanded": "INTELSAT 902 (IS-902)", + "numerical_value": 993, + "description": "Object_Id : 2001-039A, Epoch : 2022-02-25T20:05:15.961056, Mean_Motion : 1.00271537, Eccentricity : 0.0003119, Inclination : 2.1257, Ra_Of_Asc_Node : 90.2465, Arg_Of_Pericenter : 250.2394, Mean_Anomaly : 66.3796, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 26900, Element_Set_No : 999, Rev_At_Epoch : 7492, Bstar : 0, Mean_Motion_Dot : -2.93E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 164 (MILSTAR-2 3)", + "expanded": "USA 164 (MILSTAR-2 3)", + "numerical_value": 994, + "description": "Object_Id : 2002-001A, Epoch : 2022-02-26T03:18:24.147936, Mean_Motion : 1.0027438, Eccentricity : 0.0002016, Inclination : 9.391, Ra_Of_Asc_Node : 29.4625, Arg_Of_Pericenter : 313.2822, Mean_Anomaly : 241.7678, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27168, Element_Set_No : 999, Rev_At_Epoch : 1588, Bstar : 0, Mean_Motion_Dot : 9.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 7", + "expanded": "ECHOSTAR 7", + "numerical_value": 995, + "description": "Object_Id : 2002-006A, Epoch : 2022-02-26T02:38:57.954336, Mean_Motion : 1.00271055, Eccentricity : 0.0001566, Inclination : 0.0518, Ra_Of_Asc_Node : 299.4549, Arg_Of_Pericenter : 59.5981, Mean_Anomaly : 77.8054, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27378, Element_Set_No : 999, Rev_At_Epoch : 7330, Bstar : 0, Mean_Motion_Dot : -1.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 904 (IS-904)", + "expanded": "INTELSAT 904 (IS-904)", + "numerical_value": 996, + "description": "Object_Id : 2002-007A, Epoch : 2022-02-25T20:11:10.137120, Mean_Motion : 1.00270877, Eccentricity : 0.000307, Inclination : 2.9582, Ra_Of_Asc_Node : 87.1249, Arg_Of_Pericenter : 262.9549, Mean_Anomaly : 78.8616, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27380, Element_Set_No : 999, Rev_At_Epoch : 3599, Bstar : 0, Mean_Motion_Dot : -2.25E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 9", + "expanded": "TDRS 9", + "numerical_value": 997, + "description": "Object_Id : 2002-011A, Epoch : 2022-02-25T11:24:54.703296, Mean_Motion : 1.00274131, Eccentricity : 0.0028535, Inclination : 8.7825, Ra_Of_Asc_Node : 61.8327, Arg_Of_Pericenter : 293.9006, Mean_Anomaly : 268.5572, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27389, Element_Set_No : 999, Rev_At_Epoch : 7466, Bstar : 0, Mean_Motion_Dot : -2.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 3A", + "expanded": "ASTRA 3A", + "numerical_value": 998, + "description": "Object_Id : 2002-015B, Epoch : 2022-02-26T01:04:38.681760, Mean_Motion : 1.00274563, Eccentricity : 0.0001761, Inclination : 7.1647, Ra_Of_Asc_Node : 59.8939, Arg_Of_Pericenter : 270.3606, Mean_Anomaly : 114.9314, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27400, Element_Set_No : 999, Rev_At_Epoch : 7295, Bstar : 0, Mean_Motion_Dot : -2.1499999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "NSS-7", + "expanded": "NSS-7", + "numerical_value": 999, + "description": "Object_Id : 2002-019A, Epoch : 2022-02-25T21:57:13.163616, Mean_Motion : 1.00271957, Eccentricity : 0.0002844, Inclination : 5.64, Ra_Of_Asc_Node : 72.2162, Arg_Of_Pericenter : 266.5761, Mean_Anomaly : 126.2394, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27414, Element_Set_No : 999, Rev_At_Epoch : 7279, Bstar : 0, Mean_Motion_Dot : -1.69E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 5 (TEMPO 1)", + "expanded": "DIRECTV 5 (TEMPO 1)", + "numerical_value": 1000, + "description": "Object_Id : 2002-023A, Epoch : 2022-02-26T02:41:21.132096, Mean_Motion : 1.00273743, Eccentricity : 0.0003382, Inclination : 0.8473, Ra_Of_Asc_Node : 94.5551, Arg_Of_Pericenter : 257.7322, Mean_Anomaly : 93.8437, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27426, Element_Set_No : 999, Rev_At_Epoch : 7254, Bstar : 0, Mean_Motion_Dot : -6.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 905 (IS-905)", + "expanded": "INTELSAT 905 (IS-905)", + "numerical_value": 1001, + "description": "Object_Id : 2002-027A, Epoch : 2022-02-25T22:12:20.019744, Mean_Motion : 1.00270185, Eccentricity : 0.0002561, Inclination : 2.7805999999999997, Ra_Of_Asc_Node : 87.8856, Arg_Of_Pericenter : 262.1909, Mean_Anomaly : 114.2292, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27438, Element_Set_No : 999, Rev_At_Epoch : 3560, Bstar : 0, Mean_Motion_Dot : -1.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 3C (G-3C)", + "expanded": "GALAXY 3C (G-3C)", + "numerical_value": 1002, + "description": "Object_Id : 2002-030A, Epoch : 2022-02-25T14:42:20.743776, Mean_Motion : 1.00270278, Eccentricity : 0.000176, Inclination : 0.0342, Ra_Of_Asc_Node : 338.8216, Arg_Of_Pericenter : 351.9735, Mean_Anomaly : 310.1682, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27445, Element_Set_No : 999, Rev_At_Epoch : 3073, Bstar : 0, Mean_Motion_Dot : -1.5899999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 5 WEST A", + "expanded": "EUTELSAT 5 WEST A", + "numerical_value": 1003, + "description": "Object_Id : 2002-035A, Epoch : 2022-02-25T20:18:12.132000, Mean_Motion : 1.00271523, Eccentricity : 0.0005816, Inclination : 2.0408, Ra_Of_Asc_Node : 90.598, Arg_Of_Pericenter : 250.8294, Mean_Anomaly : 113.7562, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27460, Element_Set_No : 999, Rev_At_Epoch : 7185, Bstar : 0, Mean_Motion_Dot : -5.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "METEOSAT-8 (MSG-1)", + "expanded": "METEOSAT-8 (MSG-1)", + "numerical_value": 1004, + "description": "Object_Id : 2002-040B, Epoch : 2022-02-25T17:56:39.604704, Mean_Motion : 1.00268262, Eccentricity : 0.0001195, Inclination : 7.832, Ra_Of_Asc_Node : 51.2365, Arg_Of_Pericenter : 328.6131, Mean_Anomaly : 86.3171, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27509, Element_Set_No : 999, Rev_At_Epoch : 7149, Bstar : 0, Mean_Motion_Dot : 1.26E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 906 (IS-906)", + "expanded": "INTELSAT 906 (IS-906)", + "numerical_value": 1005, + "description": "Object_Id : 2002-041A, Epoch : 2022-02-26T03:53:42.639648, Mean_Motion : 1.00270931, Eccentricity : 0.0003463, Inclination : 1.7936999999999999, Ra_Of_Asc_Node : 91.8093, Arg_Of_Pericenter : 256.6576, Mean_Anomaly : 290.0722, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27513, Element_Set_No : 999, Rev_At_Epoch : 7120, Bstar : 0, Mean_Motion_Dot : 3.0000000000000004E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "HISPASAT 30W-4", + "expanded": "HISPASAT 30W-4", + "numerical_value": 1006, + "description": "Object_Id : 2002-044A, Epoch : 2022-02-26T02:31:55.958592, Mean_Motion : 1.00266443, Eccentricity : 0.0004215, Inclination : 2.5487, Ra_Of_Asc_Node : 87.8848, Arg_Of_Pericenter : 246.3367, Mean_Anomaly : 76.6317, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27528, Element_Set_No : 999, Rev_At_Epoch : 7118, Bstar : 0, Mean_Motion_Dot : 1.05E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 10", + "expanded": "TDRS 10", + "numerical_value": 1007, + "description": "Object_Id : 2002-055A, Epoch : 2022-02-26T02:59:42.542880, Mean_Motion : 1.00266089, Eccentricity : 0.0009139, Inclination : 8.0002, Ra_Of_Asc_Node : 50.5741, Arg_Of_Pericenter : 313.2203, Mean_Anomaly : 26.0632, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27566, Element_Set_No : 999, Rev_At_Epoch : 7046, Bstar : 0, Mean_Motion_Dot : 7.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "NSS-6", + "expanded": "NSS-6", + "numerical_value": 1008, + "description": "Object_Id : 2002-057A, Epoch : 2022-02-25T17:47:38.417568, Mean_Motion : 1.00275998, Eccentricity : 0.0003345, Inclination : 1.3287, Ra_Of_Asc_Node : 92.9368, Arg_Of_Pericenter : 258.632, Mean_Anomaly : 261.433, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27603, Element_Set_No : 999, Rev_At_Epoch : 7027, Bstar : 0, Mean_Motion_Dot : 9.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "NIMIQ 2", + "expanded": "NIMIQ 2", + "numerical_value": 1009, + "description": "Object_Id : 2002-062A, Epoch : 2022-02-25T15:25:12.743040, Mean_Motion : 0.99994472, Eccentricity : 0.0009159, Inclination : 5.7449, Ra_Of_Asc_Node : 71.4421, Arg_Of_Pericenter : 293.1873, Mean_Anomaly : 278.9997, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27632, Element_Set_No : 999, Rev_At_Epoch : 2841, Bstar : 0, Mean_Motion_Dot : -7.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 167", + "expanded": "USA 167", + "numerical_value": 1010, + "description": "Object_Id : 2003-008A, Epoch : 2022-02-26T02:35:34.491840, Mean_Motion : 1.00270411, Eccentricity : 0.0002517, Inclination : 7.8248999999999995, Ra_Of_Asc_Node : 55.3135, Arg_Of_Pericenter : 337.8068, Mean_Anomaly : 31.5096, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27691, Element_Set_No : 999, Rev_At_Epoch : 1586, Bstar : 0, Mean_Motion_Dot : 4.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 169 (MILSTAR-2 4)", + "expanded": "USA 169 (MILSTAR-2 4)", + "numerical_value": 1011, + "description": "Object_Id : 2003-012A, Epoch : 2022-02-25T21:21:48.155616, Mean_Motion : 1.00273668, Eccentricity : 0.0002233, Inclination : 9.9589, Ra_Of_Asc_Node : 40.9452, Arg_Of_Pericenter : 292.5913, Mean_Anomaly : 294.7438, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27711, Element_Set_No : 999, Rev_At_Epoch : 1718, Bstar : 0, Mean_Motion_Dot : -2.0299999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 12 (G-12)", + "expanded": "GALAXY 12 (G-12)", + "numerical_value": 1012, + "description": "Object_Id : 2003-013B, Epoch : 2022-02-26T02:35:57.099264, Mean_Motion : 1.00271416, Eccentricity : 0.0001879, Inclination : 2.9934, Ra_Of_Asc_Node : 86.7118, Arg_Of_Pericenter : 264.9128, Mean_Anomaly : 74.2639, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27715, Element_Set_No : 999, Rev_At_Epoch : 6924, Bstar : 0, Mean_Motion_Dot : 4.5999999999999994E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASIASAT 4", + "expanded": "ASIASAT 4", + "numerical_value": 1013, + "description": "Object_Id : 2003-014A, Epoch : 2022-02-25T17:59:42.690624, Mean_Motion : 1.00547763, Eccentricity : 0.0004412, Inclination : 0.6874, Ra_Of_Asc_Node : 95.6455, Arg_Of_Pericenter : 241.3007, Mean_Anomaly : 177.6575, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27718, Element_Set_No : 999, Rev_At_Epoch : 2953, Bstar : 0, Mean_Motion_Dot : -2.8199999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "HELLAS-SAT 2", + "expanded": "HELLAS-SAT 2", + "numerical_value": 1014, + "description": "Object_Id : 2003-020A, Epoch : 2022-02-26T01:18:20.066688, Mean_Motion : 1.00515603, Eccentricity : 0.0006513, Inclination : 3.4093, Ra_Of_Asc_Node : 85.7812, Arg_Of_Pericenter : 250.22, Mean_Anomaly : 160.0521, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27811, Element_Set_No : 999, Rev_At_Epoch : 6857, Bstar : 0, Mean_Motion_Dot : -2.4599999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "THURAYA-2", + "expanded": "THURAYA-2", + "numerical_value": 1015, + "description": "Object_Id : 2003-026A, Epoch : 2022-02-25T15:51:14.911200, Mean_Motion : 1.0027199, Eccentricity : 0.0003302, Inclination : 6.5988, Ra_Of_Asc_Node : 34.3186, Arg_Of_Pericenter : 263.4759, Mean_Anomaly : 139.4842, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27825, Element_Set_No : 999, Rev_At_Epoch : 6858, Bstar : 0, Mean_Motion_Dot : 1.1899999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "OPTUS C1", + "expanded": "OPTUS C1", + "numerical_value": 1016, + "description": "Object_Id : 2003-028B, Epoch : 2022-02-26T03:57:42.806592, Mean_Motion : 1.00273385, Eccentricity : 0.0005626, Inclination : 2.9224, Ra_Of_Asc_Node : 87.676, Arg_Of_Pericenter : 253.8733, Mean_Anomaly : 29.4999, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27831, Element_Set_No : 999, Rev_At_Epoch : 6856, Bstar : 0, Mean_Motion_Dot : -1.6299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 23 (G-23)", + "expanded": "GALAXY 23 (G-23)", + "numerical_value": 1017, + "description": "Object_Id : 2003-034A, Epoch : 2022-02-25T15:05:17.204640, Mean_Motion : 1.00273061, Eccentricity : 0.0003032, Inclination : 0.0514, Ra_Of_Asc_Node : 263.4514, Arg_Of_Pericenter : 79.9336, Mean_Anomaly : 277.3885, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27854, Element_Set_No : 999, Rev_At_Epoch : 6797, Bstar : 0, Mean_Motion_Dot : 4E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 170", + "expanded": "USA 170", + "numerical_value": 1018, + "description": "Object_Id : 2003-040A, Epoch : 2022-02-25T21:50:48.846048, Mean_Motion : 1.00274414, Eccentricity : 0.0001665, Inclination : 7.1489, Ra_Of_Asc_Node : 60.6458, Arg_Of_Pericenter : 283.612, Mean_Anomaly : 96.837, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27875, Element_Set_No : 999, Rev_At_Epoch : 1586, Bstar : 0, Mean_Motion_Dot : -2.83E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 13 (HORIZONS 1)", + "expanded": "GALAXY 13 (HORIZONS 1)", + "numerical_value": 1019, + "description": "Object_Id : 2003-044A, Epoch : 2022-02-26T02:36:34.776576, Mean_Motion : 1.00272817, Eccentricity : 1.9200000000000003E-05, Inclination : 0.0131, Ra_Of_Asc_Node : 125.2809, Arg_Of_Pericenter : 115.1321, Mean_Anomaly : 187.6345, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 27954, Element_Set_No : 999, Rev_At_Epoch : 6739, Bstar : 0, Mean_Motion_Dot : 3.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "YAMAL 202", + "expanded": "YAMAL 202", + "numerical_value": 1020, + "description": "Object_Id : 2003-053A, Epoch : 2022-02-25T19:23:11.518080, Mean_Motion : 1.0027258, Eccentricity : 0.0002692, Inclination : 2.3548999999999998, Ra_Of_Asc_Node : 89.2019, Arg_Of_Pericenter : 268.853, Mean_Anomaly : 251.8706, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28089, Element_Set_No : 999, Rev_At_Epoch : 6691, Bstar : 0, Mean_Motion_Dot : -9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "UFO 11 (USA 174)", + "expanded": "UFO 11 (USA 174)", + "numerical_value": 1021, + "description": "Object_Id : 2003-057A, Epoch : 2022-02-25T14:04:33.106656, Mean_Motion : 1.00270866, Eccentricity : 0.0004505, Inclination : 6.8298, Ra_Of_Asc_Node : 37.9189, Arg_Of_Pericenter : 338.7255, Mean_Anomaly : 64.6147, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28117, Element_Set_No : 999, Rev_At_Epoch : 6668, Bstar : 0, Mean_Motion_Dot : -1.0299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 176 (DSP 22)", + "expanded": "USA 176 (DSP 22)", + "numerical_value": 1022, + "description": "Object_Id : 2004-004A, Epoch : 2022-02-25T12:29:14.696736, Mean_Motion : 1.00275016, Eccentricity : 7.070000000000001E-05, Inclination : 9.9465, Ra_Of_Asc_Node : 35.8787, Arg_Of_Pericenter : 12.1227, Mean_Anomaly : 21.9453, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28158, Element_Set_No : 999, Rev_At_Epoch : 1584, Bstar : 0, Mean_Motion_Dot : -2.2599999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ABS-4 (MOBISAT-1)", + "expanded": "ABS-4 (MOBISAT-1)", + "numerical_value": 1023, + "description": "Object_Id : 2004-007A, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00271478, Eccentricity : 0.0005339, Inclination : 2.0426, Ra_Of_Asc_Node : 90.3997, Arg_Of_Pericenter : 250.7241, Mean_Anomaly : 286.4469, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28184, Element_Set_No : 999, Rev_At_Epoch : 6581, Bstar : 0, Mean_Motion_Dot : 2.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 7A", + "expanded": "EUTELSAT 7A", + "numerical_value": 1024, + "description": "Object_Id : 2004-008A, Epoch : 2022-02-25T17:56:18.377952, Mean_Motion : 1.00269804, Eccentricity : 0.0004085, Inclination : 1.8291, Ra_Of_Asc_Node : 89.2298, Arg_Of_Pericenter : 252.5764, Mean_Anomaly : 303.6086, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28187, Element_Set_No : 999, Rev_At_Epoch : 6558, Bstar : 0, Mean_Motion_Dot : 9.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-11 (GE-11)", + "expanded": "AMC-11 (GE-11)", + "numerical_value": 1025, + "description": "Object_Id : 2004-017A, Epoch : 2022-02-25T14:52:17.136192, Mean_Motion : 1.00267146, Eccentricity : 0.0002664, Inclination : 0.0539, Ra_Of_Asc_Node : 300.4017, Arg_Of_Pericenter : 35.9651, Mean_Anomaly : 271.117, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28252, Element_Set_No : 999, Rev_At_Epoch : 6511, Bstar : 0, Mean_Motion_Dot : 6.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 10-02", + "expanded": "INTELSAT 10-02", + "numerical_value": 1026, + "description": "Object_Id : 2004-022A, Epoch : 2022-02-26T03:12:07.366176, Mean_Motion : 1.00272692, Eccentricity : 0.0001005, Inclination : 0.0573, Ra_Of_Asc_Node : 275.7343, Arg_Of_Pericenter : 91.3916, Mean_Anomaly : 195.8545, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28358, Element_Set_No : 999, Rev_At_Epoch : 6486, Bstar : 0, Mean_Motion_Dot : -2.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ANIK F2", + "expanded": "ANIK F2", + "numerical_value": 1027, + "description": "Object_Id : 2004-027A, Epoch : 2022-02-26T02:41:06.059616, Mean_Motion : 1.00271453, Eccentricity : 0.0001733, Inclination : 0.0474, Ra_Of_Asc_Node : 95.1227, Arg_Of_Pericenter : 72.4018, Mean_Anomaly : 277.5664, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28378, Element_Set_No : 999, Rev_At_Epoch : 6459, Bstar : 0, Mean_Motion_Dot : -6.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-15", + "expanded": "AMC-15", + "numerical_value": 1028, + "description": "Object_Id : 2004-041A, Epoch : 2022-02-25T15:23:22.598592, Mean_Motion : 1.00271173, Eccentricity : 0.0002633, Inclination : 0.0625, Ra_Of_Asc_Node : 297.6498, Arg_Of_Pericenter : 47.9514, Mean_Anomaly : 295.6354, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28446, Element_Set_No : 999, Rev_At_Epoch : 6355, Bstar : 0, Mean_Motion_Dot : -9.699999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "NSS-10 (AMC-12)", + "expanded": "NSS-10 (AMC-12)", + "numerical_value": 1029, + "description": "Object_Id : 2005-003A, Epoch : 2022-02-26T01:18:50.210784, Mean_Motion : 1.00270564, Eccentricity : 0.0002923, Inclination : 2.5066, Ra_Of_Asc_Node : 88.5461, Arg_Of_Pericenter : 240.7641, Mean_Anomaly : 168.8104, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28526, Element_Set_No : 999, Rev_At_Epoch : 6255, Bstar : 0, Mean_Motion_Dot : -2.63E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "XTAR-EUR", + "expanded": "XTAR-EUR", + "numerical_value": 1030, + "description": "Object_Id : 2005-005A, Epoch : 2022-02-25T11:42:42.500160, Mean_Motion : 1.00270159, Eccentricity : 0.0002866, Inclination : 0.2948, Ra_Of_Asc_Node : 96.0459, Arg_Of_Pericenter : 254.8661, Mean_Anomaly : 9.0567, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28542, Element_Set_No : 999, Rev_At_Epoch : 6242, Bstar : 0, Mean_Motion_Dot : 1.42E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "XM-3 (RHYTHM)", + "expanded": "XM-3 (RHYTHM)", + "numerical_value": 1031, + "description": "Object_Id : 2005-008A, Epoch : 2022-02-25T19:55:13.110240, Mean_Motion : 1.00270414, Eccentricity : 0.0001187, Inclination : 0.0163, Ra_Of_Asc_Node : 81.4679, Arg_Of_Pericenter : 6.4241, Mean_Anomaly : 281.4475, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28626, Element_Set_No : 999, Rev_At_Epoch : 2685, Bstar : 0, Mean_Motion_Dot : -2.1499999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 4-F1", + "expanded": "INMARSAT 4-F1", + "numerical_value": 1032, + "description": "Object_Id : 2005-009A, Epoch : 2022-02-25T21:00:46.718208, Mean_Motion : 1.00271418, Eccentricity : 0.0002812, Inclination : 3.5322, Ra_Of_Asc_Node : 33.8766, Arg_Of_Pericenter : 315.0408, Mean_Anomaly : 265.4708, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28628, Element_Set_No : 999, Rev_At_Epoch : 6190, Bstar : 0, Mean_Motion_Dot : -2.7E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 8", + "expanded": "DIRECTV 8", + "numerical_value": 1033, + "description": "Object_Id : 2005-019A, Epoch : 2022-02-25T15:07:01.723584, Mean_Motion : 1.00270952, Eccentricity : 0.0003018, Inclination : 0.0147, Ra_Of_Asc_Node : 134.4719, Arg_Of_Pericenter : 218.4537, Mean_Anomaly : 270.2241, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28659, Element_Set_No : 999, Rev_At_Epoch : 6130, Bstar : 0, Mean_Motion_Dot : -7E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 28 (G-28)", + "expanded": "GALAXY 28 (G-28)", + "numerical_value": 1034, + "description": "Object_Id : 2005-022A, Epoch : 2022-02-25T19:53:57.753024, Mean_Motion : 1.00273329, Eccentricity : 0.0002104, Inclination : 0.0062, Ra_Of_Asc_Node : 97.1721, Arg_Of_Pericenter : 268.1826, Mean_Anomaly : 359.7728, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28702, Element_Set_No : 999, Rev_At_Epoch : 3621, Bstar : 0, Mean_Motion_Dot : -1.95E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AM3", + "expanded": "EXPRESS-AM3", + "numerical_value": 1035, + "description": "Object_Id : 2005-023A, Epoch : 2022-02-26T01:57:53.797824, Mean_Motion : 1.0046628, Eccentricity : 0.0002932, Inclination : 3.3095, Ra_Of_Asc_Node : 84.9225, Arg_Of_Pericenter : 309.7132, Mean_Anomaly : 249.1718, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28707, Element_Set_No : 999, Rev_At_Epoch : 6107, Bstar : 0, Mean_Motion_Dot : -3.33E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "THAICOM 4", + "expanded": "THAICOM 4", + "numerical_value": 1036, + "description": "Object_Id : 2005-028A, Epoch : 2022-02-26T00:20:33.670176, Mean_Motion : 1.00270263, Eccentricity : 0.0002489, Inclination : 0.0162, Ra_Of_Asc_Node : 116.4826, Arg_Of_Pericenter : 227.5884, Mean_Anomaly : 296.366, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28786, Element_Set_No : 999, Rev_At_Epoch : 6056, Bstar : 0, Mean_Motion_Dot : -3.73E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 14 (G-14)", + "expanded": "GALAXY 14 (G-14)", + "numerical_value": 1037, + "description": "Object_Id : 2005-030A, Epoch : 2022-02-26T03:22:25.288608, Mean_Motion : 1.0027335, Eccentricity : 0.0001902, Inclination : 0.9818, Ra_Of_Asc_Node : 93.3767, Arg_Of_Pericenter : 255.4505, Mean_Anomaly : 250.6122, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28790, Element_Set_No : 999, Rev_At_Epoch : 6053, Bstar : 0, Mean_Motion_Dot : 1.44E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ANIK F1R", + "expanded": "ANIK F1R", + "numerical_value": 1038, + "description": "Object_Id : 2005-036A, Epoch : 2022-02-26T00:58:52.042368, Mean_Motion : 1.00266091, Eccentricity : 0.0002616, Inclination : 0.2796, Ra_Of_Asc_Node : 94.1379, Arg_Of_Pericenter : 282.5639, Mean_Anomaly : 46.5438, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28868, Element_Set_No : 999, Rev_At_Epoch : 6039, Bstar : 0, Mean_Motion_Dot : -8.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 15 (G-15)", + "expanded": "GALAXY 15 (G-15)", + "numerical_value": 1039, + "description": "Object_Id : 2005-041A, Epoch : 2022-02-25T23:08:10.806144, Mean_Motion : 1.0027485, Eccentricity : 0.0001816, Inclination : 0.0611, Ra_Of_Asc_Node : 285.5384, Arg_Of_Pericenter : 55.2037, Mean_Anomaly : 29.0901, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28884, Element_Set_No : 999, Rev_At_Epoch : 5984, Bstar : 0, Mean_Motion_Dot : 6.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SYRACUSE 3A", + "expanded": "SYRACUSE 3A", + "numerical_value": 1040, + "description": "Object_Id : 2005-041B, Epoch : 2022-02-26T03:26:26.430144, Mean_Motion : 1.00272973, Eccentricity : 0.0003112, Inclination : 0.8424, Ra_Of_Asc_Node : 94.7424, Arg_Of_Pericenter : 247.33, Mean_Anomaly : 272.4662, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28885, Element_Set_No : 999, Rev_At_Epoch : 5996, Bstar : 0, Mean_Motion_Dot : 1.1699999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 4-F2", + "expanded": "INMARSAT 4-F2", + "numerical_value": 1041, + "description": "Object_Id : 2005-044A, Epoch : 2022-02-25T21:59:42.829152, Mean_Motion : 1.00271088, Eccentricity : 0.000266, Inclination : 3.4183, Ra_Of_Asc_Node : 36.3147, Arg_Of_Pericenter : 314.1968, Mean_Anomaly : 199.0366, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28899, Element_Set_No : 999, Rev_At_Epoch : 5975, Bstar : 0, Mean_Motion_Dot : 1E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "SPACEWAY 2", + "expanded": "SPACEWAY 2", + "numerical_value": 1042, + "description": "Object_Id : 2005-046B, Epoch : 2022-02-26T02:33:11.315808, Mean_Motion : 1.00271636, Eccentricity : 1.3100000000000002E-05, Inclination : 1.6503999999999999, Ra_Of_Asc_Node : 88.9771, Arg_Of_Pericenter : 78.1036, Mean_Anomaly : 248.2151, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28903, Element_Set_No : 999, Rev_At_Epoch : 5973, Bstar : 0, Mean_Motion_Dot : 9.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "METEOSAT-9 (MSG-2)", + "expanded": "METEOSAT-9 (MSG-2)", + "numerical_value": 1043, + "description": "Object_Id : 2005-049B, Epoch : 2022-02-25T15:13:59.727648, Mean_Motion : 1.00414531, Eccentricity : 8.230000000000001E-05, Inclination : 5.7695, Ra_Of_Asc_Node : 66.9981, Arg_Of_Pericenter : 250.4048, Mean_Anomaly : 81.8928, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28912, Element_Set_No : 999, Rev_At_Epoch : 5926, Bstar : 0, Mean_Motion_Dot : 1.02E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 174A", + "expanded": "EUTELSAT 174A", + "numerical_value": 1044, + "description": "Object_Id : 2005-052A, Epoch : 2022-02-26T04:02:59.303616, Mean_Motion : 1.00271709, Eccentricity : 0.0006079, Inclination : 0.2321, Ra_Of_Asc_Node : 90.8004, Arg_Of_Pericenter : 251.9122, Mean_Anomaly : 47.9887, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28924, Element_Set_No : 999, Rev_At_Epoch : 5922, Bstar : 0, Mean_Motion_Dot : -2E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 10", + "expanded": "ECHOSTAR 10", + "numerical_value": 1045, + "description": "Object_Id : 2006-003A, Epoch : 2022-02-25T15:16:50.416896, Mean_Motion : 1.00270632, Eccentricity : 0.0001427, Inclination : 0.0676, Ra_Of_Asc_Node : 289.7089, Arg_Of_Pericenter : 27.3394, Mean_Anomaly : 317.3868, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28935, Element_Set_No : 999, Rev_At_Epoch : 5870, Bstar : 0, Mean_Motion_Dot : -6.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SPAINSAT", + "expanded": "SPAINSAT", + "numerical_value": 1046, + "description": "Object_Id : 2006-007A, Epoch : 2022-02-25T15:37:54.619968, Mean_Motion : 1.00271149, Eccentricity : 0.0003378, Inclination : 0.0475, Ra_Of_Asc_Node : 254.017, Arg_Of_Pericenter : 57.2752, Mean_Anomaly : 48.6517, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28945, Element_Set_No : 999, Rev_At_Epoch : 5844, Bstar : 0, Mean_Motion_Dot : -2.25E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT HOTBIRD 13E", + "expanded": "EUTELSAT HOTBIRD 13E", + "numerical_value": 1047, + "description": "Object_Id : 2006-007B, Epoch : 2022-02-26T03:16:38.649216, Mean_Motion : 1.00269975, Eccentricity : 0.0002614, Inclination : 0.0654, Ra_Of_Asc_Node : 231.0615, Arg_Of_Pericenter : 94.5697, Mean_Anomaly : 252.4315, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 28946, Element_Set_No : 999, Rev_At_Epoch : 5853, Bstar : 0, Mean_Motion_Dot : 7.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-5A", + "expanded": "JCSAT-5A", + "numerical_value": 1048, + "description": "Object_Id : 2006-010A, Epoch : 2022-02-25T21:27:41.084928, Mean_Motion : 1.00270565, Eccentricity : 0.0001981, Inclination : 0.0097, Ra_Of_Asc_Node : 153.4457, Arg_Of_Pericenter : 191.7521, Mean_Anomaly : 264.4786, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29045, Element_Set_No : 999, Rev_At_Epoch : 5799, Bstar : 0, Mean_Motion_Dot : -3.38E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 1KR", + "expanded": "ASTRA 1KR", + "numerical_value": 1049, + "description": "Object_Id : 2006-012A, Epoch : 2022-02-26T03:18:31.683744, Mean_Motion : 1.00269823, Eccentricity : 0.0003332, Inclination : 0.0951, Ra_Of_Asc_Node : 276.8945, Arg_Of_Pericenter : 8.4644, Mean_Anomaly : 299.4221, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29055, Element_Set_No : 999, Rev_At_Epoch : 5798, Bstar : 0, Mean_Motion_Dot : 1.08E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EWS-G1 (GOES 13)", + "expanded": "EWS-G1 (GOES 13)", + "numerical_value": 1050, + "description": "Object_Id : 2006-018A, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00269798, Eccentricity : 0.0003069, Inclination : 0.3053, Ra_Of_Asc_Node : 97.959, Arg_Of_Pericenter : 163.9839, Mean_Anomaly : 6.1551, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29155, Element_Set_No : 999, Rev_At_Epoch : 5774, Bstar : 0, Mean_Motion_Dot : 2.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 113 WEST A", + "expanded": "EUTELSAT 113 WEST A", + "numerical_value": 1051, + "description": "Object_Id : 2006-020A, Epoch : 2022-02-26T02:40:35.918112, Mean_Motion : 1.00272247, Eccentricity : 0.0003019, Inclination : 0.064, Ra_Of_Asc_Node : 290.7721, Arg_Of_Pericenter : 55.8304, Mean_Anomaly : 96.4573, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29162, Element_Set_No : 999, Rev_At_Epoch : 5770, Bstar : 0, Mean_Motion_Dot : -4.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 16 (G-16)", + "expanded": "GALAXY 16 (G-16)", + "numerical_value": 1052, + "description": "Object_Id : 2006-023A, Epoch : 2022-02-25T15:29:54.813120, Mean_Motion : 1.00270767, Eccentricity : 0.0002788, Inclination : 0.0118, Ra_Of_Asc_Node : 132.7501, Arg_Of_Pericenter : 219.614, Mean_Anomaly : 296.5502, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29236, Element_Set_No : 999, Rev_At_Epoch : 5720, Bstar : 0, Mean_Motion_Dot : -1.35E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT HOTBIRD 13B", + "expanded": "EUTELSAT HOTBIRD 13B", + "numerical_value": 1053, + "description": "Object_Id : 2006-032A, Epoch : 2022-02-25T22:11:32.015904, Mean_Motion : 1.00269719, Eccentricity : 0.0005958, Inclination : 0.0741, Ra_Of_Asc_Node : 337.8717, Arg_Of_Pericenter : 4.8406, Mean_Anomaly : 158.8886, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29270, Element_Set_No : 999, Rev_At_Epoch : 3154, Bstar : 0, Mean_Motion_Dot : 7.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-3A", + "expanded": "JCSAT-3A", + "numerical_value": 1054, + "description": "Object_Id : 2006-033A, Epoch : 2022-02-26T00:23:04.382880, Mean_Motion : 1.0027018, Eccentricity : 0.0001799, Inclination : 0.0226, Ra_Of_Asc_Node : 231.2349, Arg_Of_Pericenter : 122.5392, Mean_Anomaly : 295.8244, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29272, Element_Set_No : 999, Rev_At_Epoch : 5699, Bstar : 0, Mean_Motion_Dot : -3.56E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SYRACUSE 3B", + "expanded": "SYRACUSE 3B", + "numerical_value": 1055, + "description": "Object_Id : 2006-033B, Epoch : 2022-02-26T03:11:29.687136, Mean_Motion : 1.00271066, Eccentricity : 0.0003356, Inclination : 0.0097, Ra_Of_Asc_Node : 146.8463, Arg_Of_Pericenter : 205.4164, Mean_Anomaly : 206.3393, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29273, Element_Set_No : 999, Rev_At_Epoch : 5698, Bstar : 0, Mean_Motion_Dot : -5.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "KOREASAT 5 (MUGUNGWHA 5)", + "expanded": "KOREASAT 5 (MUGUNGWHA 5)", + "numerical_value": 1056, + "description": "Object_Id : 2006-034A, Epoch : 2022-02-25T18:07:42.810240, Mean_Motion : 1.00272509, Eccentricity : 0.0001288, Inclination : 0.0153, Ra_Of_Asc_Node : 135.7822, Arg_Of_Pericenter : 182.4259, Mean_Anomaly : 222.3412, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29349, Element_Set_No : 999, Rev_At_Epoch : 2555, Bstar : 0, Mean_Motion_Dot : -3.68E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 9S", + "expanded": "DIRECTV 9S", + "numerical_value": 1057, + "description": "Object_Id : 2006-043A, Epoch : 2022-02-26T02:43:59.379744, Mean_Motion : 1.00271229, Eccentricity : 0.000303, Inclination : 0.0112, Ra_Of_Asc_Node : 130.1906, Arg_Of_Pericenter : 220.414, Mean_Anomaly : 105.1019, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29494, Element_Set_No : 999, Rev_At_Epoch : 5634, Bstar : 0, Mean_Motion_Dot : -1.24E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "OPTUS D1", + "expanded": "OPTUS D1", + "numerical_value": 1058, + "description": "Object_Id : 2006-043B, Epoch : 2022-02-25T21:05:33.072864, Mean_Motion : 1.00271465, Eccentricity : 0.0003362, Inclination : 0.0476, Ra_Of_Asc_Node : 293.4165, Arg_Of_Pericenter : 50.1225, Mean_Anomaly : 288.533, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29495, Element_Set_No : 999, Rev_At_Epoch : 5635, Bstar : 0, Mean_Motion_Dot : -1.2099999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "XM-4 (BLUES)", + "expanded": "XM-4 (BLUES)", + "numerical_value": 1059, + "description": "Object_Id : 2006-049A, Epoch : 2022-02-26T02:39:58.239936, Mean_Motion : 1.00272096, Eccentricity : 0.0001803, Inclination : 0.0644, Ra_Of_Asc_Node : 304.0809, Arg_Of_Pericenter : 30.2165, Mean_Anomaly : 106.3609, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29520, Element_Set_No : 999, Rev_At_Epoch : 5623, Bstar : 0, Mean_Motion_Dot : -3.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BADR-4", + "expanded": "BADR-4", + "numerical_value": 1060, + "description": "Object_Id : 2006-051A, Epoch : 2022-02-25T21:31:42.815712, Mean_Motion : 1.00271903, Eccentricity : 0.0005661, Inclination : 0.0459, Ra_Of_Asc_Node : 343.3345, Arg_Of_Pericenter : 352.1723, Mean_Anomaly : 169.0925, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29526, Element_Set_No : 999, Rev_At_Epoch : 3550, Bstar : 0, Mean_Motion_Dot : 1.34E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WILDBLUE-1", + "expanded": "WILDBLUE-1", + "numerical_value": 1061, + "description": "Object_Id : 2006-054A, Epoch : 2022-02-26T02:41:06.059616, Mean_Motion : 1.00270612, Eccentricity : 0.0001542, Inclination : 0.0239, Ra_Of_Asc_Node : 140.2454, Arg_Of_Pericenter : 204.349, Mean_Anomaly : 100.4353, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29643, Element_Set_No : 999, Rev_At_Epoch : 5578, Bstar : 0, Mean_Motion_Dot : -6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-18", + "expanded": "AMC-18", + "numerical_value": 1062, + "description": "Object_Id : 2006-054B, Epoch : 2022-02-26T02:49:08.342688, Mean_Motion : 1.00271722, Eccentricity : 0.0002447, Inclination : 0.0664, Ra_Of_Asc_Node : 289.1959, Arg_Of_Pericenter : 54.794200000000004, Mean_Anomaly : 131.211, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 29644, Element_Set_No : 999, Rev_At_Epoch : 5578, Bstar : 0, Mean_Motion_Dot : -2.27E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INSAT-4B", + "expanded": "INSAT-4B", + "numerical_value": 1063, + "description": "Object_Id : 2007-007A, Epoch : 2022-02-26T02:52:54.410880, Mean_Motion : 0.99075663, Eccentricity : 0.0009844, Inclination : 2.0337, Ra_Of_Asc_Node : 93.0801, Arg_Of_Pericenter : 113.0331, Mean_Anomaly : 283.3187, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 30793, Element_Set_No : 999, Rev_At_Epoch : 5479, Bstar : 0, Mean_Motion_Dot : -1.4E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SKYNET 5A", + "expanded": "SKYNET 5A", + "numerical_value": 1064, + "description": "Object_Id : 2007-007B, Epoch : 2022-02-26T01:57:01.048032, Mean_Motion : 1.00269729, Eccentricity : 0.0003326, Inclination : 1.9975, Ra_Of_Asc_Node : 88.826, Arg_Of_Pericenter : 251.7362, Mean_Anomaly : 299.7724, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 30794, Element_Set_No : 999, Rev_At_Epoch : 5488, Bstar : 0, Mean_Motion_Dot : -2.83E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ANIK F3", + "expanded": "ANIK F3", + "numerical_value": 1065, + "description": "Object_Id : 2007-009A, Epoch : 2022-02-26T02:38:57.954336, Mean_Motion : 1.00269999, Eccentricity : 0.0002162, Inclination : 0.0139, Ra_Of_Asc_Node : 165.4566, Arg_Of_Pericenter : 178.8896, Mean_Anomaly : 92.6023, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 31102, Element_Set_No : 999, Rev_At_Epoch : 5457, Bstar : 0, Mean_Motion_Dot : -1.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 1L", + "expanded": "ASTRA 1L", + "numerical_value": 1066, + "description": "Object_Id : 2007-016A, Epoch : 2022-02-26T03:18:31.683744, Mean_Motion : 1.002689, Eccentricity : 0.0004717, Inclination : 0.1046, Ra_Of_Asc_Node : 293.6037, Arg_Of_Pericenter : 20.4668, Mean_Anomaly : 270.7055, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 31306, Element_Set_No : 999, Rev_At_Epoch : 5427, Bstar : 0, Mean_Motion_Dot : 1.08E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 17 (G-17)", + "expanded": "GALAXY 17 (G-17)", + "numerical_value": 1067, + "description": "Object_Id : 2007-016B, Epoch : 2022-02-25T19:53:20.073984, Mean_Motion : 1.00271915, Eccentricity : 0.0002992, Inclination : 0.0182, Ra_Of_Asc_Node : 96.4978, Arg_Of_Pericenter : 240.5174, Mean_Anomaly : 25.9608, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 31307, Element_Set_No : 999, Rev_At_Epoch : 5403, Bstar : 0, Mean_Motion_Dot : -1.8399999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ZHONGXING-6B", + "expanded": "ZHONGXING-6B", + "numerical_value": 1068, + "description": "Object_Id : 2007-031A, Epoch : 2022-02-26T00:19:25.848768, Mean_Motion : 1.00274591, Eccentricity : 0.000351, Inclination : 0.0201, Ra_Of_Asc_Node : 212.0106, Arg_Of_Pericenter : 127.1208, Mean_Anomaly : 297.0185, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 31800, Element_Set_No : 999, Rev_At_Epoch : 5370, Bstar : 0, Mean_Motion_Dot : -3.7199999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 10", + "expanded": "DIRECTV 10", + "numerical_value": 1069, + "description": "Object_Id : 2007-032A, Epoch : 2022-02-26T02:43:29.238240, Mean_Motion : 1.00271564, Eccentricity : 3.32E-05, Inclination : 0.0394, Ra_Of_Asc_Node : 301.7393, Arg_Of_Pericenter : 137.2189, Mean_Anomaly : 15.0183, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 31862, Element_Set_No : 999, Rev_At_Epoch : 5364, Bstar : 0, Mean_Motion_Dot : -1.14E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SPACEWAY 3", + "expanded": "SPACEWAY 3", + "numerical_value": 1070, + "description": "Object_Id : 2007-036A, Epoch : 2022-02-25T14:42:20.743776, Mean_Motion : 1.00270861, Eccentricity : 2.13E-05, Inclination : 0.0013, Ra_Of_Asc_Node : 300.5592, Arg_Of_Pericenter : 108.5558, Mean_Anomaly : 231.9417, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32018, Element_Set_No : 999, Rev_At_Epoch : 3078, Bstar : 0, Mean_Motion_Dot : -1.6E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BSAT-3A", + "expanded": "BSAT-3A", + "numerical_value": 1071, + "description": "Object_Id : 2007-036B, Epoch : 2022-02-26T00:17:47.885856, Mean_Motion : 1.00272516, Eccentricity : 0.0001537, Inclination : 0.0817, Ra_Of_Asc_Node : 257.9781, Arg_Of_Pericenter : 17.1303, Mean_Anomaly : 354.989, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32019, Element_Set_No : 999, Rev_At_Epoch : 5329, Bstar : 0, Mean_Motion_Dot : -3.6099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "OPTUS D2", + "expanded": "OPTUS D2", + "numerical_value": 1072, + "description": "Object_Id : 2007-044A, Epoch : 2022-02-26T05:45:01.743264, Mean_Motion : 1.00269147, Eccentricity : 0.0003519, Inclination : 0.018, Ra_Of_Asc_Node : 131.0713, Arg_Of_Pericenter : 215.312, Mean_Anomaly : 47.9288, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32252, Element_Set_No : 999, Rev_At_Epoch : 5268, Bstar : 0, Mean_Motion_Dot : -1.95E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 11 (IS-11)", + "expanded": "INTELSAT 11 (IS-11)", + "numerical_value": 1073, + "description": "Object_Id : 2007-044B, Epoch : 2022-02-25T20:07:16.531392, Mean_Motion : 1.00269531, Eccentricity : 0.0002101, Inclination : 0.0174, Ra_Of_Asc_Node : 128.3705, Arg_Of_Pericenter : 238.8037, Mean_Anomaly : 47.2889, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32253, Element_Set_No : 999, Rev_At_Epoch : 5272, Bstar : 0, Mean_Motion_Dot : -2.78E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F1 (USA 195)", + "expanded": "WGS F1 (USA 195)", + "numerical_value": 1074, + "description": "Object_Id : 2007-046A, Epoch : 2022-02-26T03:14:45.614688, Mean_Motion : 1.00272752, Eccentricity : 1.76E-05, Inclination : 0.0132, Ra_Of_Asc_Node : 131.4356, Arg_Of_Pericenter : 280.8429, Mean_Anomaly : 158.3301, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32258, Element_Set_No : 999, Rev_At_Epoch : 5255, Bstar : 0, Mean_Motion_Dot : 3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "STAR ONE C1", + "expanded": "STAR ONE C1", + "numerical_value": 1075, + "description": "Object_Id : 2007-056A, Epoch : 2022-02-25T12:59:51.654048, Mean_Motion : 1.00271778, Eccentricity : 0.0005445, Inclination : 0.6809, Ra_Of_Asc_Node : 94.0801, Arg_Of_Pericenter : 245.5263, Mean_Anomaly : 278.7061, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32293, Element_Set_No : 999, Rev_At_Epoch : 3600, Bstar : 0, Mean_Motion_Dot : -1.77E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SKYNET 5B", + "expanded": "SKYNET 5B", + "numerical_value": 1076, + "description": "Object_Id : 2007-056B, Epoch : 2022-02-25T21:31:42.815712, Mean_Motion : 1.00272252, Eccentricity : 0.0004041, Inclination : 1.2463, Ra_Of_Asc_Node : 89.9688, Arg_Of_Pericenter : 245.3663, Mean_Anomaly : 168.3686, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32294, Element_Set_No : 999, Rev_At_Epoch : 5243, Bstar : 0, Mean_Motion_Dot : 1.31E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 4A (SIRIUS 4)", + "expanded": "ASTRA 4A (SIRIUS 4)", + "numerical_value": 1077, + "description": "Object_Id : 2007-057A, Epoch : 2022-02-26T03:14:23.007264, Mean_Motion : 1.00270962, Eccentricity : 0.0002698, Inclination : 0.0638, Ra_Of_Asc_Node : 294.0173, Arg_Of_Pericenter : 43.0589, Mean_Anomaly : 232.2494, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32299, Element_Set_No : 999, Rev_At_Epoch : 5219, Bstar : 0, Mean_Motion_Dot : 2.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "HORIZONS 2", + "expanded": "HORIZONS 2", + "numerical_value": 1078, + "description": "Object_Id : 2007-063B, Epoch : 2022-02-25T20:43:56.939808, Mean_Motion : 1.00271601, Eccentricity : 0.0002747, Inclination : 0.0173, Ra_Of_Asc_Node : 106.1035, Arg_Of_Pericenter : 237.1183, Mean_Anomaly : 208.2754, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32388, Element_Set_No : 999, Rev_At_Epoch : 5205, Bstar : 0, Mean_Motion_Dot : -1.92E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "THURAYA-3", + "expanded": "THURAYA-3", + "numerical_value": 1079, + "description": "Object_Id : 2008-001A, Epoch : 2022-02-26T00:14:31.959168, Mean_Motion : 1.00271756, Eccentricity : 0.0001749, Inclination : 3.9821, Ra_Of_Asc_Node : 21.2585, Arg_Of_Pericenter : 325.0882, Mean_Anomaly : 271.603, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32404, Element_Set_No : 999, Rev_At_Epoch : 5176, Bstar : 0, Mean_Motion_Dot : -3.11E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AM33", + "expanded": "EXPRESS-AM33", + "numerical_value": 1080, + "description": "Object_Id : 2008-003A, Epoch : 2022-02-26T03:09:51.724224, Mean_Motion : 1.00271433, Eccentricity : 0.0001078, Inclination : 0.7785, Ra_Of_Asc_Node : 94.5092, Arg_Of_Pericenter : 332.0432, Mean_Anomaly : 125.9209, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32478, Element_Set_No : 999, Rev_At_Epoch : 5184, Bstar : 0, Mean_Motion_Dot : -1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "THOR 5", + "expanded": "THOR 5", + "numerical_value": 1081, + "description": "Object_Id : 2008-006A, Epoch : 2022-02-25T20:19:27.489216, Mean_Motion : 1.00270658, Eccentricity : 0.0002703, Inclination : 0.0511, Ra_Of_Asc_Node : 273.0187, Arg_Of_Pericenter : 79.2889, Mean_Anomaly : 107.4508, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32487, Element_Set_No : 999, Rev_At_Epoch : 5154, Bstar : 0, Mean_Motion_Dot : -2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-14", + "expanded": "AMC-14", + "numerical_value": 1082, + "description": "Object_Id : 2008-011A, Epoch : 2022-02-25T15:14:44.943360, Mean_Motion : 1.00271948, Eccentricity : 0.0042469, Inclination : 21.9064, Ra_Of_Asc_Node : 39.5718, Arg_Of_Pericenter : 355.6179, Mean_Anomaly : 6.947, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32708, Element_Set_No : 999, Rev_At_Epoch : 5239, Bstar : 0, Mean_Motion_Dot : 7.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 11", + "expanded": "DIRECTV 11", + "numerical_value": 1083, + "description": "Object_Id : 2008-013A, Epoch : 2022-02-25T15:29:54.774240, Mean_Motion : 1.00270879, Eccentricity : 1.55E-05, Inclination : 0.0024, Ra_Of_Asc_Node : 99.5467, Arg_Of_Pericenter : 291.7595, Mean_Anomaly : 257.4381, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32729, Element_Set_No : 999, Rev_At_Epoch : 2982, Bstar : 0, Mean_Motion_Dot : -1.34E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ICO G1", + "expanded": "ICO G1", + "numerical_value": 1084, + "description": "Object_Id : 2008-016A, Epoch : 2022-02-26T01:03:00.718848, Mean_Motion : 1.00272704, Eccentricity : 0.0002416, Inclination : 3.9313000000000002, Ra_Of_Asc_Node : 24.5246, Arg_Of_Pericenter : 307.0773, Mean_Anomaly : 107.1489, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32763, Element_Set_No : 999, Rev_At_Epoch : 5070, Bstar : 0, Mean_Motion_Dot : -1.81E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "VINASAT-1", + "expanded": "VINASAT-1", + "numerical_value": 1085, + "description": "Object_Id : 2008-018A, Epoch : 2022-02-25T22:40:48.033696, Mean_Motion : 1.00270676, Eccentricity : 0.0001795, Inclination : 0.053, Ra_Of_Asc_Node : 296.3873, Arg_Of_Pericenter : 93.0341, Mean_Anomaly : 238.491, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32767, Element_Set_No : 999, Rev_At_Epoch : 5082, Bstar : 0, Mean_Motion_Dot : -3.39E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "STAR ONE C2", + "expanded": "STAR ONE C2", + "numerical_value": 1086, + "description": "Object_Id : 2008-018B, Epoch : 2022-02-26T02:54:17.303040, Mean_Motion : 1.00271175, Eccentricity : 0.0002788, Inclination : 0.0288, Ra_Of_Asc_Node : 63.4318, Arg_Of_Pericenter : 300.4268, Mean_Anomaly : 130.6355, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32768, Element_Set_No : 999, Rev_At_Epoch : 5078, Bstar : 0, Mean_Motion_Dot : -2.88E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANLIAN 1-01", + "expanded": "TIANLIAN 1-01", + "numerical_value": 1087, + "description": "Object_Id : 2008-019A, Epoch : 2022-02-22T02:23:38.068224, Mean_Motion : 0.98379083, Eccentricity : 0.0046341, Inclination : 5.4701, Ra_Of_Asc_Node : 69.3324, Arg_Of_Pericenter : 330.154, Mean_Anomaly : 220.6797, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32779, Element_Set_No : 999, Rev_At_Epoch : 5066, Bstar : 0, Mean_Motion_Dot : 2.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMOS-3", + "expanded": "AMOS-3", + "numerical_value": 1088, + "description": "Object_Id : 2008-022A, Epoch : 2022-02-26T03:11:44.759616, Mean_Motion : 1.0027154, Eccentricity : 0.0001858, Inclination : 0.0341, Ra_Of_Asc_Node : 262.3043, Arg_Of_Pericenter : 105.2512, Mean_Anomaly : 192.1711, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32794, Element_Set_No : 999, Rev_At_Epoch : 5068, Bstar : 0, Mean_Motion_Dot : -4.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 18 (G-18)", + "expanded": "GALAXY 18 (G-18)", + "numerical_value": 1089, + "description": "Object_Id : 2008-024A, Epoch : 2022-02-26T02:37:42.597984, Mean_Motion : 1.00270273, Eccentricity : 0.000289, Inclination : 0.015, Ra_Of_Asc_Node : 112.7595, Arg_Of_Pericenter : 232.6144, Mean_Anomaly : 86.9506, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 32951, Element_Set_No : 999, Rev_At_Epoch : 5032, Bstar : 0, Mean_Motion_Dot : 1.3999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 9 (ZX 9)", + "expanded": "CHINASAT 9 (ZX 9)", + "numerical_value": 1090, + "description": "Object_Id : 2008-028A, Epoch : 2022-02-25T20:06:13.696128, Mean_Motion : 1.002709, Eccentricity : 0.0003859, Inclination : 0.0117, Ra_Of_Asc_Node : 149.0126, Arg_Of_Pericenter : 202.0514, Mean_Anomaly : 198.3535, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33051, Element_Set_No : 999, Rev_At_Epoch : 5027, Bstar : 0, Mean_Motion_Dot : -2.5699999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SKYNET 5C", + "expanded": "SKYNET 5C", + "numerical_value": 1091, + "description": "Object_Id : 2008-030A, Epoch : 2022-02-26T03:07:51.153024, Mean_Motion : 1.00271507, Eccentricity : 0.0003025, Inclination : 0.0655, Ra_Of_Asc_Node : 353.9659, Arg_Of_Pericenter : 351.5704, Mean_Anomaly : 199.5069, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33055, Element_Set_No : 999, Rev_At_Epoch : 5013, Bstar : 0, Mean_Motion_Dot : -1.51E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TURKSAT 3A", + "expanded": "TURKSAT 3A", + "numerical_value": 1092, + "description": "Object_Id : 2008-030B, Epoch : 2022-02-26T03:25:03.537984, Mean_Motion : 1.00268758, Eccentricity : 0.0003419, Inclination : 0.0205, Ra_Of_Asc_Node : 98.2047, Arg_Of_Pericenter : 262.7272, Mean_Anomaly : 248.2891, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33056, Element_Set_No : 999, Rev_At_Epoch : 5031, Bstar : 0, Mean_Motion_Dot : 1.35E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 25 (IS-25)", + "expanded": "INTELSAT 25 (IS-25)", + "numerical_value": 1093, + "description": "Object_Id : 2008-034A, Epoch : 2022-02-25T20:10:32.458080, Mean_Motion : 1.00270295, Eccentricity : 0.0002939, Inclination : 0.0178, Ra_Of_Asc_Node : 133.0418, Arg_Of_Pericenter : 218.8045, Mean_Anomaly : 74.9329, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33153, Element_Set_No : 999, Rev_At_Epoch : 4992, Bstar : 0, Mean_Motion_Dot : -2.3399999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BADR-6", + "expanded": "BADR-6", + "numerical_value": 1094, + "description": "Object_Id : 2008-034B, Epoch : 2022-02-26T03:20:24.719136, Mean_Motion : 1.00269086, Eccentricity : 0.0005782, Inclination : 0.0592, Ra_Of_Asc_Node : 53.1783, Arg_Of_Pericenter : 322.2097, Mean_Anomaly : 216.6434, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33154, Element_Set_No : 999, Rev_At_Epoch : 4998, Bstar : 0, Mean_Motion_Dot : 1.33E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 11", + "expanded": "ECHOSTAR 11", + "numerical_value": 1095, + "description": "Object_Id : 2008-035A, Epoch : 2022-02-26T02:41:28.667040, Mean_Motion : 1.00270408, Eccentricity : 0.0002483, Inclination : 0.0439, Ra_Of_Asc_Node : 296.7277, Arg_Of_Pericenter : 42.3838, Mean_Anomaly : 107.1786, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33207, Element_Set_No : 999, Rev_At_Epoch : 4989, Bstar : 0, Mean_Motion_Dot : -6.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SUPERBIRD-C2", + "expanded": "SUPERBIRD-C2", + "numerical_value": 1096, + "description": "Object_Id : 2008-038A, Epoch : 2022-02-25T21:00:54.253152, Mean_Motion : 1.00270294, Eccentricity : 0.000168, Inclination : 0.0124, Ra_Of_Asc_Node : 134.3379, Arg_Of_Pericenter : 257.1722, Mean_Anomaly : 223.3365, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33274, Element_Set_No : 999, Rev_At_Epoch : 8996, Bstar : 0, Mean_Motion_Dot : -2.62E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMC-21", + "expanded": "AMC-21", + "numerical_value": 1097, + "description": "Object_Id : 2008-038B, Epoch : 2022-02-25T15:00:28.812672, Mean_Motion : 1.00272327, Eccentricity : 0.0002723, Inclination : 0.0434, Ra_Of_Asc_Node : 302.4653, Arg_Of_Pericenter : 50.5341, Mean_Anomaly : 262.6561, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33275, Element_Set_No : 999, Rev_At_Epoch : 4972, Bstar : 0, Mean_Motion_Dot : 2.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 4-F3", + "expanded": "INMARSAT 4-F3", + "numerical_value": 1098, + "description": "Object_Id : 2008-039A, Epoch : 2022-02-25T15:31:46.094592, Mean_Motion : 1.00273825, Eccentricity : 0.0002481, Inclination : 3.2744, Ra_Of_Asc_Node : 18.7594, Arg_Of_Pericenter : 323.9835, Mean_Anomaly : 307.6624, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33278, Element_Set_No : 999, Rev_At_Epoch : 3077, Bstar : 0, Mean_Motion_Dot : -1.48E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "NIMIQ 4", + "expanded": "NIMIQ 4", + "numerical_value": 1099, + "description": "Object_Id : 2008-044A, Epoch : 2022-02-25T19:56:05.859168, Mean_Motion : 1.00271383, Eccentricity : 0.0002398, Inclination : 0.0066, Ra_Of_Asc_Node : 141.6559, Arg_Of_Pericenter : 203.5797, Mean_Anomaly : 27.406, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33373, Element_Set_No : 999, Rev_At_Epoch : 4921, Bstar : 0, Mean_Motion_Dot : -2.2999999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 19 (G-19)", + "expanded": "GALAXY 19 (G-19)", + "numerical_value": 1100, + "description": "Object_Id : 2008-045A, Epoch : 2022-02-26T05:16:42.516192, Mean_Motion : 1.00269279, Eccentricity : 0.0002914, Inclination : 0.026, Ra_Of_Asc_Node : 130.2919, Arg_Of_Pericenter : 216.9445, Mean_Anomaly : 150.9894, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33376, Element_Set_No : 999, Rev_At_Epoch : 4907, Bstar : 0, Mean_Motion_Dot : -1.51E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 1M", + "expanded": "ASTRA 1M", + "numerical_value": 1101, + "description": "Object_Id : 2008-057A, Epoch : 2022-02-25T21:39:42.715872, Mean_Motion : 1.00272276, Eccentricity : 0.0001385, Inclination : 0.011, Ra_Of_Asc_Node : 126.1596, Arg_Of_Pericenter : 300.9049, Mean_Anomaly : 72.7039, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33436, Element_Set_No : 999, Rev_At_Epoch : 2996, Bstar : 0, Mean_Motion_Dot : 1.09E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CIEL-2", + "expanded": "CIEL-2", + "numerical_value": 1102, + "description": "Object_Id : 2008-063A, Epoch : 2022-02-25T17:59:19.233888, Mean_Motion : 1.00270439, Eccentricity : 0.0002894, Inclination : 0.0232, Ra_Of_Asc_Node : 219.0062, Arg_Of_Pericenter : 128.9315, Mean_Anomaly : 308.5967, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33453, Element_Set_No : 999, Rev_At_Epoch : 4836, Bstar : 0, Mean_Motion_Dot : 4.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT HOTBIRD 13C", + "expanded": "EUTELSAT HOTBIRD 13C", + "numerical_value": 1103, + "description": "Object_Id : 2008-065A, Epoch : 2022-02-26T03:16:46.185024, Mean_Motion : 1.00269829, Eccentricity : 0.0003729, Inclination : 0.0475, Ra_Of_Asc_Node : 358.6228, Arg_Of_Pericenter : 8.4713, Mean_Anomaly : 211.0249, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33459, Element_Set_No : 999, Rev_At_Epoch : 4848, Bstar : 0, Mean_Motion_Dot : 7.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 48D", + "expanded": "EUTELSAT 48D", + "numerical_value": 1104, + "description": "Object_Id : 2008-065B, Epoch : 2022-02-26T03:09:21.580992, Mean_Motion : 1.00270885, Eccentricity : 0.0003073, Inclination : 1.1807, Ra_Of_Asc_Node : 93.9667, Arg_Of_Pericenter : 249.9169, Mean_Anomaly : 206.8765, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33460, Element_Set_No : 999, Rev_At_Epoch : 4834, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FENGYUN 2E", + "expanded": "FENGYUN 2E", + "numerical_value": 1105, + "description": "Object_Id : 2008-066A, Epoch : 2022-02-25T00:04:26.554368, Mean_Motion : 1.00273257, Eccentricity : 0.0003843, Inclination : 5.657, Ra_Of_Asc_Node : 65.9499, Arg_Of_Pericenter : 348.6007, Mean_Anomaly : 188.1663, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33463, Element_Set_No : 999, Rev_At_Epoch : 4831, Bstar : 0, Mean_Motion_Dot : -2.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AM44", + "expanded": "EXPRESS-AM44", + "numerical_value": 1106, + "description": "Object_Id : 2009-007A, Epoch : 2022-02-25T06:29:38.391072, Mean_Motion : 1.00272154, Eccentricity : 2.1000000000000002E-05, Inclination : 0.0174, Ra_Of_Asc_Node : 264.3768, Arg_Of_Pericenter : 231.0704, Mean_Anomaly : 106.0623, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33595, Element_Set_No : 999, Rev_At_Epoch : 4778, Bstar : 0, Mean_Motion_Dot : -9.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "NSS-9", + "expanded": "NSS-9", + "numerical_value": 1107, + "description": "Object_Id : 2009-008A, Epoch : 2022-02-26T05:57:06.519168, Mean_Motion : 1.0027055, Eccentricity : 0.0002003, Inclination : 0.0654, Ra_Of_Asc_Node : 294.5839, Arg_Of_Pericenter : 45.0094, Mean_Anomaly : 88.7925, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33749, Element_Set_No : 999, Rev_At_Epoch : 4780, Bstar : 0, Mean_Motion_Dot : 6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 33E", + "expanded": "EUTELSAT 33E", + "numerical_value": 1108, + "description": "Object_Id : 2009-008B, Epoch : 2022-02-26T03:22:25.288608, Mean_Motion : 1.00272973, Eccentricity : 0.000396, Inclination : 0.0577, Ra_Of_Asc_Node : 12.6661, Arg_Of_Pericenter : 330.899, Mean_Anomaly : 256.0562, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 33750, Element_Set_No : 999, Rev_At_Epoch : 4783, Bstar : 0, Mean_Motion_Dot : 1.44E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TELSTAR 11N", + "expanded": "TELSTAR 11N", + "numerical_value": 1109, + "description": "Object_Id : 2009-009A, Epoch : 2022-02-25T20:08:46.959360, Mean_Motion : 1.00270737, Eccentricity : 0.0001379, Inclination : 0.0249, Ra_Of_Asc_Node : 128.5047, Arg_Of_Pericenter : 206.481, Mean_Anomaly : 85.3121, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 34111, Element_Set_No : 999, Rev_At_Epoch : 4765, Bstar : 0, Mean_Motion_Dot : -2.6099999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 10A", + "expanded": "EUTELSAT 10A", + "numerical_value": 1110, + "description": "Object_Id : 2009-016A, Epoch : 2022-02-25T21:47:42.837216, Mean_Motion : 1.00272564, Eccentricity : 0.0005588, Inclination : 0.0624, Ra_Of_Asc_Node : 10.9086, Arg_Of_Pericenter : 328.975, Mean_Anomaly : 152.7399, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 34710, Element_Set_No : 999, Rev_At_Epoch : 2549, Bstar : 0, Mean_Motion_Dot : 5.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F2 (USA 204)", + "expanded": "WGS F2 (USA 204)", + "numerical_value": 1111, + "description": "Object_Id : 2009-017A, Epoch : 2022-02-26T04:45:42.771744, Mean_Motion : 1.0027127, Eccentricity : 1.0100000000000002E-05, Inclination : 0.0168, Ra_Of_Asc_Node : 129.6171, Arg_Of_Pericenter : 308.9483, Mean_Anomaly : 206.3725, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 34713, Element_Set_No : 999, Rev_At_Epoch : 4717, Bstar : 0, Mean_Motion_Dot : 5.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-7 (PROTOSTAR 2)", + "expanded": "SES-7 (PROTOSTAR 2)", + "numerical_value": 1112, + "description": "Object_Id : 2009-027A, Epoch : 2022-02-25T21:34:19.050240, Mean_Motion : 1.0026873, Eccentricity : 0.0001261, Inclination : 0.018, Ra_Of_Asc_Node : 112.1995, Arg_Of_Pericenter : 181.4877, Mean_Anomaly : 293.8874, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 34941, Element_Set_No : 999, Rev_At_Epoch : 4685, Bstar : 0, Mean_Motion_Dot : -3.5499999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "MEASAT-3A", + "expanded": "MEASAT-3A", + "numerical_value": 1113, + "description": "Object_Id : 2009-032A, Epoch : 2022-02-26T01:55:53.226624, Mean_Motion : 1.00268261, Eccentricity : 0.0001345, Inclination : 0.0542, Ra_Of_Asc_Node : 241.3677, Arg_Of_Pericenter : 74.5557, Mean_Anomaly : 320.3875, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35362, Element_Set_No : 999, Rev_At_Epoch : 4646, Bstar : 0, Mean_Motion_Dot : -2.5099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GOES 14", + "expanded": "GOES 14", + "numerical_value": 1114, + "description": "Object_Id : 2009-033A, Epoch : 2022-02-26T00:59:37.257216, Mean_Motion : 1.0027081, Eccentricity : 0.0012638, Inclination : 0.0514, Ra_Of_Asc_Node : 74.1309, Arg_Of_Pericenter : 152.4849, Mean_Anomaly : 199.6327, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35491, Element_Set_No : 999, Rev_At_Epoch : 4639, Bstar : 0, Mean_Motion_Dot : -1.0299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FM-5", + "expanded": "FM-5", + "numerical_value": 1115, + "description": "Object_Id : 2009-034A, Epoch : 2022-02-26T02:48:15.592032, Mean_Motion : 1.00270098, Eccentricity : 9.210000000000002E-05, Inclination : 0.0236, Ra_Of_Asc_Node : 119.8195, Arg_Of_Pericenter : 328.3607, Mean_Anomaly : 23.6857, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35493, Element_Set_No : 999, Rev_At_Epoch : 4621, Bstar : 0, Mean_Motion_Dot : -2.1099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TERRESTAR-1", + "expanded": "TERRESTAR-1", + "numerical_value": 1116, + "description": "Object_Id : 2009-035A, Epoch : 2022-02-26T02:41:06.059616, Mean_Motion : 1.00272002, Eccentricity : 0.0002866, Inclination : 3.051, Ra_Of_Asc_Node : 36.1502, Arg_Of_Pericenter : 305.6034, Mean_Anomaly : 103.4335, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35496, Element_Set_No : 999, Rev_At_Epoch : 4639, Bstar : 0, Mean_Motion_Dot : -6.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASIASAT 5", + "expanded": "ASIASAT 5", + "numerical_value": 1117, + "description": "Object_Id : 2009-042A, Epoch : 2022-02-26T00:15:09.637344, Mean_Motion : 1.00270959, Eccentricity : 0.0001449, Inclination : 0.033, Ra_Of_Asc_Node : 109.1319, Arg_Of_Pericenter : 214.7489, Mean_Anomaly : 296.2342, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35696, Element_Set_No : 999, Rev_At_Epoch : 4590, Bstar : 0, Mean_Motion_Dot : -3.18E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-RA (JCSAT-12)", + "expanded": "JCSAT-RA (JCSAT-12)", + "numerical_value": 1118, + "description": "Object_Id : 2009-044A, Epoch : 2022-02-25T20:56:07.899360, Mean_Motion : 1.00271842, Eccentricity : 0.0004586, Inclination : 0.0248, Ra_Of_Asc_Node : 126.8621, Arg_Of_Pericenter : 206.0447, Mean_Anomaly : 264.2629, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35755, Element_Set_No : 999, Rev_At_Epoch : 4584, Bstar : 0, Mean_Motion_Dot : -3.5699999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "OPTUS D3", + "expanded": "OPTUS D3", + "numerical_value": 1119, + "description": "Object_Id : 2009-044B, Epoch : 2022-02-25T21:04:25.252320, Mean_Motion : 1.00271635, Eccentricity : 0.0004247, Inclination : 0.0497, Ra_Of_Asc_Node : 324.4276, Arg_Of_Pericenter : 21.153, Mean_Anomaly : 282.2038, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35756, Element_Set_No : 999, Rev_At_Epoch : 4579, Bstar : 0, Mean_Motion_Dot : -1.58E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "NIMIQ 5", + "expanded": "NIMIQ 5", + "numerical_value": 1120, + "description": "Object_Id : 2009-050A, Epoch : 2022-02-25T19:58:44.106816, Mean_Motion : 1.00272177, Eccentricity : 0.0002839, Inclination : 0.0576, Ra_Of_Asc_Node : 283.924, Arg_Of_Pericenter : 70.0292, Mean_Anomaly : 28.6672, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35873, Element_Set_No : 999, Rev_At_Epoch : 4558, Bstar : 0, Mean_Motion_Dot : -2.67E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMAZONAS 2", + "expanded": "AMAZONAS 2", + "numerical_value": 1121, + "description": "Object_Id : 2009-054A, Epoch : 2022-02-25T20:02:07.569312, Mean_Motion : 1.00270706, Eccentricity : 0.0001511, Inclination : 0.0221, Ra_Of_Asc_Node : 142.5394, Arg_Of_Pericenter : 256.6219, Mean_Anomaly : 356.0241, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35942, Element_Set_No : 999, Rev_At_Epoch : 4541, Bstar : 0, Mean_Motion_Dot : -2.92E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COMSATBW-1", + "expanded": "COMSATBW-1", + "numerical_value": 1122, + "description": "Object_Id : 2009-054B, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00271021, Eccentricity : 0.000192, Inclination : 0.0535, Ra_Of_Asc_Node : 101.4836, Arg_Of_Pericenter : 260.9712, Mean_Anomaly : 267.1382, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 35943, Element_Set_No : 999, Rev_At_Epoch : 4549, Bstar : 0, Mean_Motion_Dot : 1.3999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "NSS-12", + "expanded": "NSS-12", + "numerical_value": 1123, + "description": "Object_Id : 2009-058A, Epoch : 2022-02-25T21:56:42.780192, Mean_Motion : 1.00268528, Eccentricity : 0.0002364, Inclination : 0.0154, Ra_Of_Asc_Node : 111.7244, Arg_Of_Pericenter : 230.6414, Mean_Anomaly : 199.5442, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36032, Element_Set_No : 999, Rev_At_Epoch : 4515, Bstar : 0, Mean_Motion_Dot : 6.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "THOR 6", + "expanded": "THOR 6", + "numerical_value": 1124, + "description": "Object_Id : 2009-058B, Epoch : 2022-02-26T03:12:45.044352, Mean_Motion : 1.00271801, Eccentricity : 0.0001927, Inclination : 0.0223, Ra_Of_Asc_Node : 225.382, Arg_Of_Pericenter : 132.3786, Mean_Anomaly : 205.5209, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36033, Element_Set_No : 999, Rev_At_Epoch : 4520, Bstar : 0, Mean_Motion_Dot : -2.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 14 (IS-14)", + "expanded": "INTELSAT 14 (IS-14)", + "numerical_value": 1125, + "description": "Object_Id : 2009-064A, Epoch : 2022-02-26T02:25:42.846240, Mean_Motion : 1.00271815, Eccentricity : 0.0002277, Inclination : 0.0118, Ra_Of_Asc_Node : 114.9768, Arg_Of_Pericenter : 238.016, Mean_Anomaly : 154.3539, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36097, Element_Set_No : 999, Rev_At_Epoch : 4493, Bstar : 0, Mean_Motion_Dot : -2.85E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 36B", + "expanded": "EUTELSAT 36B", + "numerical_value": 1126, + "description": "Object_Id : 2009-065A, Epoch : 2022-02-25T20:59:42.671616, Mean_Motion : 1.00272298, Eccentricity : 0.0004875, Inclination : 0.0692, Ra_Of_Asc_Node : 9.5819, Arg_Of_Pericenter : 336.9214, Mean_Anomaly : 159.9817, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36101, Element_Set_No : 999, Rev_At_Epoch : 4495, Bstar : 0, Mean_Motion_Dot : 1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 15 (IS-15)", + "expanded": "INTELSAT 15 (IS-15)", + "numerical_value": 1127, + "description": "Object_Id : 2009-067A, Epoch : 2022-02-26T01:54:07.727904, Mean_Motion : 1.00267975, Eccentricity : 0.0002367, Inclination : 0.0145, Ra_Of_Asc_Node : 121.1604, Arg_Of_Pericenter : 241.2956, Mean_Anomaly : 267.1361, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36106, Element_Set_No : 999, Rev_At_Epoch : 4483, Bstar : 0, Mean_Motion_Dot : -1.95E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F3 (USA 211)", + "expanded": "WGS F3 (USA 211)", + "numerical_value": 1128, + "description": "Object_Id : 2009-068A, Epoch : 2022-02-26T02:21:15.427872, Mean_Motion : 1.00270369, Eccentricity : 2.76E-05, Inclination : 0.1004, Ra_Of_Asc_Node : 96.6434, Arg_Of_Pericenter : 356.5055, Mean_Anomaly : 277.8527, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36108, Element_Set_No : 999, Rev_At_Epoch : 4475, Bstar : 0, Mean_Motion_Dot : 4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 12", + "expanded": "DIRECTV 12", + "numerical_value": 1129, + "description": "Object_Id : 2009-075A, Epoch : 2022-02-25T15:26:38.679936, Mean_Motion : 1.00272089, Eccentricity : 3.9E-05, Inclination : 0.0357, Ra_Of_Asc_Node : 281.7797, Arg_Of_Pericenter : 153.7477, Mean_Anomaly : 208.8639, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36131, Element_Set_No : 999, Rev_At_Epoch : 3079, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 3", + "expanded": "BEIDOU 3", + "numerical_value": 1130, + "description": "Object_Id : 2010-001A, Epoch : 2022-02-26T04:47:21.412032, Mean_Motion : 1.00271415, Eccentricity : 0.0002626, Inclination : 1.8912, Ra_Of_Asc_Node : 47.8162, Arg_Of_Pericenter : 16.8761, Mean_Anomaly : 303.5567, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36287, Element_Set_No : 999, Rev_At_Epoch : 4439, Bstar : 0, Mean_Motion_Dot : -2.92E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "RADUGA-1M 2", + "expanded": "RADUGA-1M 2", + "numerical_value": 1131, + "description": "Object_Id : 2010-002A, Epoch : 2022-02-26T03:37:22.031616, Mean_Motion : 1.00269651, Eccentricity : 0.0001195, Inclination : 0.0832, Ra_Of_Asc_Node : 258.5382, Arg_Of_Pericenter : 101.5805, Mean_Anomaly : 295.1675, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36358, Element_Set_No : 999, Rev_At_Epoch : 4424, Bstar : 0, Mean_Motion_Dot : -1.94E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SDO", + "expanded": "SDO", + "numerical_value": 1132, + "description": "Object_Id : 2010-005A, Epoch : 2022-02-25T15:27:52.617600, Mean_Motion : 1.00275308, Eccentricity : 0.0002024, Inclination : 31.4373, Ra_Of_Asc_Node : 111.0368, Arg_Of_Pericenter : 238.4203, Mean_Anomaly : 295.8263, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36395, Element_Set_No : 999, Rev_At_Epoch : 4429, Bstar : 0, Mean_Motion_Dot : -9.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 16 (IS-16)", + "expanded": "INTELSAT 16 (IS-16)", + "numerical_value": 1133, + "description": "Object_Id : 2010-006A, Epoch : 2022-02-25T19:57:43.822080, Mean_Motion : 1.00270152, Eccentricity : 0.0001876, Inclination : 0.0207, Ra_Of_Asc_Node : 116.4703, Arg_Of_Pericenter : 245.6972, Mean_Anomaly : 16.7264, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36397, Element_Set_No : 999, Rev_At_Epoch : 4388, Bstar : 0, Mean_Motion_Dot : -2.54E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GOES 15", + "expanded": "GOES 15", + "numerical_value": 1134, + "description": "Object_Id : 2010-008A, Epoch : 2022-02-26T00:52:57.867168, Mean_Motion : 1.00282219, Eccentricity : 0.000209, Inclination : 0.0222, Ra_Of_Asc_Node : 137.2751, Arg_Of_Pericenter : 260.0534, Mean_Anomaly : 4.1116, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36411, Element_Set_No : 999, Rev_At_Epoch : 4390, Bstar : 0, Mean_Motion_Dot : 3.8999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 14", + "expanded": "ECHOSTAR 14", + "numerical_value": 1135, + "description": "Object_Id : 2010-010A, Epoch : 2022-02-26T02:38:50.419392, Mean_Motion : 1.00271655, Eccentricity : 0.0002632, Inclination : 0.0154, Ra_Of_Asc_Node : 167.2513, Arg_Of_Pericenter : 166.3309, Mean_Anomaly : 103.1387, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36499, Element_Set_No : 999, Rev_At_Epoch : 4377, Bstar : 0, Mean_Motion_Dot : -1.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-1", + "expanded": "SES-1", + "numerical_value": 1136, + "description": "Object_Id : 2010-016A, Epoch : 2022-02-26T05:16:42.516192, Mean_Motion : 1.00271528, Eccentricity : 0.0002869, Inclination : 0.0589, Ra_Of_Asc_Node : 293.9483, Arg_Of_Pericenter : 58.212, Mean_Anomaly : 142.0338, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36516, Element_Set_No : 999, Rev_At_Epoch : 4337, Bstar : 0, Mean_Motion_Dot : -1.26E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 3B", + "expanded": "ASTRA 3B", + "numerical_value": 1137, + "description": "Object_Id : 2010-021A, Epoch : 2022-02-25T21:31:42.815712, Mean_Motion : 1.00276249, Eccentricity : 0.0004216, Inclination : 0.0568, Ra_Of_Asc_Node : 61.9977, Arg_Of_Pericenter : 258.6991, Mean_Anomaly : 181.4455, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36581, Element_Set_No : 999, Rev_At_Epoch : 4311, Bstar : 0, Mean_Motion_Dot : 1.27E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COMSATBW-2", + "expanded": "COMSATBW-2", + "numerical_value": 1138, + "description": "Object_Id : 2010-021B, Epoch : 2022-02-26T03:16:46.185024, Mean_Motion : 1.00268204, Eccentricity : 0.0001997, Inclination : 0.0439, Ra_Of_Asc_Node : 98.4011, Arg_Of_Pericenter : 250.3122, Mean_Anomaly : 229.614, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36582, Element_Set_No : 999, Rev_At_Epoch : 4322, Bstar : 0, Mean_Motion_Dot : 7.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BADR-5", + "expanded": "BADR-5", + "numerical_value": 1139, + "description": "Object_Id : 2010-025A, Epoch : 2022-02-26T03:20:24.719136, Mean_Motion : 1.00268158, Eccentricity : 6.960000000000001E-05, Inclination : 0.0237, Ra_Of_Asc_Node : 132.9964, Arg_Of_Pericenter : 266.5101, Mean_Anomaly : 192.536, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36592, Element_Set_No : 999, Rev_At_Epoch : 4313, Bstar : 0, Mean_Motion_Dot : 1.33E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COMS 1", + "expanded": "COMS 1", + "numerical_value": 1140, + "description": "Object_Id : 2010-032A, Epoch : 2022-02-25T19:13:01.130592, Mean_Motion : 1.00268928, Eccentricity : 9.11E-05, Inclination : 0.7836, Ra_Of_Asc_Node : 95.3243, Arg_Of_Pericenter : 282.0623, Mean_Anomaly : 194.6447, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36744, Element_Set_No : 999, Rev_At_Epoch : 3532, Bstar : 0, Mean_Motion_Dot : -3.5499999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ARABSAT-5A", + "expanded": "ARABSAT-5A", + "numerical_value": 1141, + "description": "Object_Id : 2010-032B, Epoch : 2022-02-26T03:21:40.074624, Mean_Motion : 1.00271338, Eccentricity : 0.0001959, Inclination : 0.0584, Ra_Of_Asc_Node : 41.3226, Arg_Of_Pericenter : 331.0908, Mean_Anomaly : 224.401, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36745, Element_Set_No : 999, Rev_At_Epoch : 4286, Bstar : 0, Mean_Motion_Dot : 1.42E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 15", + "expanded": "ECHOSTAR 15", + "numerical_value": 1142, + "description": "Object_Id : 2010-034A, Epoch : 2022-02-25T20:01:52.497696, Mean_Motion : 1.00270744, Eccentricity : 0.0001648, Inclination : 0.0622, Ra_Of_Asc_Node : 290.8204, Arg_Of_Pericenter : 56.9196, Mean_Anomaly : 46.7337, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36792, Element_Set_No : 999, Rev_At_Epoch : 4256, Bstar : 0, Mean_Motion_Dot : -2.91E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 5", + "expanded": "BEIDOU 5", + "numerical_value": 1143, + "description": "Object_Id : 2010-036A, Epoch : 2022-02-25T15:23:36.819168, Mean_Motion : 1.0027883, Eccentricity : 0.0027535, Inclination : 54.1926, Ra_Of_Asc_Node : 177.2532, Arg_Of_Pericenter : 181.0163, Mean_Anomaly : 136.6651, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36828, Element_Set_No : 999, Rev_At_Epoch : 4245, Bstar : 0, Mean_Motion_Dot : -1.5E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "NILESAT 201", + "expanded": "NILESAT 201", + "numerical_value": 1144, + "description": "Object_Id : 2010-037A, Epoch : 2022-02-25T22:20:42.461664, Mean_Motion : 1.00272107, Eccentricity : 0.0004656, Inclination : 0.0436, Ra_Of_Asc_Node : 182.3217, Arg_Of_Pericenter : 185.4479, Mean_Anomaly : 116.1356, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36830, Element_Set_No : 999, Rev_At_Epoch : 4260, Bstar : 0, Mean_Motion_Dot : -6.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "RASCOM-QAF 1R", + "expanded": "RASCOM-QAF 1R", + "numerical_value": 1145, + "description": "Object_Id : 2010-037B, Epoch : 2022-02-26T03:13:45.329952, Mean_Motion : 1.00272128, Eccentricity : 0.000595, Inclination : 0.0403, Ra_Of_Asc_Node : 109.558, Arg_Of_Pericenter : 212.6881, Mean_Anomaly : 245.0086, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36831, Element_Set_No : 999, Rev_At_Epoch : 4252, Bstar : 0, Mean_Motion_Dot : 7E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "AEHF-1 (USA 214)", + "expanded": "AEHF-1 (USA 214)", + "numerical_value": 1146, + "description": "Object_Id : 2010-039A, Epoch : 2022-02-25T20:20:50.382240, Mean_Motion : 1.00267555, Eccentricity : 0.0003621, Inclination : 4.2536, Ra_Of_Asc_Node : 88.3013, Arg_Of_Pericenter : 330.5196, Mean_Anomaly : 46.1167, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 36868, Element_Set_No : 999, Rev_At_Epoch : 3789, Bstar : 0, Mean_Motion_Dot : 1.3999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 6A (ZX 6A)", + "expanded": "CHINASAT 6A (ZX 6A)", + "numerical_value": 1147, + "description": "Object_Id : 2010-042A, Epoch : 2022-02-25T22:04:42.678624, Mean_Motion : 0.99695352, Eccentricity : 0.0003901, Inclination : 0.1644, Ra_Of_Asc_Node : 100.1381, Arg_Of_Pericenter : 275.1965, Mean_Anomaly : 156.2581, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37150, Element_Set_No : 999, Rev_At_Epoch : 4220, Bstar : 0, Mean_Motion_Dot : 1.24E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-1 (MICHIBIKI-1)", + "expanded": "QZS-1 (MICHIBIKI-1)", + "numerical_value": 1148, + "description": "Object_Id : 2010-045A, Epoch : 2022-02-25T13:13:19.602912, Mean_Motion : 1.0025933, Eccentricity : 0.0768083, Inclination : 42.2165, Ra_Of_Asc_Node : 134.9378, Arg_Of_Pericenter : 270.6954, Mean_Anomaly : 90.0571, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37158, Element_Set_No : 999, Rev_At_Epoch : 4197, Bstar : 0, Mean_Motion_Dot : -1.8399999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "XM-5", + "expanded": "XM-5", + "numerical_value": 1149, + "description": "Object_Id : 2010-053A, Epoch : 2022-02-26T02:39:58.239936, Mean_Motion : 1.002725, Eccentricity : 0.0001382, Inclination : 0.012, Ra_Of_Asc_Node : 161.5708, Arg_Of_Pericenter : 300.8146, Mean_Anomaly : 338.315, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37185, Element_Set_No : 999, Rev_At_Epoch : 4168, Bstar : 0, Mean_Motion_Dot : -3.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BSAT-3B", + "expanded": "BSAT-3B", + "numerical_value": 1150, + "description": "Object_Id : 2010-056B, Epoch : 2022-02-25T21:34:45.050592, Mean_Motion : 1.00271129, Eccentricity : 0.0003873, Inclination : 0.1016, Ra_Of_Asc_Node : 305.6465, Arg_Of_Pericenter : 18.5839, Mean_Anomaly : 265.0176, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37207, Element_Set_No : 999, Rev_At_Epoch : 3635, Bstar : 0, Mean_Motion_Dot : -3.6099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 6", + "expanded": "BEIDOU 6", + "numerical_value": 1151, + "description": "Object_Id : 2010-057A, Epoch : 2022-02-25T19:22:11.233344, Mean_Motion : 1.00271598, Eccentricity : 0.0003934, Inclination : 0.9661, Ra_Of_Asc_Node : 53.9932, Arg_Of_Pericenter : 157.1403, Mean_Anomaly : 35.091, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37210, Element_Set_No : 999, Rev_At_Epoch : 4151, Bstar : 0, Mean_Motion_Dot : -1.22E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SKYTERRA 1", + "expanded": "SKYTERRA 1", + "numerical_value": 1152, + "description": "Object_Id : 2010-061A, Epoch : 2022-02-26T02:43:51.843936, Mean_Motion : 1.00271363, Eccentricity : 0.0002816, Inclination : 2.3294, Ra_Of_Asc_Node : 28.2319, Arg_Of_Pericenter : 346.6894, Mean_Anomaly : 80.6465, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37218, Element_Set_No : 999, Rev_At_Epoch : 4146, Bstar : 0, Mean_Motion_Dot : -1.28E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ZHONGXING-20A", + "expanded": "ZHONGXING-20A", + "numerical_value": 1153, + "description": "Object_Id : 2010-064A, Epoch : 2022-02-25T02:47:14.516736, Mean_Motion : 1.00268679, Eccentricity : 0.0003178, Inclination : 2.3673, Ra_Of_Asc_Node : 89.8814, Arg_Of_Pericenter : 250.2688, Mean_Anomaly : 342.9804, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37234, Element_Set_No : 999, Rev_At_Epoch : 4125, Bstar : 0, Mean_Motion_Dot : -3.58E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "HYLAS 1", + "expanded": "HYLAS 1", + "numerical_value": 1154, + "description": "Object_Id : 2010-065A, Epoch : 2022-02-26T02:49:46.020000, Mean_Motion : 1.00271035, Eccentricity : 0.0002033, Inclination : 1.6362999999999999, Ra_Of_Asc_Node : 91.4194, Arg_Of_Pericenter : 249.3444, Mean_Anomaly : 136.834, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37237, Element_Set_No : 999, Rev_At_Epoch : 4124, Bstar : 0, Mean_Motion_Dot : -2.3799999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 17 (IS-17)", + "expanded": "INTELSAT 17 (IS-17)", + "numerical_value": 1155, + "description": "Object_Id : 2010-065B, Epoch : 2022-02-26T04:56:42.609408, Mean_Motion : 1.00271599, Eccentricity : 0.000276, Inclination : 0.0207, Ra_Of_Asc_Node : 183.1421, Arg_Of_Pericenter : 161.4823, Mean_Anomaly : 311.5687, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37238, Element_Set_No : 999, Rev_At_Epoch : 4115, Bstar : 0, Mean_Motion_Dot : -1.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 7", + "expanded": "BEIDOU 7", + "numerical_value": 1156, + "description": "Object_Id : 2010-068A, Epoch : 2022-02-25T19:17:44.228832, Mean_Motion : 1.00285317, Eccentricity : 0.0017604, Inclination : 50.4091, Ra_Of_Asc_Node : 290.9815, Arg_Of_Pericenter : 186.2846, Mean_Anomaly : 75.9364, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37256, Element_Set_No : 999, Rev_At_Epoch : 4102, Bstar : 0, Mean_Motion_Dot : -1.6999999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT KA-SAT 9A", + "expanded": "EUTELSAT KA-SAT 9A", + "numerical_value": 1157, + "description": "Object_Id : 2010-069A, Epoch : 2022-02-25T21:47:42.837216, Mean_Motion : 1.00271727, Eccentricity : 0.0002031, Inclination : 0.0555, Ra_Of_Asc_Node : 260.6583, Arg_Of_Pericenter : 168.7991, Mean_Anomaly : 62.2283, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37258, Element_Set_No : 999, Rev_At_Epoch : 2823, Bstar : 0, Mean_Motion_Dot : 5.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "HISPASAT 30W-5", + "expanded": "HISPASAT 30W-5", + "numerical_value": 1158, + "description": "Object_Id : 2010-070A, Epoch : 2022-02-26T02:17:42.725760, Mean_Motion : 1.00270838, Eccentricity : 0.0002301, Inclination : 0.0182, Ra_Of_Asc_Node : 129.9253, Arg_Of_Pericenter : 237.1238, Mean_Anomaly : 153.3117, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37264, Element_Set_No : 999, Rev_At_Epoch : 4090, Bstar : 0, Mean_Motion_Dot : -2.27E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "KOREASAT 6", + "expanded": "KOREASAT 6", + "numerical_value": 1159, + "description": "Object_Id : 2010-070B, Epoch : 2022-02-26T00:19:33.384576, Mean_Motion : 1.00272303, Eccentricity : 7.25E-05, Inclination : 0.0196, Ra_Of_Asc_Node : 104.8629, Arg_Of_Pericenter : 255.653, Mean_Anomaly : 276.1875, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37265, Element_Set_No : 999, Rev_At_Epoch : 4092, Bstar : 0, Mean_Motion_Dot : -3.73E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 8", + "expanded": "BEIDOU 8", + "numerical_value": 1160, + "description": "Object_Id : 2011-013A, Epoch : 2022-02-25T15:57:11.318976, Mean_Motion : 1.00285494, Eccentricity : 0.0019972, Inclination : 60.137, Ra_Of_Asc_Node : 55.3634, Arg_Of_Pericenter : 195.5228, Mean_Anomaly : 252.1974, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37384, Element_Set_No : 999, Rev_At_Epoch : 3990, Bstar : 0, Mean_Motion_Dot : -1.5399999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT NEW DAWN", + "expanded": "INTELSAT NEW DAWN", + "numerical_value": 1161, + "description": "Object_Id : 2011-016A, Epoch : 2022-02-25T20:29:00.197664, Mean_Motion : 1.00271975, Eccentricity : 0.0001463, Inclination : 0.0155, Ra_Of_Asc_Node : 147.1368, Arg_Of_Pericenter : 301.0461, Mean_Anomaly : 47.5199, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37392, Element_Set_No : 999, Rev_At_Epoch : 3752, Bstar : 0, Mean_Motion_Dot : 1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "YAHSAT 1A", + "expanded": "YAHSAT 1A", + "numerical_value": 1162, + "description": "Object_Id : 2011-016B, Epoch : 2022-02-26T03:28:04.394784, Mean_Motion : 1.00269719, Eccentricity : 9.94E-05, Inclination : 0.0111, Ra_Of_Asc_Node : 195.061, Arg_Of_Pericenter : 130.3712, Mean_Anomaly : 295.0238, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37393, Element_Set_No : 999, Rev_At_Epoch : 3979, Bstar : 0, Mean_Motion_Dot : 9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SBIRS GEO-1 (USA 230)", + "expanded": "SBIRS GEO-1 (USA 230)", + "numerical_value": 1163, + "description": "Object_Id : 2011-019A, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00272237, Eccentricity : 0.0001905, Inclination : 1.8452, Ra_Of_Asc_Node : 17.6268, Arg_Of_Pericenter : 319.3516, Mean_Anomaly : 295.8406, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37481, Element_Set_No : 999, Rev_At_Epoch : 3957, Bstar : 0, Mean_Motion_Dot : -1.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TELSTAR 14R", + "expanded": "TELSTAR 14R", + "numerical_value": 1164, + "description": "Object_Id : 2011-021A, Epoch : 2022-02-26T02:54:54.981216, Mean_Motion : 1.00270869, Eccentricity : 0.0002818, Inclination : 0.0203, Ra_Of_Asc_Node : 32.9326, Arg_Of_Pericenter : 321.9081, Mean_Anomaly : 141.7936, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37602, Element_Set_No : 999, Rev_At_Epoch : 4002, Bstar : 0, Mean_Motion_Dot : -2.91E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-8", + "expanded": "GSAT-8", + "numerical_value": 1165, + "description": "Object_Id : 2011-022A, Epoch : 2022-02-26T03:28:49.607904, Mean_Motion : 1.00272045, Eccentricity : 0.0006536, Inclination : 0.0192, Ra_Of_Asc_Node : 226.5001, Arg_Of_Pericenter : 63.1208, Mean_Anomaly : 333.5848, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37605, Element_Set_No : 999, Rev_At_Epoch : 3947, Bstar : 0, Mean_Motion_Dot : 7.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ST-2", + "expanded": "ST-2", + "numerical_value": 1166, + "description": "Object_Id : 2011-022B, Epoch : 2022-02-25T20:19:56.009856, Mean_Motion : 1.00272821, Eccentricity : 0.0002146, Inclination : 0.0184, Ra_Of_Asc_Node : 166.6563, Arg_Of_Pericenter : 202.6406, Mean_Anomaly : 179.3331, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37606, Element_Set_No : 999, Rev_At_Epoch : 3951, Bstar : 0, Mean_Motion_Dot : -2.22E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 10 (ZX 10)", + "expanded": "CHINASAT 10 (ZX 10)", + "numerical_value": 1167, + "description": "Object_Id : 2011-026A, Epoch : 2022-02-26T00:18:02.958336, Mean_Motion : 1.00274649, Eccentricity : 0.0001744, Inclination : 0.0961, Ra_Of_Asc_Node : 262.8522, Arg_Of_Pericenter : 288.3701, Mean_Anomaly : 79.5634, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37677, Element_Set_No : 999, Rev_At_Epoch : 3919, Bstar : 0, Mean_Motion_Dot : -3.6299999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANLIAN 1-02", + "expanded": "TIANLIAN 1-02", + "numerical_value": 1168, + "description": "Object_Id : 2011-032A, Epoch : 2022-02-25T21:07:26.107392, Mean_Motion : 1.00269271, Eccentricity : 0.0077695, Inclination : 2.6993, Ra_Of_Asc_Node : 74.6404, Arg_Of_Pericenter : 357.3949, Mean_Anomaly : 207.4488, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37737, Element_Set_No : 999, Rev_At_Epoch : 3895, Bstar : 0, Mean_Motion_Dot : -6.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-12", + "expanded": "GSAT-12", + "numerical_value": 1169, + "description": "Object_Id : 2011-034A, Epoch : 2022-02-26T03:26:49.037568, Mean_Motion : 1.00272408, Eccentricity : 0.0008802, Inclination : 1.0981, Ra_Of_Asc_Node : 93.8438, Arg_Of_Pericenter : 338.6549, Mean_Anomaly : 183.1138, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37746, Element_Set_No : 999, Rev_At_Epoch : 3919, Bstar : 0, Mean_Motion_Dot : 1.1299999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-3", + "expanded": "SES-3", + "numerical_value": 1170, + "description": "Object_Id : 2011-035A, Epoch : 2022-02-25T23:16:43.229856, Mean_Motion : 1.00270586, Eccentricity : 0.0002521, Inclination : 0.0633, Ra_Of_Asc_Node : 297.7786, Arg_Of_Pericenter : 51.2064, Mean_Anomaly : 52.9479, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37748, Element_Set_No : 999, Rev_At_Epoch : 3893, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "KAZSAT-2", + "expanded": "KAZSAT-2", + "numerical_value": 1171, + "description": "Object_Id : 2011-035B, Epoch : 2022-02-26T01:54:30.335328, Mean_Motion : 1.00278133, Eccentricity : 0.0001161, Inclination : 0.0431, Ra_Of_Asc_Node : 279.8, Arg_Of_Pericenter : 136.4463, Mean_Anomaly : 214.7557, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37749, Element_Set_No : 999, Rev_At_Epoch : 3880, Bstar : 0, Mean_Motion_Dot : -2.1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 9", + "expanded": "BEIDOU 9", + "numerical_value": 1172, + "description": "Object_Id : 2011-038A, Epoch : 2022-02-25T19:03:45.021312, Mean_Motion : 1.00258032, Eccentricity : 0.0089196, Inclination : 54.4756, Ra_Of_Asc_Node : 179.7304, Arg_Of_Pericenter : 225.5225, Mean_Anomaly : 129.7603, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37763, Element_Set_No : 999, Rev_At_Epoch : 3887, Bstar : 0, Mean_Motion_Dot : -9.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 1N", + "expanded": "ASTRA 1N", + "numerical_value": 1173, + "description": "Object_Id : 2011-041A, Epoch : 2022-02-26T03:18:31.683744, Mean_Motion : 1.00271323, Eccentricity : 0.000483, Inclination : 0.0494, Ra_Of_Asc_Node : 10.6823, Arg_Of_Pericenter : 5.4055, Mean_Anomaly : 208.6591, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37775, Element_Set_No : 999, Rev_At_Epoch : 3863, Bstar : 0, Mean_Motion_Dot : 1.08E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BSAT-3C (JCSAT-110R)", + "expanded": "BSAT-3C (JCSAT-110R)", + "numerical_value": 1174, + "description": "Object_Id : 2011-041B, Epoch : 2022-02-26T00:17:55.420800, Mean_Motion : 1.00266055, Eccentricity : 5.4000000000000005E-05, Inclination : 0.0666, Ra_Of_Asc_Node : 300.225, Arg_Of_Pericenter : 127.9064, Mean_Anomaly : 202.1079, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37776, Element_Set_No : 999, Rev_At_Epoch : 3875, Bstar : 0, Mean_Motion_Dot : -3.6099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "PAKSAT-1R", + "expanded": "PAKSAT-1R", + "numerical_value": 1175, + "description": "Object_Id : 2011-042A, Epoch : 2022-02-25T21:08:22.766784, Mean_Motion : 1.00268418, Eccentricity : 0.0003142, Inclination : 0.0526, Ra_Of_Asc_Node : 282.58, Arg_Of_Pericenter : 116.9458, Mean_Anomaly : 111.2537, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37779, Element_Set_No : 999, Rev_At_Epoch : 3871, Bstar : 0, Mean_Motion_Dot : 1.4299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 1A (ZX 1A)", + "expanded": "CHINASAT 1A (ZX 1A)", + "numerical_value": 1176, + "description": "Object_Id : 2011-047A, Epoch : 2022-02-25T21:27:15.041376, Mean_Motion : 1.0026993, Eccentricity : 0.0001521, Inclination : 0.0226, Ra_Of_Asc_Node : 132.7693, Arg_Of_Pericenter : 217.4634, Mean_Anomaly : 257.1339, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37804, Element_Set_No : 999, Rev_At_Epoch : 1159, Bstar : 0, Mean_Motion_Dot : -3.4799999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-2", + "expanded": "SES-2", + "numerical_value": 1177, + "description": "Object_Id : 2011-049A, Epoch : 2022-02-26T02:48:00.522144, Mean_Motion : 1.00270936, Eccentricity : 0.0002653, Inclination : 0.0456, Ra_Of_Asc_Node : 297.8936, Arg_Of_Pericenter : 40.0669, Mean_Anomaly : 132.964, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37809, Element_Set_No : 999, Rev_At_Epoch : 3823, Bstar : 0, Mean_Motion_Dot : -2.0699999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ARABSAT-5C", + "expanded": "ARABSAT-5C", + "numerical_value": 1178, + "description": "Object_Id : 2011-049B, Epoch : 2022-02-26T03:18:46.755360, Mean_Motion : 1.00270173, Eccentricity : 0.0001441, Inclination : 0.0579, Ra_Of_Asc_Node : 353.7188, Arg_Of_Pericenter : 249.7205, Mean_Anomaly : 342.1882, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37810, Element_Set_No : 999, Rev_At_Epoch : 3814, Bstar : 0, Mean_Motion_Dot : 1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 7 WEST A", + "expanded": "EUTELSAT 7 WEST A", + "numerical_value": 1179, + "description": "Object_Id : 2011-051A, Epoch : 2022-02-26T03:10:52.008960, Mean_Motion : 1.00270602, Eccentricity : 0.0002263, Inclination : 0.0654, Ra_Of_Asc_Node : 351.7721, Arg_Of_Pericenter : 225.5796, Mean_Anomaly : 339.0164, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37816, Element_Set_No : 999, Rev_At_Epoch : 3820, Bstar : 0, Mean_Motion_Dot : -7.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "QUETZSAT 1", + "expanded": "QUETZSAT 1", + "numerical_value": 1180, + "description": "Object_Id : 2011-054A, Epoch : 2022-02-25T19:57:28.751328, Mean_Motion : 1.00270763, Eccentricity : 0.0002487, Inclination : 0.0032, Ra_Of_Asc_Node : 301.421, Arg_Of_Pericenter : 48.2349, Mean_Anomaly : 28.3387, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37826, Element_Set_No : 999, Rev_At_Epoch : 3412, Bstar : 0, Mean_Motion_Dot : -2.5099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 18 (IS-18)", + "expanded": "INTELSAT 18 (IS-18)", + "numerical_value": 1181, + "description": "Object_Id : 2011-056A, Epoch : 2022-02-26T04:04:37.268256, Mean_Motion : 1.00271047, Eccentricity : 0.0001779, Inclination : 0.0264, Ra_Of_Asc_Node : 28.0386, Arg_Of_Pericenter : 319.7408, Mean_Anomaly : 49.333, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37834, Element_Set_No : 999, Rev_At_Epoch : 3807, Bstar : 0, Mean_Motion_Dot : 4.0999999999999994E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 16A", + "expanded": "EUTELSAT 16A", + "numerical_value": 1182, + "description": "Object_Id : 2011-057A, Epoch : 2022-02-26T03:17:31.399008, Mean_Motion : 1.00270103, Eccentricity : 0.0005204, Inclination : 0.0686, Ra_Of_Asc_Node : 357.1039, Arg_Of_Pericenter : 340.3028, Mean_Anomaly : 243.9122, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37836, Element_Set_No : 999, Rev_At_Epoch : 3802, Bstar : 0, Mean_Motion_Dot : 9.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "VIASAT-1", + "expanded": "VIASAT-1", + "numerical_value": 1183, + "description": "Object_Id : 2011-059A, Epoch : 2022-02-26T02:39:58.239936, Mean_Motion : 1.00266652, Eccentricity : 0.0002199, Inclination : 0.0162, Ra_Of_Asc_Node : 144.8628, Arg_Of_Pericenter : 206.3144, Mean_Anomaly : 89.6011, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37843, Element_Set_No : 999, Rev_At_Epoch : 3851, Bstar : 0, Mean_Motion_Dot : -3.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASIASAT 7", + "expanded": "ASIASAT 7", + "numerical_value": 1184, + "description": "Object_Id : 2011-069A, Epoch : 2022-02-26T00:16:32.528640, Mean_Motion : 1.00273055, Eccentricity : 0.0001241, Inclination : 0.0185, Ra_Of_Asc_Node : 150.5361, Arg_Of_Pericenter : 168.5102, Mean_Anomaly : 306.3961, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37933, Element_Set_No : 999, Rev_At_Epoch : 3769, Bstar : 0, Mean_Motion_Dot : -3.45E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 10", + "expanded": "BEIDOU 10", + "numerical_value": 1185, + "description": "Object_Id : 2011-073A, Epoch : 2022-02-25T20:58:55.672608, Mean_Motion : 1.00278225, Eccentricity : 0.0076965, Inclination : 50.5233, Ra_Of_Asc_Node : 290.6138, Arg_Of_Pericenter : 218.4493, Mean_Anomaly : 57.2626, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37948, Element_Set_No : 999, Rev_At_Epoch : 3763, Bstar : 0, Mean_Motion_Dot : -1.2299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCH 5A", + "expanded": "LUCH 5A", + "numerical_value": 1186, + "description": "Object_Id : 2011-074B, Epoch : 2022-02-25T18:13:49.248192, Mean_Motion : 1.00275937, Eccentricity : 0.0003061, Inclination : 4.7367, Ra_Of_Asc_Node : 99.898, Arg_Of_Pericenter : 251.2802, Mean_Anomaly : 244.9794, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 37951, Element_Set_No : 999, Rev_At_Epoch : 3742, Bstar : 0, Mean_Motion_Dot : -5.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "NIGCOMSAT 1R", + "expanded": "NIGCOMSAT 1R", + "numerical_value": 1187, + "description": "Object_Id : 2011-077A, Epoch : 2022-02-25T21:02:42.035424, Mean_Motion : 1.002737, Eccentricity : 0.0003178, Inclination : 0.0123, Ra_Of_Asc_Node : 287.7837, Arg_Of_Pericenter : 107.6828, Mean_Anomaly : 118.3595, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38014, Element_Set_No : 999, Rev_At_Epoch : 3726, Bstar : 0, Mean_Motion_Dot : 1.35E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FENGYUN 2F", + "expanded": "FENGYUN 2F", + "numerical_value": 1188, + "description": "Object_Id : 2012-002A, Epoch : 2022-02-25T13:58:15.731328, Mean_Motion : 1.00283862, Eccentricity : 0.000468, Inclination : 3.519, Ra_Of_Asc_Node : 80.5248, Arg_Of_Pericenter : 4.879, Mean_Anomaly : 31.2412, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38049, Element_Set_No : 999, Rev_At_Epoch : 3712, Bstar : 0, Mean_Motion_Dot : -3.6699999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F4 (USA 233)", + "expanded": "WGS F4 (USA 233)", + "numerical_value": 1189, + "description": "Object_Id : 2012-003A, Epoch : 2022-02-25T20:19:56.009856, Mean_Motion : 1.00272522, Eccentricity : 2.75E-05, Inclination : 0.0116, Ra_Of_Asc_Node : 131.2989, Arg_Of_Pericenter : 326.9112, Mean_Anomaly : 90.8271, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38070, Element_Set_No : 999, Rev_At_Epoch : 2838, Bstar : 0, Mean_Motion_Dot : -2.25E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-4", + "expanded": "SES-4", + "numerical_value": 1190, + "description": "Object_Id : 2012-007A, Epoch : 2022-02-25T23:39:57.324096, Mean_Motion : 1.00272279, Eccentricity : 0.0002253, Inclination : 0.0123, Ra_Of_Asc_Node : 72.5494, Arg_Of_Pericenter : 263.3118, Mean_Anomaly : 152.9164, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38087, Element_Set_No : 999, Rev_At_Epoch : 3672, Bstar : 0, Mean_Motion_Dot : -1.79E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 11", + "expanded": "BEIDOU 11", + "numerical_value": 1191, + "description": "Object_Id : 2012-008A, Epoch : 2022-02-26T03:29:42.356832, Mean_Motion : 1.00270867, Eccentricity : 0.0013737, Inclination : 1.3202, Ra_Of_Asc_Node : 64.1008, Arg_Of_Pericenter : 314.766, Mean_Anomaly : 247.9817, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38091, Element_Set_No : 999, Rev_At_Epoch : 3671, Bstar : 0, Mean_Motion_Dot : 4.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "MUOS-1", + "expanded": "MUOS-1", + "numerical_value": 1192, + "description": "Object_Id : 2012-009A, Epoch : 2022-02-26T02:44:29.522976, Mean_Motion : 1.00271335, Eccentricity : 0.0057563, Inclination : 2.8155, Ra_Of_Asc_Node : 28.9568, Arg_Of_Pericenter : 356.9021, Mean_Anomaly : 71.2041, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38093, Element_Set_No : 999, Rev_At_Epoch : 3669, Bstar : 0, Mean_Motion_Dot : -1.37E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 22 (IS-22)", + "expanded": "INTELSAT 22 (IS-22)", + "numerical_value": 1193, + "description": "Object_Id : 2012-011A, Epoch : 2022-02-26T03:12:42.741792, Mean_Motion : 1.00272394, Eccentricity : 0.0002735, Inclination : 0.023, Ra_Of_Asc_Node : 109.3349, Arg_Of_Pericenter : 229.8969, Mean_Anomaly : 296.9846, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38098, Element_Set_No : 999, Rev_At_Epoch : 3628, Bstar : 0, Mean_Motion_Dot : -7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "APSTAR 7", + "expanded": "APSTAR 7", + "numerical_value": 1194, + "description": "Object_Id : 2012-013A, Epoch : 2022-02-25T20:41:33.762912, Mean_Motion : 1.00271124, Eccentricity : 0.0003121, Inclination : 0.0119, Ra_Of_Asc_Node : 129.3833, Arg_Of_Pericenter : 241.7759, Mean_Anomaly : 171.4034, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38107, Element_Set_No : 999, Rev_At_Epoch : 3604, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "YAHSAT 1B", + "expanded": "YAHSAT 1B", + "numerical_value": 1195, + "description": "Object_Id : 2012-016A, Epoch : 2022-02-25T22:04:42.678624, Mean_Motion : 1.00271878, Eccentricity : 0.0002291, Inclination : 0.0112, Ra_Of_Asc_Node : 142.1382, Arg_Of_Pericenter : 208.1108, Mean_Anomaly : 184.2509, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38245, Element_Set_No : 999, Rev_At_Epoch : 2983, Bstar : 0, Mean_Motion_Dot : 1.16E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AEHF-2 (USA 235)", + "expanded": "AEHF-2 (USA 235)", + "numerical_value": 1196, + "description": "Object_Id : 2012-019A, Epoch : 2022-02-25T14:42:28.281312, Mean_Motion : 1.00270092, Eccentricity : 0.0003876, Inclination : 3.1147, Ra_Of_Asc_Node : 59.885, Arg_Of_Pericenter : 271.816, Mean_Anomaly : 310.1257, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38254, Element_Set_No : 999, Rev_At_Epoch : 3508, Bstar : 0, Mean_Motion_Dot : -1.68E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-13", + "expanded": "JCSAT-13", + "numerical_value": 1197, + "description": "Object_Id : 2012-023A, Epoch : 2022-02-26T00:21:56.562336, Mean_Motion : 1.00271002, Eccentricity : 0.0002381, Inclination : 0.0402, Ra_Of_Asc_Node : 268.5414, Arg_Of_Pericenter : 114.2103, Mean_Anomaly : 262.555, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38331, Element_Set_No : 999, Rev_At_Epoch : 3580, Bstar : 0, Mean_Motion_Dot : -3.6699999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "VINASAT-2", + "expanded": "VINASAT-2", + "numerical_value": 1198, + "description": "Object_Id : 2012-023B, Epoch : 2022-02-26T00:24:12.204288, Mean_Motion : 1.00272035, Eccentricity : 0.0002263, Inclination : 0.0458, Ra_Of_Asc_Node : 296.9455, Arg_Of_Pericenter : 65.5823, Mean_Anomaly : 291.1818, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38332, Element_Set_No : 999, Rev_At_Epoch : 3585, Bstar : 0, Mean_Motion_Dot : -3.3999999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "NIMIQ 6", + "expanded": "NIMIQ 6", + "numerical_value": 1199, + "description": "Object_Id : 2012-026A, Epoch : 2022-02-26T02:46:52.699872, Mean_Motion : 1.00270845, Eccentricity : 0.0002465, Inclination : 0.0558, Ra_Of_Asc_Node : 291.6072, Arg_Of_Pericenter : 56.8535, Mean_Anomaly : 118.0836, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38342, Element_Set_No : 999, Rev_At_Epoch : 3583, Bstar : 0, Mean_Motion_Dot : -1.85E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 2A (ZX 2A)", + "expanded": "CHINASAT 2A (ZX 2A)", + "numerical_value": 1200, + "description": "Object_Id : 2012-028A, Epoch : 2022-02-26T01:57:53.797824, Mean_Motion : 1.00270496, Eccentricity : 0.0002779, Inclination : 0.0147, Ra_Of_Asc_Node : 138.5382, Arg_Of_Pericenter : 234.5781, Mean_Anomaly : 270.4908, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38352, Element_Set_No : 999, Rev_At_Epoch : 3587, Bstar : 0, Mean_Motion_Dot : -3.03E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 19 (IS-19)", + "expanded": "INTELSAT 19 (IS-19)", + "numerical_value": 1201, + "description": "Object_Id : 2012-030A, Epoch : 2022-02-25T21:07:18.573312, Mean_Motion : 1.00270637, Eccentricity : 0.0002815, Inclination : 0.0244, Ra_Of_Asc_Node : 130.9194, Arg_Of_Pericenter : 216.0997, Mean_Anomaly : 291.5111, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38356, Element_Set_No : 999, Rev_At_Epoch : 3574, Bstar : 0, Mean_Motion_Dot : -6.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 17", + "expanded": "ECHOSTAR 17", + "numerical_value": 1202, + "description": "Object_Id : 2012-035A, Epoch : 2022-02-26T02:42:13.881024, Mean_Motion : 1.00271623, Eccentricity : 0.0001844, Inclination : 0.0186, Ra_Of_Asc_Node : 127.8261, Arg_Of_Pericenter : 200.3341, Mean_Anomaly : 121.2043, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38551, Element_Set_No : 999, Rev_At_Epoch : 3536, Bstar : 0, Mean_Motion_Dot : -8.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "METEOSAT-10 (MSG-3)", + "expanded": "METEOSAT-10 (MSG-3)", + "numerical_value": 1203, + "description": "Object_Id : 2012-035B, Epoch : 2022-02-25T20:22:13.272672, Mean_Motion : 1.00268563, Eccentricity : 8.45E-05, Inclination : 1.3761, Ra_Of_Asc_Node : 33.6637, Arg_Of_Pericenter : 234.1112, Mean_Anomaly : 202.6726, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38552, Element_Set_No : 999, Rev_At_Epoch : 3509, Bstar : 0, Mean_Motion_Dot : 5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-5", + "expanded": "SES-5", + "numerical_value": 1204, + "description": "Object_Id : 2012-036A, Epoch : 2022-02-26T03:14:23.007264, Mean_Motion : 1.00271866, Eccentricity : 0.0001778, Inclination : 0.0597, Ra_Of_Asc_Node : 298.1531, Arg_Of_Pericenter : 39.181, Mean_Anomaly : 232.1702, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38652, Element_Set_No : 999, Rev_At_Epoch : 3530, Bstar : 0, Mean_Motion_Dot : 2.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANLIAN 1-03", + "expanded": "TIANLIAN 1-03", + "numerical_value": 1205, + "description": "Object_Id : 2012-040A, Epoch : 2022-02-25T22:08:46.443264, Mean_Motion : 1.002701, Eccentricity : 0.000656, Inclination : 1.7328999999999999, Ra_Of_Asc_Node : 92.8932, Arg_Of_Pericenter : 309.518, Mean_Anomaly : 105.8783, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38730, Element_Set_No : 999, Rev_At_Epoch : 3522, Bstar : 0, Mean_Motion_Dot : 1.1299999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 20 (IS-20)", + "expanded": "INTELSAT 20 (IS-20)", + "numerical_value": 1206, + "description": "Object_Id : 2012-043A, Epoch : 2022-02-26T04:45:42.771744, Mean_Motion : 1.00272671, Eccentricity : 0.0001594, Inclination : 0.0226, Ra_Of_Asc_Node : 130.2324, Arg_Of_Pericenter : 68.2333, Mean_Anomaly : 97.449, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38740, Element_Set_No : 999, Rev_At_Epoch : 3506, Bstar : 0, Mean_Motion_Dot : -3.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "HYLAS 2", + "expanded": "HYLAS 2", + "numerical_value": 1207, + "description": "Object_Id : 2012-043B, Epoch : 2022-02-26T03:21:55.147104, Mean_Motion : 1.00271719, Eccentricity : 0.0001719, Inclination : 0.0538, Ra_Of_Asc_Node : 285.4059, Arg_Of_Pericenter : 63.3036, Mean_Anomaly : 248.7421, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38741, Element_Set_No : 999, Rev_At_Epoch : 3508, Bstar : 0, Mean_Motion_Dot : 1.4299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 21 (IS-21)", + "expanded": "INTELSAT 21 (IS-21)", + "numerical_value": 1208, + "description": "Object_Id : 2012-045A, Epoch : 2022-02-26T02:56:17.874240, Mean_Motion : 1.00271571, Eccentricity : 0.0001833, Inclination : 0.0122, Ra_Of_Asc_Node : 110.9399, Arg_Of_Pericenter : 233.6819, Mean_Anomaly : 157.3822, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38749, Element_Set_No : 999, Rev_At_Epoch : 3487, Bstar : 0, Mean_Motion_Dot : -2.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 2F", + "expanded": "ASTRA 2F", + "numerical_value": 1209, + "description": "Object_Id : 2012-051A, Epoch : 2022-02-26T03:21:02.397312, Mean_Motion : 1.00275637, Eccentricity : 0.000205, Inclination : 0.0902, Ra_Of_Asc_Node : 252.2199, Arg_Of_Pericenter : 24.0641, Mean_Anomaly : 318.1388, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38778, Element_Set_No : 999, Rev_At_Epoch : 3452, Bstar : 0, Mean_Motion_Dot : 1.39E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-10", + "expanded": "GSAT-10", + "numerical_value": 1210, + "description": "Object_Id : 2012-051B, Epoch : 2022-02-25T21:40:14.691648, Mean_Motion : 1.00271293, Eccentricity : 0.0002097, Inclination : 0.1094, Ra_Of_Asc_Node : 270.4648, Arg_Of_Pericenter : 339.8128, Mean_Anomaly : 313.5266, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38779, Element_Set_No : 999, Rev_At_Epoch : 3435, Bstar : 0, Mean_Motion_Dot : -1.75E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 23 (IS-23)", + "expanded": "INTELSAT 23 (IS-23)", + "numerical_value": 1211, + "description": "Object_Id : 2012-057A, Epoch : 2022-02-26T02:57:48.301344, Mean_Motion : 1.00270773, Eccentricity : 8.16E-05, Inclination : 0.0206, Ra_Of_Asc_Node : 207.14, Arg_Of_Pericenter : 118.0832, Mean_Anomaly : 182.1657, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38867, Element_Set_No : 999, Rev_At_Epoch : 3434, Bstar : 0, Mean_Motion_Dot : -2.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 16", + "expanded": "BEIDOU 16", + "numerical_value": 1212, + "description": "Object_Id : 2012-059A, Epoch : 2022-02-25T21:40:14.691648, Mean_Motion : 1.00267744, Eccentricity : 0.0013293, Inclination : 1.7124000000000001, Ra_Of_Asc_Node : 84.6207, Arg_Of_Pericenter : 286.3352, Mean_Anomaly : 193.7331, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38953, Element_Set_No : 999, Rev_At_Epoch : 3414, Bstar : 0, Mean_Motion_Dot : -1.8399999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCH 5B", + "expanded": "LUCH 5B", + "numerical_value": 1213, + "description": "Object_Id : 2012-061A, Epoch : 2022-02-25T18:31:35.895072, Mean_Motion : 1.00270725, Eccentricity : 0.0001397, Inclination : 7.0502, Ra_Of_Asc_Node : 63.441, Arg_Of_Pericenter : 329.0248, Mean_Anomaly : 24.6527, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38977, Element_Set_No : 999, Rev_At_Epoch : 3440, Bstar : 0, Mean_Motion_Dot : -1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "YAMAL 300K", + "expanded": "YAMAL 300K", + "numerical_value": 1214, + "description": "Object_Id : 2012-061B, Epoch : 2022-02-25T19:28:50.623392, Mean_Motion : 1.00270269, Eccentricity : 4.13E-05, Inclination : 0.0149, Ra_Of_Asc_Node : 164.9424, Arg_Of_Pericenter : 27.5779, Mean_Anomaly : 78.2735, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38978, Element_Set_No : 999, Rev_At_Epoch : 3386, Bstar : 0, Mean_Motion_Dot : 6.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "STAR ONE C3", + "expanded": "STAR ONE C3", + "numerical_value": 1215, + "description": "Object_Id : 2012-062A, Epoch : 2022-02-26T02:51:31.518720, Mean_Motion : 1.00270931, Eccentricity : 0.0002126, Inclination : 0.0278, Ra_Of_Asc_Node : 265.1308, Arg_Of_Pericenter : 90.2652, Mean_Anomaly : 128.4204, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38991, Element_Set_No : 999, Rev_At_Epoch : 3409, Bstar : 0, Mean_Motion_Dot : -2.6E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 21B", + "expanded": "EUTELSAT 21B", + "numerical_value": 1216, + "description": "Object_Id : 2012-062B, Epoch : 2022-02-26T03:19:09.361920, Mean_Motion : 1.00269279, Eccentricity : 0.0002477, Inclination : 0.0686, Ra_Of_Asc_Node : 357.4598, Arg_Of_Pericenter : 343.0012, Mean_Anomaly : 246.8583, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 38992, Element_Set_No : 999, Rev_At_Epoch : 3410, Bstar : 0, Mean_Motion_Dot : 1.18E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 16", + "expanded": "ECHOSTAR 16", + "numerical_value": 1217, + "description": "Object_Id : 2012-065A, Epoch : 2022-02-26T01:12:03.284928, Mean_Motion : 1.00270801, Eccentricity : 0.0001893, Inclination : 0.0135, Ra_Of_Asc_Node : 128.9804, Arg_Of_Pericenter : 204.8123, Mean_Anomaly : 138.568, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39008, Element_Set_No : 999, Rev_At_Epoch : 3404, Bstar : 0, Mean_Motion_Dot : -2.93E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 12 (ZX 12)", + "expanded": "CHINASAT 12 (ZX 12)", + "numerical_value": 1218, + "description": "Object_Id : 2012-067A, Epoch : 2022-02-26T03:38:07.245600, Mean_Motion : 1.00272899, Eccentricity : 0.0002578, Inclination : 0.0108, Ra_Of_Asc_Node : 139.0607, Arg_Of_Pericenter : 210.0655, Mean_Anomaly : 308.8512, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39017, Element_Set_No : 999, Rev_At_Epoch : 3394, Bstar : 0, Mean_Motion_Dot : -2.18E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 70B", + "expanded": "EUTELSAT 70B", + "numerical_value": 1219, + "description": "Object_Id : 2012-069A, Epoch : 2022-02-26T03:17:42.707040, Mean_Motion : 1.00271317, Eccentricity : 0.0003992, Inclination : 0.0684, Ra_Of_Asc_Node : 343.2223, Arg_Of_Pericenter : 269.8544, Mean_Anomaly : 22.7783, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39020, Element_Set_No : 999, Rev_At_Epoch : 3384, Bstar : 0, Mean_Motion_Dot : -5.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "YAMAL 402", + "expanded": "YAMAL 402", + "numerical_value": 1220, + "description": "Object_Id : 2012-070A, Epoch : 2022-02-25T20:35:24.516096, Mean_Motion : 1.00273217, Eccentricity : 0.0003597, Inclination : 0.0102, Ra_Of_Asc_Node : 153.6156, Arg_Of_Pericenter : 196.0347, Mean_Anomaly : 169.7786, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39022, Element_Set_No : 999, Rev_At_Epoch : 3383, Bstar : 0, Mean_Motion_Dot : 7.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SKYNET 5D", + "expanded": "SKYNET 5D", + "numerical_value": 1221, + "description": "Object_Id : 2012-075A, Epoch : 2022-02-26T03:28:04.394784, Mean_Motion : 1.00268628, Eccentricity : 0.0003839, Inclination : 0.0726, Ra_Of_Asc_Node : 358.2334, Arg_Of_Pericenter : 343.4702, Mean_Anomaly : 279.0137, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39034, Element_Set_No : 999, Rev_At_Epoch : 3375, Bstar : 0, Mean_Motion_Dot : 8.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "MEXSAT 3", + "expanded": "MEXSAT 3", + "numerical_value": 1222, + "description": "Object_Id : 2012-075B, Epoch : 2022-02-25T15:11:50.144928, Mean_Motion : 1.00271166, Eccentricity : 0.0001769, Inclination : 0.0237, Ra_Of_Asc_Node : 116.5412, Arg_Of_Pericenter : 245.0976, Mean_Anomaly : 266.9862, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39035, Element_Set_No : 999, Rev_At_Epoch : 3341, Bstar : 0, Mean_Motion_Dot : -3.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 11", + "expanded": "TDRS 11", + "numerical_value": 1223, + "description": "Object_Id : 2013-004A, Epoch : 2022-02-25T19:29:35.835648, Mean_Motion : 1.00274903, Eccentricity : 0.0006036, Inclination : 3.0368, Ra_Of_Asc_Node : 343.0262, Arg_Of_Pericenter : 45.4713, Mean_Anomaly : 245.1081, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39070, Element_Set_No : 999, Rev_At_Epoch : 3092, Bstar : 0, Mean_Motion_Dot : 7.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMAZONAS 3", + "expanded": "AMAZONAS 3", + "numerical_value": 1224, + "description": "Object_Id : 2013-006A, Epoch : 2022-02-25T20:02:07.569312, Mean_Motion : 1.00272715, Eccentricity : 0.0002781, Inclination : 0.0486, Ra_Of_Asc_Node : 246.0133, Arg_Of_Pericenter : 53.3145, Mean_Anomaly : 95.8682, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39078, Element_Set_No : 999, Rev_At_Epoch : 2913, Bstar : 0, Mean_Motion_Dot : -2.92E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AZERSPACE 1", + "expanded": "AZERSPACE 1", + "numerical_value": 1225, + "description": "Object_Id : 2013-006B, Epoch : 2022-02-26T03:26:11.359392, Mean_Motion : 1.00268385, Eccentricity : 0.0001151, Inclination : 0.0276, Ra_Of_Asc_Node : 121.4855, Arg_Of_Pericenter : 214.8833, Mean_Anomaly : 277.1597, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39079, Element_Set_No : 999, Rev_At_Epoch : 3316, Bstar : 0, Mean_Motion_Dot : 1.22E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SBIRS GEO-2 (USA 241)", + "expanded": "SBIRS GEO-2 (USA 241)", + "numerical_value": 1226, + "description": "Object_Id : 2013-011A, Epoch : 2022-02-25T21:39:42.715872, Mean_Motion : 1.00272437, Eccentricity : 0.0001942, Inclination : 1.8982999999999999, Ra_Of_Asc_Node : 15.8229, Arg_Of_Pericenter : 319.371, Mean_Anomaly : 166.143, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39120, Element_Set_No : 999, Rev_At_Epoch : 3277, Bstar : 0, Mean_Motion_Dot : 1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 117 WEST A", + "expanded": "EUTELSAT 117 WEST A", + "numerical_value": 1227, + "description": "Object_Id : 2013-012A, Epoch : 2022-02-25T15:10:18.180768, Mean_Motion : 1.00271278, Eccentricity : 0.0002827, Inclination : 0.0667, Ra_Of_Asc_Node : 293.1663, Arg_Of_Pericenter : 47.6143, Mean_Anomaly : 285.4321, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39122, Element_Set_No : 999, Rev_At_Epoch : 3267, Bstar : 0, Mean_Motion_Dot : -2.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ANIK G1", + "expanded": "ANIK G1", + "numerical_value": 1228, + "description": "Object_Id : 2013-014A, Epoch : 2022-02-26T02:42:13.881024, Mean_Motion : 1.00271069, Eccentricity : 0.0001816, Inclination : 0.0217, Ra_Of_Asc_Node : 211.9126, Arg_Of_Pericenter : 79.8865, Mean_Anomaly : 157.3704, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39127, Element_Set_No : 999, Rev_At_Epoch : 3248, Bstar : 0, Mean_Motion_Dot : -8.499999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 11 (ZX 11)", + "expanded": "CHINASAT 11 (ZX 11)", + "numerical_value": 1229, + "description": "Object_Id : 2013-020A, Epoch : 2022-02-26T06:48:31.705056, Mean_Motion : 1.00271299, Eccentricity : 0.0001508, Inclination : 0.0114, Ra_Of_Asc_Node : 196.0194, Arg_Of_Pericenter : 147.63, Mean_Anomaly : 12.468, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39157, Element_Set_No : 999, Rev_At_Epoch : 3238, Bstar : 0, Mean_Motion_Dot : -3.02E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 7B", + "expanded": "EUTELSAT 7B", + "numerical_value": 1230, + "description": "Object_Id : 2013-022A, Epoch : 2022-02-25T22:12:42.578784, Mean_Motion : 1.00272289, Eccentricity : 0.0005689, Inclination : 0.0697, Ra_Of_Asc_Node : 349.7246, Arg_Of_Pericenter : 4.6449, Mean_Anomaly : 141.5266, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39163, Element_Set_No : 999, Rev_At_Epoch : 3221, Bstar : 0, Mean_Motion_Dot : 3.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F5 (USA 243)", + "expanded": "WGS F5 (USA 243)", + "numerical_value": 1231, + "description": "Object_Id : 2013-024A, Epoch : 2022-02-25T20:04:30.747072, Mean_Motion : 1.00270911, Eccentricity : 5.43E-05, Inclination : 0.0158, Ra_Of_Asc_Node : 131.1186, Arg_Of_Pericenter : 315.0228, Mean_Anomaly : 318.1206, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39168, Element_Set_No : 999, Rev_At_Epoch : 3140, Bstar : 0, Mean_Motion_Dot : -2.94E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-6", + "expanded": "SES-6", + "numerical_value": 1232, + "description": "Object_Id : 2013-026A, Epoch : 2022-02-25T20:08:01.745376, Mean_Motion : 1.00271849, Eccentricity : 0.0002121, Inclination : 0.0583, Ra_Of_Asc_Node : 297.6338, Arg_Of_Pericenter : 50.4601, Mean_Anomaly : 69.0584, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39172, Element_Set_No : 999, Rev_At_Epoch : 3195, Bstar : 0, Mean_Motion_Dot : -2.71E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1A", + "expanded": "IRNSS-1A", + "numerical_value": 1233, + "description": "Object_Id : 2013-034A, Epoch : 2022-02-25T15:25:40.543104, Mean_Motion : 1.00277153, Eccentricity : 0.0019473, Inclination : 32.1794, Ra_Of_Asc_Node : 87.0846, Arg_Of_Pericenter : 188.9332, Mean_Anomaly : 166.0106, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39199, Element_Set_No : 999, Rev_At_Epoch : 3159, Bstar : 0, Mean_Motion_Dot : 7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "MUOS-2", + "expanded": "MUOS-2", + "numerical_value": 1234, + "description": "Object_Id : 2013-036A, Epoch : 2022-02-25T19:28:58.158336, Mean_Motion : 1.00274234, Eccentricity : 0.0049642, Inclination : 2.6228, Ra_Of_Asc_Node : 19.2468, Arg_Of_Pericenter : 183.3836, Mean_Anomaly : 68.2376, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39206, Element_Set_No : 999, Rev_At_Epoch : 3142, Bstar : 0, Mean_Motion_Dot : 5.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ALPHASAT", + "expanded": "ALPHASAT", + "numerical_value": 1235, + "description": "Object_Id : 2013-038A, Epoch : 2022-02-25T20:26:44.555712, Mean_Motion : 1.00270489, Eccentricity : 0.0001717, Inclination : 2.6701, Ra_Of_Asc_Node : 14.6752, Arg_Of_Pericenter : 332.502, Mean_Anomaly : 140.014, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39215, Element_Set_No : 999, Rev_At_Epoch : 2825, Bstar : 0, Mean_Motion_Dot : 1.26E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INSAT-3D", + "expanded": "INSAT-3D", + "numerical_value": 1236, + "description": "Object_Id : 2013-038B, Epoch : 2022-02-26T01:53:14.978976, Mean_Motion : 1.00272243, Eccentricity : 0.0001156, Inclination : 0.0788, Ra_Of_Asc_Node : 275.9027, Arg_Of_Pericenter : 98.1803, Mean_Anomaly : 252.175, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39216, Element_Set_No : 999, Rev_At_Epoch : 3153, Bstar : 0, Mean_Motion_Dot : -1.6699999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F6 (USA 244)", + "expanded": "WGS F6 (USA 244)", + "numerical_value": 1237, + "description": "Object_Id : 2013-041A, Epoch : 2022-02-26T02:34:11.601408, Mean_Motion : 1.00271736, Eccentricity : 1.6400000000000002E-05, Inclination : 0.0182, Ra_Of_Asc_Node : 137.5087, Arg_Of_Pericenter : 338.7948, Mean_Anomaly : 302.9383, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39222, Element_Set_No : 999, Rev_At_Epoch : 3130, Bstar : 0, Mean_Motion_Dot : 7.799999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ES'HAIL 1", + "expanded": "ES'HAIL 1", + "numerical_value": 1238, + "description": "Object_Id : 2013-044A, Epoch : 2022-02-25T21:31:42.815712, Mean_Motion : 1.00272674, Eccentricity : 0.0001286, Inclination : 0.0534, Ra_Of_Asc_Node : 11.3887, Arg_Of_Pericenter : 324.9354, Mean_Anomaly : 167.7737, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39233, Element_Set_No : 999, Rev_At_Epoch : 3087, Bstar : 0, Mean_Motion_Dot : 1.33E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-7", + "expanded": "GSAT-7", + "numerical_value": 1239, + "description": "Object_Id : 2013-044B, Epoch : 2022-02-25T21:59:12.831072, Mean_Motion : 1.00271551, Eccentricity : 0.0008211, Inclination : 0.0585, Ra_Of_Asc_Node : 272.2372, Arg_Of_Pericenter : 13.093, Mean_Anomaly : 274.1841, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39234, Element_Set_No : 999, Rev_At_Epoch : 2956, Bstar : 0, Mean_Motion_Dot : -8.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMOS-4", + "expanded": "AMOS-4", + "numerical_value": 1240, + "description": "Object_Id : 2013-045A, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00271544, Eccentricity : 0.0003001, Inclination : 0.0529, Ra_Of_Asc_Node : 271.3657, Arg_Of_Pericenter : 71.0423, Mean_Anomaly : 289.1931, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39237, Element_Set_No : 999, Rev_At_Epoch : 3112, Bstar : 0, Mean_Motion_Dot : -4E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "AEHF-3 (USA 246)", + "expanded": "AEHF-3 (USA 246)", + "numerical_value": 1241, + "description": "Object_Id : 2013-050A, Epoch : 2022-02-25T17:51:47.094912, Mean_Motion : 1.00276236, Eccentricity : 0.0055023, Inclination : 1.4425, Ra_Of_Asc_Node : 69.2378, Arg_Of_Pericenter : 188.8443, Mean_Anomaly : 10.3915, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39256, Element_Set_No : 999, Rev_At_Epoch : 2990, Bstar : 0, Mean_Motion_Dot : 1.2499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 2E", + "expanded": "ASTRA 2E", + "numerical_value": 1242, + "description": "Object_Id : 2013-056A, Epoch : 2022-02-25T21:31:42.815712, Mean_Motion : 1.00272425, Eccentricity : 0.0003063, Inclination : 0.0666, Ra_Of_Asc_Node : 335.3784, Arg_Of_Pericenter : 357.5964, Mean_Anomaly : 174.1093, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39285, Element_Set_No : 999, Rev_At_Epoch : 3067, Bstar : 0, Mean_Motion_Dot : 1.4E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FM-6", + "expanded": "FM-6", + "numerical_value": 1243, + "description": "Object_Id : 2013-058A, Epoch : 2022-02-26T02:39:35.634240, Mean_Motion : 1.0027271, Eccentricity : 3.88E-05, Inclination : 0.0357, Ra_Of_Asc_Node : 265.6781, Arg_Of_Pericenter : 324.9191, Mean_Anomaly : 209.0531, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39360, Element_Set_No : 999, Rev_At_Epoch : 3058, Bstar : 0, Mean_Motion_Dot : -2.7999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "RADUGA-1M 3", + "expanded": "RADUGA-1M 3", + "numerical_value": 1244, + "description": "Object_Id : 2013-062A, Epoch : 2022-02-25T15:19:38.832096, Mean_Motion : 1.00274055, Eccentricity : 0.0003862, Inclination : 1.9534, Ra_Of_Asc_Node : 91.1584, Arg_Of_Pericenter : 89.8857, Mean_Anomaly : 239.3174, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39375, Element_Set_No : 999, Rev_At_Epoch : 3035, Bstar : 0, Mean_Motion_Dot : 1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-8", + "expanded": "SES-8", + "numerical_value": 1245, + "description": "Object_Id : 2013-071A, Epoch : 2022-02-25T20:46:50.259936, Mean_Motion : 1.00272212, Eccentricity : 0.0001746, Inclination : 0.0463, Ra_Of_Asc_Node : 261.2951, Arg_Of_Pericenter : 124.6491, Mean_Anomaly : 176.4391, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39460, Element_Set_No : 999, Rev_At_Epoch : 2866, Bstar : 0, Mean_Motion_Dot : -2.8E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 5-F1", + "expanded": "INMARSAT 5-F1", + "numerical_value": 1246, + "description": "Object_Id : 2013-073A, Epoch : 2022-02-25T17:09:23.338080, Mean_Motion : 1.00271282, Eccentricity : 1.63E-05, Inclination : 0.0174, Ra_Of_Asc_Node : 128.8906, Arg_Of_Pericenter : 90.3573, Mean_Anomaly : 256.2282, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39476, Element_Set_No : 999, Rev_At_Epoch : 2982, Bstar : 0, Mean_Motion_Dot : 1.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TKSAT-1 (TUPAC KATARI)", + "expanded": "TKSAT-1 (TUPAC KATARI)", + "numerical_value": 1247, + "description": "Object_Id : 2013-075A, Epoch : 2022-02-26T02:48:00.522144, Mean_Motion : 1.00269457, Eccentricity : 0.0002906, Inclination : 0.0071, Ra_Of_Asc_Node : 294.4351, Arg_Of_Pericenter : 50.4418, Mean_Anomaly : 125.8238, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39481, Element_Set_No : 999, Rev_At_Epoch : 3008, Bstar : 0, Mean_Motion_Dot : -2.0599999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AM5", + "expanded": "EXPRESS-AM5", + "numerical_value": 1248, + "description": "Object_Id : 2013-077A, Epoch : 2022-02-26T04:50:31.111872, Mean_Motion : 1.00270354, Eccentricity : 9.380000000000002E-05, Inclination : 0.0343, Ra_Of_Asc_Node : 297.8334, Arg_Of_Pericenter : 124.6541, Mean_Anomaly : 306.1572, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39487, Element_Set_No : 999, Rev_At_Epoch : 3059, Bstar : 0, Mean_Motion_Dot : -2.92E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-14", + "expanded": "GSAT-14", + "numerical_value": 1249, + "description": "Object_Id : 2014-001A, Epoch : 2022-02-26T03:34:13.640736, Mean_Motion : 1.00270998, Eccentricity : 0.0004553, Inclination : 0.0851, Ra_Of_Asc_Node : 269.9902, Arg_Of_Pericenter : 17.2622, Mean_Anomaly : 356.2667, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39498, Element_Set_No : 999, Rev_At_Epoch : 2981, Bstar : 0, Mean_Motion_Dot : -8.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "THAICOM 6", + "expanded": "THAICOM 6", + "numerical_value": 1250, + "description": "Object_Id : 2014-002A, Epoch : 2022-02-26T03:35:36.533760, Mean_Motion : 1.0027003, Eccentricity : 0.0001579, Inclination : 0.057, Ra_Of_Asc_Node : 124.7214, Arg_Of_Pericenter : 301.0879, Mean_Anomaly : 222.5755, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39500, Element_Set_No : 999, Rev_At_Epoch : 2975, Bstar : 0, Mean_Motion_Dot : -1.32E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 12", + "expanded": "TDRS 12", + "numerical_value": 1251, + "description": "Object_Id : 2014-004A, Epoch : 2022-02-25T18:24:33.899328, Mean_Motion : 1.00268119, Eccentricity : 0.0002614, Inclination : 3.9592, Ra_Of_Asc_Node : 345.4006, Arg_Of_Pericenter : 67.6982, Mean_Anomaly : 337.6944, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39504, Element_Set_No : 999, Rev_At_Epoch : 2851, Bstar : 0, Mean_Motion_Dot : -2.74E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ABS-2", + "expanded": "ABS-2", + "numerical_value": 1252, + "description": "Object_Id : 2014-006A, Epoch : 2022-02-26T03:34:28.713216, Mean_Motion : 1.00271007, Eccentricity : 0.0003759, Inclination : 0.0565, Ra_Of_Asc_Node : 304.5333, Arg_Of_Pericenter : 38.0128, Mean_Anomaly : 301.9439, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39508, Element_Set_No : 999, Rev_At_Epoch : 2955, Bstar : 0, Mean_Motion_Dot : -9.699999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ATHENA-FIDUS", + "expanded": "ATHENA-FIDUS", + "numerical_value": 1253, + "description": "Object_Id : 2014-006B, Epoch : 2022-02-26T03:23:48.180768, Mean_Motion : 1.00269412, Eccentricity : 0.000119, Inclination : 0.011, Ra_Of_Asc_Node : 187.9567, Arg_Of_Pericenter : 183.559, Mean_Anomaly : 233.1744, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39509, Element_Set_No : 999, Rev_At_Epoch : 2973, Bstar : 0, Mean_Motion_Dot : 1.4299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TURKSAT 4A", + "expanded": "TURKSAT 4A", + "numerical_value": 1254, + "description": "Object_Id : 2014-007A, Epoch : 2022-02-25T21:06:50.057856, Mean_Motion : 1.00271349, Eccentricity : 0.00038, Inclination : 0.0654, Ra_Of_Asc_Node : 275.2659, Arg_Of_Pericenter : 32.4887, Mean_Anomaly : 206.6158, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39522, Element_Set_No : 999, Rev_At_Epoch : 2922, Bstar : 0, Mean_Motion_Dot : 1.36E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AT1", + "expanded": "EXPRESS-AT1", + "numerical_value": 1255, + "description": "Object_Id : 2014-010A, Epoch : 2022-02-26T00:02:21.001344, Mean_Motion : 1.00271411, Eccentricity : 8.36E-05, Inclination : 0.0409, Ra_Of_Asc_Node : 298.6212, Arg_Of_Pericenter : 153.0316, Mean_Anomaly : 120.7371, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39612, Element_Set_No : 999, Rev_At_Epoch : 2928, Bstar : 0, Mean_Motion_Dot : 6.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AT2", + "expanded": "EXPRESS-AT2", + "numerical_value": 1256, + "description": "Object_Id : 2014-010B, Epoch : 2022-02-26T06:17:58.994304, Mean_Motion : 1.00270166, Eccentricity : 3.61E-05, Inclination : 0.0417, Ra_Of_Asc_Node : 292.3339, Arg_Of_Pericenter : 165.1121, Mean_Anomaly : 292.9565, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39613, Element_Set_No : 999, Rev_At_Epoch : 2912, Bstar : 0, Mean_Motion_Dot : -2.94E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMAZONAS 4A", + "expanded": "AMAZONAS 4A", + "numerical_value": 1257, + "description": "Object_Id : 2014-011A, Epoch : 2022-02-26T02:51:46.590336, Mean_Motion : 1.00270284, Eccentricity : 0.000273, Inclination : 0.082, Ra_Of_Asc_Node : 88.1388, Arg_Of_Pericenter : 252.6051, Mean_Anomaly : 144.1025, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39616, Element_Set_No : 999, Rev_At_Epoch : 2910, Bstar : 0, Mean_Motion_Dot : -2.64E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 5B", + "expanded": "ASTRA 5B", + "numerical_value": 1258, + "description": "Object_Id : 2014-011B, Epoch : 2022-02-25T20:55:04.374624, Mean_Motion : 1.00271364, Eccentricity : 0.0003212, Inclination : 0.0669, Ra_Of_Asc_Node : 306.5882, Arg_Of_Pericenter : 16.8903, Mean_Anomaly : 177.4349, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39617, Element_Set_No : 999, Rev_At_Epoch : 2890, Bstar : 0, Mean_Motion_Dot : 1.44E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1B", + "expanded": "IRNSS-1B", + "numerical_value": 1259, + "description": "Object_Id : 2014-017A, Epoch : 2022-02-25T15:25:33.009024, Mean_Motion : 1.00274649, Eccentricity : 0.0019555, Inclination : 28.9695, Ra_Of_Asc_Node : 266.965, Arg_Of_Pericenter : 176.2871, Mean_Anomaly : 358.6718, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39635, Element_Set_No : 999, Rev_At_Epoch : 2902, Bstar : 0, Mean_Motion_Dot : 1.2E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCH 5V", + "expanded": "LUCH 5V", + "numerical_value": 1260, + "description": "Object_Id : 2014-023A, Epoch : 2022-02-25T20:46:50.259936, Mean_Motion : 1.00272058, Eccentricity : 0.0002613, Inclination : 1.2396, Ra_Of_Asc_Node : 73.0277, Arg_Of_Pericenter : 315.9442, Mean_Anomaly : 173.1541, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39727, Element_Set_No : 999, Rev_At_Epoch : 2859, Bstar : 0, Mean_Motion_Dot : -2.79E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "KAZSAT-3", + "expanded": "KAZSAT-3", + "numerical_value": 1261, + "description": "Object_Id : 2014-023B, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00271283, Eccentricity : 5.39E-05, Inclination : 0.0095, Ra_Of_Asc_Node : 154.0791, Arg_Of_Pericenter : 84.4959, Mean_Anomaly : 26.5666, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39728, Element_Set_No : 999, Rev_At_Epoch : 2867, Bstar : 0, Mean_Motion_Dot : 4.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 3B", + "expanded": "EUTELSAT 3B", + "numerical_value": 1262, + "description": "Object_Id : 2014-030A, Epoch : 2022-02-26T03:13:52.865760, Mean_Motion : 1.00270326, Eccentricity : 0.0002651, Inclination : 0.0654, Ra_Of_Asc_Node : 354.3498, Arg_Of_Pericenter : 214.5865, Mean_Anomaly : 358.5631, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 39773, Element_Set_No : 999, Rev_At_Epoch : 2845, Bstar : 0, Mean_Motion_Dot : 8E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "ASIASAT 8 (AMOS-7)", + "expanded": "ASIASAT 8 (AMOS-7)", + "numerical_value": 1263, + "description": "Object_Id : 2014-046A, Epoch : 2022-02-26T02:01:42.705120, Mean_Motion : 1.00267413, Eccentricity : 0.0001625, Inclination : 0.0109, Ra_Of_Asc_Node : 180.4781, Arg_Of_Pericenter : 150.6958, Mean_Anomaly : 211.2482, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40107, Element_Set_No : 999, Rev_At_Epoch : 2773, Bstar : 0, Mean_Motion_Dot : -4.5999999999999994E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASIASAT 6", + "expanded": "ASIASAT 6", + "numerical_value": 1264, + "description": "Object_Id : 2014-052A, Epoch : 2022-02-26T05:30:55.710144, Mean_Motion : 1.00268548, Eccentricity : 2.9E-05, Inclination : 0.0394, Ra_Of_Asc_Node : 288.9739, Arg_Of_Pericenter : 354.7871, Mean_Anomaly : 74.8933, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40141, Element_Set_No : 999, Rev_At_Epoch : 2739, Bstar : 0, Mean_Motion_Dot : -3.74E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "OPTUS 10", + "expanded": "OPTUS 10", + "numerical_value": 1265, + "description": "Object_Id : 2014-054A, Epoch : 2022-02-25T21:04:25.252320, Mean_Motion : 1.00267879, Eccentricity : 0.0001761, Inclination : 0.1149, Ra_Of_Asc_Node : 108.148, Arg_Of_Pericenter : 217.8831, Mean_Anomaly : 301.7776, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40146, Element_Set_No : 999, Rev_At_Epoch : 2735, Bstar : 0, Mean_Motion_Dot : -1.58E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "MEASAT-3B", + "expanded": "MEASAT-3B", + "numerical_value": 1266, + "description": "Object_Id : 2014-054B, Epoch : 2022-02-26T01:55:53.226624, Mean_Motion : 1.002751, Eccentricity : 0.000253, Inclination : 0.0329, Ra_Of_Asc_Node : 314.6766, Arg_Of_Pericenter : 33.4877, Mean_Anomaly : 288.177, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40147, Element_Set_No : 999, Rev_At_Epoch : 2740, Bstar : 0, Mean_Motion_Dot : -2.5300000000000003E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCH (OLYMP)", + "expanded": "LUCH (OLYMP)", + "numerical_value": 1267, + "description": "Object_Id : 2014-058A, Epoch : 2022-02-25T21:59:42.829152, Mean_Motion : 1.00270197, Eccentricity : 3.46E-05, Inclination : 0.0103, Ra_Of_Asc_Node : 146.0067, Arg_Of_Pericenter : 15.4725, Mean_Anomaly : 26.0442, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40258, Element_Set_No : 999, Rev_At_Epoch : 2522, Bstar : 0, Mean_Motion_Dot : 2.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "HIMAWARI-8", + "expanded": "HIMAWARI-8", + "numerical_value": 1268, + "description": "Object_Id : 2014-060A, Epoch : 2022-02-25T10:56:42.529056, Mean_Motion : 1.00270047, Eccentricity : 9.730000000000001E-05, Inclination : 0.0306, Ra_Of_Asc_Node : 263.0164, Arg_Of_Pericenter : 136.11, Mean_Anomaly : 60.9657, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40267, Element_Set_No : 999, Rev_At_Epoch : 2699, Bstar : 0, Mean_Motion_Dot : -2.85E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1C", + "expanded": "IRNSS-1C", + "numerical_value": 1269, + "description": "Object_Id : 2014-061A, Epoch : 2022-02-26T01:53:30.050592, Mean_Motion : 1.00272459, Eccentricity : 0.0017222, Inclination : 2.734, Ra_Of_Asc_Node : 134.0156, Arg_Of_Pericenter : 7.2423, Mean_Anomaly : 126.0584, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40269, Element_Set_No : 999, Rev_At_Epoch : 2706, Bstar : 0, Mean_Motion_Dot : -1.7399999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 30 (IS-30)", + "expanded": "INTELSAT 30 (IS-30)", + "numerical_value": 1270, + "description": "Object_Id : 2014-062A, Epoch : 2022-02-26T02:45:44.880192, Mean_Motion : 1.00270232, Eccentricity : 0.0002456, Inclination : 0.0236, Ra_Of_Asc_Node : 129.6801, Arg_Of_Pericenter : 350.931, Mean_Anomaly : 341.7172, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40271, Element_Set_No : 999, Rev_At_Epoch : 2700, Bstar : 0, Mean_Motion_Dot : -1.62E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ARSAT 1", + "expanded": "ARSAT 1", + "numerical_value": 1271, + "description": "Object_Id : 2014-062B, Epoch : 2022-02-25T19:58:59.177568, Mean_Motion : 1.00271872, Eccentricity : 0.0001215, Inclination : 0.0066, Ra_Of_Asc_Node : 184.4901, Arg_Of_Pericenter : 155.2213, Mean_Anomaly : 43.87, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40272, Element_Set_No : 999, Rev_At_Epoch : 2684, Bstar : 0, Mean_Motion_Dot : -2.6899999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AM6", + "expanded": "EXPRESS-AM6", + "numerical_value": 1272, + "description": "Object_Id : 2014-064A, Epoch : 2022-02-26T03:28:11.928864, Mean_Motion : 1.0027161, Eccentricity : 2.6700000000000002E-05, Inclination : 0.0506, Ra_Of_Asc_Node : 292.2238, Arg_Of_Pericenter : 74.5842, Mean_Anomaly : 254.1882, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40277, Element_Set_No : 999, Rev_At_Epoch : 2690, Bstar : 0, Mean_Motion_Dot : 8.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-16", + "expanded": "GSAT-16", + "numerical_value": 1273, + "description": "Object_Id : 2014-078A, Epoch : 2022-02-26T03:28:49.607904, Mean_Motion : 1.00270152, Eccentricity : 0.0004239, Inclination : 0.1042, Ra_Of_Asc_Node : 270.0071, Arg_Of_Pericenter : 171.212, Mean_Anomaly : 181.9829, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40332, Element_Set_No : 999, Rev_At_Epoch : 2649, Bstar : 0, Mean_Motion_Dot : 7.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 14", + "expanded": "DIRECTV 14", + "numerical_value": 1274, + "description": "Object_Id : 2014-078B, Epoch : 2022-02-25T15:29:54.770784, Mean_Motion : 1.00271439, Eccentricity : 1.83E-05, Inclination : 0.0234, Ra_Of_Asc_Node : 106.3626, Arg_Of_Pericenter : 56.74, Mean_Anomaly : 125.6041, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40333, Element_Set_No : 999, Rev_At_Epoch : 2629, Bstar : 0, Mean_Motion_Dot : -1.34E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "YAMAL 401", + "expanded": "YAMAL 401", + "numerical_value": 1275, + "description": "Object_Id : 2014-082A, Epoch : 2022-02-26T03:38:37.388832, Mean_Motion : 1.00275275, Eccentricity : 9.26E-05, Inclination : 0.0121, Ra_Of_Asc_Node : 164.1877, Arg_Of_Pericenter : 279.4186, Mean_Anomaly : 216.9538, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40345, Element_Set_No : 999, Rev_At_Epoch : 2664, Bstar : 0, Mean_Motion_Dot : -2.4E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 2G", + "expanded": "ASTRA 2G", + "numerical_value": 1276, + "description": "Object_Id : 2014-089A, Epoch : 2022-02-25T21:31:42.815712, Mean_Motion : 1.0027176, Eccentricity : 0.0004173, Inclination : 0.0414, Ra_Of_Asc_Node : 338.9436, Arg_Of_Pericenter : 51.2989, Mean_Anomaly : 116.5599, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40364, Element_Set_No : 999, Rev_At_Epoch : 2620, Bstar : 0, Mean_Motion_Dot : 1.39E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FENGYUN 2G", + "expanded": "FENGYUN 2G", + "numerical_value": 1277, + "description": "Object_Id : 2014-090A, Epoch : 2022-02-25T21:15:17.199072, Mean_Motion : 1.00258364, Eccentricity : 0.0004121, Inclination : 1.6548, Ra_Of_Asc_Node : 90.5249, Arg_Of_Pericenter : 324.1864, Mean_Anomaly : 158.9391, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40367, Element_Set_No : 999, Rev_At_Epoch : 2623, Bstar : 0, Mean_Motion_Dot : -3.0799999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "MUOS-3", + "expanded": "MUOS-3", + "numerical_value": 1278, + "description": "Object_Id : 2015-002A, Epoch : 2022-02-25T20:15:03.741120, Mean_Motion : 1.00271778, Eccentricity : 0.0052212, Inclination : 2.536, Ra_Of_Asc_Node : 8.3399, Arg_Of_Pericenter : 179.283, Mean_Anomaly : 256.3633, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40374, Element_Set_No : 999, Rev_At_Epoch : 2582, Bstar : 0, Mean_Motion_Dot : -1.37E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 5-F2", + "expanded": "INMARSAT 5-F2", + "numerical_value": 1279, + "description": "Object_Id : 2015-005A, Epoch : 2022-02-26T02:57:10.623168, Mean_Motion : 1.00271099, Eccentricity : 2.8E-05, Inclination : 0.0181, Ra_Of_Asc_Node : 131.1834, Arg_Of_Pericenter : 192.6733, Mean_Anomaly : 181.344, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40384, Element_Set_No : 999, Rev_At_Epoch : 2591, Bstar : 0, Mean_Motion_Dot : -2.9699999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ABS-3A", + "expanded": "ABS-3A", + "numerical_value": 1280, + "description": "Object_Id : 2015-010A, Epoch : 2022-02-26T03:12:07.366176, Mean_Motion : 1.0027276, Eccentricity : 0.0002106, Inclination : 0.0179, Ra_Of_Asc_Node : 114.9951, Arg_Of_Pericenter : 149.6681, Mean_Anomaly : 296.3129, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40424, Element_Set_No : 999, Rev_At_Epoch : 2561, Bstar : 0, Mean_Motion_Dot : -3.7999999999999996E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 115 WEST B", + "expanded": "EUTELSAT 115 WEST B", + "numerical_value": 1281, + "description": "Object_Id : 2015-010B, Epoch : 2022-02-26T02:39:58.239936, Mean_Motion : 1.0027319, Eccentricity : 5.230000000000001E-05, Inclination : 0.0128, Ra_Of_Asc_Node : 11.8567, Arg_Of_Pericenter : 312.5578, Mean_Anomaly : 116.5934, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40425, Element_Set_No : 999, Rev_At_Epoch : 2567, Bstar : 0, Mean_Motion_Dot : -3.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AM7", + "expanded": "EXPRESS-AM7", + "numerical_value": 1282, + "description": "Object_Id : 2015-012A, Epoch : 2022-02-26T03:24:25.859808, Mean_Motion : 1.00268361, Eccentricity : 0.000295, Inclination : 0.0231, Ra_Of_Asc_Node : 130.4163, Arg_Of_Pericenter : 197.5044, Mean_Anomaly : 279.1596, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40505, Element_Set_No : 999, Rev_At_Epoch : 2559, Bstar : 0, Mean_Motion_Dot : 1.39E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1D", + "expanded": "IRNSS-1D", + "numerical_value": 1283, + "description": "Object_Id : 2015-018A, Epoch : 2022-02-26T00:18:10.494144, Mean_Motion : 1.00277493, Eccentricity : 0.0020197, Inclination : 28.7996, Ra_Of_Asc_Node : 266.9994, Arg_Of_Pericenter : 176.3245, Mean_Anomaly : 188.718, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40547, Element_Set_No : 999, Rev_At_Epoch : 2548, Bstar : 0, Mean_Motion_Dot : -2.64E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 17", + "expanded": "BEIDOU 17", + "numerical_value": 1284, + "description": "Object_Id : 2015-019A, Epoch : 2022-02-25T20:49:18.384096, Mean_Motion : 1.0026621, Eccentricity : 0.0035283, Inclination : 52.0747, Ra_Of_Asc_Node : 314.0514, Arg_Of_Pericenter : 190.1023, Mean_Anomaly : 59.4535, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40549, Element_Set_No : 999, Rev_At_Epoch : 2531, Bstar : 0, Mean_Motion_Dot : -1.6999999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "THOR 7", + "expanded": "THOR 7", + "numerical_value": 1285, + "description": "Object_Id : 2015-022A, Epoch : 2022-02-25T20:19:27.489216, Mean_Motion : 1.00271527, Eccentricity : 0.0002506, Inclination : 0.0138, Ra_Of_Asc_Node : 200.1739, Arg_Of_Pericenter : 144.928, Mean_Anomaly : 114.75, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40613, Element_Set_No : 999, Rev_At_Epoch : 2505, Bstar : 0, Mean_Motion_Dot : -1.8999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TURKMENALEM52E/MONACOSAT", + "expanded": "TURKMENALEM52E/MONACOSAT", + "numerical_value": 1286, + "description": "Object_Id : 2015-023A, Epoch : 2022-02-26T03:27:56.858112, Mean_Motion : 1.00269369, Eccentricity : 0.000227, Inclination : 0.0128, Ra_Of_Asc_Node : 135.7092, Arg_Of_Pericenter : 206.358, Mean_Anomaly : 277.8871, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40617, Element_Set_No : 999, Rev_At_Epoch : 2506, Bstar : 0, Mean_Motion_Dot : 9.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "DIRECTV 15", + "expanded": "DIRECTV 15", + "numerical_value": 1287, + "description": "Object_Id : 2015-026A, Epoch : 2022-02-26T02:43:29.238240, Mean_Motion : 1.00269297, Eccentricity : 3.54E-05, Inclination : 0.0165, Ra_Of_Asc_Node : 129.6804, Arg_Of_Pericenter : 299.7949, Mean_Anomaly : 24.4456, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40663, Element_Set_No : 999, Rev_At_Epoch : 2477, Bstar : 0, Mean_Motion_Dot : -1.1299999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SKY MEXICO-1", + "expanded": "SKY MEXICO-1", + "numerical_value": 1288, + "description": "Object_Id : 2015-026B, Epoch : 2022-02-25T13:03:37.724832, Mean_Motion : 1.00271741, Eccentricity : 0.0002052, Inclination : 0.0156, Ra_Of_Asc_Node : 107.7745, Arg_Of_Pericenter : 249.6299, Mean_Anomaly : 275.0881, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40664, Element_Set_No : 999, Rev_At_Epoch : 2468, Bstar : 0, Mean_Motion_Dot : -2.43E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "METEOSAT-11 (MSG-4)", + "expanded": "METEOSAT-11 (MSG-4)", + "numerical_value": 1289, + "description": "Object_Id : 2015-034A, Epoch : 2022-02-25T20:19:42.559968, Mean_Motion : 1.00280164, Eccentricity : 0.0001516, Inclination : 0.1956, Ra_Of_Asc_Node : 348.8341, Arg_Of_Pericenter : 80.1329, Mean_Anomaly : 31.8819, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40732, Element_Set_No : 999, Rev_At_Epoch : 2426, Bstar : 0, Mean_Motion_Dot : -1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "STAR ONE C4", + "expanded": "STAR ONE C4", + "numerical_value": 1290, + "description": "Object_Id : 2015-034B, Epoch : 2022-02-26T02:52:54.410880, Mean_Motion : 1.0027039, Eccentricity : 0.0003606, Inclination : 0.0299, Ra_Of_Asc_Node : 53.9652, Arg_Of_Pericenter : 313.7851, Mean_Anomaly : 121.3932, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40733, Element_Set_No : 999, Rev_At_Epoch : 2425, Bstar : 0, Mean_Motion_Dot : -2.76E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F7 (USA 263)", + "expanded": "WGS F7 (USA 263)", + "numerical_value": 1291, + "description": "Object_Id : 2015-036A, Epoch : 2022-02-26T04:03:14.376096, Mean_Motion : 1.00271311, Eccentricity : 9.3E-06, Inclination : 0.0073, Ra_Of_Asc_Node : 156.516, Arg_Of_Pericenter : 77.4378, Mean_Anomaly : 157.8334, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40746, Element_Set_No : 999, Rev_At_Epoch : 2410, Bstar : 0, Mean_Motion_Dot : 6.000000000000001E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 34 (IS-34)", + "expanded": "INTELSAT 34 (IS-34)", + "numerical_value": 1292, + "description": "Object_Id : 2015-039A, Epoch : 2022-02-25T23:30:24.614784, Mean_Motion : 1.00271062, Eccentricity : 6.080000000000001E-05, Inclination : 0.008, Ra_Of_Asc_Node : 237.6399, Arg_Of_Pericenter : 302.8886, Mean_Anomaly : 272.3642, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40874, Element_Set_No : 999, Rev_At_Epoch : 2385, Bstar : 0, Mean_Motion_Dot : -2.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 8 WEST B", + "expanded": "EUTELSAT 8 WEST B", + "numerical_value": 1293, + "description": "Object_Id : 2015-039B, Epoch : 2022-02-26T03:10:44.473152, Mean_Motion : 1.00271844, Eccentricity : 0.0004533, Inclination : 0.0682, Ra_Of_Asc_Node : 19.2839, Arg_Of_Pericenter : 348.5752, Mean_Anomaly : 187.7556, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40875, Element_Set_No : 999, Rev_At_Epoch : 2392, Bstar : 0, Mean_Motion_Dot : -7.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-6", + "expanded": "GSAT-6", + "numerical_value": 1294, + "description": "Object_Id : 2015-041A, Epoch : 2022-02-25T20:43:19.263360, Mean_Motion : 1.00270867, Eccentricity : 7.670000000000001E-05, Inclination : 0.1113, Ra_Of_Asc_Node : 278.651, Arg_Of_Pericenter : 11.1398, Mean_Anomaly : 259.2553, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40880, Element_Set_No : 999, Rev_At_Epoch : 2384, Bstar : 0, Mean_Motion_Dot : -1.6999999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 5-F3", + "expanded": "INMARSAT 5-F3", + "numerical_value": 1295, + "description": "Object_Id : 2015-042A, Epoch : 2022-02-26T02:21:15.427872, Mean_Motion : 1.00270233, Eccentricity : 2.15E-05, Inclination : 0.0178, Ra_Of_Asc_Node : 132.1317, Arg_Of_Pericenter : 357.8332, Mean_Anomaly : 240.8303, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40882, Element_Set_No : 999, Rev_At_Epoch : 2379, Bstar : 0, Mean_Motion_Dot : 3.8999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "MUOS-4", + "expanded": "MUOS-4", + "numerical_value": 1296, + "description": "Object_Id : 2015-044A, Epoch : 2022-02-26T03:34:21.177408, Mean_Motion : 1.00271288, Eccentricity : 0.0058025, Inclination : 2.5572, Ra_Of_Asc_Node : 3.4043, Arg_Of_Pericenter : 358.3004, Mean_Anomaly : 282.8668, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40887, Element_Set_No : 999, Rev_At_Epoch : 2379, Bstar : 0, Mean_Motion_Dot : -1.0299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-1", + "expanded": "TJS-1", + "numerical_value": 1297, + "description": "Object_Id : 2015-046A, Epoch : 2022-02-26T05:48:17.480736, Mean_Motion : 1.00271528, Eccentricity : 0.000571, Inclination : 0.0073, Ra_Of_Asc_Node : 293.2249, Arg_Of_Pericenter : 84.5971, Mean_Anomaly : 20.3199, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40892, Element_Set_No : 999, Rev_At_Epoch : 2379, Bstar : 0, Mean_Motion_Dot : -1.68E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AM8", + "expanded": "EXPRESS-AM8", + "numerical_value": 1298, + "description": "Object_Id : 2015-048A, Epoch : 2022-02-26T05:46:42.732768, Mean_Motion : 1.0027155, Eccentricity : 4.4500000000000004E-05, Inclination : 0.0324, Ra_Of_Asc_Node : 283.5661, Arg_Of_Pericenter : 176.8907, Mean_Anomaly : 128.2604, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40895, Element_Set_No : 999, Rev_At_Epoch : 2361, Bstar : 0, Mean_Motion_Dot : -1.2299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 20", + "expanded": "BEIDOU 20", + "numerical_value": 1299, + "description": "Object_Id : 2015-053A, Epoch : 2022-02-26T01:56:45.978144, Mean_Motion : 1.0027095, Eccentricity : 0.0043016, Inclination : 51.6713, Ra_Of_Asc_Node : 277.1495, Arg_Of_Pericenter : 193.2166, Mean_Anomaly : 170.9369, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40938, Element_Set_No : 999, Rev_At_Epoch : 2358, Bstar : 0, Mean_Motion_Dot : -8.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SKY MUSTER 1 (NBN1A)", + "expanded": "SKY MUSTER 1 (NBN1A)", + "numerical_value": 1300, + "description": "Object_Id : 2015-054A, Epoch : 2022-02-25T10:56:42.529056, Mean_Motion : 1.00270664, Eccentricity : 0.0001616, Inclination : 0.0129, Ra_Of_Asc_Node : 159.9087, Arg_Of_Pericenter : 183.1794, Mean_Anomaly : 116.6009, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40940, Element_Set_No : 999, Rev_At_Epoch : 2349, Bstar : 0, Mean_Motion_Dot : -2.87E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ARSAT 2", + "expanded": "ARSAT 2", + "numerical_value": 1301, + "description": "Object_Id : 2015-054B, Epoch : 2022-02-26T02:49:46.020000, Mean_Motion : 1.0027171, Eccentricity : 0.0001584, Inclination : 0.0072, Ra_Of_Asc_Node : 173.2255, Arg_Of_Pericenter : 161.4119, Mean_Anomaly : 142.7231, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40941, Element_Set_No : 999, Rev_At_Epoch : 2355, Bstar : 0, Mean_Motion_Dot : -2.36E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "MORELOS 3", + "expanded": "MORELOS 3", + "numerical_value": 1302, + "description": "Object_Id : 2015-056A, Epoch : 2022-02-25T23:13:49.910592, Mean_Motion : 1.00272161, Eccentricity : 0.0003314, Inclination : 3.875, Ra_Of_Asc_Node : 333.3529, Arg_Of_Pericenter : 355.1835, Mean_Anomaly : 62.5665, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40946, Element_Set_No : 999, Rev_At_Epoch : 2351, Bstar : 0, Mean_Motion_Dot : -4.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "APSTAR 9", + "expanded": "APSTAR 9", + "numerical_value": 1303, + "description": "Object_Id : 2015-059A, Epoch : 2022-02-25T08:56:57.708096, Mean_Motion : 1.00269233, Eccentricity : 0.000127, Inclination : 0.0318, Ra_Of_Asc_Node : 271.7259, Arg_Of_Pericenter : 22.328, Mean_Anomaly : 137.3533, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40982, Element_Set_No : 999, Rev_At_Epoch : 2338, Bstar : 0, Mean_Motion_Dot : -2.74E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TURKSAT 4B", + "expanded": "TURKSAT 4B", + "numerical_value": 1304, + "description": "Object_Id : 2015-060A, Epoch : 2022-02-26T03:27:19.179936, Mean_Motion : 1.00271362, Eccentricity : 0.0001979, Inclination : 0.019, Ra_Of_Asc_Node : 133.7677, Arg_Of_Pericenter : 215.6343, Mean_Anomaly : 268.3805, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 40984, Element_Set_No : 999, Rev_At_Epoch : 2334, Bstar : 0, Mean_Motion_Dot : 1.04E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 2C (ZX 2C)", + "expanded": "CHINASAT 2C (ZX 2C)", + "numerical_value": 1305, + "description": "Object_Id : 2015-063A, Epoch : 2022-02-26T00:16:02.387136, Mean_Motion : 1.00269127, Eccentricity : 0.0002519, Inclination : 0.024, Ra_Of_Asc_Node : 141.4424, Arg_Of_Pericenter : 262.6864, Mean_Anomaly : 219.1012, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41021, Element_Set_No : 999, Rev_At_Epoch : 2324, Bstar : 0, Mean_Motion_Dot : -3.3399999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-15", + "expanded": "GSAT-15", + "numerical_value": 1306, + "description": "Object_Id : 2015-065A, Epoch : 2022-02-25T20:46:27.653376, Mean_Motion : 1.0027038, Eccentricity : 4.77E-05, Inclination : 0.089, Ra_Of_Asc_Node : 275.3812, Arg_Of_Pericenter : 141.0463, Mean_Anomaly : 144.3645, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41028, Element_Set_No : 999, Rev_At_Epoch : 2304, Bstar : 0, Mean_Motion_Dot : -2.68E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BADR-7 (ARABSAT-6B)", + "expanded": "BADR-7 (ARABSAT-6B)", + "numerical_value": 1307, + "description": "Object_Id : 2015-065B, Epoch : 2022-02-26T03:20:24.719136, Mean_Motion : 1.00271544, Eccentricity : 0.0003284, Inclination : 0.0349, Ra_Of_Asc_Node : 223.0829, Arg_Of_Pericenter : 23.0847, Mean_Anomaly : 345.8477, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41029, Element_Set_No : 999, Rev_At_Epoch : 2314, Bstar : 0, Mean_Motion_Dot : 1.33E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LAOSAT 1", + "expanded": "LAOSAT 1", + "numerical_value": 1308, + "description": "Object_Id : 2015-067A, Epoch : 2022-02-25T20:56:30.505920, Mean_Motion : 1.00271558, Eccentricity : 0.0001981, Inclination : 0.0605, Ra_Of_Asc_Node : 305.7091, Arg_Of_Pericenter : 1.4042, Mean_Anomaly : 291.2074, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41034, Element_Set_No : 999, Rev_At_Epoch : 2309, Bstar : 0, Mean_Motion_Dot : -3.53E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TELSTAR 12V", + "expanded": "TELSTAR 12V", + "numerical_value": 1309, + "description": "Object_Id : 2015-068A, Epoch : 2022-02-26T02:09:42.824736, Mean_Motion : 1.00270702, Eccentricity : 0.0001938, Inclination : 0.013, Ra_Of_Asc_Node : 163.7572, Arg_Of_Pericenter : 187.8688, Mean_Anomaly : 181.6875, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41036, Element_Set_No : 999, Rev_At_Epoch : 2296, Bstar : 0, Mean_Motion_Dot : -1.3E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 1C (ZX 1C)", + "expanded": "CHINASAT 1C (ZX 1C)", + "numerical_value": 1310, + "description": "Object_Id : 2015-073A, Epoch : 2022-02-25T14:53:44.304288, Mean_Motion : 1.00270104, Eccentricity : 5.6800000000000005E-05, Inclination : 3.1114, Ra_Of_Asc_Node : 86.4916, Arg_Of_Pericenter : 174.694, Mean_Anomaly : 199.0196, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41103, Element_Set_No : 999, Rev_At_Epoch : 2289, Bstar : 0, Mean_Motion_Dot : -1.5899999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ELEKTRO-L 2", + "expanded": "ELEKTRO-L 2", + "numerical_value": 1311, + "description": "Object_Id : 2015-074A, Epoch : 2022-02-26T03:08:51.438624, Mean_Motion : 1.00273054, Eccentricity : 3.1200000000000006E-05, Inclination : 2.7077, Ra_Of_Asc_Node : 89.456, Arg_Of_Pericenter : 93.482, Mean_Anomaly : 5.6854, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41105, Element_Set_No : 999, Rev_At_Epoch : 2275, Bstar : 0, Mean_Motion_Dot : -1.28E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2513", + "expanded": "COSMOS 2513", + "numerical_value": 1312, + "description": "Object_Id : 2015-075A, Epoch : 2022-02-26T03:35:59.140320, Mean_Motion : 1.00271901, Eccentricity : 0.0001283, Inclination : 0.0451, Ra_Of_Asc_Node : 114.4898, Arg_Of_Pericenter : 214.1482, Mean_Anomaly : 321.5531, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41121, Element_Set_No : 999, Rev_At_Epoch : 2283, Bstar : 0, Mean_Motion_Dot : -1.49E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS-AMU1", + "expanded": "EXPRESS-AMU1", + "numerical_value": 1313, + "description": "Object_Id : 2015-082A, Epoch : 2022-02-25T20:30:00.483264, Mean_Motion : 1.00271769, Eccentricity : 0.0002742, Inclination : 0.0157, Ra_Of_Asc_Node : 120.2533, Arg_Of_Pericenter : 224.7827, Mean_Anomaly : 154.193, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41191, Element_Set_No : 999, Rev_At_Epoch : 2251, Bstar : 0, Mean_Motion_Dot : 1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GAOFEN 4", + "expanded": "GAOFEN 4", + "numerical_value": 1314, + "description": "Object_Id : 2015-083A, Epoch : 2022-02-26T02:00:01.903968, Mean_Motion : 1.00269835, Eccentricity : 0.000223, Inclination : 0.1522, Ra_Of_Asc_Node : 103.4666, Arg_Of_Pericenter : 44.4394, Mean_Anomaly : 143.7033, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41194, Element_Set_No : 999, Rev_At_Epoch : 2272, Bstar : 0, Mean_Motion_Dot : -3.46E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BELINTERSAT-1", + "expanded": "BELINTERSAT-1", + "numerical_value": 1315, + "description": "Object_Id : 2016-001A, Epoch : 2022-02-25T21:07:42.792960, Mean_Motion : 1.00271887, Eccentricity : 8.220000000000002E-05, Inclination : 0.0643, Ra_Of_Asc_Node : 295.5872, Arg_Of_Pericenter : 248.7968, Mean_Anomaly : 339.7097, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41238, Element_Set_No : 999, Rev_At_Epoch : 2248, Bstar : 0, Mean_Motion_Dot : 9.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1E", + "expanded": "IRNSS-1E", + "numerical_value": 1316, + "description": "Object_Id : 2016-003A, Epoch : 2022-02-25T12:14:46.356000, Mean_Motion : 1.00269382, Eccentricity : 0.0019707, Inclination : 29.7288, Ra_Of_Asc_Node : 86.3545, Arg_Of_Pericenter : 190.4192, Mean_Anomaly : 174.0519, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41241, Element_Set_No : 999, Rev_At_Epoch : 2231, Bstar : 0, Mean_Motion_Dot : -3.1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 9B", + "expanded": "EUTELSAT 9B", + "numerical_value": 1317, + "description": "Object_Id : 2016-005A, Epoch : 2022-02-26T03:15:30.827808, Mean_Motion : 1.00269705, Eccentricity : 0.0003797, Inclination : 0.0333, Ra_Of_Asc_Node : 61.3194, Arg_Of_Pericenter : 241.5178, Mean_Anomaly : 270.9713, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41310, Element_Set_No : 999, Rev_At_Epoch : 2234, Bstar : 0, Mean_Motion_Dot : 5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-9", + "expanded": "SES-9", + "numerical_value": 1318, + "description": "Object_Id : 2016-013A, Epoch : 2022-02-26T00:17:25.279296, Mean_Motion : 1.00268924, Eccentricity : 0.0001471, Inclination : 0.0487, Ra_Of_Asc_Node : 291.3608, Arg_Of_Pericenter : 117.9641, Mean_Anomaly : 219.1501, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41380, Element_Set_No : 999, Rev_At_Epoch : 2198, Bstar : 0, Mean_Motion_Dot : -3.56E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 65 WEST A", + "expanded": "EUTELSAT 65 WEST A", + "numerical_value": 1319, + "description": "Object_Id : 2016-014A, Epoch : 2022-02-26T02:54:17.303040, Mean_Motion : 1.00270461, Eccentricity : 0.0001855, Inclination : 0.0538, Ra_Of_Asc_Node : 7.2889, Arg_Of_Pericenter : 336.8734, Mean_Anomaly : 150.1406, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41382, Element_Set_No : 999, Rev_At_Epoch : 2188, Bstar : 0, Mean_Motion_Dot : -2.87E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1F", + "expanded": "IRNSS-1F", + "numerical_value": 1320, + "description": "Object_Id : 2016-015A, Epoch : 2022-02-25T20:29:00.197664, Mean_Motion : 1.00273808, Eccentricity : 0.0022799, Inclination : 2.0613, Ra_Of_Asc_Node : 165.6858, Arg_Of_Pericenter : 188.6856, Mean_Anomaly : 140.9698, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41384, Element_Set_No : 999, Rev_At_Epoch : 2189, Bstar : 0, Mean_Motion_Dot : 1.48E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU IGSO-6", + "expanded": "BEIDOU IGSO-6", + "numerical_value": 1321, + "description": "Object_Id : 2016-021A, Epoch : 2022-02-25T16:09:13.306752, Mean_Motion : 1.00263884, Eccentricity : 0.0044033, Inclination : 57.9346, Ra_Of_Asc_Node : 53.9895, Arg_Of_Pericenter : 219.3925, Mean_Anomaly : 218.9834, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41434, Element_Set_No : 999, Rev_At_Epoch : 2171, Bstar : 0, Mean_Motion_Dot : -1.24E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1G", + "expanded": "IRNSS-1G", + "numerical_value": 1322, + "description": "Object_Id : 2016-027A, Epoch : 2022-02-25T22:40:10.356384, Mean_Motion : 1.00273261, Eccentricity : 0.0005411, Inclination : 2.0086, Ra_Of_Asc_Node : 168.7758, Arg_Of_Pericenter : 250.5472, Mean_Anomaly : 205.9881, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41469, Element_Set_No : 999, Rev_At_Epoch : 2140, Bstar : 0, Mean_Motion_Dot : -3.4699999999999994E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-2B", + "expanded": "JCSAT-2B", + "numerical_value": 1323, + "description": "Object_Id : 2016-028A, Epoch : 2022-02-26T05:48:17.523936, Mean_Motion : 1.00270068, Eccentricity : 0.0001879, Inclination : 0.0164, Ra_Of_Asc_Node : 132.1758, Arg_Of_Pericenter : 210.0959, Mean_Anomaly : 54.8366, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41471, Element_Set_No : 999, Rev_At_Epoch : 2132, Bstar : 0, Mean_Motion_Dot : -1.78E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "THAICOM 8", + "expanded": "THAICOM 8", + "numerical_value": 1324, + "description": "Object_Id : 2016-031A, Epoch : 2022-02-25T21:20:03.208992, Mean_Motion : 1.00271067, Eccentricity : 0.0004655, Inclination : 0.0993, Ra_Of_Asc_Node : 89.6114, Arg_Of_Pericenter : 276.3387, Mean_Anomaly : 188.2751, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41552, Element_Set_No : 999, Rev_At_Epoch : 2095, Bstar : 0, Mean_Motion_Dot : -1.32E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 31 (IS-31)", + "expanded": "INTELSAT 31 (IS-31)", + "numerical_value": 1325, + "description": "Object_Id : 2016-035A, Epoch : 2022-02-25T14:42:20.743776, Mean_Motion : 1.00269832, Eccentricity : 0.000231, Inclination : 0.0178, Ra_Of_Asc_Node : 207.7851, Arg_Of_Pericenter : 341.1605, Mean_Anomaly : 91.9911, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41581, Element_Set_No : 999, Rev_At_Epoch : 2092, Bstar : 0, Mean_Motion_Dot : -1.5899999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-2 G7", + "expanded": "BEIDOU-2 G7", + "numerical_value": 1326, + "description": "Object_Id : 2016-037A, Epoch : 2022-02-26T05:45:17.709120, Mean_Motion : 1.00272313, Eccentricity : 0.0008899, Inclination : 1.7296, Ra_Of_Asc_Node : 67.9386, Arg_Of_Pericenter : 0.15, Mean_Anomaly : 284.8374, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41586, Element_Set_No : 999, Rev_At_Epoch : 2102, Bstar : 0, Mean_Motion_Dot : -3.66E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ABS-2A (MONGOLSAT-1)", + "expanded": "ABS-2A (MONGOLSAT-1)", + "numerical_value": 1327, + "description": "Object_Id : 2016-038A, Epoch : 2022-02-25T16:23:12.554880, Mean_Motion : 1.00269918, Eccentricity : 0.0001646, Inclination : 0.0071, Ra_Of_Asc_Node : 152.2151, Arg_Of_Pericenter : 116.2086, Mean_Anomaly : 207.627, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41588, Element_Set_No : 999, Rev_At_Epoch : 2093, Bstar : 0, Mean_Motion_Dot : -9.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 117 WEST B", + "expanded": "EUTELSAT 117 WEST B", + "numerical_value": 1328, + "description": "Object_Id : 2016-038B, Epoch : 2022-02-26T02:39:28.097568, Mean_Motion : 1.00272971, Eccentricity : 3.4E-05, Inclination : 0.0078, Ra_Of_Asc_Node : 259.4113, Arg_Of_Pericenter : 44.2211, Mean_Anomaly : 135.1678, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41589, Element_Set_No : 999, Rev_At_Epoch : 2094, Bstar : 0, Mean_Motion_Dot : -2.2999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BRISAT", + "expanded": "BRISAT", + "numerical_value": 1329, + "description": "Object_Id : 2016-039A, Epoch : 2022-02-25T10:49:21.664416, Mean_Motion : 1.00271093, Eccentricity : 0.0002083, Inclination : 0.0134, Ra_Of_Asc_Node : 156.8286, Arg_Of_Pericenter : 188.1893, Mean_Anomaly : 123.0751, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41591, Element_Set_No : 999, Rev_At_Epoch : 2087, Bstar : 0, Mean_Motion_Dot : -2.05E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 18", + "expanded": "ECHOSTAR 18", + "numerical_value": 1330, + "description": "Object_Id : 2016-039B, Epoch : 2022-02-25T20:02:00.034368, Mean_Motion : 1.00271323, Eccentricity : 0.0001197, Inclination : 0.0098, Ra_Of_Asc_Node : 119.9127, Arg_Of_Pericenter : 224.1871, Mean_Anomaly : 50.6923, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41592, Element_Set_No : 999, Rev_At_Epoch : 2085, Bstar : 0, Mean_Motion_Dot : -2.92E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "MUOS-5", + "expanded": "MUOS-5", + "numerical_value": 1331, + "description": "Object_Id : 2016-041A, Epoch : 2022-02-26T02:42:13.881024, Mean_Motion : 1.0027133, Eccentricity : 0.0194568, Inclination : 5.8709, Ra_Of_Asc_Node : 301.782, Arg_Of_Pericenter : 233.3974, Mean_Anomaly : 276.2906, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41622, Element_Set_No : 999, Rev_At_Epoch : 2130, Bstar : 0, Mean_Motion_Dot : -1.44E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANTONG-1 1", + "expanded": "TIANTONG-1 1", + "numerical_value": 1332, + "description": "Object_Id : 2016-048A, Epoch : 2022-02-25T20:48:43.296192, Mean_Motion : 1.0026732, Eccentricity : 0.0004904, Inclination : 2.3321, Ra_Of_Asc_Node : 353.2529, Arg_Of_Pericenter : 10.0562, Mean_Anomaly : 205.9089, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41725, Element_Set_No : 999, Rev_At_Epoch : 2050, Bstar : 0, Mean_Motion_Dot : -3.24E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-16", + "expanded": "JCSAT-16", + "numerical_value": 1333, + "description": "Object_Id : 2016-050A, Epoch : 2022-02-25T22:41:55.855104, Mean_Motion : 1.00268158, Eccentricity : 0.0001508, Inclination : 0.0724, Ra_Of_Asc_Node : 94.8601, Arg_Of_Pericenter : 343.8209, Mean_Anomaly : 193.5021, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41729, Element_Set_No : 999, Rev_At_Epoch : 2029, Bstar : 0, Mean_Motion_Dot : -3.18E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 270", + "expanded": "USA 270", + "numerical_value": 1334, + "description": "Object_Id : 2016-052A, Epoch : 2022-02-18T02:39:18.766368, Mean_Motion : 1.00034481, Eccentricity : 0.0004049, Inclination : 0.1508, Ra_Of_Asc_Node : 101.765, Arg_Of_Pericenter : 162.0297, Mean_Anomaly : 355.9119, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41744, Element_Set_No : 999, Rev_At_Epoch : 289, Bstar : 0, Mean_Motion_Dot : -4E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 271", + "expanded": "USA 271", + "numerical_value": 1335, + "description": "Object_Id : 2016-052B, Epoch : 2022-02-18T03:33:17.109216, Mean_Motion : 1.001312, Eccentricity : 2.08E-05, Inclination : 0.1164, Ra_Of_Asc_Node : 104.0693, Arg_Of_Pericenter : 322.4222, Mean_Anomaly : 269.7431, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41745, Element_Set_No : 999, Rev_At_Epoch : 289, Bstar : 0, Mean_Motion_Dot : -3.2599999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 36 (IS-36)", + "expanded": "INTELSAT 36 (IS-36)", + "numerical_value": 1336, + "description": "Object_Id : 2016-053A, Epoch : 2022-02-26T04:45:42.771744, Mean_Motion : 1.00270147, Eccentricity : 9.680000000000001E-05, Inclination : 0.0152, Ra_Of_Asc_Node : 88.7117, Arg_Of_Pericenter : 282.0521, Mean_Anomaly : 285.1529, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41747, Element_Set_No : 999, Rev_At_Epoch : 2017, Bstar : 0, Mean_Motion_Dot : -3.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 33E (IS-33E)", + "expanded": "INTELSAT 33E (IS-33E)", + "numerical_value": 1337, + "description": "Object_Id : 2016-053B, Epoch : 2022-02-25T21:56:42.780192, Mean_Motion : 1.00270371, Eccentricity : 0.0001561, Inclination : 0.0297, Ra_Of_Asc_Node : 46.1037, Arg_Of_Pericenter : 304.5618, Mean_Anomaly : 194.2146, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41748, Element_Set_No : 999, Rev_At_Epoch : 2048, Bstar : 0, Mean_Motion_Dot : 3.8999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "INSAT-3DR", + "expanded": "INSAT-3DR", + "numerical_value": 1338, + "description": "Object_Id : 2016-054A, Epoch : 2022-02-26T03:34:13.640736, Mean_Motion : 1.00270333, Eccentricity : 0.0012012, Inclination : 0.0138, Ra_Of_Asc_Node : 128.5982, Arg_Of_Pericenter : 151.5684, Mean_Anomaly : 3.3393, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41752, Element_Set_No : 999, Rev_At_Epoch : 2003, Bstar : 0, Mean_Motion_Dot : -8.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-18", + "expanded": "GSAT-18", + "numerical_value": 1339, + "description": "Object_Id : 2016-060A, Epoch : 2022-02-25T21:37:57.610272, Mean_Motion : 1.00271048, Eccentricity : 9.220000000000002E-05, Inclination : 0.0352, Ra_Of_Asc_Node : 260.2735, Arg_Of_Pericenter : 108.9139, Mean_Anomaly : 185.0026, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41793, Element_Set_No : 999, Rev_At_Epoch : 1977, Bstar : 0, Mean_Motion_Dot : -8.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SKY MUSTER 2 (NBN1B)", + "expanded": "SKY MUSTER 2 (NBN1B)", + "numerical_value": 1340, + "description": "Object_Id : 2016-060B, Epoch : 2022-02-25T08:16:08.899680, Mean_Motion : 1.00271965, Eccentricity : 0.000146, Inclination : 0.0135, Ra_Of_Asc_Node : 153.7366, Arg_Of_Pericenter : 192.5663, Mean_Anomaly : 77.6639, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41794, Element_Set_No : 999, Rev_At_Epoch : 1980, Bstar : 0, Mean_Motion_Dot : -2.52E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "HIMAWARI-9", + "expanded": "HIMAWARI-9", + "numerical_value": 1341, + "description": "Object_Id : 2016-064A, Epoch : 2022-02-25T21:00:01.504224, Mean_Motion : 1.00270837, Eccentricity : 8.960000000000001E-05, Inclination : 0.0159, Ra_Of_Asc_Node : 202.4864, Arg_Of_Pericenter : 154.0659, Mean_Anomaly : 254.9028, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41836, Element_Set_No : 999, Rev_At_Epoch : 1942, Bstar : 0, Mean_Motion_Dot : -2.85E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SHIJIAN-17 (SJ-17)", + "expanded": "SHIJIAN-17 (SJ-17)", + "numerical_value": 1342, + "description": "Object_Id : 2016-065A, Epoch : 2022-02-25T21:25:57.086976, Mean_Motion : 1.00271893, Eccentricity : 0.0001451, Inclination : 1.7479, Ra_Of_Asc_Node : 90.7146, Arg_Of_Pericenter : 347.1581, Mean_Anomaly : 156.8776, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41838, Element_Set_No : 999, Rev_At_Epoch : 1944, Bstar : 0, Mean_Motion_Dot : -3.74E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GOES 16", + "expanded": "GOES 16", + "numerical_value": 1343, + "description": "Object_Id : 2016-071A, Epoch : 2022-02-26T01:08:02.144256, Mean_Motion : 1.00270959, Eccentricity : 0.0001133, Inclination : 0.0903, Ra_Of_Asc_Node : 282.1189, Arg_Of_Pericenter : 103.548, Mean_Anomaly : 71.9789, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41866, Element_Set_No : 999, Rev_At_Epoch : 1934, Bstar : 0, Mean_Motion_Dot : -2.5899999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANLIAN 1-04", + "expanded": "TIANLIAN 1-04", + "numerical_value": 1344, + "description": "Object_Id : 2016-072A, Epoch : 2022-02-26T04:03:44.517600, Mean_Motion : 1.00271381, Eccentricity : 0.0020217, Inclination : 0.2122, Ra_Of_Asc_Node : 276.5266, Arg_Of_Pericenter : 196.3877, Mean_Anomaly : 280.767, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41869, Element_Set_No : 999, Rev_At_Epoch : 1953, Bstar : 0, Mean_Motion_Dot : 1.8999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F8 (USA 272)", + "expanded": "WGS F8 (USA 272)", + "numerical_value": 1345, + "description": "Object_Id : 2016-075A, Epoch : 2022-02-26T05:43:30.319104, Mean_Motion : 1.00270776, Eccentricity : 4.8E-05, Inclination : 0.0191, Ra_Of_Asc_Node : 107.2751, Arg_Of_Pericenter : 275.821, Mean_Anomaly : 8.6213, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41879, Element_Set_No : 999, Rev_At_Epoch : 1916, Bstar : 0, Mean_Motion_Dot : -2.1499999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FENGYUN 4A", + "expanded": "FENGYUN 4A", + "numerical_value": 1346, + "description": "Object_Id : 2016-077A, Epoch : 2022-02-26T00:16:17.457888, Mean_Motion : 1.00276914, Eccentricity : 0.0005715, Inclination : 0.1421, Ra_Of_Asc_Node : 86.6596, Arg_Of_Pericenter : 350.1848, Mean_Anomaly : 187.6387, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41882, Element_Set_No : 999, Rev_At_Epoch : 1921, Bstar : 0, Mean_Motion_Dot : -3.41E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 19", + "expanded": "ECHOSTAR 19", + "numerical_value": 1347, + "description": "Object_Id : 2016-079A, Epoch : 2022-02-25T15:33:11.778336, Mean_Motion : 1.00269861, Eccentricity : 0.0001713, Inclination : 0.0154, Ra_Of_Asc_Node : 111.8129, Arg_Of_Pericenter : 245.6684, Mean_Anomaly : 294.1644, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41893, Element_Set_No : 999, Rev_At_Epoch : 1894, Bstar : 0, Mean_Motion_Dot : -1.47E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-15", + "expanded": "JCSAT-15", + "numerical_value": 1348, + "description": "Object_Id : 2016-082A, Epoch : 2022-02-25T17:02:44.830176, Mean_Motion : 1.00269744, Eccentricity : 0.0001367, Inclination : 0.0155, Ra_Of_Asc_Node : 129.3706, Arg_Of_Pericenter : 228.4515, Mean_Anomaly : 163.4381, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41903, Element_Set_No : 999, Rev_At_Epoch : 1899, Bstar : 0, Mean_Motion_Dot : -3.6E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "STAR ONE D1", + "expanded": "STAR ONE D1", + "numerical_value": 1349, + "description": "Object_Id : 2016-082B, Epoch : 2022-02-26T02:48:53.270208, Mean_Motion : 1.0027092, Eccentricity : 0.0002443, Inclination : 0.007, Ra_Of_Asc_Node : 124.4832, Arg_Of_Pericenter : 189.493, Mean_Anomaly : 160.164, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41904, Element_Set_No : 999, Rev_At_Epoch : 1902, Bstar : 0, Mean_Motion_Dot : -2.22E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-2", + "expanded": "TJS-2", + "numerical_value": 1350, + "description": "Object_Id : 2017-001A, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00272622, Eccentricity : 0.0003411, Inclination : 0.0912, Ra_Of_Asc_Node : 77.4417, Arg_Of_Pericenter : 97.367, Mean_Anomaly : 98.2889, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41911, Element_Set_No : 999, Rev_At_Epoch : 1895, Bstar : 0, Mean_Motion_Dot : -1.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SBIRS GEO-4 (USA 273)", + "expanded": "SBIRS GEO-4 (USA 273)", + "numerical_value": 1351, + "description": "Object_Id : 2017-004A, Epoch : 2022-02-26T02:27:17.138880, Mean_Motion : 1.00271666, Eccentricity : 0.0001771, Inclination : 2.5553, Ra_Of_Asc_Node : 316.8947, Arg_Of_Pericenter : 30.0405, Mean_Anomaly : 46.3809, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41937, Element_Set_No : 999, Rev_At_Epoch : 1883, Bstar : 0, Mean_Motion_Dot : 1.2099999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "HISPASAT 36W-1", + "expanded": "HISPASAT 36W-1", + "numerical_value": 1352, + "description": "Object_Id : 2017-006A, Epoch : 2022-02-25T18:25:56.790624, Mean_Motion : 1.00270383, Eccentricity : 0.0001017, Inclination : 0.0299, Ra_Of_Asc_Node : 344.2624, Arg_Of_Pericenter : 351.903, Mean_Anomaly : 59.8971, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41942, Element_Set_No : 999, Rev_At_Epoch : 1845, Bstar : 0, Mean_Motion_Dot : -2.54E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TELKOM 3S", + "expanded": "TELKOM 3S", + "numerical_value": 1353, + "description": "Object_Id : 2017-007A, Epoch : 2022-02-25T21:25:57.086976, Mean_Motion : 1.00272828, Eccentricity : 0.0002196, Inclination : 0.0146, Ra_Of_Asc_Node : 136.2905, Arg_Of_Pericenter : 201.9985, Mean_Anomaly : 256.8862, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41944, Element_Set_No : 999, Rev_At_Epoch : 1837, Bstar : 0, Mean_Motion_Dot : -3.73E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 32E (IS-32E)", + "expanded": "INTELSAT 32E (IS-32E)", + "numerical_value": 1354, + "description": "Object_Id : 2017-007B, Epoch : 2022-02-26T02:25:42.846240, Mean_Motion : 1.00277934, Eccentricity : 5.280000000000001E-05, Inclination : 0.0119, Ra_Of_Asc_Node : 115.0687, Arg_Of_Pericenter : 258.7469, Mean_Anomaly : 135.3334, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 41945, Element_Set_No : 999, Rev_At_Epoch : 1848, Bstar : 0, Mean_Motion_Dot : -2.8E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 23", + "expanded": "ECHOSTAR 23", + "numerical_value": 1355, + "description": "Object_Id : 2017-014A, Epoch : 2022-02-25T06:12:10.935360, Mean_Motion : 1.00129898, Eccentricity : 0.0001492, Inclination : 0.025, Ra_Of_Asc_Node : 107.0735, Arg_Of_Pericenter : 268.2911, Mean_Anomaly : 160.6573, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42070, Element_Set_No : 999, Rev_At_Epoch : 1817, Bstar : 0, Mean_Motion_Dot : -2.54E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS F9 (USA 275)", + "expanded": "WGS F9 (USA 275)", + "numerical_value": 1356, + "description": "Object_Id : 2017-016A, Epoch : 2022-02-26T03:09:29.116800, Mean_Motion : 1.00271204, Eccentricity : 4.410000000000001E-05, Inclination : 0.0193, Ra_Of_Asc_Node : 133.6392, Arg_Of_Pericenter : 315.9284, Mean_Anomaly : 101.7406, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42075, Element_Set_No : 999, Rev_At_Epoch : 1816, Bstar : 0, Mean_Motion_Dot : -1.08E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-10", + "expanded": "SES-10", + "numerical_value": 1357, + "description": "Object_Id : 2017-017A, Epoch : 2022-02-26T02:53:47.159808, Mean_Motion : 1.0027142, Eccentricity : 0.0002622, Inclination : 0.0226, Ra_Of_Asc_Node : 116.2574, Arg_Of_Pericenter : 228.1138, Mean_Anomaly : 148.124, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42432, Element_Set_No : 999, Rev_At_Epoch : 1796, Bstar : 0, Mean_Motion_Dot : -2.84E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 16 (SJ-13)", + "expanded": "CHINASAT 16 (SJ-13)", + "numerical_value": 1358, + "description": "Object_Id : 2017-018A, Epoch : 2022-02-26T10:23:42.659232, Mean_Motion : 1.00272327, Eccentricity : 0.0005092, Inclination : 0.0814, Ra_Of_Asc_Node : 84.9047, Arg_Of_Pericenter : 173.318, Mean_Anomaly : 164.4433, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42662, Element_Set_No : 999, Rev_At_Epoch : 1798, Bstar : 0, Mean_Motion_Dot : -3.6499999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "KOREASAT 7", + "expanded": "KOREASAT 7", + "numerical_value": 1359, + "description": "Object_Id : 2017-023A, Epoch : 2022-02-26T00:19:33.384576, Mean_Motion : 1.0027258, Eccentricity : 7.630000000000001E-05, Inclination : 0.0154, Ra_Of_Asc_Node : 48.5179, Arg_Of_Pericenter : 260.3648, Mean_Anomaly : 327.7099, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42691, Element_Set_No : 999, Rev_At_Epoch : 1767, Bstar : 0, Mean_Motion_Dot : -3.73E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SGDC", + "expanded": "SGDC", + "numerical_value": 1360, + "description": "Object_Id : 2017-023B, Epoch : 2022-02-25T18:37:00.801408, Mean_Motion : 1.00272986, Eccentricity : 0.0002083, Inclination : 0.0159, Ra_Of_Asc_Node : 102.305, Arg_Of_Pericenter : 241.8432, Mean_Anomaly : 15.8178, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42692, Element_Set_No : 999, Rev_At_Epoch : 1768, Bstar : 0, Mean_Motion_Dot : -2.5899999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-9", + "expanded": "GSAT-9", + "numerical_value": 1361, + "description": "Object_Id : 2017-024A, Epoch : 2022-02-26T01:57:38.727072, Mean_Motion : 1.00267709, Eccentricity : 0.0002821, Inclination : 0.065, Ra_Of_Asc_Node : 265.4287, Arg_Of_Pericenter : 70.1813, Mean_Anomaly : 306.984, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42695, Element_Set_No : 999, Rev_At_Epoch : 1766, Bstar : 0, Mean_Motion_Dot : -2.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT 5-F4", + "expanded": "INMARSAT 5-F4", + "numerical_value": 1362, + "description": "Object_Id : 2017-025A, Epoch : 2022-02-26T03:29:12.215328, Mean_Motion : 1.0026986, Eccentricity : 1.95E-05, Inclination : 0.0126, Ra_Of_Asc_Node : 121.2385, Arg_Of_Pericenter : 7.7196, Mean_Anomaly : 135.7756, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42698, Element_Set_No : 999, Rev_At_Epoch : 1749, Bstar : 0, Mean_Motion_Dot : 6.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-15", + "expanded": "SES-15", + "numerical_value": 1363, + "description": "Object_Id : 2017-026A, Epoch : 2022-02-25T23:09:11.090880, Mean_Motion : 1.00269673, Eccentricity : 3.85E-05, Inclination : 0.0261, Ra_Of_Asc_Node : 20.0599, Arg_Of_Pericenter : 13.3961, Mean_Anomaly : 340.4454, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42709, Element_Set_No : 999, Rev_At_Epoch : 1842, Bstar : 0, Mean_Motion_Dot : 4.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-2 (MICHIBIKI-2)", + "expanded": "QZS-2 (MICHIBIKI-2)", + "numerical_value": 1364, + "description": "Object_Id : 2017-028A, Epoch : 2022-02-25T21:02:54.824352, Mean_Motion : 1.00268413, Eccentricity : 0.0748549, Inclination : 41.9575, Ra_Of_Asc_Node : 265.7365, Arg_Of_Pericenter : 270.1363, Mean_Anomaly : 76.4415, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42738, Element_Set_No : 999, Rev_At_Epoch : 1737, Bstar : 0, Mean_Motion_Dot : -1.1299999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "VIASAT-2", + "expanded": "VIASAT-2", + "numerical_value": 1365, + "description": "Object_Id : 2017-029A, Epoch : 2022-02-26T02:52:54.410880, Mean_Motion : 1.00270941, Eccentricity : 2.47E-05, Inclination : 0.0265, Ra_Of_Asc_Node : 247.7455, Arg_Of_Pericenter : 219.7177, Mean_Anomaly : 21.7793, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42740, Element_Set_No : 999, Rev_At_Epoch : 1741, Bstar : 0, Mean_Motion_Dot : -2.76E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 172B", + "expanded": "EUTELSAT 172B", + "numerical_value": 1366, + "description": "Object_Id : 2017-029B, Epoch : 2022-02-26T04:02:21.627168, Mean_Motion : 1.00272438, Eccentricity : 4.860000000000001E-05, Inclination : 0.0305, Ra_Of_Asc_Node : 146.9863, Arg_Of_Pericenter : 294.8256, Mean_Anomaly : 306.7693, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42741, Element_Set_No : 999, Rev_At_Epoch : 1794, Bstar : 0, Mean_Motion_Dot : -1.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-19", + "expanded": "GSAT-19", + "numerical_value": 1367, + "description": "Object_Id : 2017-031A, Epoch : 2022-02-26T03:26:41.501760, Mean_Motion : 1.00272435, Eccentricity : 0.0006652, Inclination : 0.0681, Ra_Of_Asc_Node : 274.77, Arg_Of_Pericenter : 128.9694, Mean_Anomaly : 211.7341, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42747, Element_Set_No : 999, Rev_At_Epoch : 1736, Bstar : 0, Mean_Motion_Dot : 1.14E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ECHOSTAR 21", + "expanded": "ECHOSTAR 21", + "numerical_value": 1368, + "description": "Object_Id : 2017-032A, Epoch : 2022-02-25T21:47:42.837216, Mean_Motion : 1.00272519, Eccentricity : 0.0002, Inclination : 4.2188, Ra_Of_Asc_Node : 311.1417, Arg_Of_Pericenter : 17.7168, Mean_Anomaly : 164.0269, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42749, Element_Set_No : 999, Rev_At_Epoch : 1734, Bstar : 0, Mean_Motion_Dot : 5.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BULGARIASAT-1", + "expanded": "BULGARIASAT-1", + "numerical_value": 1369, + "description": "Object_Id : 2017-038A, Epoch : 2022-02-26T03:13:30.258336, Mean_Motion : 1.00272717, Eccentricity : 0.000261, Inclination : 0.0599, Ra_Of_Asc_Node : 275.138, Arg_Of_Pericenter : 62.144, Mean_Anomaly : 228.9191, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42801, Element_Set_No : 999, Rev_At_Epoch : 1714, Bstar : 0, Mean_Motion_Dot : 0, Mean_Motion_Ddot : 0" + }, + { + "value": "HELLAS-SAT 3", + "expanded": "HELLAS-SAT 3", + "numerical_value": 1370, + "description": "Object_Id : 2017-040A, Epoch : 2022-02-26T03:24:10.788192, Mean_Motion : 1.00268512, Eccentricity : 0.0004364, Inclination : 0.0584, Ra_Of_Asc_Node : 3.3314, Arg_Of_Pericenter : 356.7694, Mean_Anomaly : 245.8935, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42814, Element_Set_No : 999, Rev_At_Epoch : 1709, Bstar : 0, Mean_Motion_Dot : 1.4099999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-17", + "expanded": "GSAT-17", + "numerical_value": 1371, + "description": "Object_Id : 2017-040B, Epoch : 2022-02-26T01:56:30.905664, Mean_Motion : 1.00271195, Eccentricity : 0.0004976, Inclination : 0.0615, Ra_Of_Asc_Node : 281.1245, Arg_Of_Pericenter : 358.0023, Mean_Anomaly : 359.4007, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42815, Element_Set_No : 999, Rev_At_Epoch : 1710, Bstar : 0, Mean_Motion_Dot : -2.6899999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 35E (IS-35E)", + "expanded": "INTELSAT 35E (IS-35E)", + "numerical_value": 1372, + "description": "Object_Id : 2017-041A, Epoch : 2022-02-26T02:25:42.846240, Mean_Motion : 1.00271911, Eccentricity : 0.0001282, Inclination : 0.0169, Ra_Of_Asc_Node : 181.4942, Arg_Of_Pericenter : 151.0138, Mean_Anomaly : 185.3279, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42818, Element_Set_No : 999, Rev_At_Epoch : 1704, Bstar : 0, Mean_Motion_Dot : -2.4900000000000003E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2520", + "expanded": "COSMOS 2520", + "numerical_value": 1373, + "description": "Object_Id : 2017-046A, Epoch : 2022-02-26T03:25:56.287776, Mean_Motion : 1.00272875, Eccentricity : 1.7500000000000002E-05, Inclination : 0.023, Ra_Of_Asc_Node : 130.5594, Arg_Of_Pericenter : 295.754, Mean_Anomaly : 186.1131, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42907, Element_Set_No : 999, Rev_At_Epoch : 1662, Bstar : 0, Mean_Motion_Dot : 1.2499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TDRS 13", + "expanded": "TDRS 13", + "numerical_value": 1374, + "description": "Object_Id : 2017-047A, Epoch : 2022-02-26T03:09:44.188416, Mean_Motion : 1.00271587, Eccentricity : 0.0015914, Inclination : 4.6356, Ra_Of_Asc_Node : 332.5398, Arg_Of_Pericenter : 101.0878, Mean_Anomaly : 118.1034, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42915, Element_Set_No : 999, Rev_At_Epoch : 1661, Bstar : 0, Mean_Motion_Dot : -1.07E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-3 (MICHIBIKI-3)", + "expanded": "QZS-3 (MICHIBIKI-3)", + "numerical_value": 1375, + "description": "Object_Id : 2017-048A, Epoch : 2022-02-26T00:22:49.312128, Mean_Motion : 1.00273393, Eccentricity : 0.0001986, Inclination : 0.0699, Ra_Of_Asc_Node : 225.6892, Arg_Of_Pericenter : 125.8202, Mean_Anomaly : 297.046, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42917, Element_Set_No : 999, Rev_At_Epoch : 1660, Bstar : 0, Mean_Motion_Dot : -3.5899999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AMAZONAS 5", + "expanded": "AMAZONAS 5", + "numerical_value": 1376, + "description": "Object_Id : 2017-053A, Epoch : 2022-02-26T02:55:32.660256, Mean_Motion : 1.00272836, Eccentricity : 0.0004686, Inclination : 0.0434, Ra_Of_Asc_Node : 312.6796, Arg_Of_Pericenter : 29.3341, Mean_Anomaly : 156.7824, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42934, Element_Set_No : 999, Rev_At_Epoch : 1636, Bstar : 0, Mean_Motion_Dot : -2.94E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ASIASAT 9", + "expanded": "ASIASAT 9", + "numerical_value": 1377, + "description": "Object_Id : 2017-057A, Epoch : 2022-02-26T00:21:18.884160, Mean_Motion : 1.00269969, Eccentricity : 0.0002256, Inclination : 0.0046, Ra_Of_Asc_Node : 162.0279, Arg_Of_Pericenter : 178.5967, Mean_Anomaly : 302.6182, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42942, Element_Set_No : 999, Rev_At_Epoch : 1617, Bstar : 0, Mean_Motion_Dot : -3.7099999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 37E (IS-37E)", + "expanded": "INTELSAT 37E (IS-37E)", + "numerical_value": 1378, + "description": "Object_Id : 2017-059A, Epoch : 2022-02-25T20:14:26.063808, Mean_Motion : 1.0027146, Eccentricity : 0.0002323, Inclination : 0.0148, Ra_Of_Asc_Node : 132.0641, Arg_Of_Pericenter : 212.6685, Mean_Anomaly : 96.5224, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42950, Element_Set_No : 999, Rev_At_Epoch : 1629, Bstar : 0, Mean_Motion_Dot : -1.51E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BSAT-4A", + "expanded": "BSAT-4A", + "numerical_value": 1379, + "description": "Object_Id : 2017-059B, Epoch : 2022-02-25T21:34:45.050592, Mean_Motion : 1.00270108, Eccentricity : 0.0004474, Inclination : 0.073, Ra_Of_Asc_Node : 338.8583, Arg_Of_Pericenter : 49.995, Mean_Anomaly : 200.3719, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42951, Element_Set_No : 999, Rev_At_Epoch : 1603, Bstar : 0, Mean_Motion_Dot : -3.6099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-4 (MICHIBIKI-4)", + "expanded": "QZS-4 (MICHIBIKI-4)", + "numerical_value": 1380, + "description": "Object_Id : 2017-062A, Epoch : 2022-02-25T21:08:24.273600, Mean_Motion : 1.00283524, Eccentricity : 0.0749442, Inclination : 40.7916, Ra_Of_Asc_Node : 3.5453, Arg_Of_Pericenter : 269.4975, Mean_Anomaly : 338.5047, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42965, Element_Set_No : 999, Rev_At_Epoch : 1603, Bstar : 0, Mean_Motion_Dot : -3.22E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-11 (ECHOSTAR 105)", + "expanded": "SES-11 (ECHOSTAR 105)", + "numerical_value": 1381, + "description": "Object_Id : 2017-063A, Epoch : 2022-02-25T15:23:22.538976, Mean_Motion : 1.00271102, Eccentricity : 0.000249, Inclination : 0.0184, Ra_Of_Asc_Node : 128.6788, Arg_Of_Pericenter : 202.7738, Mean_Anomaly : 309.8903, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42967, Element_Set_No : 999, Rev_At_Epoch : 1595, Bstar : 0, Mean_Motion_Dot : -9.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "KOREASAT 5A", + "expanded": "KOREASAT 5A", + "numerical_value": 1382, + "description": "Object_Id : 2017-067A, Epoch : 2022-02-26T00:18:48.170592, Mean_Motion : 1.00270127, Eccentricity : 0.0001159, Inclination : 0.016, Ra_Of_Asc_Node : 109.485, Arg_Of_Pericenter : 240.2781, Mean_Anomaly : 283.8957, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 42984, Element_Set_No : 999, Rev_At_Epoch : 1586, Bstar : 0, Mean_Motion_Dot : -3.69E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ALCOMSAT 1", + "expanded": "ALCOMSAT 1", + "numerical_value": 1383, + "description": "Object_Id : 2017-078A, Epoch : 2022-02-25T22:12:20.019744, Mean_Motion : 1.00273501, Eccentricity : 0.0001981, Inclination : 0.0479, Ra_Of_Asc_Node : 236.9464, Arg_Of_Pericenter : 97.4801, Mean_Anomaly : 129.5895, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43039, Element_Set_No : 999, Rev_At_Epoch : 1551, Bstar : 0, Mean_Motion_Dot : -1.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SBIRS GEO-3 (USA 282)", + "expanded": "SBIRS GEO-3 (USA 282)", + "numerical_value": 1384, + "description": "Object_Id : 2018-009A, Epoch : 2022-02-25T22:42:56.139840, Mean_Motion : 1.00270888, Eccentricity : 0.0001705, Inclination : 3.7561, Ra_Of_Asc_Node : 318.3869, Arg_Of_Pericenter : 26.5998, Mean_Anomaly : 290.4864, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43162, Element_Set_No : 999, Rev_At_Epoch : 1507, Bstar : 0, Mean_Motion_Dot : -2.98E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AL YAH 3", + "expanded": "AL YAH 3", + "numerical_value": 1385, + "description": "Object_Id : 2018-012A, Epoch : 2022-02-25T20:13:48.384768, Mean_Motion : 1.00269866, Eccentricity : 0.0001988, Inclination : 0.0538, Ra_Of_Asc_Node : 100.6211, Arg_Of_Pericenter : 286.8679, Mean_Anomaly : 51.4983, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43174, Element_Set_No : 999, Rev_At_Epoch : 1507, Bstar : 0, Mean_Motion_Dot : -1.66E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-14", + "expanded": "SES-14", + "numerical_value": 1386, + "description": "Object_Id : 2018-012B, Epoch : 2022-02-26T02:59:18.729312, Mean_Motion : 1.00269339, Eccentricity : 8.250000000000001E-05, Inclination : 0.0157, Ra_Of_Asc_Node : 125.0771, Arg_Of_Pericenter : 222.7426, Mean_Anomaly : 165.4591, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43175, Element_Set_No : 999, Rev_At_Epoch : 1528, Bstar : 0, Mean_Motion_Dot : -2.8999999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GOES 17", + "expanded": "GOES 17", + "numerical_value": 1387, + "description": "Object_Id : 2018-022A, Epoch : 2022-02-25T08:33:34.882272, Mean_Motion : 1.00270477, Eccentricity : 4.070000000000001E-05, Inclination : 0.065, Ra_Of_Asc_Node : 284.7561, Arg_Of_Pericenter : 102.8043, Mean_Anomaly : 118.7976, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43226, Element_Set_No : 999, Rev_At_Epoch : 1465, Bstar : 0, Mean_Motion_Dot : 9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "HISPASAT 30W-6", + "expanded": "HISPASAT 30W-6", + "numerical_value": 1388, + "description": "Object_Id : 2018-023A, Epoch : 2022-02-25T09:50:58.038144, Mean_Motion : 1.00270941, Eccentricity : 0.0004908, Inclination : 0.0436, Ra_Of_Asc_Node : 48.2382, Arg_Of_Pericenter : 316.0437, Mean_Anomaly : 268.6583, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43228, Element_Set_No : 999, Rev_At_Epoch : 1467, Bstar : 0, Mean_Motion_Dot : -2.24E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SUPERBIRD 8", + "expanded": "SUPERBIRD 8", + "numerical_value": 1389, + "description": "Object_Id : 2018-033A, Epoch : 2022-02-26T05:56:32.028288, Mean_Motion : 1.00271709, Eccentricity : 0.0001035, Inclination : 0.0534, Ra_Of_Asc_Node : 272.0085, Arg_Of_Pericenter : 94.8993, Mean_Anomaly : 40.2545, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43271, Element_Set_No : 999, Rev_At_Epoch : 1428, Bstar : 0, Mean_Motion_Dot : -1.04E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "HYLAS 4", + "expanded": "HYLAS 4", + "numerical_value": 1390, + "description": "Object_Id : 2018-033B, Epoch : 2022-02-25T20:10:02.314848, Mean_Motion : 1.00271729, Eccentricity : 0.0001527, Inclination : 0.0669, Ra_Of_Asc_Node : 270.5929, Arg_Of_Pericenter : 92.9158, Mean_Anomaly : 61.1237, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43272, Element_Set_No : 999, Rev_At_Epoch : 1430, Bstar : 0, Mean_Motion_Dot : -2.44E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1I", + "expanded": "IRNSS-1I", + "numerical_value": 1391, + "description": "Object_Id : 2018-035A, Epoch : 2022-02-24T17:01:39.954144, Mean_Motion : 1.00272414, Eccentricity : 0.002074, Inclination : 28.8264, Ra_Of_Asc_Node : 99.185, Arg_Of_Pericenter : 189.5483, Mean_Anomaly : 176.2692, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43286, Element_Set_No : 999, Rev_At_Epoch : 1430, Bstar : 0, Mean_Motion_Dot : 7.799999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "USA 283", + "expanded": "USA 283", + "numerical_value": 1392, + "description": "Object_Id : 2018-036A, Epoch : 2022-02-24T12:14:33.455616, Mean_Motion : 1.00270774, Eccentricity : 8.240000000000001E-05, Inclination : 0.003, Ra_Of_Asc_Node : 229.4895, Arg_Of_Pericenter : 178.4502, Mean_Anomaly : 64.1272, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43339, Element_Set_No : 999, Rev_At_Epoch : 296, Bstar : 0, Mean_Motion_Dot : -3.22E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2526", + "expanded": "COSMOS 2526", + "numerical_value": 1393, + "description": "Object_Id : 2018-037A, Epoch : 2022-02-25T16:52:14.560320, Mean_Motion : 1.0027257, Eccentricity : 5.410000000000001E-05, Inclination : 0.0252, Ra_Of_Asc_Node : 117.5464, Arg_Of_Pericenter : 251.9032, Mean_Anomaly : 167.1751, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43432, Element_Set_No : 999, Rev_At_Epoch : 1420, Bstar : 0, Mean_Motion_Dot : -3.54E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "APSTAR 6C", + "expanded": "APSTAR 6C", + "numerical_value": 1394, + "description": "Object_Id : 2018-041A, Epoch : 2022-02-26T05:56:42.734112, Mean_Motion : 1.00270698, Eccentricity : 0.0001572, Inclination : 0.0312, Ra_Of_Asc_Node : 248.5548, Arg_Of_Pericenter : 56.3748, Mean_Anomaly : 74.291, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43450, Element_Set_No : 999, Rev_At_Epoch : 1408, Bstar : 0, Mean_Motion_Dot : -3.2999999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BANGABANDHUSAT-1", + "expanded": "BANGABANDHUSAT-1", + "numerical_value": 1395, + "description": "Object_Id : 2018-044A, Epoch : 2022-02-26T00:20:26.134368, Mean_Motion : 1.00271794, Eccentricity : 0.0002184, Inclination : 0.0099, Ra_Of_Asc_Node : 162.6604, Arg_Of_Pericenter : 197.6316, Mean_Anomaly : 279.729, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43463, Element_Set_No : 999, Rev_At_Epoch : 1396, Bstar : 0, Mean_Motion_Dot : -3.73E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-12", + "expanded": "SES-12", + "numerical_value": 1396, + "description": "Object_Id : 2018-049A, Epoch : 2022-02-25T16:37:45.530976, Mean_Motion : 1.00271269, Eccentricity : 0.0002012, Inclination : 0.0187, Ra_Of_Asc_Node : 71.5481, Arg_Of_Pericenter : 228.6005, Mean_Anomaly : 199.7863, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43488, Element_Set_No : 999, Rev_At_Epoch : 1365, Bstar : 0, Mean_Motion_Dot : -2.79E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "FENGYUN 2H", + "expanded": "FENGYUN 2H", + "numerical_value": 1397, + "description": "Object_Id : 2018-050A, Epoch : 2022-02-26T01:52:22.230048, Mean_Motion : 1.00272726, Eccentricity : 0.0003301, Inclination : 0.8669, Ra_Of_Asc_Node : 99.7606, Arg_Of_Pericenter : 18.3097, Mean_Anomaly : 145.1673, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43491, Element_Set_No : 999, Rev_At_Epoch : 1374, Bstar : 0, Mean_Motion_Dot : -1.4E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU IGSO-7", + "expanded": "BEIDOU IGSO-7", + "numerical_value": 1398, + "description": "Object_Id : 2018-057A, Epoch : 2022-02-26T07:52:28.101792, Mean_Motion : 1.0029129, Eccentricity : 0.0045553, Inclination : 55.0773, Ra_Of_Asc_Node : 176.6934, Arg_Of_Pericenter : 223.7824, Mean_Anomaly : 343.5403, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43539, Element_Set_No : 999, Rev_At_Epoch : 1339, Bstar : 0, Mean_Motion_Dot : -1.5899999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TELSTAR 19V", + "expanded": "TELSTAR 19V", + "numerical_value": 1399, + "description": "Object_Id : 2018-059A, Epoch : 2022-02-25T20:01:29.892000, Mean_Motion : 1.00272518, Eccentricity : 6.21E-05, Inclination : 0.0098, Ra_Of_Asc_Node : 146.0756, Arg_Of_Pericenter : 330.2738, Mean_Anomaly : 276.6715, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43562, Element_Set_No : 999, Rev_At_Epoch : 1337, Bstar : 0, Mean_Motion_Dot : -2.8999999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TELKOM 4 (MERAH PUTIH)", + "expanded": "TELKOM 4 (MERAH PUTIH)", + "numerical_value": 1400, + "description": "Object_Id : 2018-064A, Epoch : 2022-02-26T02:00:39.582144, Mean_Motion : 1.00272217, Eccentricity : 0.0001464, Inclination : 0.0144, Ra_Of_Asc_Node : 130.0977, Arg_Of_Pericenter : 228.0283, Mean_Anomaly : 295.9428, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43587, Element_Set_No : 999, Rev_At_Epoch : 1309, Bstar : 0, Mean_Motion_Dot : -3.5499999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TELSTAR 18V (APSTAR 5C)", + "expanded": "TELSTAR 18V (APSTAR 5C)", + "numerical_value": 1401, + "description": "Object_Id : 2018-069A, Epoch : 2022-02-25T22:42:33.534144, Mean_Motion : 1.00267159, Eccentricity : 0.0001616, Inclination : 0.0174, Ra_Of_Asc_Node : 129.7082, Arg_Of_Pericenter : 210.1724, Mean_Anomaly : 294.5, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43611, Element_Set_No : 999, Rev_At_Epoch : 1284, Bstar : 0, Mean_Motion_Dot : -3.0499999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AZERSPACE 2 (IS-38)", + "expanded": "AZERSPACE 2 (IS-38)", + "numerical_value": 1402, + "description": "Object_Id : 2018-074A, Epoch : 2022-02-26T03:25:56.288640, Mean_Motion : 1.00270372, Eccentricity : 0.0001303, Inclination : 0.0121, Ra_Of_Asc_Node : 124.57, Arg_Of_Pericenter : 224.941, Mean_Anomaly : 263.0219, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43632, Element_Set_No : 999, Rev_At_Epoch : 1269, Bstar : 0, Mean_Motion_Dot : 1.2499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "HORIZONS 3E", + "expanded": "HORIZONS 3E", + "numerical_value": 1403, + "description": "Object_Id : 2018-074B, Epoch : 2022-02-26T04:01:28.875648, Mean_Motion : 1.00271738, Eccentricity : 6.35E-05, Inclination : 0.001, Ra_Of_Asc_Node : 195.0346, Arg_Of_Pericenter : 168.0185, Mean_Anomaly : 22.2814, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43633, Element_Set_No : 999, Rev_At_Epoch : 1255, Bstar : 0, Mean_Motion_Dot : -4.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AEHF-4 (USA 288)", + "expanded": "AEHF-4 (USA 288)", + "numerical_value": 1404, + "description": "Object_Id : 2018-079A, Epoch : 2022-02-25T20:00:14.534784, Mean_Motion : 1.00271453, Eccentricity : 0.0003892, Inclination : 2.6371, Ra_Of_Asc_Node : 315.1752, Arg_Of_Pericenter : 31.9087, Mean_Anomaly : 41.1175, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43651, Element_Set_No : 999, Rev_At_Epoch : 1253, Bstar : 0, Mean_Motion_Dot : -2.8199999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 G1", + "expanded": "BEIDOU-3 G1", + "numerical_value": 1405, + "description": "Object_Id : 2018-085A, Epoch : 2022-02-25T22:43:11.212320, Mean_Motion : 1.00270967, Eccentricity : 0.0001563, Inclination : 0.8385, Ra_Of_Asc_Node : 186.2578, Arg_Of_Pericenter : 344.2242, Mean_Anomaly : 106.1332, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43683, Element_Set_No : 999, Rev_At_Epoch : 1228, Bstar : 0, Mean_Motion_Dot : -2.89E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-29", + "expanded": "GSAT-29", + "numerical_value": 1406, + "description": "Object_Id : 2018-089A, Epoch : 2022-02-25T21:56:42.780192, Mean_Motion : 1.00272162, Eccentricity : 0.0001872, Inclination : 0.0531, Ra_Of_Asc_Node : 275.5455, Arg_Of_Pericenter : 16.0664, Mean_Anomaly : 248.3504, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43698, Element_Set_No : 999, Rev_At_Epoch : 1202, Bstar : 0, Mean_Motion_Dot : 7.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ES'HAIL 2", + "expanded": "ES'HAIL 2", + "numerical_value": 1407, + "description": "Object_Id : 2018-090A, Epoch : 2022-02-25T21:31:42.815712, Mean_Motion : 1.00269592, Eccentricity : 0.0002234, Inclination : 0.016, Ra_Of_Asc_Node : 169.5965, Arg_Of_Pericenter : 201.9581, Mean_Anomaly : 132.8693, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43700, Element_Set_No : 999, Rev_At_Epoch : 1191, Bstar : 0, Mean_Motion_Dot : 1.34E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GEO-KOMPSAT-2A", + "expanded": "GEO-KOMPSAT-2A", + "numerical_value": 1408, + "description": "Object_Id : 2018-100A, Epoch : 2022-02-25T20:56:22.970976, Mean_Motion : 1.00271382, Eccentricity : 0.0001493, Inclination : 0.0175, Ra_Of_Asc_Node : 51.133, Arg_Of_Pericenter : 3.9049, Mean_Anomaly : 182.9895, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43823, Element_Set_No : 999, Rev_At_Epoch : 1185, Bstar : 0, Mean_Motion_Dot : -3.54E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-11", + "expanded": "GSAT-11", + "numerical_value": 1409, + "description": "Object_Id : 2018-100B, Epoch : 2022-02-26T03:11:57.742944, Mean_Motion : 1.00271231, Eccentricity : 0.0004698, Inclination : 0.1125, Ra_Of_Asc_Node : 270.2159, Arg_Of_Pericenter : 158.8248, Mean_Anomaly : 208.8505, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43824, Element_Set_No : 999, Rev_At_Epoch : 1186, Bstar : 0, Mean_Motion_Dot : -8.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-7A", + "expanded": "GSAT-7A", + "numerical_value": 1410, + "description": "Object_Id : 2018-105A, Epoch : 2022-02-25T21:59:42.829152, Mean_Motion : 1.00270875, Eccentricity : 0.0001204, Inclination : 0.0719, Ra_Of_Asc_Node : 277.9822, Arg_Of_Pericenter : 32.8154, Mean_Anomaly : 237.5696, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43864, Element_Set_No : 999, Rev_At_Epoch : 1170, Bstar : 0, Mean_Motion_Dot : 1.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2533", + "expanded": "COSMOS 2533", + "numerical_value": 1411, + "description": "Object_Id : 2018-107A, Epoch : 2022-02-25T21:59:42.829152, Mean_Motion : 1.00271753, Eccentricity : 3.9E-05, Inclination : 0.0157, Ra_Of_Asc_Node : 127.3948, Arg_Of_Pericenter : 271.6986, Mean_Anomaly : 156.544, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43867, Element_Set_No : 999, Rev_At_Epoch : 1166, Bstar : 0, Mean_Motion_Dot : -4.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-3", + "expanded": "TJS-3", + "numerical_value": 1412, + "description": "Object_Id : 2018-110A, Epoch : 2022-02-25T21:56:42.780192, Mean_Motion : 1.00274266, Eccentricity : 0.0002355, Inclination : 0.0547, Ra_Of_Asc_Node : 271.4901, Arg_Of_Pericenter : 68.0054, Mean_Anomaly : 204.3736, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43874, Element_Set_No : 999, Rev_At_Epoch : 1165, Bstar : 0, Mean_Motion_Dot : 4.5999999999999994E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 2D (ZX 2D)", + "expanded": "CHINASAT 2D (ZX 2D)", + "numerical_value": 1413, + "description": "Object_Id : 2019-001A, Epoch : 2022-02-26T05:35:08.969280, Mean_Motion : 1.00268755, Eccentricity : 0.0001346, Inclination : 0.0581, Ra_Of_Asc_Node : 299.5301, Arg_Of_Pericenter : 115.9805, Mean_Anomaly : 314.3063, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 43920, Element_Set_No : 999, Rev_At_Epoch : 1159, Bstar : 0, Mean_Motion_Dot : -3.49E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "HELLAS-SAT 4 & SGS-1", + "expanded": "HELLAS-SAT 4 & SGS-1", + "numerical_value": 1414, + "description": "Object_Id : 2019-007A, Epoch : 2022-02-25T22:04:42.678624, Mean_Motion : 1.00269492, Eccentricity : 0.0003059, Inclination : 0.0682, Ra_Of_Asc_Node : 123.1869, Arg_Of_Pericenter : 27.0676, Mean_Anomaly : 15.6526, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44034, Element_Set_No : 999, Rev_At_Epoch : 1159, Bstar : 0, Mean_Motion_Dot : 1.42E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-31", + "expanded": "GSAT-31", + "numerical_value": 1415, + "description": "Object_Id : 2019-007B, Epoch : 2022-02-25T22:04:42.678624, Mean_Motion : 1.00271628, Eccentricity : 0.0003871, Inclination : 0.0463, Ra_Of_Asc_Node : 279.6195, Arg_Of_Pericenter : 30.1672, Mean_Anomaly : 224.9563, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44035, Element_Set_No : 999, Rev_At_Epoch : 1121, Bstar : 0, Mean_Motion_Dot : 1.1499999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "NUSANTARA SATU", + "expanded": "NUSANTARA SATU", + "numerical_value": 1416, + "description": "Object_Id : 2019-009A, Epoch : 2022-02-25T21:01:31.932192, Mean_Motion : 1.0026972, Eccentricity : 0.0001919, Inclination : 0.0154, Ra_Of_Asc_Node : 113.0919, Arg_Of_Pericenter : 233.2288, Mean_Anomaly : 270.7397, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44048, Element_Set_No : 999, Rev_At_Epoch : 1099, Bstar : 0, Mean_Motion_Dot : -2.4500000000000003E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 6C (ZX 6C)", + "expanded": "CHINASAT 6C (ZX 6C)", + "numerical_value": 1417, + "description": "Object_Id : 2019-012A, Epoch : 2022-02-25T17:35:42.775008, Mean_Motion : 1.00270078, Eccentricity : 0.0004561, Inclination : 0.0146, Ra_Of_Asc_Node : 151.8429, Arg_Of_Pericenter : 132.4433, Mean_Anomaly : 260.246, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44067, Element_Set_No : 999, Rev_At_Epoch : 1096, Bstar : 0, Mean_Motion_Dot : -3.64E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "WGS 10 (USA 291)", + "expanded": "WGS 10 (USA 291)", + "numerical_value": 1418, + "description": "Object_Id : 2019-014A, Epoch : 2022-02-25T17:33:42.703200, Mean_Motion : 1.00271677, Eccentricity : 0.0001015, Inclination : 0.0133, Ra_Of_Asc_Node : 126.2331, Arg_Of_Pericenter : 37.4302, Mean_Anomaly : 315.6257, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44071, Element_Set_No : 999, Rev_At_Epoch : 1086, Bstar : 0, Mean_Motion_Dot : 3.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANLIAN 2-01", + "expanded": "TIANLIAN 2-01", + "numerical_value": 1419, + "description": "Object_Id : 2019-017A, Epoch : 2022-02-26T00:09:22.997088, Mean_Motion : 1.00273318, Eccentricity : 0.0029255, Inclination : 0.5027, Ra_Of_Asc_Node : 282.2136, Arg_Of_Pericenter : 227.1649, Mean_Anomaly : 88.8087, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44076, Element_Set_No : 999, Rev_At_Epoch : 1084, Bstar : 0, Mean_Motion_Dot : -1.47E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ARABSAT-6A", + "expanded": "ARABSAT-6A", + "numerical_value": 1420, + "description": "Object_Id : 2019-021A, Epoch : 2022-02-25T20:35:57.413760, Mean_Motion : 1.00268595, Eccentricity : 0.0003222, Inclination : 0.0544, Ra_Of_Asc_Node : 329.4056, Arg_Of_Pericenter : 348.0109, Mean_Anomaly : 177.7193, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44186, Element_Set_No : 999, Rev_At_Epoch : 1039, Bstar : 0, Mean_Motion_Dot : 1.4299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 IGSO-1", + "expanded": "BEIDOU-3 IGSO-1", + "numerical_value": 1421, + "description": "Object_Id : 2019-023A, Epoch : 2022-02-25T21:25:57.086976, Mean_Motion : 1.00291336, Eccentricity : 0.0021392, Inclination : 56.4039, Ra_Of_Asc_Node : 54.1682, Arg_Of_Pericenter : 205.5246, Mean_Anomaly : 335.4012, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44204, Element_Set_No : 999, Rev_At_Epoch : 1059, Bstar : 0, Mean_Motion_Dot : -1.91E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-2 G8", + "expanded": "BEIDOU-2 G8", + "numerical_value": 1422, + "description": "Object_Id : 2019-027A, Epoch : 2022-02-25T09:26:00.650112, Mean_Motion : 1.00265503, Eccentricity : 0.0004921, Inclination : 0.5989, Ra_Of_Asc_Node : 69.5024, Arg_Of_Pericenter : 141.9746, Mean_Anomaly : 229.5964, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44231, Element_Set_No : 999, Rev_At_Epoch : 1030, Bstar : 0, Mean_Motion_Dot : -2.58E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "YAMAL 601", + "expanded": "YAMAL 601", + "numerical_value": 1423, + "description": "Object_Id : 2019-031A, Epoch : 2022-02-25T05:03:36.470592, Mean_Motion : 1.00273842, Eccentricity : 0.0002586, Inclination : 0.0161, Ra_Of_Asc_Node : 150.9572, Arg_Of_Pericenter : 189.44, Mean_Anomaly : 299.5441, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44307, Element_Set_No : 999, Rev_At_Epoch : 1015, Bstar : 0, Mean_Motion_Dot : 1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AT&T T-16", + "expanded": "AT&T T-16", + "numerical_value": 1424, + "description": "Object_Id : 2019-034A, Epoch : 2022-02-26T02:43:59.379744, Mean_Motion : 1.00276917, Eccentricity : 7.810000000000001E-05, Inclination : 0.0325, Ra_Of_Asc_Node : 269.771, Arg_Of_Pericenter : 285.4793, Mean_Anomaly : 260.8135, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44333, Element_Set_No : 999, Rev_At_Epoch : 986, Bstar : 0, Mean_Motion_Dot : -1.27E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 7C", + "expanded": "EUTELSAT 7C", + "numerical_value": 1425, + "description": "Object_Id : 2019-034B, Epoch : 2022-02-26T03:15:00.687168, Mean_Motion : 1.00273375, Eccentricity : 0.0003245, Inclination : 0.0494, Ra_Of_Asc_Node : 254.3032, Arg_Of_Pericenter : 76.4663, Mean_Anomaly : 240.8999, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44334, Element_Set_No : 999, Rev_At_Epoch : 1036, Bstar : 0, Mean_Motion_Dot : 3.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 IGSO-2", + "expanded": "BEIDOU-3 IGSO-2", + "numerical_value": 1426, + "description": "Object_Id : 2019-035A, Epoch : 2022-02-25T17:26:30.088032, Mean_Motion : 1.00287418, Eccentricity : 0.0022444, Inclination : 55.1134, Ra_Of_Asc_Node : 172.7205, Arg_Of_Pericenter : 189.2033, Mean_Anomaly : 173.4102, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44337, Element_Set_No : 999, Rev_At_Epoch : 993, Bstar : 0, Mean_Motion_Dot : -1.64E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2539", + "expanded": "COSMOS 2539", + "numerical_value": 1427, + "description": "Object_Id : 2019-048A, Epoch : 2022-02-26T03:16:23.577600, Mean_Motion : 1.00270836, Eccentricity : 6.080000000000001E-05, Inclination : 0.018, Ra_Of_Asc_Node : 131.5961, Arg_Of_Pericenter : 321.3654, Mean_Anomaly : 124.0678, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44457, Element_Set_No : 999, Rev_At_Epoch : 946, Bstar : 0, Mean_Motion_Dot : 6.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EDRS-C", + "expanded": "EDRS-C", + "numerical_value": 1428, + "description": "Object_Id : 2019-049A, Epoch : 2022-02-25T11:33:50.491296, Mean_Motion : 1.00268116, Eccentricity : 7.7E-05, Inclination : 0.0944, Ra_Of_Asc_Node : 269.2512, Arg_Of_Pericenter : 68.6044, Mean_Anomaly : 22.1147, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44475, Element_Set_No : 999, Rev_At_Epoch : 943, Bstar : 0, Mean_Motion_Dot : 1.46E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INTELSAT 39 (IS-39)", + "expanded": "INTELSAT 39 (IS-39)", + "numerical_value": 1429, + "description": "Object_Id : 2019-049B, Epoch : 2022-02-26T03:22:42.672288, Mean_Motion : 1.00270077, Eccentricity : 0.0001282, Inclination : 0.0255, Ra_Of_Asc_Node : 128.7969, Arg_Of_Pericenter : 16.934, Mean_Anomaly : 122.8499, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44476, Element_Set_No : 999, Rev_At_Epoch : 937, Bstar : 0, Mean_Motion_Dot : 2.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AMOS-17", + "expanded": "AMOS-17", + "numerical_value": 1430, + "description": "Object_Id : 2019-050A, Epoch : 2022-02-26T03:17:54.005568, Mean_Motion : 1.00268685, Eccentricity : 0.0001974, Inclination : 0.0135, Ra_Of_Asc_Node : 105.1585, Arg_Of_Pericenter : 243.0924, Mean_Anomaly : 234.1699, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44479, Element_Set_No : 999, Rev_At_Epoch : 941, Bstar : 0, Mean_Motion_Dot : 9.699999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "AEHF-5 (USA 292)", + "expanded": "AEHF-5 (USA 292)", + "numerical_value": 1431, + "description": "Object_Id : 2019-051A, Epoch : 2022-02-25T20:35:16.980288, Mean_Motion : 1.00268278, Eccentricity : 0.0002414, Inclination : 4.6331, Ra_Of_Asc_Node : 304.8614, Arg_Of_Pericenter : 45.8655, Mean_Anomaly : 168.2789, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44481, Element_Set_No : 999, Rev_At_Epoch : 949, Bstar : 0, Mean_Motion_Dot : 7.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT 5 WEST B", + "expanded": "EUTELSAT 5 WEST B", + "numerical_value": 1432, + "description": "Object_Id : 2019-067A, Epoch : 2022-02-26T03:11:37.222944, Mean_Motion : 1.00270942, Eccentricity : 0.0003659, Inclination : 0.1057, Ra_Of_Asc_Node : 313.8456, Arg_Of_Pericenter : 127.666, Mean_Anomaly : 117.2994, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44624, Element_Set_No : 999, Rev_At_Epoch : 867, Bstar : 0, Mean_Motion_Dot : -5.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "MEV-1", + "expanded": "MEV-1", + "numerical_value": 1433, + "description": "Object_Id : 2019-067B, Epoch : 2022-02-25T09:51:35.716320, Mean_Motion : 1.00272521, Eccentricity : 8.960000000000001E-05, Inclination : 0.0435, Ra_Of_Asc_Node : 278.4584, Arg_Of_Pericenter : 96.6443, Mean_Anomaly : 260.5494, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44625, Element_Set_No : 999, Rev_At_Epoch : 7581, Bstar : 0, Mean_Motion_Dot : -2.1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-4", + "expanded": "TJS-4", + "numerical_value": 1434, + "description": "Object_Id : 2019-070A, Epoch : 2022-02-25T21:40:14.691648, Mean_Motion : 1.00271991, Eccentricity : 0.0004301, Inclination : 0.1047, Ra_Of_Asc_Node : 294.5633, Arg_Of_Pericenter : 90.4246, Mean_Anomaly : 179.2503, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44637, Element_Set_No : 999, Rev_At_Epoch : 879, Bstar : 0, Mean_Motion_Dot : -1.8E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 IGSO-3", + "expanded": "BEIDOU-3 IGSO-3", + "numerical_value": 1435, + "description": "Object_Id : 2019-073A, Epoch : 2022-02-25T17:06:08.318592, Mean_Motion : 1.00289858, Eccentricity : 0.0019852, Inclination : 57.4391, Ra_Of_Asc_Node : 297.5424, Arg_Of_Pericenter : 173.6748, Mean_Anomaly : 59.2177, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44709, Element_Set_No : 999, Rev_At_Epoch : 868, Bstar : 0, Mean_Motion_Dot : -1.6E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIBA-1", + "expanded": "TIBA-1", + "numerical_value": 1436, + "description": "Object_Id : 2019-080A, Epoch : 2022-02-25T20:29:45.411648, Mean_Motion : 1.00269015, Eccentricity : 0.000184, Inclination : 0.0565, Ra_Of_Asc_Node : 351.0713, Arg_Of_Pericenter : 340.6651, Mean_Anomaly : 166.8564, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44800, Element_Set_No : 999, Rev_At_Epoch : 829, Bstar : 0, Mean_Motion_Dot : 1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "INMARSAT GX5", + "expanded": "INMARSAT GX5", + "numerical_value": 1437, + "description": "Object_Id : 2019-080B, Epoch : 2022-02-25T21:47:42.837216, Mean_Motion : 1.00272232, Eccentricity : 0.0002184, Inclination : 0.0441, Ra_Of_Asc_Node : 0.1428, Arg_Of_Pericenter : 358.0598, Mean_Anomaly : 135.4142, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44801, Element_Set_No : 999, Rev_At_Epoch : 834, Bstar : 0, Mean_Motion_Dot : 6.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-18 (KACIFIC 1)", + "expanded": "JCSAT-18 (KACIFIC 1)", + "numerical_value": 1438, + "description": "Object_Id : 2019-091A, Epoch : 2022-02-25T21:02:39.752736, Mean_Motion : 1.00267601, Eccentricity : 3.9800000000000005E-05, Inclination : 0.0222, Ra_Of_Asc_Node : 124.8587, Arg_Of_Pericenter : 267.9824, Mean_Anomaly : 228.52, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44868, Element_Set_No : 999, Rev_At_Epoch : 825, Bstar : 0, Mean_Motion_Dot : -2.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "ELEKTRO-L 3", + "expanded": "ELEKTRO-L 3", + "numerical_value": 1439, + "description": "Object_Id : 2019-095A, Epoch : 2022-02-25T20:41:26.227104, Mean_Motion : 1.00272221, Eccentricity : 9.350000000000001E-05, Inclination : 0.0558, Ra_Of_Asc_Node : 294.1961, Arg_Of_Pericenter : 62.0093, Mean_Anomaly : 185.7669, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44903, Element_Set_No : 999, Rev_At_Epoch : 795, Bstar : 0, Mean_Motion_Dot : -1.06E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SHIJIAN-20 (SJ-20)", + "expanded": "SHIJIAN-20 (SJ-20)", + "numerical_value": 1440, + "description": "Object_Id : 2019-097A, Epoch : 2022-02-25T20:44:49.689600, Mean_Motion : 1.0027106, Eccentricity : 0.0007369, Inclination : 0.8878, Ra_Of_Asc_Node : 92.9951, Arg_Of_Pericenter : 305.7711, Mean_Anomaly : 155.6465, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44910, Element_Set_No : 999, Rev_At_Epoch : 793, Bstar : 0, Mean_Motion_Dot : -2.18E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-5", + "expanded": "TJS-5", + "numerical_value": 1441, + "description": "Object_Id : 2020-002A, Epoch : 2022-02-25T21:34:19.050240, Mean_Motion : 1.0027126, Eccentricity : 0.0003079, Inclination : 0.0922, Ra_Of_Asc_Node : 80.5134, Arg_Of_Pericenter : 123.8643, Mean_Anomaly : 22.4418, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 44978, Element_Set_No : 999, Rev_At_Epoch : 793, Bstar : 0, Mean_Motion_Dot : -3.53E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-30", + "expanded": "GSAT-30", + "numerical_value": 1442, + "description": "Object_Id : 2020-005A, Epoch : 2022-02-26T01:53:30.050592, Mean_Motion : 1.00270884, Eccentricity : 0.0002375, Inclination : 0.0793, Ra_Of_Asc_Node : 272.21, Arg_Of_Pericenter : 176.6283, Mean_Anomaly : 178.4259, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45026, Element_Set_No : 999, Rev_At_Epoch : 776, Bstar : 0, Mean_Motion_Dot : -1.7599999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT KONNECT", + "expanded": "EUTELSAT KONNECT", + "numerical_value": 1443, + "description": "Object_Id : 2020-005B, Epoch : 2022-02-26T03:15:00.687168, Mean_Motion : 1.00271574, Eccentricity : 1.0900000000000002E-05, Inclination : 0.0438, Ra_Of_Asc_Node : 99.3527, Arg_Of_Pericenter : 327.3551, Mean_Anomaly : 145.2059, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45027, Element_Set_No : 999, Rev_At_Epoch : 855, Bstar : 0, Mean_Motion_Dot : 3.7999999999999996E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "JCSAT-17", + "expanded": "JCSAT-17", + "numerical_value": 1444, + "description": "Object_Id : 2020-013A, Epoch : 2022-02-25T03:36:03.881088, Mean_Motion : 1.00270687, Eccentricity : 0.0004416, Inclination : 6.2622, Ra_Of_Asc_Node : 344.8927, Arg_Of_Pericenter : 348.7169, Mean_Anomaly : 11.3444, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45245, Element_Set_No : 999, Rev_At_Epoch : 746, Bstar : 0, Mean_Motion_Dot : -3.16E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GEO-KOMPSAT-2B", + "expanded": "GEO-KOMPSAT-2B", + "numerical_value": 1445, + "description": "Object_Id : 2020-013B, Epoch : 2022-02-25T20:56:22.970976, Mean_Motion : 1.00270924, Eccentricity : 0.0001545, Inclination : 0.0483, Ra_Of_Asc_Node : 299.1467, Arg_Of_Pericenter : 4.5923, Mean_Anomaly : 294.2814, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45246, Element_Set_No : 999, Rev_At_Epoch : 748, Bstar : 0, Mean_Motion_Dot : -3.54E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 G2", + "expanded": "BEIDOU-3 G2", + "numerical_value": 1446, + "description": "Object_Id : 2020-017A, Epoch : 2022-02-26T03:35:59.140320, Mean_Motion : 1.00269656, Eccentricity : 0.0002402, Inclination : 2.1504, Ra_Of_Asc_Node : 346.6892, Arg_Of_Pericenter : 66.6531, Mean_Anomaly : 236.6024, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45344, Element_Set_No : 999, Rev_At_Epoch : 750, Bstar : 0, Mean_Motion_Dot : -1.48E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "AEHF-6 (USA 298)", + "expanded": "AEHF-6 (USA 298)", + "numerical_value": 1447, + "description": "Object_Id : 2020-022B, Epoch : 2022-02-25T22:42:25.998336, Mean_Motion : 1.00273168, Eccentricity : 0.0051182, Inclination : 6.2036, Ra_Of_Asc_Node : 303.7615, Arg_Of_Pericenter : 0.0417, Mean_Anomaly : 330.2952, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45465, Element_Set_No : 999, Rev_At_Epoch : 721, Bstar : 0, Mean_Motion_Dot : -3.03E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 G3", + "expanded": "BEIDOU-3 G3", + "numerical_value": 1448, + "description": "Object_Id : 2020-040A, Epoch : 2022-02-26T02:01:24.796128, Mean_Motion : 1.0027373, Eccentricity : 0.0008008, Inclination : 1.6974, Ra_Of_Asc_Node : 300.6355, Arg_Of_Pericenter : 348.3705, Mean_Anomaly : 7.7706, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45807, Element_Set_No : 999, Rev_At_Epoch : 631, Bstar : 0, Mean_Motion_Dot : -3.64E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "APSTAR 6D", + "expanded": "APSTAR 6D", + "numerical_value": 1449, + "description": "Object_Id : 2020-045A, Epoch : 2022-02-25T19:48:16.276032, Mean_Motion : 1.00272394, Eccentricity : 0.0002756, Inclination : 0.0184, Ra_Of_Asc_Node : 111.6835, Arg_Of_Pericenter : 283.1051, Mean_Anomaly : 191.9207, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45863, Element_Set_No : 999, Rev_At_Epoch : 609, Bstar : 0, Mean_Motion_Dot : -3.28E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "KOREASAT 116", + "expanded": "KOREASAT 116", + "numerical_value": 1450, + "description": "Object_Id : 2020-048A, Epoch : 2022-02-25T19:59:13.068096, Mean_Motion : 1.00267765, Eccentricity : 6.960000000000001E-05, Inclination : 0.0217, Ra_Of_Asc_Node : 249.5828, Arg_Of_Pericenter : 107.8455, Mean_Anomaly : 214.1716, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45920, Element_Set_No : 999, Rev_At_Epoch : 587, Bstar : 0, Mean_Motion_Dot : -3.7199999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS 103", + "expanded": "EXPRESS 103", + "numerical_value": 1451, + "description": "Object_Id : 2020-053A, Epoch : 2022-02-25T07:13:27.632928, Mean_Motion : 1.00271331, Eccentricity : 4.190000000000001E-05, Inclination : 0.0401, Ra_Of_Asc_Node : 271.3739, Arg_Of_Pericenter : 190.6747, Mean_Anomaly : 257.9304, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45985, Element_Set_No : 999, Rev_At_Epoch : 588, Bstar : 0, Mean_Motion_Dot : -2.88E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EXPRESS 80", + "expanded": "EXPRESS 80", + "numerical_value": 1452, + "description": "Object_Id : 2020-053B, Epoch : 2022-02-26T03:35:59.140320, Mean_Motion : 1.00271468, Eccentricity : 6.2E-05, Inclination : 0.0316, Ra_Of_Asc_Node : 278.765, Arg_Of_Pericenter : 286.9796, Mean_Anomaly : 84.2012, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 45986, Element_Set_No : 999, Rev_At_Epoch : 587, Bstar : 0, Mean_Motion_Dot : -1.47E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BSAT-4B", + "expanded": "BSAT-4B", + "numerical_value": 1453, + "description": "Object_Id : 2020-056A, Epoch : 2022-02-25T21:34:45.050592, Mean_Motion : 1.00270696, Eccentricity : 0.0001564, Inclination : 0.0321, Ra_Of_Asc_Node : 222.7814, Arg_Of_Pericenter : 218.6845, Mean_Anomaly : 147.7564, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 46112, Element_Set_No : 999, Rev_At_Epoch : 562, Bstar : 0, Mean_Motion_Dot : -3.6099999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "MEV-2", + "expanded": "MEV-2", + "numerical_value": 1454, + "description": "Object_Id : 2020-056B, Epoch : 2022-02-25T08:15:53.550720, Mean_Motion : 1.00270514, Eccentricity : 9.33E-05, Inclination : 0.0568, Ra_Of_Asc_Node : 276.4574, Arg_Of_Pericenter : 89.1991, Mean_Anomaly : 272.4871, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 46113, Element_Set_No : 999, Rev_At_Epoch : 6477, Bstar : 0, Mean_Motion_Dot : -1.8999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GALAXY 30 (G-30)", + "expanded": "GALAXY 30 (G-30)", + "numerical_value": 1455, + "description": "Object_Id : 2020-056C, Epoch : 2022-02-25T15:00:28.742688, Mean_Motion : 1.0027192, Eccentricity : 0.0001665, Inclination : 0.0167, Ra_Of_Asc_Node : 137.3914, Arg_Of_Pericenter : 224.7785, Mean_Anomaly : 253.3797, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 46114, Element_Set_No : 999, Rev_At_Epoch : 552, Bstar : 0, Mean_Motion_Dot : 2.7999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GAOFEN 13", + "expanded": "GAOFEN 13", + "numerical_value": 1456, + "description": "Object_Id : 2020-071A, Epoch : 2022-02-25T22:57:27.684288, Mean_Motion : 1.00266981, Eccentricity : 0.0003997, Inclination : 0.7737, Ra_Of_Asc_Node : 272.7102, Arg_Of_Pericenter : 231.5841, Mean_Anomaly : 113.6124, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 46610, Element_Set_No : 999, Rev_At_Epoch : 514, Bstar : 0, Mean_Motion_Dot : -3.73E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANTONG-1 2", + "expanded": "TIANTONG-1 2", + "numerical_value": 1457, + "description": "Object_Id : 2020-082A, Epoch : 2022-02-25T14:14:32.270784, Mean_Motion : 1.00267244, Eccentricity : 0.0003615, Inclination : 4.3966, Ra_Of_Asc_Node : 296.2882, Arg_Of_Pericenter : 96.7998, Mean_Anomaly : 100.8715, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 46916, Element_Set_No : 999, Rev_At_Epoch : 488, Bstar : 0, Mean_Motion_Dot : -3.62E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCAS (JDRS-1)", + "expanded": "LUCAS (JDRS-1)", + "numerical_value": 1458, + "description": "Object_Id : 2020-089A, Epoch : 2022-02-25T19:02:22.129152, Mean_Motion : 1.00272068, Eccentricity : 0.0002788, Inclination : 0.0221, Ra_Of_Asc_Node : 120.1157, Arg_Of_Pericenter : 217.1523, Mean_Anomaly : 194.7026, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 47202, Element_Set_No : 999, Rev_At_Epoch : 465, Bstar : 0, Mean_Motion_Dot : -2.4599999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SXM-7", + "expanded": "SXM-7", + "numerical_value": 1459, + "description": "Object_Id : 2020-096A, Epoch : 2022-02-25T15:11:50.181216, Mean_Motion : 1.00270826, Eccentricity : 0.0002303, Inclination : 0.0248, Ra_Of_Asc_Node : 119.1092, Arg_Of_Pericenter : 52.5928, Mean_Anomaly : 96.4215, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 47240, Element_Set_No : 999, Rev_At_Epoch : 454, Bstar : 0, Mean_Motion_Dot : -3.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "CMS-01", + "expanded": "CMS-01", + "numerical_value": 1460, + "description": "Object_Id : 2020-099A, Epoch : 2022-02-26T01:53:30.049728, Mean_Motion : 1.00271799, Eccentricity : 0.0006575, Inclination : 0.048, Ra_Of_Asc_Node : 276.5725, Arg_Of_Pericenter : 6.9111, Mean_Anomaly : 343.77, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 47256, Element_Set_No : 999, Rev_At_Epoch : 442, Bstar : 0, Mean_Motion_Dot : -1.7599999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TURKSAT 5A", + "expanded": "TURKSAT 5A", + "numerical_value": 1461, + "description": "Object_Id : 2021-001A, Epoch : 2022-02-25T20:50:56.257152, Mean_Motion : 1.00270679, Eccentricity : 3.0200000000000002E-05, Inclination : 0.0166, Ra_Of_Asc_Node : 113.321, Arg_Of_Pericenter : 320.0777, Mean_Anomaly : 65.915, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 47306, Element_Set_No : 999, Rev_At_Epoch : 421, Bstar : 0, Mean_Motion_Dot : 1.44E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANTONG-1 3", + "expanded": "TIANTONG-1 3", + "numerical_value": 1462, + "description": "Object_Id : 2021-003A, Epoch : 2022-02-25T17:16:19.699680, Mean_Motion : 1.00271984, Eccentricity : 0.0004139, Inclination : 4.6732, Ra_Of_Asc_Node : 308.4137, Arg_Of_Pericenter : 22.0647, Mean_Anomaly : 165.6851, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 47321, Element_Set_No : 999, Rev_At_Epoch : 420, Bstar : 0, Mean_Motion_Dot : -1.6E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-6", + "expanded": "TJS-6", + "numerical_value": 1463, + "description": "Object_Id : 2021-010A, Epoch : 2022-02-26T05:56:53.705184, Mean_Motion : 1.00269511, Eccentricity : 0.0001655, Inclination : 0.0858, Ra_Of_Asc_Node : 293.6391, Arg_Of_Pericenter : 79.4674, Mean_Anomaly : 50.6306, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 47613, Element_Set_No : 999, Rev_At_Epoch : 406, Bstar : 0, Mean_Motion_Dot : 3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SBIRS GEO-5 (USA 315)", + "expanded": "SBIRS GEO-5 (USA 315)", + "numerical_value": 1464, + "description": "Object_Id : 2021-042A, Epoch : 2022-02-25T23:48:44.819424, Mean_Motion : 1.00271746, Eccentricity : 0.0005533, Inclination : 7.5344, Ra_Of_Asc_Node : 326.6405, Arg_Of_Pericenter : 224.9792, Mean_Anomaly : 329.8562, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 48618, Element_Set_No : 999, Rev_At_Epoch : 296, Bstar : 0, Mean_Motion_Dot : 4.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "FENGYUN 4B", + "expanded": "FENGYUN 4B", + "numerical_value": 1465, + "description": "Object_Id : 2021-047A, Epoch : 2022-02-26T00:21:33.954912, Mean_Motion : 1.00269634, Eccentricity : 0.0006783, Inclination : 0.1303, Ra_Of_Asc_Node : 87.8125, Arg_Of_Pericenter : 29.1258, Mean_Anomaly : 167.6854, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 48808, Element_Set_No : 999, Rev_At_Epoch : 280, Bstar : 0, Mean_Motion_Dot : -3.68E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SXM-8", + "expanded": "SXM-8", + "numerical_value": 1466, + "description": "Object_Id : 2021-049A, Epoch : 2022-02-25T14:45:06.528960, Mean_Motion : 1.00267353, Eccentricity : 7.780000000000001E-05, Inclination : 0.0201, Ra_Of_Asc_Node : 118.7613, Arg_Of_Pericenter : 213.1801, Mean_Anomaly : 319.573, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 48838, Element_Set_No : 999, Rev_At_Epoch : 284, Bstar : 0, Mean_Motion_Dot : -2.13E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANLIAN 1-05", + "expanded": "TIANLIAN 1-05", + "numerical_value": 1467, + "description": "Object_Id : 2021-063A, Epoch : 2022-02-25T21:47:42.837216, Mean_Motion : 1.00268291, Eccentricity : 0.0003387, Inclination : 2.447, Ra_Of_Asc_Node : 284.3608, Arg_Of_Pericenter : 62.1079, Mean_Anomaly : 146.777, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49011, Element_Set_No : 999, Rev_At_Epoch : 231, Bstar : 0, Mean_Motion_Dot : 6.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "STAR ONE D2", + "expanded": "STAR ONE D2", + "numerical_value": 1468, + "description": "Object_Id : 2021-069A, Epoch : 2022-02-25T18:17:35.095200, Mean_Motion : 1.00270849, Eccentricity : 9.380000000000002E-05, Inclination : 0.0288, Ra_Of_Asc_Node : 127.9247, Arg_Of_Pericenter : 185.4319, Mean_Anomaly : 46.6084, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49055, Element_Set_No : 999, Rev_At_Epoch : 214, Bstar : 0, Mean_Motion_Dot : -2.75E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "EUTELSAT QUANTUM", + "expanded": "EUTELSAT QUANTUM", + "numerical_value": 1469, + "description": "Object_Id : 2021-069B, Epoch : 2022-02-26T03:26:41.501760, Mean_Motion : 1.0027268, Eccentricity : 0.0002072, Inclination : 0.0212, Ra_Of_Asc_Node : 124.3113, Arg_Of_Pericenter : 230.4549, Mean_Anomaly : 260.569, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49056, Element_Set_No : 999, Rev_At_Epoch : 215, Bstar : 0, Mean_Motion_Dot : 1.14E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 2E (ZX 2E)", + "expanded": "CHINASAT 2E (ZX 2E)", + "numerical_value": 1470, + "description": "Object_Id : 2021-071A, Epoch : 2022-02-26T01:57:46.262016, Mean_Motion : 1.00273334, Eccentricity : 0.0001805, Inclination : 0.0502, Ra_Of_Asc_Node : 292.6267, Arg_Of_Pericenter : 85.0514, Mean_Anomaly : 265.6947, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49062, Element_Set_No : 999, Rev_At_Epoch : 228, Bstar : 0, Mean_Motion_Dot : -3.03E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-7", + "expanded": "TJS-7", + "numerical_value": 1471, + "description": "Object_Id : 2021-077A, Epoch : 2022-02-25T05:51:25.114752, Mean_Motion : 1.00271101, Eccentricity : 0.0003078, Inclination : 0.5886, Ra_Of_Asc_Node : 273.1507, Arg_Of_Pericenter : 11.1096, Mean_Anomaly : 105.1898, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49115, Element_Set_No : 999, Rev_At_Epoch : 204, Bstar : 0, Mean_Motion_Dot : -2.3799999999999997E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 9B", + "expanded": "CHINASAT 9B", + "numerical_value": 1472, + "description": "Object_Id : 2021-080A, Epoch : 2022-02-26T01:58:46.546752, Mean_Motion : 1.00271165, Eccentricity : 0.0001486, Inclination : 0.0458, Ra_Of_Asc_Node : 113.8374, Arg_Of_Pericenter : 203.98, Mean_Anomaly : 329.1932, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49125, Element_Set_No : 999, Rev_At_Epoch : 186, Bstar : 0, Mean_Motion_Dot : -3.24E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SHIJIAN-21 (SJ-21)", + "expanded": "SHIJIAN-21 (SJ-21)", + "numerical_value": 1473, + "description": "Object_Id : 2021-094A, Epoch : 2022-02-25T21:21:42.575040, Mean_Motion : 1.00416416, Eccentricity : 0.0109917, Inclination : 8.2505, Ra_Of_Asc_Node : 50.668, Arg_Of_Pericenter : 11.0436, Mean_Anomaly : 82.747, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49330, Element_Set_No : 999, Rev_At_Epoch : 149, Bstar : 0, Mean_Motion_Dot : 8.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-1R", + "expanded": "QZS-1R", + "numerical_value": 1474, + "description": "Object_Id : 2021-096A, Epoch : 2022-02-25T21:15:54.816768, Mean_Motion : 1.00298431, Eccentricity : 0.0746325, Inclination : 34.2459, Ra_Of_Asc_Node : 103.5814, Arg_Of_Pericenter : 268.8423, Mean_Anomaly : 234.3971, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49336, Element_Set_No : 999, Rev_At_Epoch : 125, Bstar : 0, Mean_Motion_Dot : -2.83E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "CHINASAT 1D (ZX 1D)", + "expanded": "CHINASAT 1D (ZX 1D)", + "numerical_value": 1475, + "description": "Object_Id : 2021-114A, Epoch : 2022-02-25T21:23:58.335360, Mean_Motion : 1.00272511, Eccentricity : 0.0002317, Inclination : 1.7564, Ra_Of_Asc_Node : 280.806, Arg_Of_Pericenter : 155.4384, Mean_Anomaly : 170.6256, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49505, Element_Set_No : 999, Rev_At_Epoch : 106, Bstar : 0, Mean_Motion_Dot : -3.46E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "STPSAT-6", + "expanded": "STPSAT-6", + "numerical_value": 1476, + "description": "Object_Id : 2021-118A, Epoch : 2022-02-26T02:40:58.524672, Mean_Motion : 1.00270868, Eccentricity : 4.070000000000001E-05, Inclination : 0.0019, Ra_Of_Asc_Node : 280.5779, Arg_Of_Pericenter : 97.8638, Mean_Anomaly : 66.0734, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49817, Element_Set_No : 999, Rev_At_Epoch : 81, Bstar : 0, Mean_Motion_Dot : -5.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "LDPE-1", + "expanded": "LDPE-1", + "numerical_value": 1477, + "description": "Object_Id : 2021-118B, Epoch : 2022-02-26T02:54:47.446272, Mean_Motion : 1.01236853, Eccentricity : 0.0001792, Inclination : 0.168, Ra_Of_Asc_Node : 110.113, Arg_Of_Pericenter : 337.8053, Mean_Anomaly : 48.3391, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 49818, Element_Set_No : 999, Rev_At_Epoch : 80, Bstar : 0, Mean_Motion_Dot : -2.52E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "2021-123A", + "expanded": "2021-123A", + "numerical_value": 1478, + "description": "Object_Id : 2021-123A, Epoch : 2022-02-25T04:49:01.955712, Mean_Motion : 1.00183651, Eccentricity : 0.0845829, Inclination : 0.0909, Ra_Of_Asc_Node : 288.3937, Arg_Of_Pericenter : 163.5209, Mean_Anomaly : 277.7399, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 50001, Element_Set_No : 999, Rev_At_Epoch : 77, Bstar : 0, Mean_Motion_Dot : -3.16E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "2021-123B", + "expanded": "2021-123B", + "numerical_value": 1479, + "description": "Object_Id : 2021-123B, Epoch : 2022-02-25T07:31:02.515584, Mean_Motion : 1.0039984, Eccentricity : 0.16579, Inclination : 0.0939, Ra_Of_Asc_Node : 291.6013, Arg_Of_Pericenter : 160.8773, Mean_Anomaly : 286.4682, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 50002, Element_Set_No : 999, Rev_At_Epoch : 75, Bstar : 0, Mean_Motion_Dot : -3.82E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "TIANLIAN 2-02", + "expanded": "TIANLIAN 2-02", + "numerical_value": 1480, + "description": "Object_Id : 2021-124A, Epoch : 2022-02-25T19:45:06.144192, Mean_Motion : 1.00272069, Eccentricity : 0.0002547, Inclination : 2.824, Ra_Of_Asc_Node : 283.9769, Arg_Of_Pericenter : 40.687, Mean_Anomaly : 298.2598, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 50005, Element_Set_No : 999, Rev_At_Epoch : 84, Bstar : 0, Mean_Motion_Dot : -2.2999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SHIYAN 12 01 (SY-12 01)", + "expanded": "SHIYAN 12 01 (SY-12 01)", + "numerical_value": 1481, + "description": "Object_Id : 2021-129A, Epoch : 2022-02-25T21:59:42.829152, Mean_Motion : 1.00215491, Eccentricity : 1.59E-05, Inclination : 0.3976, Ra_Of_Asc_Node : 262.4375, Arg_Of_Pericenter : 320.7398, Mean_Anomaly : 331.6932, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 50321, Element_Set_No : 999, Rev_At_Epoch : 72, Bstar : 0, Mean_Motion_Dot : -2.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SHIYAN 12 02 (SY-12 02)", + "expanded": "SHIYAN 12 02 (SY-12 02)", + "numerical_value": 1482, + "description": "Object_Id : 2021-129B, Epoch : 2022-02-25T21:59:42.829152, Mean_Motion : 1.00157961, Eccentricity : 0.0002665, Inclination : 0.398, Ra_Of_Asc_Node : 262.4355, Arg_Of_Pericenter : 60.2139, Mean_Anomaly : 232.4009, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 50322, Element_Set_No : 999, Rev_At_Epoch : 72, Bstar : 0, Mean_Motion_Dot : -1.8999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "TJS-9", + "expanded": "TJS-9", + "numerical_value": 1483, + "description": "Object_Id : 2021-135A, Epoch : 2022-02-25T17:32:16.728288, Mean_Motion : 1.00275612, Eccentricity : 7.26E-05, Inclination : 0.0387, Ra_Of_Asc_Node : 160.3012, Arg_Of_Pericenter : 103.1796, Mean_Anomaly : 292.3021, Ephemeris-Type : 0, Classification_Type : U, Norad_Cat_Id : 50574, Element_Set_No : 999, Rev_At_Epoch : 69, Bstar : 0, Mean_Motion_Dot : -3.0799999999999997E-06, Mean_Motion_Ddot : 0" + } + ] + }, + { + "predicate": "Tracking", + "entry": [ + { + "value": "TDRS 3", + "expanded": "TDRS 3", + "numerical_value": 1485, + "description": "Object_Id: 1988-091B, Epoch: 2022-03-04T10:22:25.842720, Mean_Motion: 1.00278664, Eccentricity: 0.0039802, Inclination: 13.789, Ra_Of_Asc_Node: 352.1495, Arg_Of_Pericenter: 331.5482, Mean_Anomaly: 305.1109, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 19548, Element_Set_No: 999, Rev_At_Epoch: 10968, Bstar: 0, Mean_Motion_Dot: -3.0899999999999996E-06, Mean_Motion_DDot: 0" + }, + { + "value": "HST", + "expanded": "HST", + "numerical_value": 1486, + "description": "Object_Id: 1990-037B, Epoch: 2022-03-04T13:11:24.836064, Mean_Motion: 15.10088476, Eccentricity: 0.0002494, Inclination: 28.4695, Ra_Of_Asc_Node: 143.6545, Arg_Of_Pericenter: 352.5548, Mean_Anomaly: 33.3364, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 20580, Element_Set_No: 999, Rev_At_Epoch: 55034, Bstar: 9.3454E-05, Mean_Motion_Dot: 1.743E-05, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 5", + "expanded": "TDRS 5", + "numerical_value": 1487, + "description": "Object_Id: 1991-054B, Epoch: 2022-03-04T18:39:42.924096, Mean_Motion: 1.00272618, Eccentricity: 0.0027303, Inclination: 14.2447, Ra_Of_Asc_Node: 5.4777000000000005, Arg_Of_Pericenter: 354.6515, Mean_Anomaly: 274.5983, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 21639, Element_Set_No: 999, Rev_At_Epoch: 11201, Bstar: 0, Mean_Motion_Dot: 7.4E-07, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 6", + "expanded": "TDRS 6", + "numerical_value": 1488, + "description": "Object_Id: 1993-003B, Epoch: 2022-03-04T10:28:36.998976, Mean_Motion: 1.00268181, Eccentricity: 0.0008262, Inclination: 14.1239, Ra_Of_Asc_Node: 8.7066, Arg_Of_Pericenter: 88.3702, Mean_Anomaly: 176.3068, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 22314, Element_Set_No: 999, Rev_At_Epoch: 10670, Bstar: 0, Mean_Motion_Dot: -3.0499999999999996E-06, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 7", + "expanded": "TDRS 7", + "numerical_value": 1489, + "description": "Object_Id: 1995-035B, Epoch: 2022-03-04T02:10:59.655072, Mean_Motion: 1.00270724, Eccentricity: 0.002873, Inclination: 14.0165, Ra_Of_Asc_Node: 359.3926, Arg_Of_Pericenter: 42.0719, Mean_Anomaly: 237.8931, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 23613, Element_Set_No: 999, Rev_At_Epoch: 9754, Bstar: 0, Mean_Motion_Dot: -2.12E-06, Mean_Motion_DDot: 0" + }, + { + "value": "ISS (ZARYA)", + "expanded": "ISS (ZARYA)", + "numerical_value": 1490, + "description": "Object_Id: 1998-067A, Epoch: 2022-03-04T16:11:53.128608, Mean_Motion: 15.49565617, Eccentricity: 0.0005392, Inclination: 51.644, Ra_Of_Asc_Node: 134.1631, Arg_Of_Pericenter: 212.4666, Mean_Anomaly: 247.9309, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25544, Element_Set_No: 999, Rev_At_Epoch: 32897, Bstar: 0.00012882, Mean_Motion_Dot: 6.794000000000002E-05, Mean_Motion_DDot: 0" + }, + { + "value": "LANDSAT 7", + "expanded": "LANDSAT 7", + "numerical_value": 1491, + "description": "Object_Id: 1999-020A, Epoch: 2022-03-04T21:20:12.744960, Mean_Motion: 14.57215966, Eccentricity: 0.0001788, Inclination: 97.9952, Ra_Of_Asc_Node: 116.0011, Arg_Of_Pericenter: 82.4667, Mean_Anomaly: 277.6726, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25682, Element_Set_No: 999, Rev_At_Epoch: 21732, Bstar: 3.3948E-05, Mean_Motion_Dot: 1.1E-06, Mean_Motion_DDot: 0" + }, + { + "value": "TERRA", + "expanded": "TERRA", + "numerical_value": 1492, + "description": "Object_Id: 1999-068A, Epoch: 2022-03-04T20:01:45.953760, Mean_Motion: 14.57136603, Eccentricity: 0.0001278, Inclination: 98.147, Ra_Of_Asc_Node: 138.11, Arg_Of_Pericenter: 97.7486, Mean_Anomaly: 15.9597, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25994, Element_Set_No: 999, Rev_At_Epoch: 18138, Bstar: 4.2753E-05, Mean_Motion_Dot: 1.48E-06, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 8", + "expanded": "TDRS 8", + "numerical_value": 1493, + "description": "Object_Id: 2000-034A, Epoch: 2022-03-04T11:12:57.743136, Mean_Motion: 1.00277533, Eccentricity: 0.0022831, Inclination: 10.2023, Ra_Of_Asc_Node: 43.2693, Arg_Of_Pericenter: 331.1043, Mean_Anomaly: 45.2548, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 26388, Element_Set_No: 999, Rev_At_Epoch: 7947, Bstar: 0, Mean_Motion_Dot: -2.4500000000000003E-06, Mean_Motion_DDot: 0" + }, + { + "value": "TIMED", + "expanded": "TIMED", + "numerical_value": 1494, + "description": "Object_Id: 2001-055B, Epoch: 2022-03-04T14:27:03.882528, Mean_Motion: 14.88483749, Eccentricity: 0.0001404, Inclination: 74.0721, Ra_Of_Asc_Node: 128.5036, Arg_Of_Pericenter: 314.1004, Mean_Anomaly: 46.0062, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 26998, Element_Set_No: 999, Rev_At_Epoch: 9754, Bstar: 4.7612E-05, Mean_Motion_Dot: 4.049999999999999E-06, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 9", + "expanded": "TDRS 9", + "numerical_value": 1495, + "description": "Object_Id: 2002-011A, Epoch: 2022-03-04T10:29:22.873056, Mean_Motion: 1.00271437, Eccentricity: 0.0028697, Inclination: 8.7973, Ra_Of_Asc_Node: 61.766, Arg_Of_Pericenter: 295.2996, Mean_Anomaly: 260.223, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27389, Element_Set_No: 999, Rev_At_Epoch: 7474, Bstar: 0, Mean_Motion_Dot: -2.99E-06, Mean_Motion_DDot: 0" + }, + { + "value": "AQUA", + "expanded": "AQUA", + "numerical_value": 1496, + "description": "Object_Id: 2002-022A, Epoch: 2022-03-04T20:23:34.130976, Mean_Motion: 14.57154639, Eccentricity: 0.0001079, Inclination: 98.2378, Ra_Of_Asc_Node: 6.8039, Arg_Of_Pericenter: 108.4889, Mean_Anomaly: 314.3186, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27424, Element_Set_No: 999, Rev_At_Epoch: 5499, Bstar: 8.158400000000001E-05, Mean_Motion_Dot: 3.22E-06, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 10", + "expanded": "TDRS 10", + "numerical_value": 1497, + "description": "Object_Id: 2002-055A, Epoch: 2022-03-04T16:51:34.127712, Mean_Motion: 1.00268616, Eccentricity: 0.0009371, Inclination: 8.0122, Ra_Of_Asc_Node: 50.5353, Arg_Of_Pericenter: 316.6004, Mean_Anomaly: 237.06, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27566, Element_Set_No: 999, Rev_At_Epoch: 7052, Bstar: 0, Mean_Motion_Dot: 7.699999999999999E-07, Mean_Motion_DDot: 0" + }, + { + "value": "SORCE", + "expanded": "SORCE", + "numerical_value": 1498, + "description": "Object_Id: 2003-004A, Epoch: 2022-03-04T10:04:04.017216, Mean_Motion: 14.89596909, Eccentricity: 0.0022115, Inclination: 39.9956, Ra_Of_Asc_Node: 83.822, Arg_Of_Pericenter: 94.9516, Mean_Anomaly: 265.3798, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27651, Element_Set_No: 999, Rev_At_Epoch: 3740, Bstar: 0.00010519, Mean_Motion_Dot: 8.88E-06, Mean_Motion_DDot: 0" + }, + { + "value": "AURA", + "expanded": "AURA", + "numerical_value": 1499, + "description": "Object_Id: 2004-026A, Epoch: 2022-03-04T13:39:41.060736, Mean_Motion: 14.57086815, Eccentricity: 0.0001288, Inclination: 98.2169, Ra_Of_Asc_Node: 8.4539, Arg_Of_Pericenter: 87.1845, Mean_Anomaly: 272.9501, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28376, Element_Set_No: 999, Rev_At_Epoch: 93795, Bstar: 9.4178E-05, Mean_Motion_Dot: 3.7899999999999997E-06, Mean_Motion_DDot: 0" + }, + { + "value": "SWIFT", + "expanded": "SWIFT", + "numerical_value": 1500, + "description": "Object_Id: 2004-047A, Epoch: 2022-03-04T19:56:45.725856, Mean_Motion: 15.05661591, Eccentricity: 0.0010919, Inclination: 20.5576, Ra_Of_Asc_Node: 324.4372, Arg_Of_Pericenter: 53.286, Mean_Anomaly: 306.8576, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28485, Element_Set_No: 999, Rev_At_Epoch: 94783, Bstar: 0.00014483, Mean_Motion_Dot: 2.6070000000000003E-05, Mean_Motion_DDot: 0" + }, + { + "value": "THEMIS A", + "expanded": "THEMIS A", + "numerical_value": 1501, + "description": "Object_Id: 2007-004A, Epoch: 2022-03-03T11:32:59.432352, Mean_Motion: 0.87833876, Eccentricity: 0.8387213, Inclination: 15.3819, Ra_Of_Asc_Node: 355.0133, Arg_Of_Pericenter: 145.421, Mean_Anomaly: 321.8619, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 30580, Element_Set_No: 999, Rev_At_Epoch: 5219, Bstar: 0.020865, Mean_Motion_Dot: -4.58E-06, Mean_Motion_DDot: 0" + }, + { + "value": "THEMIS D", + "expanded": "THEMIS D", + "numerical_value": 1502, + "description": "Object_Id: 2007-004D, Epoch: 2022-02-28T21:35:11.999616, Mean_Motion: 0.87836841, Eccentricity: 0.8357575, Inclination: 11.57, Ra_Of_Asc_Node: 344.8638, Arg_Of_Pericenter: 158.01, Mean_Anomaly: 235.0891, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 30797, Element_Set_No: 999, Rev_At_Epoch: 5170, Bstar: 0, Mean_Motion_Dot: -3.64E-06, Mean_Motion_DDot: 0" + }, + { + "value": "THEMIS E", + "expanded": "THEMIS E", + "numerical_value": 1503, + "description": "Object_Id: 2007-004E, Epoch: 2022-03-03T14:52:47.932608, Mean_Motion: 0.87840314, Eccentricity: 0.8342121, Inclination: 12.0075, Ra_Of_Asc_Node: 356.7242, Arg_Of_Pericenter: 148.9122, Mean_Anomaly: 3.156, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 30798, Element_Set_No: 999, Rev_At_Epoch: 5214, Bstar: 0, Mean_Motion_Dot: -5.25E-06, Mean_Motion_DDot: 0" + }, + { + "value": "AIM", + "expanded": "AIM", + "numerical_value": 1504, + "description": "Object_Id: 2007-015A, Epoch: 2022-03-04T12:04:52.723200, Mean_Motion: 15.15899722, Eccentricity: 0.0005945, Inclination: 97.8588, Ra_Of_Asc_Node: 338.9336, Arg_Of_Pericenter: 34.0709, Mean_Anomaly: 326.0903, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 31304, Element_Set_No: 999, Rev_At_Epoch: 81528, Bstar: 0.00028503, Mean_Motion_Dot: 5.389000000000001E-05, Mean_Motion_DDot: 0" + }, + { + "value": "FGRST (GLAST)", + "expanded": "FGRST (GLAST)", + "numerical_value": 1505, + "description": "Object_Id: 2008-029A, Epoch: 2022-03-04T13:36:04.214880, Mean_Motion: 15.11842369, Eccentricity: 0.0012412, Inclination: 25.5818, Ra_Of_Asc_Node: 162.1999, Arg_Of_Pericenter: 46.3468, Mean_Anomaly: 313.8095, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33053, Element_Set_No: 999, Rev_At_Epoch: 75780, Bstar: 5.314E-05, Mean_Motion_Dot: 1.2310000000000002E-05, Mean_Motion_DDot: 0" + }, + { + "value": "WISE", + "expanded": "WISE", + "numerical_value": 1506, + "description": "Object_Id: 2009-071A, Epoch: 2022-03-04T13:21:17.878752, Mean_Motion: 15.32168856, Eccentricity: 0.0001698, Inclination: 97.254, Ra_Of_Asc_Node: 100.0978, Arg_Of_Pericenter: 6.497, Mean_Anomaly: 353.6293, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 36119, Element_Set_No: 999, Rev_At_Epoch: 67943, Bstar: 0.00011151, Mean_Motion_Dot: 3.3870000000000006E-05, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 11", + "expanded": "TDRS 11", + "numerical_value": 1507, + "description": "Object_Id: 2013-004A, Epoch: 2022-03-04T14:19:32.405376, Mean_Motion: 1.00277326, Eccentricity: 0.0006371, Inclination: 3.0303, Ra_Of_Asc_Node: 343.1956, Arg_Of_Pericenter: 48.2446, Mean_Anomaly: 171.4436, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39070, Element_Set_No: 999, Rev_At_Epoch: 3099, Bstar: 0, Mean_Motion_Dot: 6.599999999999999E-07, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 12", + "expanded": "TDRS 12", + "numerical_value": 1508, + "description": "Object_Id: 2014-004A, Epoch: 2022-03-04T12:18:46.421856, Mean_Motion: 1.00265801, Eccentricity: 0.0003056, Inclination: 3.9534000000000002, Ra_Of_Asc_Node: 345.5051, Arg_Of_Pericenter: 70.4883, Mean_Anomaly: 249.8824, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39504, Element_Set_No: 999, Rev_At_Epoch: 2857, Bstar: 0, Mean_Motion_Dot: -2.85E-06, Mean_Motion_DDot: 0" + }, + { + "value": "GPM-CORE", + "expanded": "GPM-CORE", + "numerical_value": 1509, + "description": "Object_Id: 2014-009C, Epoch: 2022-03-04T13:47:57.824448, Mean_Motion: 15.55864245, Eccentricity: 0.0010622, Inclination: 65.0046, Ra_Of_Asc_Node: 185.3736, Arg_Of_Pericenter: 280.6816, Mean_Anomaly: 79.3134, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39574, Element_Set_No: 999, Rev_At_Epoch: 45528, Bstar: 0.00019189, Mean_Motion_Dot: 0.00013129, Mean_Motion_DDot: 0" + }, + { + "value": "MMS 1", + "expanded": "MMS 1", + "numerical_value": 1510, + "description": "Object_Id: 2015-011A, Epoch: 2022-02-18T09:00:00.000000, Mean_Motion: 0.28440465, Eccentricity: 0.8553758, Inclination: 33.203, Ra_Of_Asc_Node: 110.3704, Arg_Of_Pericenter: 44.9851, Mean_Anomaly: 156.8124, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40482, Element_Set_No: 999, Rev_At_Epoch: 1296, Bstar: 0, Mean_Motion_Dot: -1.7930000000000003E-05, Mean_Motion_DDot: 0" + }, + { + "value": "MMS 2", + "expanded": "MMS 2", + "numerical_value": 1511, + "description": "Object_Id: 2015-011B, Epoch: 2022-02-18T09:00:00.000000, Mean_Motion: 0.2844042, Eccentricity: 0.8553178, Inclination: 33.2012, Ra_Of_Asc_Node: 110.3736, Arg_Of_Pericenter: 44.9909, Mean_Anomaly: 156.7827, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40483, Element_Set_No: 999, Rev_At_Epoch: 1302, Bstar: 0, Mean_Motion_Dot: -1.792E-05, Mean_Motion_DDot: 0" + }, + { + "value": "MMS 3", + "expanded": "MMS 3", + "numerical_value": 1512, + "description": "Object_Id: 2015-011C, Epoch: 2022-03-03T04:06:35.352000, Mean_Motion: 0.28455509, Eccentricity: 0.8578272, Inclination: 33.1467, Ra_Of_Asc_Node: 109.8579, Arg_Of_Pericenter: 45.9078, Mean_Anomaly: 24.8284, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40484, Element_Set_No: 999, Rev_At_Epoch: 1274, Bstar: 0, Mean_Motion_Dot: -1.8090000000000005E-05, Mean_Motion_DDot: 0" + }, + { + "value": "MMS 4", + "expanded": "MMS 4", + "numerical_value": 1513, + "description": "Object_Id: 2015-011D, Epoch: 2022-02-18T09:00:00.000000, Mean_Motion: 0.28440432, Eccentricity: 0.8552345, Inclination: 33.2032, Ra_Of_Asc_Node: 110.3721, Arg_Of_Pericenter: 44.9837, Mean_Anomaly: 156.8058, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40485, Element_Set_No: 999, Rev_At_Epoch: 1291, Bstar: 0, Mean_Motion_Dot: -1.792E-05, Mean_Motion_DDot: 0" + }, + { + "value": "TDRS 13", + "expanded": "TDRS 13", + "numerical_value": 1514, + "description": "Object_Id: 2017-047A, Epoch: 2022-03-04T08:42:34.598880, Mean_Motion: 1.00272317, Eccentricity: 0.0015968, Inclination: 4.626, Ra_Of_Asc_Node: 332.596, Arg_Of_Pericenter: 101.225, Mean_Anomaly: 207.2606, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42915, Element_Set_No: 999, Rev_At_Epoch: 1664, Bstar: 0, Mean_Motion_Dot: -1.1699999999999998E-06, Mean_Motion_DDot: 0" + }, + { + "value": "JPSS-1", + "expanded": "JPSS-1", + "numerical_value": 1515, + "description": "Object_Id: 2017-073A, Epoch: 2022-03-04T20:03:07.128288, Mean_Motion: 14.19531066, Eccentricity: 0.0001227, Inclination: 98.7479, Ra_Of_Asc_Node: 3.8402, Arg_Of_Pericenter: 64.4986, Mean_Anomaly: 295.6316, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43013, Element_Set_No: 999, Rev_At_Epoch: 22238, Bstar: 2.5478000000000002E-05, Mean_Motion_Dot: 1E-07, Mean_Motion_DDot: 0" + } + ] + }, + { + "predicate": "Search & Rescue", + "entry": [ + { + "value": "SARSAT 7 (NOAA 15)", + "expanded": "SARSAT 7 (NOAA 15)", + "numerical_value": 1516, + "description": "Object_Id: 1998-030A, Epoch: 2022-03-05T19:01:52.712544, Mean_Motion: 14.26094824, Eccentricity: 0.0009538, Inclination: 98.6571, Ra_Of_Asc_Node: 95.6228, Arg_Of_Pericenter: 235.9836, Mean_Of_Anomaly: 124.0439, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25338, Element_Set_No: 999, Rev_At_Epoch: 23849, Bstar: 5.8683E-05, Mean_Motion_Dot: 9.6E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "METEOSAT-8 (MSG-1)", + "expanded": "METEOSAT-8 (MSG-1)", + "numerical_value": 1517, + "description": "Object_Id: 2002-040B, Epoch: 2022-03-05T12:49:23.784384, Mean_Motion: 1.00272778, Eccentricity: 9.84E-05, Inclination: 7.8471, Ra_Of_Asc_Node: 51.1988, Arg_Of_Pericenter: 315.6994, Mean_Of_Anomaly: 30.0819, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27509, Element_Set_No: 999, Rev_At_Epoch: 7156, Bstar: 0, Mean_Motion_Dot: 1.26E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIR-08", + "expanded": "GPS BIIR-08", + "numerical_value": 1518, + "description": "Object_Id: 2003-005A, Epoch: 2022-03-05T13:38:07.135296, Mean_Motion: 2.00570733, Eccentricity: 0.0126221, Inclination: 55.5836, Ra_Of_Asc_Node: 277.1841, Arg_Of_Pericenter: 40.1007, Mean_Of_Anomaly: 322.9029, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27663, Element_Set_No: 999, Rev_At_Epoch: 13993, Bstar: 0, Mean_Motion_Dot: -1.1E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIR-11", + "expanded": "GPS BIIR-11", + "numerical_value": 1519, + "description": "Object_Id: 2004-009A, Epoch: 2022-03-05T13:59:39.255936, Mean_Motion: 2.005624, Eccentricity: 0.0088112, Inclination: 56.0621, Ra_Of_Asc_Node: 338.1394, Arg_Of_Pericenter: 116.0228, Mean_Of_Anomaly: 56.2513, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28190, Element_Set_No: 999, Rev_At_Epoch: 13156, Bstar: 0, Mean_Motion_Dot: -9.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIR-13", + "expanded": "GPS BIIR-13", + "numerical_value": 1520, + "description": "Object_Id: 2004-045A, Epoch: 2022-03-05T11:11:37.201056, Mean_Motion: 2.00560444, Eccentricity: 0.0208387, Inclination: 55.3153, Ra_Of_Asc_Node: 27.6171, Arg_Of_Pericenter: 277.5676, Mean_Of_Anomaly: 78.3038, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28474, Element_Set_No: 999, Rev_At_Epoch: 12704, Bstar: 0, Mean_Motion_Dot: -9.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SARSAT 10 (NOAA 18)", + "expanded": "SARSAT 10 (NOAA 18)", + "numerical_value": 1521, + "description": "Object_Id: 2005-018A, Epoch: 2022-03-05T19:14:44.828736, Mean_Motion: 14.12695132, Eccentricity: 0.0013326, Inclination: 98.9601, Ra_Of_Asc_Node: 135.2801, Arg_Of_Pericenter: 263.2864, Mean_Of_Anomaly: 96.6791, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28654, Element_Set_No: 999, Rev_At_Epoch: 86543, Bstar: 0.00010372, Mean_Motion_Dot: 1.47E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIR-14M", + "expanded": "GPS BIIR-14M", + "numerical_value": 1522, + "description": "Object_Id: 2005-038A, Epoch: 2022-03-05T11:24:08.008416, Mean_Motion: 2.00552989, Eccentricity: 0.0138126, Inclination: 56.1327, Ra_Of_Asc_Node: 335.573, Arg_Of_Pericenter: 274.2637, Mean_Of_Anomaly: 200.3461, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28874, Element_Set_No: 999, Rev_At_Epoch: 12045, Bstar: 0, Mean_Motion_Dot: -9.199999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "METEOSAT-9 (MSG-2)", + "expanded": "METEOSAT-9 (MSG-2)", + "numerical_value": 1523, + "description": "Object_Id: 2005-049B, Epoch: 2022-03-05T05:49:35.798016, Mean_Motion: 1.00418366, Eccentricity: 9.61E-05, Inclination: 5.7874, Ra_Of_Asc_Node: 66.9527, Arg_Of_Pericenter: 234.1975, Mean_Of_Anomaly: 328.501, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28912, Element_Set_No: 999, Rev_At_Epoch: 5934, Bstar: 0, Mean_Motion_Dot: 1.1699999999999998E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GOES 13", + "expanded": "GOES 13", + "numerical_value": 1524, + "description": "Object_Id: 2006-018A, Epoch: 2022-03-05T14:34:08.258592, Mean_Motion: 1.00270759, Eccentricity: 0.0003, Inclination: 0.327, Ra_Of_Asc_Node: 97.7268, Arg_Of_Pericenter: 164.8954, Mean_Of_Anomaly: 180.6381, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 29155, Element_Set_No: 999, Rev_At_Epoch: 2768, Bstar: 0, Mean_Motion_Dot: 2.6E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIR-16M", + "expanded": "GPS BIIR-16M", + "numerical_value": 1525, + "description": "Object_Id: 2006-052A, Epoch: 2022-03-05T09:00:23.755680, Mean_Motion: 2.00573229, Eccentricity: 0.0084912, Inclination: 55.5875, Ra_Of_Asc_Node: 276.1256, Arg_Of_Pericenter: 71.4056, Mean_Of_Anomaly: 289.5451, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 29601, Element_Set_No: 999, Rev_At_Epoch: 11202, Bstar: 0, Mean_Motion_Dot: -1E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIR-17M", + "expanded": "GPS BIIR-17M", + "numerical_value": 1526, + "description": "Object_Id: 2007-047A, Epoch: 2022-03-05T04:27:07.251840, Mean_Motion: 2.00554385, Eccentricity: 0.0137392, Inclination: 53.285, Ra_Of_Asc_Node: 144.8645, Arg_Of_Pericenter: 61.3748, Mean_Of_Anomaly: 300.0528, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 32260, Element_Set_No: 999, Rev_At_Epoch: 10542, Bstar: 0, Mean_Motion_Dot: 1E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIR-18M", + "expanded": "GPS BIIR-18M", + "numerical_value": 1527, + "description": "Object_Id: 2007-062A, Epoch: 2022-03-05T08:43:13.085760, Mean_Motion: 2.00555971, Eccentricity: 0.0017113, Inclination: 56.2485, Ra_Of_Asc_Node: 336.3252, Arg_Of_Pericenter: 133.2076, Mean_Of_Anomaly: 125.9262, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 32384, Element_Set_No: 999, Rev_At_Epoch: 10412, Bstar: 0, Mean_Motion_Dot: -9.199999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SARSAT 12 (NOAA 19)", + "expanded": "SARSAT 12 (NOAA 19)", + "numerical_value": 1528, + "description": "Object_Id: 2009-005A, Epoch: 2022-03-05T18:59:51.548640, Mean_Motion: 14.12534785, Eccentricity: 0.0014787, Inclination: 99.1617, Ra_Of_Asc_Node: 96.6864, Arg_Of_Pericenter: 117.8567, Mean_Of_Anomaly: 242.4104, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33591, Element_Set_No: 999, Rev_At_Epoch: 67381, Bstar: 8.1965E-05, Mean_Motion_Dot: 1.05E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GOES 14", + "expanded": "GOES 14", + "numerical_value": 1529, + "description": "Object_Id: 2009-033A, Epoch: 2022-03-05T15:07:29.205696, Mean_Motion: 1.00271775, Eccentricity: 0.0012659, Inclination: 0.0711, Ra_Of_Asc_Node: 81.7986, Arg_Of_Pericenter: 145.2047, Mean_Of_Anomaly: 58.6787, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 35491, Element_Set_No: 999, Rev_At_Epoch: 4646, Bstar: 0, Mean_Motion_Dot: -1.04E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GOES 15", + "expanded": "GOES 15", + "numerical_value": 1530, + "description": "Object_Id: 2010-008A, Epoch: 2022-03-05T15:55:37.867008, Mean_Motion: 1.00259703, Eccentricity: 5.35E-05, Inclination: 0.041, Ra_Of_Asc_Node: 125.6612, Arg_Of_Pericenter: 229.7929, Mean_Of_Anomaly: 279.2109, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 36411, Element_Set_No: 999, Rev_At_Epoch: 4397, Bstar: 0, Mean_Motion_Dot: 4.0999999999999994E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-2", + "expanded": "GPS BIIF-2", + "numerical_value": 1531, + "description": "Object_Id: 2011-036A, Epoch: 2022-03-05T13:03:36.512640, Mean_Motion: 2.00564767, Eccentricity: 0.0113274, Inclination: 56.5602, Ra_Of_Asc_Node: 32.7495, Arg_Of_Pericenter: 49.843, Mean_Of_Anomaly: 127.2175, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37753, Element_Set_No: 999, Rev_At_Epoch: 7789, Bstar: 0, Mean_Motion_Dot: -8.599999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0101 (GALILEO-PFM)", + "expanded": "GSAT0101 (GALILEO-PFM)", + "numerical_value": 1532, + "description": "Object_Id: 2011-060A, Epoch: 2022-03-03T15:58:48.908640, Mean_Motion: 1.7047502799999998, Eccentricity: 0.000402, Inclination: 56.9588, Ra_Of_Asc_Node: 24.2119, Arg_Of_Pericenter: 345.9009, Mean_Of_Anomaly: 14.0609, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37846, Element_Set_No: 999, Rev_At_Epoch: 6441, Bstar: 0, Mean_Motion_Dot: -9.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0102 (GALILEO-FM2)", + "expanded": "GSAT0102 (GALILEO-FM2)", + "numerical_value": 1533, + "description": "Object_Id: 2011-060B, Epoch: 2022-03-05T15:43:00.900192, Mean_Motion: 1.7047539999999999, Eccentricity: 0.0005358, Inclination: 56.9602, Ra_Of_Asc_Node: 24.1574, Arg_Of_Pericenter: 326.2116, Mean_Of_Anomaly: 220.9906, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37847, Element_Set_No: 999, Rev_At_Epoch: 6457, Bstar: 0, Mean_Motion_Dot: -9.199999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "LUCH 5A", + "expanded": "LUCH 5A", + "numerical_value": 1534, + "description": "Object_Id: 2011-074B, Epoch: 2022-03-05T15:44:14.354880, Mean_Motion: 1.00268367, Eccentricity: 0.000334, Inclination: 4.7585, Ra_Of_Asc_Node: 99.7225, Arg_Of_Pericenter: 278.6437, Mean_Of_Anomaly: 188.1554, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37951, Element_Set_No: 999, Rev_At_Epoch: 3750, Bstar: 0, Mean_Motion_Dot: -5.699999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "METEOSAT-10 (MSG-3)", + "expanded": "METEOSAT-10 (MSG-3)", + "numerical_value": 1535, + "description": "Object_Id: 2012-035B, Epoch: 2022-03-05T07:30:04.317408, Mean_Motion: 1.00272845, Eccentricity: 0.0001128, Inclination: 1.3845, Ra_Of_Asc_Node: 34.1515, Arg_Of_Pericenter: 236.2722, Mean_Of_Anomaly: 14.3103, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38552, Element_Set_No: 999, Rev_At_Epoch: 3516, Bstar: 0, Mean_Motion_Dot: 4.8E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SARSAT 13 (METOP-B)", + "expanded": "SARSAT 13 (METOP-B)", + "numerical_value": 1536, + "description": "Object_Id: 2012-049A, Epoch: 2022-03-05T19:31:16.172832, Mean_Motion: 14.21499294, Eccentricity: 0.0001066, Inclination: 98.6785, Ra_Of_Asc_Node: 126.0997, Arg_Of_Pericenter: 43.5584, Mean_Of_Anomaly: 66.3453, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38771, Element_Set_No: 999, Rev_At_Epoch: 49100, Bstar: 4.2014E-05, Mean_Motion_Dot: 4.8E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-3", + "expanded": "GPS BIIF-3", + "numerical_value": 1537, + "description": "Object_Id: 2012-053A, Epoch: 2022-03-05T06:47:10.946976, Mean_Motion: 2.00560599, Eccentricity: 0.0122136, Inclination: 53.5413, Ra_Of_Asc_Node: 207.6164, Arg_Of_Pericenter: 45.6849, Mean_Of_Anomaly: 315.2609, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38833, Element_Set_No: 999, Rev_At_Epoch: 6805, Bstar: 0, Mean_Motion_Dot: 1.2E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0103 (GALILEO-FM3)", + "expanded": "GSAT0103 (GALILEO-FM3)", + "numerical_value": 1538, + "description": "Object_Id: 2012-055A, Epoch: 2022-03-04T21:06:16.250400, Mean_Motion: 1.7047364200000001, Eccentricity: 0.0004127, Inclination: 55.1066, Ra_Of_Asc_Node: 144.5741, Arg_Of_Pericenter: 255.6612, Mean_Of_Anomaly: 104.3482, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38857, Element_Set_No: 999, Rev_At_Epoch: 5832, Bstar: 0, Mean_Motion_Dot: -5E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0104 (GALILEO-FM4)", + "expanded": "GSAT0104 (GALILEO-FM4)", + "numerical_value": 1539, + "description": "Object_Id: 2012-055B, Epoch: 2022-03-03T16:14:07.045152, Mean_Motion: 1.70473858, Eccentricity: 0.0001769, Inclination: 55.1063, Ra_Of_Asc_Node: 144.6086, Arg_Of_Pericenter: 237.8796, Mean_Of_Anomaly: 122.1536, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38858, Element_Set_No: 999, Rev_At_Epoch: 5830, Bstar: 0, Mean_Motion_Dot: -6.000000000000001E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-4", + "expanded": "GPS BIIF-4", + "numerical_value": 1540, + "description": "Object_Id: 2013-023A, Epoch: 2022-03-05T03:25:33.628512, Mean_Motion: 2.00566572, Eccentricity: 0.0101903, Inclination: 55.7642, Ra_Of_Asc_Node: 331.9996, Arg_Of_Pericenter: 36.0744, Mean_Of_Anomaly: 324.6471, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39166, Element_Set_No: 999, Rev_At_Epoch: 6449, Bstar: 0, Mean_Motion_Dot: -8.8E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "INSAT-3D", + "expanded": "INSAT-3D", + "numerical_value": 1541, + "description": "Object_Id: 2013-038B, Epoch: 2022-03-05T13:11:46.618368, Mean_Motion: 1.00271987, Eccentricity: 0.0001141, Inclination: 0.0621, Ra_Of_Asc_Node: 274.7554, Arg_Of_Pericenter: 91.5358, Mean_Of_Anomaly: 76.9718, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39216, Element_Set_No: 999, Rev_At_Epoch: 3140, Bstar: 0, Mean_Motion_Dot: -1.68E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-5", + "expanded": "GPS BIIF-5", + "numerical_value": 1542, + "description": "Object_Id: 2014-008A, Epoch: 2022-03-04T15:19:00.708960, Mean_Motion: 2.00574921, Eccentricity: 0.0056803, Inclination: 53.6381, Ra_Of_Asc_Node: 213.1376, Arg_Of_Pericenter: 205.3711, Mean_Of_Anomaly: 154.2991, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39533, Element_Set_No: 999, Rev_At_Epoch: 5828, Bstar: 0, Mean_Motion_Dot: 7E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "LUCH 5V", + "expanded": "LUCH 5V", + "numerical_value": 1543, + "description": "Object_Id: 2014-023A, Epoch: 2022-03-05T13:04:43.132224, Mean_Motion: 1.00269996, Eccentricity: 0.0002696, Inclination: 1.2584, Ra_Of_Asc_Node: 73.2518, Arg_Of_Pericenter: 316.3551, Mean_Of_Anomaly: 64.5365, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39727, Element_Set_No: 999, Rev_At_Epoch: 2867, Bstar: 0, Mean_Motion_Dot: -2.8E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-6", + "expanded": "GPS BIIF-6", + "numerical_value": 1544, + "description": "Object_Id: 2014-026A, Epoch: 2022-03-05T10:02:45.633408, Mean_Motion: 2.00563392, Eccentricity: 0.0028815, Inclination: 56.524, Ra_Of_Asc_Node: 32.2806, Arg_Of_Pericenter: 303.7826, Mean_Of_Anomaly: 55.9288, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39741, Element_Set_No: 999, Rev_At_Epoch: 5715, Bstar: 0, Mean_Motion_Dot: -8.599999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-7", + "expanded": "GPS BIIF-7", + "numerical_value": 1545, + "description": "Object_Id: 2014-045A, Epoch: 2022-03-05T00:16:44.234112, Mean_Motion: 2.00570672, Eccentricity: 0.0019866, Inclination: 54.6682, Ra_Of_Asc_Node: 150.9744, Arg_Of_Pericenter: 109.5888, Mean_Of_Anomaly: 250.6679, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40105, Element_Set_No: 999, Rev_At_Epoch: 5468, Bstar: 0, Mean_Motion_Dot: 4E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0201 (GALILEO 5)", + "expanded": "GSAT0201 (GALILEO 5)", + "numerical_value": 1546, + "description": "Object_Id: 2014-050A, Epoch: 2022-03-01T09:49:27.323328, Mean_Motion: 1.8551915700000001, Eccentricity: 0.1630581, Inclination: 50.348, Ra_Of_Asc_Node: 336.5886, Arg_Of_Pericenter: 120.1808, Mean_Of_Anomaly: 256.9588, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40128, Element_Set_No: 999, Rev_At_Epoch: 4921, Bstar: 0, Mean_Motion_Dot: -9.6E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0202 (GALILEO 6)", + "expanded": "GSAT0202 (GALILEO 6)", + "numerical_value": 1547, + "description": "Object_Id: 2014-050B, Epoch: 2022-02-28T14:13:33.213792, Mean_Motion: 1.85519808, Eccentricity: 0.1627703, Inclination: 50.375, Ra_Of_Asc_Node: 335.6784, Arg_Of_Pericenter: 120.9607, Mean_Of_Anomaly: 256.0391, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40129, Element_Set_No: 999, Rev_At_Epoch: 5136, Bstar: 0, Mean_Motion_Dot: -9.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-8", + "expanded": "GPS BIIF-8", + "numerical_value": 1548, + "description": "Object_Id: 2014-068A, Epoch: 2022-03-04T21:16:18.400512, Mean_Motion: 2.00564252, Eccentricity: 0.0037266, Inclination: 55.7363, Ra_Of_Asc_Node: 92.0657, Arg_Of_Pericenter: 52.2384, Mean_Of_Anomaly: 308.1611, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40294, Element_Set_No: 999, Rev_At_Epoch: 5381, Bstar: 0, Mean_Motion_Dot: -1.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GLONASS-K 2", + "expanded": "GLONASS-K 2", + "numerical_value": 1549, + "description": "Object_Id: 2014-075A, Epoch: 2022-03-05T15:08:18.794112, Mean_Motion: 2.13101327, Eccentricity: 0.0016195, Inclination: 63.7115, Ra_Of_Asc_Node: 244.8061, Arg_Of_Pericenter: 205.2461, Mean_Of_Anomaly: 32.4247, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40315, Element_Set_No: 999, Rev_At_Epoch: 5651, Bstar: 0, Mean_Motion_Dot: 3.2999999999999996E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-9", + "expanded": "GPS BIIF-9", + "numerical_value": 1550, + "description": "Object_Id: 2015-013A, Epoch: 2022-03-05T12:24:30.122784, Mean_Motion: 2.00558943, Eccentricity: 0.0068266, Inclination: 53.7708, Ra_Of_Asc_Node: 268.9987, Arg_Of_Pericenter: 19.8369, Mean_Of_Anomaly: 340.4438, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40534, Element_Set_No: 999, Rev_At_Epoch: 5044, Bstar: 0, Mean_Motion_Dot: -5E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0203 (GALILEO 7)", + "expanded": "GSAT0203 (GALILEO 7)", + "numerical_value": 1551, + "description": "Object_Id: 2015-017A, Epoch: 2022-03-05T04:57:40.141440, Mean_Motion: 1.70475797, Eccentricity: 0.0004369, Inclination: 56.7547, Ra_Of_Asc_Node: 24.2174, Arg_Of_Pericenter: 281.0182, Mean_Of_Anomaly: 78.9079, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40544, Element_Set_No: 999, Rev_At_Epoch: 4252, Bstar: 0, Mean_Motion_Dot: -9.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0204 (GALILEO 8)", + "expanded": "GSAT0204 (GALILEO 8)", + "numerical_value": 1552, + "description": "Object_Id: 2015-017B, Epoch: 2022-03-05T11:01:26.871456, Mean_Motion: 1.70475582, Eccentricity: 0.0003607, Inclination: 56.7606, Ra_Of_Asc_Node: 24.2225, Arg_Of_Pericenter: 271.0235, Mean_Of_Anomaly: 88.9109, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40545, Element_Set_No: 999, Rev_At_Epoch: 557, Bstar: 0, Mean_Motion_Dot: -9.199999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-10", + "expanded": "GPS BIIF-10", + "numerical_value": 1553, + "description": "Object_Id: 2015-033A, Epoch: 2022-03-05T04:21:33.219936, Mean_Motion: 2.00557418, Eccentricity: 0.0073238, Inclination: 55.2653, Ra_Of_Asc_Node: 330.8765, Arg_Of_Pericenter: 5.0836, Mean_Of_Anomaly: 355.0308, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40730, Element_Set_No: 999, Rev_At_Epoch: 4860, Bstar: 0, Mean_Motion_Dot: -8.699999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "METEOSAT-11 (MSG-4)", + "expanded": "METEOSAT-11 (MSG-4)", + "numerical_value": 1554, + "description": "Object_Id: 2015-034A, Epoch: 2022-03-05T09:10:55.443360, Mean_Motion: 1.0028157, Eccentricity: 0.0001734, Inclination: 0.1913, Ra_Of_Asc_Node: 354.0613, Arg_Of_Pericenter: 76.2631, Mean_Of_Anomaly: 231.0046, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40732, Element_Set_No: 999, Rev_At_Epoch: 2433, Bstar: 0, Mean_Motion_Dot: -1.1E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0205 (GALILEO 9)", + "expanded": "GSAT0205 (GALILEO 9)", + "numerical_value": 1555, + "description": "Object_Id: 2015-045A, Epoch: 2022-03-04T01:16:46.858368, Mean_Motion: 1.7047362000000001, Eccentricity: 0.0006305, Inclination: 55.6997, Ra_Of_Asc_Node: 264.8718, Arg_Of_Pericenter: 26.0165, Mean_Of_Anomaly: 334.0278, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40889, Element_Set_No: 999, Rev_At_Epoch: 4031, Bstar: 0, Mean_Motion_Dot: 1.3999999999999998E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0206 (GALILEO 10)", + "expanded": "GSAT0206 (GALILEO 10)", + "numerical_value": 1556, + "description": "Object_Id: 2015-045B, Epoch: 2022-03-04T20:39:22.927392, Mean_Motion: 1.70473405, Eccentricity: 0.000435, Inclination: 55.6923, Ra_Of_Asc_Node: 264.8455, Arg_Of_Pericenter: 24.8142, Mean_Of_Anomaly: 335.2148, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40890, Element_Set_No: 999, Rev_At_Epoch: 4035, Bstar: 0, Mean_Motion_Dot: 1.3999999999999998E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-11", + "expanded": "GPS BIIF-11", + "numerical_value": 1557, + "description": "Object_Id: 2015-062A, Epoch: 2022-03-05T05:31:47.354016, Mean_Motion: 2.00563049, Eccentricity: 0.0076742, Inclination: 55.7265, Ra_Of_Asc_Node: 91.8926, Arg_Of_Pericenter: 217.7815, Mean_Of_Anomaly: 141.7364, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41019, Element_Set_No: 999, Rev_At_Epoch: 4644, Bstar: 0, Mean_Motion_Dot: -1.6E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "ELEKTRO-L 2", + "expanded": "ELEKTRO-L 2", + "numerical_value": 1558, + "description": "Object_Id: 2015-074A, Epoch: 2022-03-05T21:10:07.476672, Mean_Motion: 1.00272869, Eccentricity: 3.2200000000000003E-05, Inclination: 2.7281, Ra_Of_Asc_Node: 89.3496, Arg_Of_Pericenter: 80.2499, Mean_Of_Anomaly: 297.0156, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41105, Element_Set_No: 999, Rev_At_Epoch: 2283, Bstar: 0, Mean_Motion_Dot: -1.26E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0209 (GALILEO 12)", + "expanded": "GSAT0209 (GALILEO 12)", + "numerical_value": 1559, + "description": "Object_Id: 2015-079A, Epoch: 2022-03-05T00:51:44.084160, Mean_Motion: 1.70473741, Eccentricity: 0.000389, Inclination: 55.1226, Ra_Of_Asc_Node: 144.2725, Arg_Of_Pericenter: 302.8862, Mean_Of_Anomaly: 57.1326, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41174, Element_Set_No: 999, Rev_At_Epoch: 3867, Bstar: 0, Mean_Motion_Dot: -6.000000000000001E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0208 (GALILEO 11)", + "expanded": "GSAT0208 (GALILEO 11)", + "numerical_value": 1560, + "description": "Object_Id: 2015-079B, Epoch: 2022-03-03T11:53:47.575392, Mean_Motion: 1.70474978, Eccentricity: 0.0003112, Inclination: 55.1206, Ra_Of_Asc_Node: 144.3136, Arg_Of_Pericenter: 301.0154, Mean_Of_Anomaly: 59.0042, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41175, Element_Set_No: 999, Rev_At_Epoch: 3848, Bstar: 0, Mean_Motion_Dot: -6.000000000000001E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIIF-12", + "expanded": "GPS BIIF-12", + "numerical_value": 1561, + "description": "Object_Id: 2016-007A, Epoch: 2022-03-04T07:55:53.692320, Mean_Motion: 2.00575139, Eccentricity: 0.0058722, Inclination: 54.8886, Ra_Of_Asc_Node: 151.6479, Arg_Of_Pericenter: 228.0599, Mean_Of_Anomaly: 131.4768, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41328, Element_Set_No: 999, Rev_At_Epoch: 4443, Bstar: 0, Mean_Motion_Dot: 4E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0211 (GALILEO 14)", + "expanded": "GSAT0211 (GALILEO 14)", + "numerical_value": 1562, + "description": "Object_Id: 2016-030A, Epoch: 2022-03-05T08:59:51.175104, Mean_Motion: 1.7047489200000001, Eccentricity: 0.0004269, Inclination: 55.8371, Ra_Of_Asc_Node: 264.7535, Arg_Of_Pericenter: 358.7501, Mean_Of_Anomaly: 1.2548, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41549, Element_Set_No: 999, Rev_At_Epoch: 3599, Bstar: 0, Mean_Motion_Dot: 1.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0210 (GALILEO 13)", + "expanded": "GSAT0210 (GALILEO 13)", + "numerical_value": 1563, + "description": "Object_Id: 2016-030B, Epoch: 2022-03-03T21:47:18.403296, Mean_Motion: 1.7047501600000001, Eccentricity: 0.0002494, Inclination: 55.8376, Ra_Of_Asc_Node: 264.7952, Arg_Of_Pericenter: 340.665, Mean_Of_Anomaly: 19.339, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41550, Element_Set_No: 999, Rev_At_Epoch: 3596, Bstar: 0, Mean_Motion_Dot: 1.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "INSAT-3DR", + "expanded": "INSAT-3DR", + "numerical_value": 1564, + "description": "Object_Id: 2016-054A, Epoch: 2022-03-05T19:52:01.240032, Mean_Motion: 1.00271296, Eccentricity: 0.0012162, Inclination: 0.027, Ra_Of_Asc_Node: 113.0044, Arg_Of_Pericenter: 167.2676, Mean_Of_Anomaly: 255.2242, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41752, Element_Set_No: 999, Rev_At_Epoch: 2011, Bstar: 0, Mean_Motion_Dot: -8.8E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0207 (GALILEO 15)", + "expanded": "GSAT0207 (GALILEO 15)", + "numerical_value": 1565, + "description": "Object_Id: 2016-069A, Epoch: 2022-03-03T13:38:46.077504, Mean_Motion: 1.7047370499999999, Eccentricity: 0.0004031, Inclination: 54.782, Ra_Of_Asc_Node: 144.5202, Arg_Of_Pericenter: 287.3282, Mean_Of_Anomaly: 72.6776, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41859, Element_Set_No: 999, Rev_At_Epoch: 3269, Bstar: 0, Mean_Motion_Dot: -7E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0212 (GALILEO 16)", + "expanded": "GSAT0212 (GALILEO 16)", + "numerical_value": 1566, + "description": "Object_Id: 2016-069B, Epoch: 2022-03-03T10:07:41.252736, Mean_Motion: 1.7047363, Eccentricity: 0.0002561, Inclination: 54.7797, Ra_Of_Asc_Node: 144.522, Arg_Of_Pericenter: 311.9172, Mean_Of_Anomaly: 48.1099, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41860, Element_Set_No: 999, Rev_At_Epoch: 3294, Bstar: 0, Mean_Motion_Dot: -7E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0213 (GALILEO 17)", + "expanded": "GSAT0213 (GALILEO 17)", + "numerical_value": 1567, + "description": "Object_Id: 2016-069C, Epoch: 2022-03-02T14:44:35.638368, Mean_Motion: 1.7047365, Eccentricity: 0.0003979, Inclination: 54.782, Ra_Of_Asc_Node: 144.5496, Arg_Of_Pericenter: 263.4497, Mean_Of_Anomaly: 96.5489, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41861, Element_Set_No: 999, Rev_At_Epoch: 3279, Bstar: 0, Mean_Motion_Dot: -1E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0214 (GALILEO 18)", + "expanded": "GSAT0214 (GALILEO 18)", + "numerical_value": 1568, + "description": "Object_Id: 2016-069D, Epoch: 2022-03-03T08:21:05.341536, Mean_Motion: 1.70473767, Eccentricity: 0.0003054, Inclination: 54.7805, Ra_Of_Asc_Node: 144.5238, Arg_Of_Pericenter: 265.2732, Mean_Of_Anomaly: 94.7405, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41862, Element_Set_No: 999, Rev_At_Epoch: 3293, Bstar: 0, Mean_Motion_Dot: -7E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GOES 16", + "expanded": "GOES 16", + "numerical_value": 1569, + "description": "Object_Id: 2016-071A, Epoch: 2022-03-05T12:15:56.160288, Mean_Motion: 1.0027228, Eccentricity: 9.140000000000001E-05, Inclination: 0.0848, Ra_Of_Asc_Node: 286.2031, Arg_Of_Pericenter: 88.7324, Mean_Of_Anomaly: 257.0452, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41866, Element_Set_No: 999, Rev_At_Epoch: 1942, Bstar: 0, Mean_Motion_Dot: -2.6099999999999996E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT-17", + "expanded": "GSAT-17", + "numerical_value": 1570, + "description": "Object_Id: 2017-040B, Epoch: 2022-03-05T13:04:20.524800, Mean_Motion: 1.00270635, Eccentricity: 0.0005, Inclination: 0.0463, Ra_Of_Asc_Node: 280.9075, Arg_Of_Pericenter: 0.3646, Mean_Of_Anomaly: 171.5365, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42815, Element_Set_No: 999, Rev_At_Epoch: 1709, Bstar: 0, Mean_Motion_Dot: -2.7E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0215 (GALILEO 19)", + "expanded": "GSAT0215 (GALILEO 19)", + "numerical_value": 1571, + "description": "Object_Id: 2017-079A, Epoch: 2022-03-05T00:17:07.551744, Mean_Motion: 1.70474192, Eccentricity: 0.0001886, Inclination: 55.8129, Ra_Of_Asc_Node: 264.5973, Arg_Of_Pericenter: 349.3919, Mean_Of_Anomaly: 10.6111, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43055, Element_Set_No: 999, Rev_At_Epoch: 2630, Bstar: 0, Mean_Motion_Dot: 1.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0216 (GALILEO 20)", + "expanded": "GSAT0216 (GALILEO 20)", + "numerical_value": 1572, + "description": "Object_Id: 2017-079B, Epoch: 2022-03-04T17:13:21.660384, Mean_Motion: 1.7047428500000001, Eccentricity: 0.0003018, Inclination: 55.813, Ra_Of_Asc_Node: 264.6052, Arg_Of_Pericenter: 316.8989, Mean_Of_Anomaly: 43.0859, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43056, Element_Set_No: 999, Rev_At_Epoch: 2631, Bstar: 0, Mean_Motion_Dot: 1.3999999999999998E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0217 (GALILEO 21)", + "expanded": "GSAT0217 (GALILEO 21)", + "numerical_value": 1573, + "description": "Object_Id: 2017-079C, Epoch: 2022-03-03T18:21:07.114752, Mean_Motion: 1.7047413200000001, Eccentricity: 0.0003351, Inclination: 55.812, Ra_Of_Asc_Node: 264.6315, Arg_Of_Pericenter: 335.8102, Mean_Of_Anomaly: 24.1881, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43057, Element_Set_No: 999, Rev_At_Epoch: 2628, Bstar: 0, Mean_Motion_Dot: 1.6E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0218 (GALILEO 22)", + "expanded": "GSAT0218 (GALILEO 22)", + "numerical_value": 1574, + "description": "Object_Id: 2017-079D, Epoch: 2022-03-03T23:37:55.229664, Mean_Motion: 1.70474218, Eccentricity: 0.0003192, Inclination: 55.8121, Ra_Of_Asc_Node: 264.6226, Arg_Of_Pericenter: 307.3432, Mean_Of_Anomaly: 52.6402, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43058, Element_Set_No: 999, Rev_At_Epoch: 2631, Bstar: 0, Mean_Motion_Dot: 1.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GOES 17", + "expanded": "GOES 17", + "numerical_value": 1575, + "description": "Object_Id: 2018-022A, Epoch: 2022-03-05T14:26:44.745792, Mean_Motion: 1.00272534, Eccentricity: 3.59E-05, Inclination: 0.0692, Ra_Of_Asc_Node: 288.1278, Arg_Of_Pericenter: 69.6204, Mean_Of_Anomaly: 244.9979, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43226, Element_Set_No: 999, Rev_At_Epoch: 1473, Bstar: 0, Mean_Motion_Dot: 8.599999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0221 (GALILEO 25)", + "expanded": "GSAT0221 (GALILEO 25)", + "numerical_value": 1576, + "description": "Object_Id: 2018-060A, Epoch: 2022-03-04T11:15:43.594848, Mean_Motion: 1.7047559799999998, Eccentricity: 0.0005281, Inclination: 57.1371, Ra_Of_Asc_Node: 24.0264, Arg_Of_Pericenter: 292.9816, Mean_Of_Anomaly: 66.9364, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43564, Element_Set_No: 999, Rev_At_Epoch: 2247, Bstar: 0, Mean_Motion_Dot: -9.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0222 (GALILEO 26)", + "expanded": "GSAT0222 (GALILEO 26)", + "numerical_value": 1577, + "description": "Object_Id: 2018-060B, Epoch: 2022-03-05T06:36:59.412960, Mean_Motion: 1.7047560800000001, Eccentricity: 0.0005101, Inclination: 57.1396, Ra_Of_Asc_Node: 24.0048, Arg_Of_Pericenter: 300.7207, Mean_Of_Anomaly: 59.2042, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43565, Element_Set_No: 999, Rev_At_Epoch: 2253, Bstar: 0, Mean_Motion_Dot: -9.199999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0219 (GALILEO 23)", + "expanded": "GSAT0219 (GALILEO 23)", + "numerical_value": 1578, + "description": "Object_Id: 2018-060C, Epoch: 2022-03-04T07:45:14.617440, Mean_Motion: 1.70475597, Eccentricity: 0.000481, Inclination: 57.1399, Ra_Of_Asc_Node: 24.0325, Arg_Of_Pericenter: 301.8644, Mean_Of_Anomaly: 58.0624, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43566, Element_Set_No: 999, Rev_At_Epoch: 2249, Bstar: 0, Mean_Motion_Dot: -9.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0220 (GALILEO 24)", + "expanded": "GSAT0220 (GALILEO 24)", + "numerical_value": 1579, + "description": "Object_Id: 2018-060D, Epoch: 2022-03-05T03:06:48.179520, Mean_Motion: 1.70475601, Eccentricity: 0.0004821, Inclination: 57.1397, Ra_Of_Asc_Node: 24.0104, Arg_Of_Pericenter: 298.1323, Mean_Of_Anomaly: 61.7938, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43567, Element_Set_No: 999, Rev_At_Epoch: 2249, Bstar: 0, Mean_Motion_Dot: -9.199999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "BEIDOU-3 M13", + "expanded": "BEIDOU-3 M13", + "numerical_value": 1580, + "description": "Object_Id: 2018-072A, Epoch: 2022-03-05T07:47:32.252640, Mean_Motion: 1.86231397, Eccentricity: 0.0007657, Inclination: 55.4177, Ra_Of_Asc_Node: 114.8538, Arg_Of_Pericenter: 280.0394, Mean_Of_Anomaly: 83.8752, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43622, Element_Set_No: 999, Rev_At_Epoch: 2351, Bstar: 0, Mean_Motion_Dot: -3.0000000000000004E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "BEIDOU-3 M14", + "expanded": "BEIDOU-3 M14", + "numerical_value": 1581, + "description": "Object_Id: 2018-072B, Epoch: 2022-03-05T06:07:38.038368, Mean_Motion: 1.86231437, Eccentricity: 0.0005375, Inclination: 55.419, Ra_Of_Asc_Node: 114.8485, Arg_Of_Pericenter: 300.5204, Mean_Of_Anomaly: 107.1164, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43623, Element_Set_No: 999, Rev_At_Epoch: 2351, Bstar: 0, Mean_Motion_Dot: -2E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIII-1", + "expanded": "GPS BIII-1", + "numerical_value": 1582, + "description": "Object_Id: 2018-109A, Epoch: 2022-03-05T11:07:52.395168, Mean_Motion: 2.00566592, Eccentricity: 0.0017732, Inclination: 55.0695, Ra_Of_Asc_Node: 153.9988, Arg_Of_Pericenter: 193.73, Mean_Of_Anomaly: 161.6885, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43873, Element_Set_No: 999, Rev_At_Epoch: 2368, Bstar: 0, Mean_Motion_Dot: 4E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "METEOR-M2 2", + "expanded": "METEOR-M2 2", + "numerical_value": 1583, + "description": "Object_Id: 2019-038A, Epoch: 2022-03-05T20:12:19.964736, Mean_Motion: 14.23700482, Eccentricity: 9.06E-05, Inclination: 98.7092, Ra_Of_Asc_Node: 26.5253, Arg_Of_Pericenter: 158.9742, Mean_Of_Anomaly: 201.1481, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44387, Element_Set_No: 999, Rev_At_Epoch: 13866, Bstar: 1.0789000000000001E-05, Mean_Motion_Dot: -1.8999999999999998E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIII-2", + "expanded": "GPS BIII-2", + "numerical_value": 1584, + "description": "Object_Id: 2019-056A, Epoch: 2022-03-05T05:27:31.644576, Mean_Motion: 2.00570569, Eccentricity: 0.0021198, Inclination: 55.6316, Ra_Of_Asc_Node: 33.1939, Arg_Of_Pericenter: 183.5927, Mean_Of_Anomaly: 264.179, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44506, Element_Set_No: 999, Rev_At_Epoch: 1868, Bstar: 0, Mean_Motion_Dot: -8.699999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "BEIDOU-3 M23", + "expanded": "BEIDOU-3 M23", + "numerical_value": 1585, + "description": "Object_Id: 2019-061A, Epoch: 2022-03-05T00:40:13.754208, Mean_Motion: 1.86231316, Eccentricity: 0.0008096, Inclination: 54.6179, Ra_Of_Asc_Node: 235.6575, Arg_Of_Pericenter: 353.3353, Mean_Of_Anomaly: 6.612, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44542, Element_Set_No: 999, Rev_At_Epoch: 1664, Bstar: 0, Mean_Motion_Dot: 1.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "BEIDOU-3 M24", + "expanded": "BEIDOU-3 M24", + "numerical_value": 1586, + "description": "Object_Id: 2019-061B, Epoch: 2022-03-05T11:49:24.386304, Mean_Motion: 1.86231444, Eccentricity: 0.0005263, Inclination: 54.6155, Ra_Of_Asc_Node: 235.6121, Arg_Of_Pericenter: 352.5589, Mean_Of_Anomaly: 230.1101, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44543, Element_Set_No: 999, Rev_At_Epoch: 1664, Bstar: 0, Mean_Motion_Dot: 1.8999999999999998E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "BEIDOU-3 M21", + "expanded": "BEIDOU-3 M21", + "numerical_value": 1587, + "description": "Object_Id: 2019-078A, Epoch: 2022-03-05T14:47:13.081632, Mean_Motion: 1.86232108, Eccentricity: 0.0007506, Inclination: 55.0055, Ra_Of_Asc_Node: 354.1913, Arg_Of_Pericenter: 2.2142, Mean_Of_Anomaly: 136.8203, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44793, Element_Set_No: 999, Rev_At_Epoch: 1551, Bstar: 0.0001, Mean_Motion_Dot: -1.14E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "BEIDOU-3 M22", + "expanded": "BEIDOU-3 M22", + "numerical_value": 1588, + "description": "Object_Id: 2019-078B, Epoch: 2022-03-05T05:30:51.895584, Mean_Motion: 1.8623268899999998, Eccentricity: 0.0005476, Inclination: 54.9796, Ra_Of_Asc_Node: 354.1987, Arg_Of_Pericenter: 357.9388, Mean_Of_Anomaly: 153.5297, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44794, Element_Set_No: 999, Rev_At_Epoch: 1550, Bstar: 0, Mean_Motion_Dot: -1.1299999999999998E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "ELEKTRO-L 3", + "expanded": "ELEKTRO-L 3", + "numerical_value": 1589, + "description": "Object_Id: 2019-095A, Epoch: 2022-03-05T12:59:19.101120, Mean_Motion: 1.00272837, Eccentricity: 9.66E-05, Inclination: 0.0533, Ra_Of_Asc_Node: 302.5641, Arg_Of_Pericenter: 43.7322, Mean_Of_Anomaly: 87.7356, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44903, Element_Set_No: 999, Rev_At_Epoch: 802, Bstar: 0, Mean_Motion_Dot: -1.09E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIII-3", + "expanded": "GPS BIII-3", + "numerical_value": 1590, + "description": "Object_Id: 2020-041A, Epoch: 2022-03-05T09:21:33.249024, Mean_Motion: 2.00560233, Eccentricity: 0.0019782, Inclination: 55.4438, Ra_Of_Asc_Node: 90.4566, Arg_Of_Pericenter: 177.5701, Mean_Of_Anomaly: 326.3202, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 45854, Element_Set_No: 999, Rev_At_Epoch: 1265, Bstar: 0, Mean_Motion_Dot: -1.8999999999999998E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GPS BIII-4", + "expanded": "GPS BIII-4", + "numerical_value": 1591, + "description": "Object_Id: 2020-078A, Epoch: 2022-03-05T11:29:49.869024, Mean_Motion: 2.00566271, Eccentricity: 0.0015066, Inclination: 54.6366, Ra_Of_Asc_Node: 274.3115, Arg_Of_Pericenter: 181.6351, Mean_Of_Anomaly: 359.0945, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46826, Element_Set_No: 999, Rev_At_Epoch: 1012, Bstar: 0, Mean_Motion_Dot: -9E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0223 (GALILEO 27)", + "expanded": "GSAT0223 (GALILEO 27)", + "numerical_value": 1592, + "description": "Object_Id: 2021-116A, Epoch: 2022-03-04T16:42:24.024096, Mean_Motion: 1.70475726, Eccentricity: 0.0001673, Inclination: 57.1324, Ra_Of_Asc_Node: 23.921, Arg_Of_Pericenter: 267.1909, Mean_Of_Anomaly: 276.5564, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 49809, Element_Set_No: 999, Rev_At_Epoch: 149, Bstar: 0, Mean_Motion_Dot: -9.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GSAT0224 (GALILEO 28)", + "expanded": "GSAT0224 (GALILEO 28)", + "numerical_value": 1593, + "description": "Object_Id: 2021-116B, Epoch: 2022-03-05T02:20:36.479616, Mean_Motion: 1.7047573200000001, Eccentricity: 0.0001456, Inclination: 57.1319, Ra_Of_Asc_Node: 23.9081, Arg_Of_Pericenter: 291.0632, Mean_Of_Anomaly: 251.6062, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 49810, Element_Set_No: 999, Rev_At_Epoch: 152, Bstar: 0, Mean_Motion_Dot: -9.199999999999999E-07, Mean_Motion_Ddot: 0" + } + ] + }, + { + "predicate": "Earth Ressources", + "entry": [ + { + "value": "SCD 1", + "expanded": "SCD 1", + "numerical_value": 1594, + "description": "Object_Id: 1993-009B, Epoch: 2022-03-04T13: 56: 29.240736, Mean_Motion: 14.44649686, Eccentricity: 0.0043046, Inclination: 24.9689, Ra_Of_Asc_Node: 141.9047, Arg_Of_Pericenter: 148.2015, Mean_Anomaly: 349.2454, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 22490, Element_Set_No: 999, Rev_At_Epoch: 53437, Bstar: 3.3541E-05, Mean_Motion_Dot: 3.03E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "TECHSAT 1B (GO-32)", + "expanded": "TECHSAT 1B (GO-32)", + "numerical_value": 1595, + "description": "Object_Id: 1998-043D, Epoch: 2022-03-04T13: 48: 57.872448, Mean_Motion: 14.23734591, Eccentricity: 0.0002248, Inclination: 98.8057, Ra_Of_Asc_Node: 13.839, Arg_Of_Pericenter: 67.3904, Mean_Anomaly: 292.7512, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25397, Element_Set_No: 999, Rev_At_Epoch: 22850, Bstar: 2.7807000000000003E-05, Mean_Motion_Dot: 1.8999999999999998E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SCD 2", + "expanded": "SCD 2", + "numerical_value": 1596, + "description": "Object_Id: 1998-060A, Epoch: 2022-03-04T11: 53: 23.080128, Mean_Motion: 14.44165373, Eccentricity: 0.0017334, Inclination: 24.9969, Ra_Of_Asc_Node: 356.4447, Arg_Of_Pericenter: 156.3046, Mean_Anomaly: 5.5196, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25504, Element_Set_No: 999, Rev_At_Epoch: 23365, Bstar: 3.1586E-05, Mean_Motion_Dot: 2.92E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "LANDSAT 7", + "expanded": "LANDSAT 7", + "numerical_value": 1597, + "description": "Object_Id: 1999-020A, Epoch: 2022-03-04T13: 05: 49.524576, Mean_Motion: 14.57215943, Eccentricity: 0.000178, Inclination: 97.9953, Ra_Of_Asc_Node: 115.6715, Arg_Of_Pericenter: 83.6073, Mean_Anomaly: 276.5333, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25682, Element_Set_No: 999, Rev_At_Epoch: 21727, Bstar: 3.4664000000000006E-05, Mean_Motion_Dot: 1.1299999999999998E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "DLR-TUBSAT", + "expanded": "DLR-TUBSAT", + "numerical_value": 1598, + "description": "Object_Id: 1999-029B, Epoch: 2022-03-04T13: 23: 46.387392, Mean_Motion: 14.51471875, Eccentricity: 0.0015683, Inclination: 98.4782, Ra_Of_Asc_Node: 5.1581, Arg_Of_Pericenter: 79.8639, Mean_Anomaly: 280.4324, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25757, Element_Set_No: 999, Rev_At_Epoch: 20606, Bstar: 1.7327000000000002E-05, Mean_Motion_Dot: 2.2999999999999997E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "TERRA", + "expanded": "TERRA", + "numerical_value": 1599, + "description": "Object_Id: 1999-068A, Epoch: 2022-03-04T13: 32: 47.680800, Mean_Motion: 14.57136522, Eccentricity: 0.000128, Inclination: 98.1471, Ra_Of_Asc_Node: 137.8458, Arg_Of_Pericenter: 97.7452, Mean_Anomaly: 39.8422, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 25994, Element_Set_No: 999, Rev_At_Epoch: 18122, Bstar: 4.434400000000001E-05, Mean_Motion_Dot: 1.55E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "MAROC-TUBSAT", + "expanded": "MAROC-TUBSAT", + "numerical_value": 1600, + "description": "Object_Id: 2001-056D, Epoch: 2022-03-04T09: 14: 11.647392, Mean_Motion: 13.70152964, Eccentricity: 0.0019584, Inclination: 99.6047, Ra_Of_Asc_Node: 203.868, Arg_Of_Pericenter: 201.102, Mean_Anomaly: 217.8688, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27004, Element_Set_No: 999, Rev_At_Epoch: 1175, Bstar: 1.2718000000000001E-05, Mean_Motion_Dot: -3.4E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "AQUA", + "expanded": "AQUA", + "numerical_value": 1601, + "description": "Object_Id: 2002-022A, Epoch: 2022-03-04T14: 18: 15.244128, Mean_Motion: 14.57154401, Eccentricity: 0.0001083, Inclination: 98.2377, Ra_Of_Asc_Node: 6.5531, Arg_Of_Pericenter: 108.3645, Mean_Anomaly: 64.4291, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 27424, Element_Set_No: 999, Rev_At_Epoch: 5491, Bstar: 8.041100000000001E-05, Mean_Motion_Dot: 3.1699999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "IRS-P6 (RESOURCESAT-1)", + "expanded": "IRS-P6 (RESOURCESAT-1)", + "numerical_value": 1602, + "description": "Object_Id: 2003-046A, Epoch: 2022-03-04T11: 00: 16.172064, Mean_Motion: 14.34207535, Eccentricity: 0.0058045, Inclination: 98.417, Ra_Of_Asc_Node: 137.2582, Arg_Of_Pericenter: 331.2323, Mean_Anomaly: 28.5669, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28051, Element_Set_No: 999, Rev_At_Epoch: 95597, Bstar: 3.3663E-05, Mean_Motion_Dot: 5.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SHIYAN 1 (SY-1)", + "expanded": "SHIYAN 1 (SY-1)", + "numerical_value": 1603, + "description": "Object_Id: 2004-012A, Epoch: 2022-03-04T12: 17: 44.751264, Mean_Motion: 15.01202196, Eccentricity: 0.0016228, Inclination: 97.9713, Ra_Of_Asc_Node: 52.7546, Arg_Of_Pericenter: 336.0664, Mean_Anomaly: 23.9803, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28220, Element_Set_No: 999, Rev_At_Epoch: 97432, Bstar: 0.00023093, Mean_Motion_Dot: 2.9060000000000003E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "AURA", + "expanded": "AURA", + "numerical_value": 1604, + "description": "Object_Id: 2004-026A, Epoch: 2022-03-04T13: 39: 41.060736, Mean_Motion: 14.57086815, Eccentricity: 0.0001288, Inclination: 98.2169, Ra_Of_Asc_Node: 8.4539, Arg_Of_Pericenter: 87.1845, Mean_Anomaly: 272.9501, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28376, Element_Set_No: 999, Rev_At_Epoch: 93795, Bstar: 9.4178E-05, Mean_Motion_Dot: 3.7899999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "IRS-P5 (CARTOSAT-1)", + "expanded": "IRS-P5 (CARTOSAT-1)", + "numerical_value": 1605, + "description": "Object_Id: 2005-017A, Epoch: 2022-03-04T10: 33: 31.331808, Mean_Motion: 14.83948371, Eccentricity: 0.0001704, Inclination: 97.7331, Ra_Of_Asc_Node: 127.1657, Arg_Of_Pericenter: 144.7811, Mean_Anomaly: 215.3516, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28649, Element_Set_No: 999, Rev_At_Epoch: 91116, Bstar: 6.1789E-05, Mean_Motion_Dot: 4.62E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SINAH 1", + "expanded": "SINAH 1", + "numerical_value": 1606, + "description": "Object_Id: 2005-043D, Epoch: 2022-03-04T14: 04: 35.321952, Mean_Motion: 14.616338559999999, Eccentricity: 0.0016074, Inclination: 98.0952, Ra_Of_Asc_Node: 189.267, Arg_Of_Pericenter: 138.3472, Mean_Anomaly: 221.8956, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28893, Element_Set_No: 999, Rev_At_Epoch: 87163, Bstar: 3.552100000000001E-05, Mean_Motion_Dot: 1.3E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "EROS B", + "expanded": "EROS B", + "numerical_value": 1607, + "description": "Object_Id: 2006-014A, Epoch: 2022-03-03T21: 59: 58.610112, Mean_Motion: 15.21498494, Eccentricity: 0.0003979, Inclination: 97.3687, Ra_Of_Asc_Node: 185.5455, Arg_Of_Pericenter: 329.9207, Mean_Anomaly: 175.6334, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 29079, Element_Set_No: 999, Rev_At_Epoch: 88031, Bstar: 0.00018611, Mean_Motion_Dot: 4.1190000000000004E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "RESURS-DK 1", + "expanded": "RESURS-DK 1", + "numerical_value": 1608, + "description": "Object_Id: 2006-021A, Epoch: 2022-03-04T08: 06: 54.176256, Mean_Motion: 15.02949971, Eccentricity: 0.0007238, Inclination: 69.9358, Ra_Of_Asc_Node: 36.8426, Arg_Of_Pericenter: 242.2195, Mean_Anomaly: 117.8232, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 29228, Element_Set_No: 999, Rev_At_Epoch: 86658, Bstar: 6.8507E-05, Mean_Motion_Dot: 8.239999999999999E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "ARIRANG-2 (KOMPSAT-2)", + "expanded": "ARIRANG-2 (KOMPSAT-2)", + "numerical_value": 1609, + "description": "Object_Id: 2006-031A, Epoch: 2022-03-04T11: 09: 50.764032, Mean_Motion: 14.62205752, Eccentricity: 0.0016383, Inclination: 97.9054, Ra_Of_Asc_Node: 297.101, Arg_Of_Pericenter: 347.3292, Mean_Anomaly: 12.749, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 29268, Element_Set_No: 999, Rev_At_Epoch: 83255, Bstar: 5.988500000000001E-05, Mean_Motion_Dot: 2.5699999999999995E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "LAPAN-TUBSAT", + "expanded": "LAPAN-TUBSAT", + "numerical_value": 1610, + "description": "Object_Id: 2007-001A, Epoch: 2022-03-04T12: 42: 34.738272, Mean_Motion: 14.82380516, Eccentricity: 0.001155, Inclination: 97.9519, Ra_Of_Asc_Node: 26.7108, Arg_Of_Pericenter: 234.4184, Mean_Anomaly: 125.5949, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 29709, Element_Set_No: 999, Rev_At_Epoch: 81896, Bstar: 3.1144E-05, Mean_Motion_Dot: 1.96E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-2 (IRS-P7)", + "expanded": "CARTOSAT-2 (IRS-P7)", + "numerical_value": 1611, + "description": "Object_Id: 2007-001B, Epoch: 2022-03-04T12: 31: 34.644000, Mean_Motion: 15.25510435, Eccentricity: 0.0163116, Inclination: 97.8624, Ra_Of_Asc_Node: 163.3098, Arg_Of_Pericenter: 64.5958, Mean_Anomaly: 297.2062, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 29710, Element_Set_No: 999, Rev_At_Epoch: 82022, Bstar: 0.00028821, Mean_Motion_Dot: 0.00010666, Mean_Motion_Ddot: 0" + }, + { + "value": "HAIYANG-1B", + "expanded": "HAIYANG-1B", + "numerical_value": 1612, + "description": "Object_Id: 2007-010A, Epoch: 2022-03-04T13: 09: 38.316096, Mean_Motion: 14.30295468, Eccentricity: 0.00143, Inclination: 98.3309, Ra_Of_Asc_Node: 93.146, Arg_Of_Pericenter: 159.1685, Mean_Anomaly: 201.0084, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 31113, Element_Set_No: 999, Rev_At_Epoch: 77677, Bstar: 2.1782000000000003E-05, Mean_Motion_Dot: 1.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "COSMO-SKYMED 1", + "expanded": "COSMO-SKYMED 1", + "numerical_value": 1613, + "description": "Object_Id: 2007-023A, Epoch: 2022-03-04T11: 46: 16.967424, Mean_Motion: 14.8216072, Eccentricity: 0.0001314, Inclination: 97.8847, Ra_Of_Asc_Node: 248.6623, Arg_Of_Pericenter: 89.127, Mean_Anomaly: 271.0098, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 31598, Element_Set_No: 999, Rev_At_Epoch: 79741, Bstar: 7.2878E-05, Mean_Motion_Dot: 5.28E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "TERRASAR-X", + "expanded": "TERRASAR-X", + "numerical_value": 1614, + "description": "Object_Id: 2007-026A, Epoch: 2022-03-04T12: 45: 01.002240, Mean_Motion: 15.19141403, Eccentricity: 0.0002199, Inclination: 97.4447, Ra_Of_Asc_Node: 72.6149, Arg_Of_Pericenter: 89.6246, Mean_Anomaly: 65.8026, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 31698, Element_Set_No: 999, Rev_At_Epoch: 81619, Bstar: -7.119500000000001E-05, Mean_Motion_Dot: -1.561E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "WORLDVIEW-1 (WV-1)", + "expanded": "WORLDVIEW-1 (WV-1)", + "numerical_value": 1505, + "description": "Object_Id: 2007-041A, Epoch: 2022-03-04T14: 00: 29.024064, Mean_Motion: 15.24531276, Eccentricity: 0.0003915, Inclination: 97.3836, Ra_Of_Asc_Node: 184.4725, Arg_Of_Pericenter: 140.8245, Mean_Anomaly: 219.3276, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 32060, Element_Set_No: 999, Rev_At_Epoch: 80441, Bstar: 0.000143, Mean_Motion_Dot: 3.448E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 3", + "expanded": "YAOGAN 3", + "numerical_value": 1506, + "description": "Object_Id: 2007-055A, Epoch: 2022-03-04T10: 13: 52.953312, Mean_Motion: 14.81196776, Eccentricity: 0.0001765, Inclination: 97.9578, Ra_Of_Asc_Node: 86.1277, Arg_Of_Pericenter: 102.8291, Mean_Anomaly: 257.3128, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 32289, Element_Set_No: 999, Rev_At_Epoch: 77349, Bstar: 5.9278E-05, Mean_Motion_Dot: 4.09E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "COSMO-SKYMED 2", + "expanded": "COSMO-SKYMED 2", + "numerical_value": 1507, + "description": "Object_Id: 2007-059A, Epoch: 2022-03-04T10: 57: 37.574496, Mean_Motion: 14.82149401, Eccentricity: 0.0001291, Inclination: 97.8843, Ra_Of_Asc_Node: 248.6282, Arg_Of_Pericenter: 87.8845, Mean_Anomaly: 272.2534, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 32376, Element_Set_No: 999, Rev_At_Epoch: 77015, Bstar: -2.0291E-06, Mean_Motion_Dot: -6.8E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "RADARSAT-2", + "expanded": "RADARSAT-2", + "numerical_value": 1508, + "description": "Object_Id: 2007-061A, Epoch: 2022-03-04T11: 21: 07.511040, Mean_Motion: 14.29983393, Eccentricity: 0.0001184, Inclination: 98.5778, Ra_Of_Asc_Node: 71.9245, Arg_Of_Pericenter: 99.7625, Mean_Anomaly: 68.7243, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 32382, Element_Set_No: 999, Rev_At_Epoch: 74229, Bstar: 2.9138000000000005E-05, Mean_Motion_Dot: 3.2E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-2A", + "expanded": "CARTOSAT-2A", + "numerical_value": 1509, + "description": "Object_Id: 2008-021A, Epoch: 2022-03-04T11: 06: 40.620096, Mean_Motion: 14.78641826, Eccentricity: 0.0013739, Inclination: 97.9806, Ra_Of_Asc_Node: 124.6829, Arg_Of_Pericenter: 142.9076, Mean_Anomaly: 217.3099, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 32783, Element_Set_No: 999, Rev_At_Epoch: 74750, Bstar: 4.1573E-05, Mean_Motion_Dot: 2.5300000000000003E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "HUANJING 1A (HJ-1A)", + "expanded": "HUANJING 1A (HJ-1A)", + "numerical_value": 1510, + "description": "Object_Id: 2008-041A, Epoch: 2022-03-04T12: 54: 50.766048, Mean_Motion: 14.77744904, Eccentricity: 0.0020266, Inclination: 97.6922, Ra_Of_Asc_Node: 101.4493, Arg_Of_Pericenter: 209.7932, Mean_Anomaly: 150.2133, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33320, Element_Set_No: 999, Rev_At_Epoch: 72689, Bstar: 3.3582000000000005E-05, Mean_Motion_Dot: 1.92E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "HUANJING 1B (HJ-1B)", + "expanded": "HUANJING 1B (HJ-1B)", + "numerical_value": 1511, + "description": "Object_Id: 2008-041B, Epoch: 2022-03-04T12: 58: 40.429344, Mean_Motion: 14.77568948, Eccentricity: 0.0033401, Inclination: 97.7107, Ra_Of_Asc_Node: 104.807, Arg_Of_Pericenter: 230.0027, Mean_Anomaly: 129.8261, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33321, Element_Set_No: 999, Rev_At_Epoch: 72689, Bstar: 7.0413E-05, Mean_Motion_Dot: 4.57E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GEOEYE 1", + "expanded": "GEOEYE 1", + "numerical_value": 1512, + "description": "Object_Id: 2008-042A, Epoch: 2022-03-04T11: 36: 43.231680, Mean_Motion: 14.64421954, Eccentricity: 0.0007767, Inclination: 98.1218, Ra_Of_Asc_Node: 139.9428, Arg_Of_Pericenter: 241.2196, Mean_Anomaly: 118.8228, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33331, Element_Set_No: 999, Rev_At_Epoch: 72100, Bstar: 4.9427000000000006E-05, Mean_Motion_Dot: 2.14E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "THEOS", + "expanded": "THEOS", + "numerical_value": 1513, + "description": "Object_Id: 2008-049A, Epoch: 2022-03-04T12: 19: 24.085344, Mean_Motion: 14.20027202, Eccentricity: 0.0001325, Inclination: 98.7622, Ra_Of_Asc_Node: 132.3744, Arg_Of_Pericenter: 107.2351, Mean_Anomaly: 311.4111, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33396, Element_Set_No: 999, Rev_At_Epoch: 69577, Bstar: 9.309900000000001E-05, Mean_Motion_Dot: 1.5399999999999999E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "COSMO-SKYMED 3", + "expanded": "COSMO-SKYMED 3", + "numerical_value": 1514, + "description": "Object_Id: 2008-054A, Epoch: 2022-03-04T12: 10: 30.135936, Mean_Motion: 14.82157427, Eccentricity: 0.0001317, Inclination: 97.8842, Ra_Of_Asc_Node: 248.6778, Arg_Of_Pericenter: 88.9325, Mean_Anomaly: 271.2039, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33412, Element_Set_No: 999, Rev_At_Epoch: 72262, Bstar: 1.7086000000000002E-05, Mean_Motion_Dot: 8.4E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 4", + "expanded": "YAOGAN 4", + "numerical_value": 1515, + "description": "Object_Id: 2008-061A, Epoch: 2022-03-04T09: 26: 51.840384, Mean_Motion: 14.77239938, Eccentricity: 0.0017551, Inclination: 97.8072, Ra_Of_Asc_Node: 6.7947, Arg_Of_Pericenter: 112.51, Mean_Anomaly: 247.7971, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33446, Element_Set_No: 999, Rev_At_Epoch: 71408, Bstar: 5.3668E-05, Mean_Motion_Dot: 3.31E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GOSAT (IBUKI)", + "expanded": "GOSAT (IBUKI)", + "numerical_value": 1516, + "description": "Object_Id: 2009-002A, Epoch: 2022-03-04T13: 13: 13.244736, Mean_Motion: 14.6753279, Eccentricity: 9.37E-05, Inclination: 98.1027, Ra_Of_Asc_Node: 177.3249, Arg_Of_Pericenter: 100.544, Mean_Anomaly: 259.587, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33492, Element_Set_No: 999, Rev_At_Epoch: 70183, Bstar: 6.9921E-05, Mean_Motion_Dot: 3.4799999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 6", + "expanded": "YAOGAN 6", + "numerical_value": 1517, + "description": "Object_Id: 2009-021A, Epoch: 2022-03-04T11: 48: 28.800000, Mean_Motion: 15.28483572, Eccentricity: 0.0025345, Inclination: 97.0732, Ra_Of_Asc_Node: 48.7528, Arg_Of_Pericenter: 315.4977, Mean_Anomaly: 44.4228, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 34839, Element_Set_No: 999, Rev_At_Epoch: 71519, Bstar: 0.00012695, Mean_Motion_Dot: 3.4800000000000006E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "DEIMOS-1", + "expanded": "DEIMOS-1", + "numerical_value": 1518, + "description": "Object_Id: 2009-041A, Epoch: 2022-03-04T10: 37: 10.274592, Mean_Motion: 14.71976456, Eccentricity: 0.000166, Inclination: 97.7266, Ra_Of_Asc_Node: 279.8328, Arg_Of_Pericenter: 149.471, Mean_Anomaly: 210.6611, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 35681, Element_Set_No: 999, Rev_At_Epoch: 67632, Bstar: 4.6184000000000004E-05, Mean_Motion_Dot: 2.44E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "DUBAISAT-1", + "expanded": "DUBAISAT-1", + "numerical_value": 1519, + "description": "Object_Id: 2009-041B, Epoch: 2022-03-04T09: 56: 43.169856, Mean_Motion: 14.69029643, Eccentricity: 0.0012571, Inclination: 97.7853, Ra_Of_Asc_Node: 221.4444, Arg_Of_Pericenter: 50.0192, Mean_Anomaly: 310.2128, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 35682, Element_Set_No: 999, Rev_At_Epoch: 67486, Bstar: 6.025400000000001E-05, Mean_Motion_Dot: 3.0799999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "OCEANSAT-2", + "expanded": "OCEANSAT-2", + "numerical_value": 1520, + "description": "Object_Id: 2009-051A, Epoch: 2022-03-04T13: 49: 25.258656, Mean_Motion: 14.47012068, Eccentricity: 0.0001558, Inclination: 98.2883, Ra_Of_Asc_Node: 160.5389, Arg_Of_Pericenter: 180.4706, Mean_Anomaly: 179.6497, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 35931, Element_Set_No: 999, Rev_At_Epoch: 65904, Bstar: -0.0043698, Mean_Motion_Dot: -0.00015896, Mean_Motion_Ddot: 0" + }, + { + "value": "WORLDVIEW-2 (WV-2)", + "expanded": "WORLDVIEW-2 (WV-2)", + "numerical_value": 1521, + "description": "Object_Id: 2009-055A, Epoch: 2022-03-04T11: 03: 52.032096, Mean_Motion: 14.37639815, Eccentricity: 7.54E-05, Inclination: 98.4968, Ra_Of_Asc_Node: 139.8906, Arg_Of_Pericenter: 40.304, Mean_Anomaly: 319.8214, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 35946, Element_Set_No: 999, Rev_At_Epoch: 65082, Bstar: 3.7322E-05, Mean_Motion_Dot: 6.8E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SMOS", + "expanded": "SMOS", + "numerical_value": 1522, + "description": "Object_Id: 2009-059A, Epoch: 2022-03-04T12: 12: 30.216384, Mean_Motion: 14.39742082, Eccentricity: 0.0001292, Inclination: 98.4429, Ra_Of_Asc_Node: 252.5397, Arg_Of_Pericenter: 85.9654, Mean_Anomaly: 274.1682, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 36036, Element_Set_No: 999, Rev_At_Epoch: 64816, Bstar: 7.223100000000001E-05, Mean_Motion_Dot: 1.83E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 7", + "expanded": "YAOGAN 7", + "numerical_value": 1523, + "description": "Object_Id: 2009-069A, Epoch: 2022-03-04T14: 25: 34.258080, Mean_Motion: 14.75040286, Eccentricity: 0.0026029, Inclination: 98.2136, Ra_Of_Asc_Node: 281.8778, Arg_Of_Pericenter: 25.1465, Mean_Anomaly: 335.1012, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 36110, Element_Set_No: 999, Rev_At_Epoch: 65868, Bstar: 3.4670000000000005E-05, Mean_Motion_Dot: 1.8E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "TANDEM-X", + "expanded": "TANDEM-X", + "numerical_value": 1524, + "description": "Object_Id: 2010-030A, Epoch: 2022-03-01T14: 47: 46.620384, Mean_Motion: 15.19159628, Eccentricity: 0.0002087, Inclination: 97.4466, Ra_Of_Asc_Node: 69.7434, Arg_Of_Pericenter: 77.009, Mean_Anomaly: 348.0523, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 36605, Element_Set_No: 999, Rev_At_Epoch: 64849, Bstar: 6.595800000000001E-05, Mean_Motion_Dot: 1.319E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-2B", + "expanded": "CARTOSAT-2B", + "numerical_value": 1525, + "description": "Object_Id: 2010-035A, Epoch: 2022-03-04T12: 01: 24.211488, Mean_Motion: 14.78662686, Eccentricity: 0.0012836, Inclination: 97.9756, Ra_Of_Asc_Node: 124.9353, Arg_Of_Pericenter: 218.4896, Mean_Anomaly: 141.5402, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 36795, Element_Set_No: 999, Rev_At_Epoch: 62855, Bstar: 4.0142E-05, Mean_Motion_Dot: 2.4199999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 10", + "expanded": "YAOGAN 10", + "numerical_value": 1526, + "description": "Object_Id: 2010-038A, Epoch: 2022-03-04T13: 28: 29.258400, Mean_Motion: 14.81154835, Eccentricity: 0.0001567, Inclination: 97.9799, Ra_Of_Asc_Node: 74.8607, Arg_Of_Pericenter: 91.2084, Mean_Anomaly: 268.9304, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 36834, Element_Set_No: 999, Rev_At_Epoch: 62525, Bstar: 3.898800000000001E-05, Mean_Motion_Dot: 2.4999999999999998E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "COSMO-SKYMED 4", + "expanded": "COSMO-SKYMED 4", + "numerical_value": 1527, + "description": "Object_Id: 2010-060A, Epoch: 2022-03-04T12: 53: 04.532064, Mean_Motion: 14.82145623, Eccentricity: 0.0001366, Inclination: 97.8847, Ra_Of_Asc_Node: 248.7073, Arg_Of_Pericenter: 80.5338, Mean_Anomaly: 279.6079, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37216, Element_Set_No: 999, Rev_At_Epoch: 61271, Bstar: -5.654600000000001E-05, Mean_Motion_Dot: -5.019999999999999E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "RESOURCESAT-2", + "expanded": "RESOURCESAT-2", + "numerical_value": 1528, + "description": "Object_Id: 2011-015A, Epoch: 2022-03-04T11: 22: 15.011904, Mean_Motion: 14.21648795, Eccentricity: 0.0004593, Inclination: 98.6732, Ra_Of_Asc_Node: 137.841, Arg_Of_Pericenter: 28.9427, Mean_Anomaly: 331.2009, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37387, Element_Set_No: 999, Rev_At_Epoch: 56424, Bstar: 2.8919000000000002E-05, Mean_Motion_Dot: 2E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "HAIYANG-2A", + "expanded": "HAIYANG-2A", + "numerical_value": 1529, + "description": "Object_Id: 2011-043A, Epoch: 2022-03-04T13: 49: 32.519712, Mean_Motion: 13.78731291, Eccentricity: 0.0001516, Inclination: 99.3188, Ra_Of_Asc_Node: 71.2463, Arg_Of_Pericenter: 107.8428, Mean_Anomaly: 252.2889, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37781, Element_Set_No: 999, Rev_At_Epoch: 53093, Bstar: 1.5922E-05, Mean_Motion_Dot: -2.7999999999999997E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "RASAT", + "expanded": "RASAT", + "numerical_value": 1530, + "description": "Object_Id: 2011-044D, Epoch: 2022-03-04T12: 41: 37.168224, Mean_Motion: 14.64920908, Eccentricity: 0.0023124, Inclination: 98.0954, Ra_Of_Asc_Node: 158.1738, Arg_Of_Pericenter: 100.0388, Mean_Anomaly: 260.3432, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37791, Element_Set_No: 999, Rev_At_Epoch: 56375, Bstar: 4.2726000000000004E-05, Mean_Motion_Dot: 1.81E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "MEGHA-TROPIQUES", + "expanded": "MEGHA-TROPIQUES", + "numerical_value": 1531, + "description": "Object_Id: 2011-058A, Epoch: 2022-03-04T12: 43: 34.312800, Mean_Motion: 14.09701979, Eccentricity: 0.0009981, Inclination: 19.9765, Ra_Of_Asc_Node: 200.3434, Arg_Of_Pericenter: 209.69, Mean_Anomaly: 150.2938, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37838, Element_Set_No: 999, Rev_At_Epoch: 46895, Bstar: 5.7797E-05, Mean_Motion_Dot: 3.6699999999999996E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SRMSAT", + "expanded": "SRMSAT", + "numerical_value": 1532, + "description": "Object_Id: 2011-058D, Epoch: 2022-03-04T14: 11: 04.369056, Mean_Motion: 14.10728649, Eccentricity: 0.001173, Inclination: 19.971, Ra_Of_Asc_Node: 168.7579, Arg_Of_Pericenter: 272.3981, Mean_Anomaly: 205.2921, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37841, Element_Set_No: 999, Rev_At_Epoch: 53641, Bstar: 4.8119E-05, Mean_Motion_Dot: 3.5199999999999998E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 13", + "expanded": "YAOGAN 13", + "numerical_value": 1533, + "description": "Object_Id: 2011-072A, Epoch: 2022-03-04T12: 08: 09.106080, Mean_Motion: 15.19961203, Eccentricity: 0.0003455, Inclination: 97.6206, Ra_Of_Asc_Node: 12.396, Arg_Of_Pericenter: 64.4021, Mean_Anomaly: 359.672, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 37941, Element_Set_No: 999, Rev_At_Epoch: 56885, Bstar: 0.00014796, Mean_Motion_Dot: 3.112E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "PLEIADES 1A", + "expanded": "PLEIADES 1A", + "numerical_value": 1534, + "description": "Object_Id: 2011-076F, Epoch: 2022-03-04T11: 43: 11.399232, Mean_Motion: 14.58544916, Eccentricity: 0.0001286, Inclination: 98.1733, Ra_Of_Asc_Node: 139.9701, Arg_Of_Pericenter: 63.8076, Mean_Anomaly: 296.3334, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38012, Element_Set_No: 999, Rev_At_Epoch: 54377, Bstar: -0.00021629, Mean_Motion_Dot: -1.0500000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "ZIYUAN 1-02C (ZY 1-02C)", + "expanded": "ZIYUAN 1-02C (ZY 1-02C)", + "numerical_value": 1535, + "description": "Object_Id: 2011-079A, Epoch: 2022-03-04T12: 25: 54.397344, Mean_Motion: 14.35331539, Eccentricity: 0.0006546, Inclination: 98.6033, Ra_Of_Asc_Node: 128.5531, Arg_Of_Pericenter: 208.05, Mean_Anomaly: 152.0342, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38038, Element_Set_No: 999, Rev_At_Epoch: 53443, Bstar: 5.030000000000001E-05, Mean_Motion_Dot: 1E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "ZIYUAN 3-1 (ZY 3-1)", + "expanded": "ZIYUAN 3-1 (ZY 3-1)", + "numerical_value": 1536, + "description": "Object_Id: 2012-001A, Epoch: 2022-03-04T12: 42: 03.653280, Mean_Motion: 15.21406587, Eccentricity: 0.0002239, Inclination: 97.3523, Ra_Of_Asc_Node: 137.0013, Arg_Of_Pericenter: 111.8163, Mean_Anomaly: 1.7623, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38046, Element_Set_No: 999, Rev_At_Epoch: 56365, Bstar: 0.00013077, Mean_Motion_Dot: 2.8660000000000003E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "ARIRANG-3 (KOMPSAT-3)", + "expanded": "ARIRANG-3 (KOMPSAT-3)", + "numerical_value": 1537, + "description": "Object_Id: 2012-025B, Epoch: 2022-03-04T12: 18: 47.541600, Mean_Motion: 14.61761188, Eccentricity: 0.0010691, Inclination: 98.1706, Ra_Of_Asc_Node: 4.7647, Arg_Of_Pericenter: 349.9945, Mean_Anomaly: 10.1031, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38338, Element_Set_No: 999, Rev_At_Epoch: 52264, Bstar: 4.8051000000000005E-05, Mean_Motion_Dot: 1.93E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "KANOPUS-V 1", + "expanded": "KANOPUS-V 1", + "numerical_value": 1538, + "description": "Object_Id: 2012-039A, Epoch: 2022-03-04T14: 47: 54.180384, Mean_Motion: 15.20758705, Eccentricity: 0.0001957, Inclination: 97.4697, Ra_Of_Asc_Node: 346.5132, Arg_Of_Pericenter: 85.0783, Mean_Anomaly: 34.8083, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38707, Element_Set_No: 999, Rev_At_Epoch: 53345, Bstar: 0.00015245, Mean_Motion_Dot: 3.287E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "EXACTVIEW-1 (ADS-1B)", + "expanded": "EXACTVIEW-1 (ADS-1B)", + "numerical_value": 1539, + "description": "Object_Id: 2012-039C, Epoch: 2022-03-04T14: 08: 01.322016, Mean_Motion: 14.24080524, Eccentricity: 0.0010931, Inclination: 99.0226, Ra_Of_Asc_Node: 127.4133, Arg_Of_Pericenter: 5.2937, Mean_Anomaly: 354.8354, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38709, Element_Set_No: 999, Rev_At_Epoch: 49981, Bstar: 3.1289E-05, Mean_Motion_Dot: 2.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SPOT 6", + "expanded": "SPOT 6", + "numerical_value": 1540, + "description": "Object_Id: 2012-047A, Epoch: 2022-03-04T12: 05: 47.903424, Mean_Motion: 14.58577897, Eccentricity: 0.0001199, Inclination: 98.1689, Ra_Of_Asc_Node: 132.373, Arg_Of_Pericenter: 71.9307, Mean_Anomaly: 288.2012, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38755, Element_Set_No: 999, Rev_At_Epoch: 50485, Bstar: 1.8429E-06, Mean_Motion_Dot: -3.7E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "PLEIADES 1B", + "expanded": "PLEIADES 1B", + "numerical_value": 1541, + "description": "Object_Id: 2012-068A, Epoch: 2022-03-04T12: 32: 22.688448, Mean_Motion: 14.58574728, Eccentricity: 0.0001168, Inclination: 98.168, Ra_Of_Asc_Node: 139.9262, Arg_Of_Pericenter: 80.2603, Mean_Anomaly: 279.873, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39019, Element_Set_No: 999, Rev_At_Epoch: 49263, Bstar: 2.4871E-05, Mean_Motion_Dot: 7E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GOKTURK 2", + "expanded": "GOKTURK 2", + "numerical_value": 1542, + "description": "Object_Id: 2012-073A, Epoch: 2022-03-04T13: 07: 00.257664, Mean_Motion: 14.72962906, Eccentricity: 8.570000000000001E-05, Inclination: 97.872, Ra_Of_Asc_Node: 305.9206, Arg_Of_Pericenter: 28.4903, Mean_Anomaly: 331.635, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39030, Element_Set_No: 999, Rev_At_Epoch: 49391, Bstar: 3.316E-05, Mean_Motion_Dot: 1.6499999999999999E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "LANDSAT 8", + "expanded": "LANDSAT 8", + "numerical_value": 1543, + "description": "Object_Id: 2013-008A, Epoch: 2022-03-04T11: 56: 15.483552, Mean_Motion: 14.5711631, Eccentricity: 0.0001422, Inclination: 98.1936, Ra_Of_Asc_Node: 135.3137, Arg_Of_Pericenter: 94.4042, Mean_Anomaly: 265.7319, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39084, Element_Set_No: 999, Rev_At_Epoch: 46989, Bstar: 5.024000000000001E-05, Mean_Motion_Dot: 1.81E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SARAL", + "expanded": "SARAL", + "numerical_value": 1544, + "description": "Object_Id: 2013-009A, Epoch: 2022-03-04T14: 02: 17.116512, Mean_Motion: 14.32056675, Eccentricity: 0.0001056, Inclination: 98.547, Ra_Of_Asc_Node: 250.7697, Arg_Of_Pericenter: 147.1414, Mean_Anomaly: 212.9835, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39086, Element_Set_No: 999, Rev_At_Epoch: 47147, Bstar: 2.5442E-05, Mean_Motion_Dot: 2.5E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 1", + "expanded": "GAOFEN 1", + "numerical_value": 1545, + "description": "Object_Id: 2013-018A, Epoch: 2022-03-04T14: 20: 07.971072, Mean_Motion: 14.76603219, Eccentricity: 0.0017675, Inclination: 97.8005, Ra_Of_Asc_Node: 133.1492, Arg_Of_Pericenter: 257.6153, Mean_Anomaly: 102.3043, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39150, Element_Set_No: 999, Rev_At_Epoch: 47726, Bstar: 9.4702E-06, Mean_Motion_Dot: 1.6E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "VNREDSAT 1", + "expanded": "VNREDSAT 1", + "numerical_value": 1546, + "description": "Object_Id: 2013-021B, Epoch: 2022-03-04T12: 28: 38.934048, Mean_Motion: 14.63004824, Eccentricity: 0.0001201, Inclination: 98.0876, Ra_Of_Asc_Node: 141.0683, Arg_Of_Pericenter: 83.6034, Mean_Anomaly: 276.5309, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39160, Element_Set_No: 999, Rev_At_Epoch: 47127, Bstar: 5.1395000000000005E-05, Mean_Motion_Dot: 2.17E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "ARIRANG-5 (KOMPSAT-5)", + "expanded": "ARIRANG-5 (KOMPSAT-5)", + "numerical_value": 1547, + "description": "Object_Id: 2013-042A, Epoch: 2022-03-04T12: 00: 29.445984, Mean_Motion: 15.04509307, Eccentricity: 0.0002162, Inclination: 97.6286, Ra_Of_Asc_Node: 250.4933, Arg_Of_Pericenter: 75.0636, Mean_Anomaly: 337.4701, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39227, Element_Set_No: 999, Rev_At_Epoch: 46850, Bstar: 3.9996E-06, Mean_Motion_Dot: -5E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-A", + "expanded": "SKYSAT-A", + "numerical_value": 1548, + "description": "Object_Id: 2013-066C, Epoch: 2022-03-04T11: 40: 47.158752, Mean_Motion: 14.99486141, Eccentricity: 0.0018446, Inclination: 97.5646, Ra_Of_Asc_Node: 138.3701, Arg_Of_Pericenter: 248.8633, Mean_Anomaly: 111.0619, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39418, Element_Set_No: 999, Rev_At_Epoch: 45292, Bstar: 0.00014743, Mean_Motion_Dot: 1.756E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "DUBAISAT-2", + "expanded": "DUBAISAT-2", + "numerical_value": 1549, + "description": "Object_Id: 2013-066D, Epoch: 2022-03-04T13: 06: 01.389888, Mean_Motion: 14.94629523, Eccentricity: 0.0012044, Inclination: 97.4601, Ra_Of_Asc_Node: 100.7791, Arg_Of_Pericenter: 272.6964, Mean_Anomaly: 87.2863, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39419, Element_Set_No: 999, Rev_At_Epoch: 45152, Bstar: 9.2929E-05, Mean_Motion_Dot: 9.539999999999998E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GPM-CORE", + "expanded": "GPM-CORE", + "numerical_value": 1550, + "description": "Object_Id: 2014-009C, Epoch: 2022-03-04T13: 47: 57.824448, Mean_Motion: 15.55864245, Eccentricity: 0.0010622, Inclination: 65.0046, Ra_Of_Asc_Node: 185.3736, Arg_Of_Pericenter: 280.6816, Mean_Anomaly: 79.3134, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39574, Element_Set_No: 999, Rev_At_Epoch: 45528, Bstar: 0.00019189, Mean_Motion_Dot: 0.00013129, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-1A", + "expanded": "SENTINEL-1A", + "numerical_value": 1551, + "description": "Object_Id: 2014-016A, Epoch: 2022-03-04T12: 56: 11.719392, Mean_Motion: 14.59199987, Eccentricity: 0.0001314, Inclination: 98.1819, Ra_Of_Asc_Node: 72.58, Arg_Of_Pericenter: 80.7598, Mean_Anomaly: 279.3737, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39634, Element_Set_No: 999, Rev_At_Epoch: 42172, Bstar: 1.1488E-05, Mean_Motion_Dot: 8E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "KAZEOSAT 1", + "expanded": "KAZEOSAT 1", + "numerical_value": 1552, + "description": "Object_Id: 2014-024A, Epoch: 2022-03-04T12: 02: 37.449312, Mean_Motion: 14.41976047, Eccentricity: 0.000123, Inclination: 98.4739, Ra_Of_Asc_Node: 139.8341, Arg_Of_Pericenter: 75.4533, Mean_Anomaly: 284.6797, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39731, Element_Set_No: 999, Rev_At_Epoch: 41296, Bstar: 2.7752E-05, Mean_Motion_Dot: 4.7E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "ALOS-2", + "expanded": "ALOS-2", + "numerical_value": 1553, + "description": "Object_Id: 2014-029A, Epoch: 2022-03-04T13: 46: 31.316448, Mean_Motion: 14.794708870000001, Eccentricity: 0.0001608, Inclination: 97.9201, Ra_Of_Asc_Node: 162.2135, Arg_Of_Pericenter: 95.2106, Mean_Anomaly: 264.93, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 39766, Element_Set_No: 999, Rev_At_Epoch: 42012, Bstar: -2.3155E-07, Mean_Motion_Dot: -5.3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "KAZEOSAT 2", + "expanded": "KAZEOSAT 2", + "numerical_value": 1554, + "description": "Object_Id: 2014-033A, Epoch: 2022-03-04T14: 15: 09.904032, Mean_Motion: 14.82113341, Eccentricity: 0.0016884, Inclination: 97.7388, Ra_Of_Asc_Node: 312.4046, Arg_Of_Pericenter: 63.4443, Mean_Anomaly: 296.8503, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40010, Element_Set_No: 999, Rev_At_Epoch: 41691, Bstar: 3.1773E-05, Mean_Motion_Dot: 2.0199999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "HODOYOSHI-4", + "expanded": "HODOYOSHI-4", + "numerical_value": 1555, + "description": "Object_Id: 2014-033B, Epoch: 2022-03-04T15: 12: 19.399104, Mean_Motion: 14.814875690000001, Eccentricity: 0.0028071, Inclination: 97.6954, Ra_Of_Asc_Node: 301.1097, Arg_Of_Pericenter: 61.8144, Mean_Anomaly: 298.591, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40011, Element_Set_No: 999, Rev_At_Epoch: 41657, Bstar: 5.844000000000001E-05, Mean_Motion_Dot: 4.1E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "DEIMOS-2", + "expanded": "DEIMOS-2", + "numerical_value": 1556, + "description": "Object_Id: 2014-033D, Epoch: 2022-03-04T14: 28: 51.158496, Mean_Motion: 14.85077298, Eccentricity: 0.0002566, Inclination: 97.7717, Ra_Of_Asc_Node: 323.3609, Arg_Of_Pericenter: 89.9318, Mean_Anomaly: 270.2188, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40013, Element_Set_No: 999, Rev_At_Epoch: 41763, Bstar: 7.019400000000001E-05, Mean_Motion_Dot: 5.469999999999999E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "HODOYOSHI-3", + "expanded": "HODOYOSHI-3", + "numerical_value": 1557, + "description": "Object_Id: 2014-033F, Epoch: 2022-03-04T14: 16: 50.318976, Mean_Motion: 14.78786228, Eccentricity: 0.0038301, Inclination: 97.6553, Ra_Of_Asc_Node: 282.7384, Arg_Of_Pericenter: 84.8773, Mean_Anomaly: 275.6808, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40015, Element_Set_No: 999, Rev_At_Epoch: 41581, Bstar: 3.7639E-05, Mean_Motion_Dot: 2.2999999999999996E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SPOT 7", + "expanded": "SPOT 7", + "numerical_value": 1558, + "description": "Object_Id: 2014-034A, Epoch: 2022-03-04T14: 35: 01.052448, Mean_Motion: 14.58558992, Eccentricity: 0.000112, Inclination: 98.1851, Ra_Of_Asc_Node: 132.7189, Arg_Of_Pericenter: 92.8883, Mean_Anomaly: 267.2447, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40053, Element_Set_No: 999, Rev_At_Epoch: 40880, Bstar: 2.3779E-05, Mean_Motion_Dot: 6.499999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-B", + "expanded": "SKYSAT-B", + "numerical_value": 1559, + "description": "Object_Id: 2014-037D, Epoch: 2022-03-04T13: 19: 55.257888, Mean_Motion: 14.81565674, Eccentricity: 0.0005302, Inclination: 98.4254, Ra_Of_Asc_Node: 286.778, Arg_Of_Pericenter: 298.1085, Mean_Anomaly: 61.959, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40072, Element_Set_No: 999, Rev_At_Epoch: 41371, Bstar: 4.667E-05, Mean_Motion_Dot: 3.0799999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "WORLDVIEW-3 (WV-3)", + "expanded": "WORLDVIEW-3 (WV-3)", + "numerical_value": 1560, + "description": "Object_Id: 2014-048A, Epoch: 2022-03-04T12: 51: 39.737376, Mean_Motion: 14.85203693, Eccentricity: 0.000309, Inclination: 97.8642, Ra_Of_Asc_Node: 139.8854, Arg_Of_Pericenter: 77.1412, Mean_Anomaly: 283.0152, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40115, Element_Set_No: 999, Rev_At_Epoch: 40957, Bstar: 5.7448E-05, Mean_Motion_Dot: 4.3899999999999995E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 2", + "expanded": "GAOFEN 2", + "numerical_value": 1561, + "description": "Object_Id: 2014-049A, Epoch: 2022-03-04T13: 24: 17.784288, Mean_Motion: 14.807140650000001, Eccentricity: 0.0006146, Inclination: 97.7745, Ra_Of_Asc_Node: 135.3354, Arg_Of_Pericenter: 304.3784, Mean_Anomaly: 55.6847, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40118, Element_Set_No: 999, Rev_At_Epoch: 40757, Bstar: 5.0253E-05, Mean_Motion_Dot: 3.3599999999999996E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 21", + "expanded": "YAOGAN 21", + "numerical_value": 1562, + "description": "Object_Id: 2014-053A, Epoch: 2022-03-04T12: 45: 07.387200, Mean_Motion: 15.23598107, Eccentricity: 0.0015081, Inclination: 97.3639, Ra_Of_Asc_Node: 132.9036, Arg_Of_Pericenter: 229.1505, Mean_Anomaly: 242.7791, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40143, Element_Set_No: 999, Rev_At_Epoch: 41657, Bstar: 0.00013863, Mean_Motion_Dot: 3.256000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 22", + "expanded": "YAOGAN 22", + "numerical_value": 1563, + "description": "Object_Id: 2014-063A, Epoch: 2022-03-04T11: 04: 22.732608, Mean_Motion: 13.15435243, Eccentricity: 0.0006953, Inclination: 100.5509, Ra_Of_Asc_Node: 184.3326, Arg_Of_Pericenter: 123.4595, Mean_Anomaly: 236.7186, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40275, Element_Set_No: 999, Rev_At_Epoch: 35394, Bstar: 4.7166E-05, Mean_Motion_Dot: -2.7E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "ASNARO", + "expanded": "ASNARO", + "numerical_value": 1564, + "description": "Object_Id: 2014-070A, Epoch: 2022-03-04T12: 37: 18.156576, Mean_Motion: 15.19576744, Eccentricity: 0.0001116, Inclination: 97.4742, Ra_Of_Asc_Node: 146.7125, Arg_Of_Pericenter: 95.2808, Mean_Anomaly: 321.1078, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40298, Element_Set_No: 999, Rev_At_Epoch: 40626, Bstar: 0.00020178, Mean_Motion_Dot: 4.224E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "HODOYOSHI-1", + "expanded": "HODOYOSHI-1", + "numerical_value": 1565, + "description": "Object_Id: 2014-070B, Epoch: 2022-03-04T12: 29: 02.739840, Mean_Motion: 15.25762, Eccentricity: 0.0013448, Inclination: 97.2568, Ra_Of_Asc_Node: 134.7669, Arg_Of_Pericenter: 143.3721, Mean_Anomaly: 340.4095, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40299, Element_Set_No: 999, Rev_At_Epoch: 40705, Bstar: 0.00012366, Mean_Motion_Dot: 3.0930000000000004E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "QSAT-EOS", + "expanded": "QSAT-EOS", + "numerical_value": 1566, + "description": "Object_Id: 2014-070D, Epoch: 2022-03-04T11: 19: 46.867872, Mean_Motion: 15.31814828, Eccentricity: 0.0023474, Inclination: 97.2228, Ra_Of_Asc_Node: 133.4694, Arg_Of_Pericenter: 125.2089, Mean_Anomaly: 2.856, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40301, Element_Set_No: 999, Rev_At_Epoch: 40741, Bstar: 0.00032587, Mean_Motion_Dot: 0.00010022, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 23", + "expanded": "YAOGAN 23", + "numerical_value": 1567, + "description": "Object_Id: 2014-071A, Epoch: 2022-03-04T13: 05: 53.863584, Mean_Motion: 15.20055326, Eccentricity: 0.0002364, Inclination: 97.5953, Ra_Of_Asc_Node: 14.0485, Arg_Of_Pericenter: 94.2407, Mean_Anomaly: 354.8054, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40305, Element_Set_No: 999, Rev_At_Epoch: 40461, Bstar: 0.00015679, Mean_Motion_Dot: 3.311E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 24", + "expanded": "YAOGAN 24", + "numerical_value": 1568, + "description": "Object_Id: 2014-072A, Epoch: 2022-03-04T14: 08: 54.127104, Mean_Motion: 14.76249515, Eccentricity: 0.0017311, Inclination: 97.9596, Ra_Of_Asc_Node: 185.3993, Arg_Of_Pericenter: 254.4202, Mean_Anomaly: 105.51, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40310, Element_Set_No: 999, Rev_At_Epoch: 39276, Bstar: 5.2639E-05, Mean_Motion_Dot: 3.14E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "CBERS 4", + "expanded": "CBERS 4", + "numerical_value": 1569, + "description": "Object_Id: 2014-079A, Epoch: 2022-03-04T13: 52: 34.334688, Mean_Motion: 14.35446433, Eccentricity: 0.0001806, Inclination: 98.4936, Ra_Of_Asc_Node: 139.0972, Arg_Of_Pericenter: 75.5577, Mean_Anomaly: 284.5813, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40336, Element_Set_No: 999, Rev_At_Epoch: 37936, Bstar: 2.6298E-05, Mean_Motion_Dot: 3.2E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "RESURS P2", + "expanded": "RESURS P2", + "numerical_value": 1570, + "description": "Object_Id: 2014-087A, Epoch: 2022-03-04T14: 28: 34.332960, Mean_Motion: 15.35403581, Eccentricity: 0.0011, Inclination: 97.2122, Ra_Of_Asc_Node: 150.681, Arg_Of_Pericenter: 104.4882, Mean_Anomaly: 2.9252000000000002, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40360, Element_Set_No: 999, Rev_At_Epoch: 40216, Bstar: 9.9809E-05, Mean_Motion_Dot: 3.3600000000000004E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 26", + "expanded": "YAOGAN 26", + "numerical_value": 1571, + "description": "Object_Id: 2014-088A, Epoch: 2022-03-04T13: 50: 39.968736, Mean_Motion: 15.23669919, Eccentricity: 0.0007822, Inclination: 97.1644, Ra_Of_Asc_Node: 118.1338, Arg_Of_Pericenter: 78.8199, Mean_Anomaly: 56.3973, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40362, Element_Set_No: 999, Rev_At_Epoch: 40005, Bstar: 0.00015462, Mean_Motion_Dot: 3.6440000000000003E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SMAP", + "expanded": "SMAP", + "numerical_value": 1572, + "description": "Object_Id: 2015-003A, Epoch: 2022-03-04T13: 10: 37.189056, Mean_Motion: 14.63383618, Eccentricity: 0.0001651, Inclination: 98.1265, Ra_Of_Asc_Node: 71.8941, Arg_Of_Pericenter: 107.1507, Mean_Anomaly: 252.9876, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40376, Element_Set_No: 999, Rev_At_Epoch: 37864, Bstar: 4.1790000000000005E-05, Mean_Motion_Dot: 1.69E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "KOMPSAT-3A", + "expanded": "KOMPSAT-3A", + "numerical_value": 1573, + "description": "Object_Id: 2015-014A, Epoch: 2022-03-04T10: 59: 10.271328, Mean_Motion: 15.12215704, Eccentricity: 0.0002961, Inclination: 97.5633, Ra_Of_Asc_Node: 7.198, Arg_Of_Pericenter: 84.7391, Mean_Anomaly: 24.438, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40536, Element_Set_No: 999, Rev_At_Epoch: 38317, Bstar: 0.00012156, Mean_Motion_Dot: 2.034E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-2A", + "expanded": "SENTINEL-2A", + "numerical_value": 1574, + "description": "Object_Id: 2015-028A, Epoch: 2022-03-04T10: 31: 11.400960, Mean_Motion: 14.30815771, Eccentricity: 0.0001157, Inclination: 98.5698, Ra_Of_Asc_Node: 139.7006, Arg_Of_Pericenter: 90.8168, Mean_Anomaly: 269.3152, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40697, Element_Set_No: 999, Rev_At_Epoch: 34983, Bstar: 3.153100000000001E-05, Mean_Motion_Dot: 3.8999999999999997E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 8", + "expanded": "GAOFEN 8", + "numerical_value": 1575, + "description": "Object_Id: 2015-030A, Epoch: 2022-03-04T14: 37: 21.103392, Mean_Motion: 15.23291888, Eccentricity: 0.0005853, Inclination: 97.5448, Ra_Of_Asc_Node: 197.5002, Arg_Of_Pericenter: 108.2826, Mean_Anomaly: 306.8595, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40701, Element_Set_No: 999, Rev_At_Epoch: 37242, Bstar: -0.00046248, Mean_Motion_Dot: -0.00011021, Mean_Motion_Ddot: 0" + }, + { + "value": "CARBONITE 1 (CBNT-1)", + "expanded": "CARBONITE 1 (CBNT-1)", + "numerical_value": 1576, + "description": "Object_Id: 2015-032D, Epoch: 2022-03-04T12: 53: 45.701664, Mean_Motion: 14.75169869, Eccentricity: 0.0016871, Inclination: 97.7537, Ra_Of_Asc_Node: 292.3626, Arg_Of_Pericenter: 359.1599, Mean_Anomaly: 0.9588, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40718, Element_Set_No: 999, Rev_At_Epoch: 35795, Bstar: 7.9087E-05, Mean_Motion_Dot: 4.86E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 27", + "expanded": "YAOGAN 27", + "numerical_value": 1577, + "description": "Object_Id: 2015-040A, Epoch: 2022-03-04T11: 18: 17.245152, Mean_Motion: 13.15976003, Eccentricity: 0.0008055, Inclination: 100.1451, Ra_Of_Asc_Node: 99.6686, Arg_Of_Pericenter: 222.1835, Mean_Anomaly: 137.8662, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40878, Element_Set_No: 999, Rev_At_Epoch: 31322, Bstar: 5.866200000000001E-05, Mean_Motion_Dot: -2E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 9-01", + "expanded": "GAOFEN 9-01", + "numerical_value": 1578, + "description": "Object_Id: 2015-047A, Epoch: 2022-03-04T13: 05: 16.257120, Mean_Motion: 14.76357103, Eccentricity: 0.0032847, Inclination: 97.8284, Ra_Of_Asc_Node: 137.1793, Arg_Of_Pericenter: 187.5957, Mean_Anomaly: 172.4761, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40894, Element_Set_No: 999, Rev_At_Epoch: 34870, Bstar: 4.4763000000000005E-05, Mean_Motion_Dot: 2.62E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "LAPAN-A2", + "expanded": "LAPAN-A2", + "numerical_value": 1579, + "description": "Object_Id: 2015-052B, Epoch: 2022-03-04T10: 24: 01.783872, Mean_Motion: 14.76741852, Eccentricity: 0.0012637, Inclination: 5.9957, Ra_Of_Asc_Node: 198.2279, Arg_Of_Pericenter: 119.4842, Mean_Anomaly: 240.6534, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40931, Element_Set_No: 999, Rev_At_Epoch: 34779, Bstar: 4.4017E-05, Mean_Motion_Dot: 9.56E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 28", + "expanded": "YAOGAN 28", + "numerical_value": 1580, + "description": "Object_Id: 2015-064A, Epoch: 2022-03-04T13: 16: 48.156096, Mean_Motion: 15.23501896, Eccentricity: 0.0001864, Inclination: 97.5345, Ra_Of_Asc_Node: 205.7042, Arg_Of_Pericenter: 90.1944, Mean_Anomaly: 339.057, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41026, Element_Set_No: 999, Rev_At_Epoch: 35226, Bstar: 0.00015559, Mean_Motion_Dot: 3.6400000000000004E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 29", + "expanded": "YAOGAN 29", + "numerical_value": 1581, + "description": "Object_Id: 2015-069A, Epoch: 2022-03-04T12: 55: 38.144352, Mean_Motion: 14.8058696, Eccentricity: 0.0002049, Inclination: 98.054, Ra_Of_Asc_Node: 63.2703, Arg_Of_Pericenter: 62.0877, Mean_Anomaly: 298.0532, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41038, Element_Set_No: 999, Rev_At_Epoch: 33876, Bstar: 2.8913000000000006E-05, Mean_Motion_Dot: 1.68E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "KENT RIDGE 1", + "expanded": "KENT RIDGE 1", + "numerical_value": 1582, + "description": "Object_Id: 2015-077B, Epoch: 2022-03-03T21: 46: 16.862304, Mean_Motion: 15.09679237, Eccentricity: 0.0011548, Inclination: 14.9809, Ra_Of_Asc_Node: 257.9995, Arg_Of_Pericenter: 358.1376, Mean_Anomaly: 37.7648, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41167, Element_Set_No: 999, Rev_At_Epoch: 34327, Bstar: 6.7371E-05, Mean_Motion_Dot: 1.7800000000000002E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "TELEOS 1", + "expanded": "TELEOS 1", + "numerical_value": 1583, + "description": "Object_Id: 2015-077D, Epoch: 2022-03-04T14: 25: 41.015424, Mean_Motion: 15.11932854, Eccentricity: 0.001036, Inclination: 14.9849, Ra_Of_Asc_Node: 225.6095, Arg_Of_Pericenter: 53.2295, Mean_Anomaly: 306.8976, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41169, Element_Set_No: 999, Rev_At_Epoch: 34362, Bstar: 0.0001435, Mean_Motion_Dot: 3.211E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 4", + "expanded": "GAOFEN 4", + "numerical_value": 1584, + "description": "Object_Id: 2015-083A, Epoch: 2022-03-04T13: 00: 58.400640, Mean_Motion: 1.00276251, Eccentricity: 0.0005107, Inclination: 0.0635, Ra_Of_Asc_Node: 307.7263, Arg_Of_Pericenter: 238.9184, Mean_Anomaly: 276.5628, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41194, Element_Set_No: 999, Rev_At_Epoch: 2282, Bstar: 0, Mean_Motion_Dot: -3.5099999999999994E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "JASON-3", + "expanded": "JASON-3", + "numerical_value": 1585, + "description": "Object_Id: 2016-002A, Epoch: 2022-03-04T14: 01: 50.304000, Mean_Motion: 12.80929388, Eccentricity: 0.0008115, Inclination: 66.0409, Ra_Of_Asc_Node: 146.7169, Arg_Of_Pericenter: 273.1216, Mean_Anomaly: 86.887, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41240, Element_Set_No: 999, Rev_At_Epoch: 28648, Bstar: 9.9622E-05, Mean_Motion_Dot: -3.7999999999999996E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-3A", + "expanded": "SENTINEL-3A", + "numerical_value": 1586, + "description": "Object_Id: 2016-011A, Epoch: 2022-03-04T13: 36: 35.099424, Mean_Motion: 14.26738224, Eccentricity: 0.0001085, Inclination: 98.6202, Ra_Of_Asc_Node: 132.3676, Arg_Of_Pericenter: 98.5545, Mean_Anomaly: 261.5759, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41335, Element_Set_No: 999, Rev_At_Epoch: 31481, Bstar: 3.5844000000000004E-05, Mean_Motion_Dot: 4.2999999999999996E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-1B", + "expanded": "SENTINEL-1B", + "numerical_value": 1587, + "description": "Object_Id: 2016-025A, Epoch: 2022-03-04T13: 44: 52.102464, Mean_Motion: 14.59200027, Eccentricity: 0.0001305, Inclination: 98.182, Ra_Of_Asc_Node: 72.4389, Arg_Of_Pericenter: 83.9069, Mean_Anomaly: 276.2266, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41456, Element_Set_No: 999, Rev_At_Epoch: 31189, Bstar: 1.0893E-05, Mean_Motion_Dot: 6.000000000000001E-08, Mean_Motion_Ddot: 0" + }, + { + "value": "ZIYUAN 3-2 (ZY 3-2)", + "expanded": "ZIYUAN 3-2 (ZY 3-2)", + "numerical_value": 1588, + "description": "Object_Id: 2016-033A, Epoch: 2022-03-04T13: 14: 48.605280, Mean_Motion: 15.21505897, Eccentricity: 0.0002211, Inclination: 97.2954, Ra_Of_Asc_Node: 133.3818, Arg_Of_Pericenter: 2.1808, Mean_Anomaly: 109.7042, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41556, Element_Set_No: 999, Rev_At_Epoch: 31995, Bstar: 0.00012758, Mean_Motion_Dot: 2.803E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-1 (FRESCO)", + "expanded": "NUSAT-1 (FRESCO)", + "numerical_value": 1589, + "description": "Object_Id: 2016-033B, Epoch: 2022-03-04T11: 56: 27.235680, Mean_Motion: 15.31847155, Eccentricity: 0.0012673, Inclination: 97.3872, Ra_Of_Asc_Node: 161.279, Arg_Of_Pericenter: 37.2643, Mean_Anomaly: 21.8014, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41557, Element_Set_No: 999, Rev_At_Epoch: 32130, Bstar: 0.00023845, Mean_Motion_Dot: 7.271E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-2 (BATATA)", + "expanded": "NUSAT-2 (BATATA)", + "numerical_value": 1590, + "description": "Object_Id: 2016-033C, Epoch: 2022-03-04T12: 33: 04.615776, Mean_Motion: 15.33941559, Eccentricity: 0.0011723, Inclination: 97.4031, Ra_Of_Asc_Node: 166.427, Arg_Of_Pericenter: 28.7589, Mean_Anomaly: 340.8149, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41558, Element_Set_No: 999, Rev_At_Epoch: 32155, Bstar: 0.00021518, Mean_Motion_Dot: 6.999E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-2C", + "expanded": "CARTOSAT-2C", + "numerical_value": 1591, + "description": "Object_Id: 2016-040A, Epoch: 2022-03-04T11: 47: 54.627936, Mean_Motion: 15.19187761, Eccentricity: 0.0013219, Inclination: 97.5026, Ra_Of_Asc_Node: 123.9275, Arg_Of_Pericenter: 185.2579, Mean_Anomaly: 288.6653, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41599, Element_Set_No: 999, Rev_At_Epoch: 31599, Bstar: 9.9018E-05, Mean_Motion_Dot: 2.018E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C1", + "expanded": "SKYSAT-C1", + "numerical_value": 1592, + "description": "Object_Id: 2016-040C, Epoch: 2022-03-04T10: 53: 52.583712, Mean_Motion: 15.41650986, Eccentricity: 0.0002389, Inclination: 97.1646, Ra_Of_Asc_Node: 141.1571, Arg_Of_Pericenter: 84.2307, Mean_Anomaly: 275.9213, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41601, Element_Set_No: 999, Rev_At_Epoch: 31784, Bstar: 0.00018181, Mean_Motion_Dot: 7.577E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "LAPAN-A3", + "expanded": "LAPAN-A3", + "numerical_value": 1593, + "description": "Object_Id: 2016-040E, Epoch: 2022-03-04T14: 40: 43.312224, Mean_Motion: 15.20335312, Eccentricity: 0.0013554, Inclination: 97.2224, Ra_Of_Asc_Node: 105.1424, Arg_Of_Pericenter: 162.0653, Mean_Anomaly: 349.9298, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41603, Element_Set_No: 999, Rev_At_Epoch: 31610, Bstar: 3.8035000000000004E-05, Mean_Motion_Dot: 7.63E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "BIROS", + "expanded": "BIROS", + "numerical_value": 1594, + "description": "Object_Id: 2016-040F, Epoch: 2022-03-04T14: 15: 29.705184, Mean_Motion: 15.23433921, Eccentricity: 0.0013051, Inclination: 97.2263, Ra_Of_Asc_Node: 111.9157, Arg_Of_Pericenter: 137.9598, Mean_Anomaly: 222.2643, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41604, Element_Set_No: 999, Rev_At_Epoch: 31649, Bstar: 9.4528E-05, Mean_Motion_Dot: 2.1880000000000004E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 3", + "expanded": "GAOFEN 3", + "numerical_value": 1595, + "description": "Object_Id: 2016-049A, Epoch: 2022-03-04T13: 38: 49.516224, Mean_Motion: 14.42215528, Eccentricity: 6.63E-05, Inclination: 98.4108, Ra_Of_Asc_Node: 73.3575, Arg_Of_Pericenter: 97.6067, Mean_Anomaly: 262.5192, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41727, Element_Set_No: 999, Rev_At_Epoch: 29297, Bstar: 1.9425E-05, Mean_Motion_Dot: 2E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C4", + "expanded": "SKYSAT-C4", + "numerical_value": 1596, + "description": "Object_Id: 2016-058B, Epoch: 2022-03-04T10: 35: 30.782400, Mean_Motion: 15.4132734, Eccentricity: 0.0001514, Inclination: 97.1329, Ra_Of_Asc_Node: 131.4634, Arg_Of_Pericenter: 88.9534, Mean_Anomaly: 271.1887, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41771, Element_Set_No: 999, Rev_At_Epoch: 30479, Bstar: 0.00016976, Mean_Motion_Dot: 6.994E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C5", + "expanded": "SKYSAT-C5", + "numerical_value": 1597, + "description": "Object_Id: 2016-058C, Epoch: 2022-03-04T09: 36: 11.006496, Mean_Motion: 15.25507852, Eccentricity: 0.0001467, Inclination: 97.2793, Ra_Of_Asc_Node: 129.7979, Arg_Of_Pericenter: 101.2199, Mean_Anomaly: 258.9205, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41772, Element_Set_No: 999, Rev_At_Epoch: 30375, Bstar: 0.00012374, Mean_Motion_Dot: 3.0640000000000005E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C2", + "expanded": "SKYSAT-C2", + "numerical_value": 1598, + "description": "Object_Id: 2016-058D, Epoch: 2022-03-04T11: 11: 33.510048, Mean_Motion: 15.41430067, Eccentricity: 0.0001101, Inclination: 97.1339, Ra_Of_Asc_Node: 131.8965, Arg_Of_Pericenter: 117.7581, Mean_Anomaly: 242.3778, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41773, Element_Set_No: 999, Rev_At_Epoch: 30482, Bstar: 0.00017565, Mean_Motion_Dot: 7.264000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C3", + "expanded": "SKYSAT-C3", + "numerical_value": 1599, + "description": "Object_Id: 2016-058E, Epoch: 2022-03-04T10: 11: 47.328576, Mean_Motion: 15.4147993, Eccentricity: 0.0001462, Inclination: 97.1332, Ra_Of_Asc_Node: 131.7622, Arg_Of_Pericenter: 92.3553, Mean_Anomaly: 267.7862, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41774, Element_Set_No: 999, Rev_At_Epoch: 30480, Bstar: 0.00019377, Mean_Motion_Dot: 8.036E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "ALSAT 1B", + "expanded": "ALSAT 1B", + "numerical_value": 1600, + "description": "Object_Id: 2016-059C, Epoch: 2022-03-04T12: 51: 46.421280, Mean_Motion: 14.69981531, Eccentricity: 0.0009164, Inclination: 97.9269, Ra_Of_Asc_Node: 110.8969, Arg_Of_Pericenter: 195.2618, Mean_Anomaly: 164.8317, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41785, Element_Set_No: 999, Rev_At_Epoch: 29040, Bstar: 2.7709000000000005E-05, Mean_Motion_Dot: 1.18E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "PATHFINDER 1", + "expanded": "PATHFINDER 1", + "numerical_value": 1601, + "description": "Object_Id: 2016-059E, Epoch: 2022-03-04T13: 45: 52.819200, Mean_Motion: 14.63916242, Eccentricity: 0.0030978, Inclination: 97.9298, Ra_Of_Asc_Node: 111.4369, Arg_Of_Pericenter: 136.2115, Mean_Anomaly: 224.1553, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41787, Element_Set_No: 999, Rev_At_Epoch: 29039, Bstar: 5.1425E-05, Mean_Motion_Dot: 2.24E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SCATSAT 1", + "expanded": "SCATSAT 1", + "numerical_value": 1602, + "description": "Object_Id: 2016-059H, Epoch: 2022-03-04T13: 50: 33.403200, Mean_Motion: 14.50841377, Eccentricity: 0.0005598, Inclination: 98.3354, Ra_Of_Asc_Node: 108.5877, Arg_Of_Pericenter: 153.788, Mean_Anomaly: 206.3599, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41790, Element_Set_No: 999, Rev_At_Epoch: 28786, Bstar: 3.197900000000001E-05, Mean_Motion_Dot: 8.199999999999999E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GOKTURK 1A", + "expanded": "GOKTURK 1A", + "numerical_value": 1603, + "description": "Object_Id: 2016-073A, Epoch: 2022-03-04T11: 31: 57.166464, Mean_Motion: 14.627543, Eccentricity: 0.0001365, Inclination: 98.145, Ra_Of_Asc_Node: 319.86, Arg_Of_Pericenter: 79.632, Mean_Anomaly: 280.5033, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41875, Element_Set_No: 999, Rev_At_Epoch: 27993, Bstar: 3.6676000000000006E-05, Mean_Motion_Dot: 1.4E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "RESOURCESAT-2A", + "expanded": "RESOURCESAT-2A", + "numerical_value": 1604, + "description": "Object_Id: 2016-074A, Epoch: 2022-03-04T10: 40: 06.732768, Mean_Motion: 14.21620278, Eccentricity: 2.36E-05, Inclination: 98.7273, Ra_Of_Asc_Node: 139.9285, Arg_Of_Pericenter: 269.7975, Mean_Anomaly: 90.3177, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41877, Element_Set_No: 999, Rev_At_Epoch: 27184, Bstar: 3.5467000000000004E-05, Mean_Motion_Dot: 3.4E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-2D", + "expanded": "CARTOSAT-2D", + "numerical_value": 1605, + "description": "Object_Id: 2017-008A, Epoch: 2022-03-04T10: 33: 04.764672, Mean_Motion: 15.19242606, Eccentricity: 0.0006575, Inclination: 97.4071, Ra_Of_Asc_Node: 124.3972, Arg_Of_Pericenter: 345.0235, Mean_Anomaly: 15.0805, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 41948, Element_Set_No: 999, Rev_At_Epoch: 27985, Bstar: 9.063000000000002E-05, Mean_Motion_Dot: 1.843E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-2B", + "expanded": "SENTINEL-2B", + "numerical_value": 1606, + "description": "Object_Id: 2017-013A, Epoch: 2022-03-04T11: 21: 25.605792, Mean_Motion: 14.30814443, Eccentricity: 0.0001272, Inclination: 98.571, Ra_Of_Asc_Node: 139.7094, Arg_Of_Pericenter: 103.6863, Mean_Anomaly: 256.4464, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42063, Element_Set_No: 999, Rev_At_Epoch: 26075, Bstar: 2.8081000000000004E-05, Mean_Motion_Dot: 3E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "ZHUHAI-1 02 (CAS-4B)", + "expanded": "ZHUHAI-1 02 (CAS-4B)", + "numerical_value": 1607, + "description": "Object_Id: 2017-034B, Epoch: 2022-03-04T12: 02: 16.518912, Mean_Motion: 15.10982294, Eccentricity: 0.0009035, Inclination: 43.0158, Ra_Of_Asc_Node: 190.79, Arg_Of_Pericenter: 341.6908, Mean_Anomaly: 105.0231, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42759, Element_Set_No: 999, Rev_At_Epoch: 26047, Bstar: 0.00013479, Mean_Motion_Dot: 2.0680000000000002E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-3 (MILANESAT)", + "expanded": "NUSAT-3 (MILANESAT)", + "numerical_value": 1608, + "description": "Object_Id: 2017-034C, Epoch: 2022-03-04T11: 58: 56.025120, Mean_Motion: 15.11655003, Eccentricity: 0.0008045, Inclination: 43.0147, Ra_Of_Asc_Node: 186.3163, Arg_Of_Pericenter: 3.9395, Mean_Anomaly: 85.5175, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42760, Element_Set_No: 999, Rev_At_Epoch: 26053, Bstar: 0.00015639, Mean_Motion_Dot: 2.4840000000000003E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "ZHUHAI-1 01 (CAS-4A)", + "expanded": "ZHUHAI-1 01 (CAS-4A)", + "numerical_value": 1609, + "description": "Object_Id: 2017-034D, Epoch: 2022-03-04T13: 06: 17.590752, Mean_Motion: 15.11071159, Eccentricity: 0.0009056, Inclination: 43.0161, Ra_Of_Asc_Node: 189.4107, Arg_Of_Pericenter: 342.8042, Mean_Anomaly: 116.9072, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42761, Element_Set_No: 999, Rev_At_Epoch: 26048, Bstar: 0.00015048, Mean_Motion_Dot: 2.3410000000000005E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-2E", + "expanded": "CARTOSAT-2E", + "numerical_value": 1610, + "description": "Object_Id: 2017-036C, Epoch: 2022-03-04T11: 32: 37.739904, Mean_Motion: 15.19249625, Eccentricity: 0.0008884, Inclination: 97.4697, Ra_Of_Asc_Node: 125.2688, Arg_Of_Pericenter: 29.701999999999998, Mean_Anomaly: 95.3644, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42767, Element_Set_No: 999, Rev_At_Epoch: 26042, Bstar: 9.884200000000001E-05, Mean_Motion_Dot: 2.016E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "FORMOSAT-5", + "expanded": "FORMOSAT-5", + "numerical_value": 1611, + "description": "Object_Id: 2017-049A, Epoch: 2022-03-04T11: 19: 59.522016, Mean_Motion: 14.50893666, Eccentricity: 0.0010284, Inclination: 98.2471, Ra_Of_Asc_Node: 143.1729, Arg_Of_Pericenter: 208.1193, Mean_Anomaly: 151.9451, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42920, Element_Set_No: 999, Rev_At_Epoch: 23964, Bstar: 3.3775E-05, Mean_Motion_Dot: 8.9E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-5P", + "expanded": "SENTINEL-5P", + "numerical_value": 1612, + "description": "Object_Id: 2017-064A, Epoch: 2022-03-04T10: 49: 10.520544, Mean_Motion: 14.19550629, Eccentricity: 9.990000000000002E-05, Inclination: 98.7225, Ra_Of_Asc_Node: 4.7285, Arg_Of_Pericenter: 88.7264, Mean_Anomaly: 271.4026, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42969, Element_Set_No: 999, Rev_At_Epoch: 22742, Bstar: 2.9034000000000004E-05, Mean_Motion_Dot: 1.8E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C11", + "expanded": "SKYSAT-C11", + "numerical_value": 1613, + "description": "Object_Id: 2017-068A, Epoch: 2022-03-04T13: 28: 38.090208, Mean_Motion: 15.39808482, Eccentricity: 0.0004157, Inclination: 97.278, Ra_Of_Asc_Node: 183.1928, Arg_Of_Pericenter: 122.8044, Mean_Anomaly: 237.3603, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42987, Element_Set_No: 999, Rev_At_Epoch: 24226, Bstar: 0.00018959, Mean_Motion_Dot: 7.435E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C10", + "expanded": "SKYSAT-C10", + "numerical_value": 1614, + "description": "Object_Id: 2017-068B, Epoch: 2022-03-04T13: 53: 00.087072, Mean_Motion: 15.39996597, Eccentricity: 0.0006141, Inclination: 97.2827, Ra_Of_Asc_Node: 183.4152, Arg_Of_Pericenter: 112.7908, Mean_Anomaly: 247.3988, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42988, Element_Set_No: 999, Rev_At_Epoch: 24229, Bstar: 0.00021384, Mean_Motion_Dot: 8.453E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C9", + "expanded": "SKYSAT-C9", + "numerical_value": 1615, + "description": "Object_Id: 2017-068C, Epoch: 2022-03-04T13: 40: 05.851488, Mean_Motion: 15.39931672, Eccentricity: 0.0003122, Inclination: 97.2769, Ra_Of_Asc_Node: 182.6394, Arg_Of_Pericenter: 40.1004, Mean_Anomaly: 320.0472, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42989, Element_Set_No: 999, Rev_At_Epoch: 24248, Bstar: 0.00016012, Mean_Motion_Dot: 6.291E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C8", + "expanded": "SKYSAT-C8", + "numerical_value": 1616, + "description": "Object_Id: 2017-068D, Epoch: 2022-03-04T07: 19: 21.169632, Mean_Motion: 15.39871156, Eccentricity: 0.0001389, Inclination: 97.2833, Ra_Of_Asc_Node: 183.5347, Arg_Of_Pericenter: 75.795, Mean_Anomaly: 284.345, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42990, Element_Set_No: 999, Rev_At_Epoch: 24227, Bstar: 0.00019353, Mean_Motion_Dot: 7.606E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C7", + "expanded": "SKYSAT-C7", + "numerical_value": 1617, + "description": "Object_Id: 2017-068E, Epoch: 2022-03-04T06: 47: 51.505728, Mean_Motion: 15.39930982, Eccentricity: 0.0002277, Inclination: 97.2836, Ra_Of_Asc_Node: 183.5788, Arg_Of_Pericenter: 108.1625, Mean_Anomaly: 251.9869, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42991, Element_Set_No: 999, Rev_At_Epoch: 24227, Bstar: 0.00020633, Mean_Motion_Dot: 8.131E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SKYSAT-C6", + "expanded": "SKYSAT-C6", + "numerical_value": 1618, + "description": "Object_Id: 2017-068F, Epoch: 2022-03-04T14: 27: 59.061888, Mean_Motion: 15.39862139, Eccentricity: 0.0002237, Inclination: 97.2857, Ra_Of_Asc_Node: 184.2412, Arg_Of_Pericenter: 164.9332, Mean_Anomaly: 195.1981, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 42992, Element_Set_No: 999, Rev_At_Epoch: 24233, Bstar: 0.00019925, Mean_Motion_Dot: 7.831E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-2F", + "expanded": "CARTOSAT-2F", + "numerical_value": 1619, + "description": "Object_Id: 2018-004A, Epoch: 2022-03-04T12: 16: 01.135200, Mean_Motion: 15.19253566, Eccentricity: 0.0005028, Inclination: 97.4643, Ra_Of_Asc_Node: 125.2867, Arg_Of_Pericenter: 51.2485, Mean_Anomaly: 60.3586, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43111, Element_Set_No: 999, Rev_At_Epoch: 22961, Bstar: 9.276299999999999E-05, Mean_Motion_Dot: 1.887E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-4 (ADA)", + "expanded": "NUSAT-4 (ADA)", + "numerical_value": 1620, + "description": "Object_Id: 2018-015D, Epoch: 2022-03-04T13: 06: 22.087872, Mean_Motion: 15.27969516, Eccentricity: 0.0016716, Inclination: 97.5161, Ra_Of_Asc_Node: 203.3495, Arg_Of_Pericenter: 60.3412, Mean_Anomaly: 319.859, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43195, Element_Set_No: 999, Rev_At_Epoch: 22720, Bstar: 0.00024935, Mean_Motion_Dot: 6.755E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-5 (MARYAM)", + "expanded": "NUSAT-5 (MARYAM)", + "numerical_value": 1621, + "description": "Object_Id: 2018-015K, Epoch: 2022-03-04T12: 12: 21.730176, Mean_Motion: 15.28298063, Eccentricity: 0.0016205, Inclination: 97.5171, Ra_Of_Asc_Node: 203.8182, Arg_Of_Pericenter: 62.1073, Mean_Anomaly: 2.6768, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43204, Element_Set_No: 999, Rev_At_Epoch: 22682, Bstar: 0.00026116, Mean_Motion_Dot: 7.149000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 1-02", + "expanded": "GAOFEN 1-02", + "numerical_value": 1622, + "description": "Object_Id: 2018-031A, Epoch: 2022-03-04T13: 06: 40.765824, Mean_Motion: 14.7653659, Eccentricity: 0.0003958, Inclination: 97.9087, Ra_Of_Asc_Node: 142.3614, Arg_Of_Pericenter: 11.1871, Mean_Anomaly: 348.9428, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43259, Element_Set_No: 999, Rev_At_Epoch: 21166, Bstar: 5.402700000000001E-05, Mean_Motion_Dot: 3.2599999999999997E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 1-03", + "expanded": "GAOFEN 1-03", + "numerical_value": 1623, + "description": "Object_Id: 2018-031B, Epoch: 2022-03-04T14: 13: 13.481760, Mean_Motion: 14.76538289, Eccentricity: 0.0006859, Inclination: 97.9079, Ra_Of_Asc_Node: 142.3799, Arg_Of_Pericenter: 64.0137, Mean_Anomaly: 296.1783, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43260, Element_Set_No: 999, Rev_At_Epoch: 21166, Bstar: 5.611100000000001E-05, Mean_Motion_Dot: 3.41E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 1-04", + "expanded": "GAOFEN 1-04", + "numerical_value": 1624, + "description": "Object_Id: 2018-031D, Epoch: 2022-03-04T10: 22: 31.347264, Mean_Motion: 14.7653241, Eccentricity: 0.0005101, Inclination: 97.909, Ra_Of_Asc_Node: 142.2494, Arg_Of_Pericenter: 25.5252, Mean_Anomaly: 334.6205, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43262, Element_Set_No: 999, Rev_At_Epoch: 21163, Bstar: 4.8907000000000005E-05, Mean_Motion_Dot: 2.91E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-3B", + "expanded": "SENTINEL-3B", + "numerical_value": 1625, + "description": "Object_Id: 2018-039A, Epoch: 2022-03-04T11: 16: 11.426880, Mean_Motion: 14.26737241, Eccentricity: 0.0001191, Inclination: 98.6262, Ra_Of_Asc_Node: 132.2397, Arg_Of_Pericenter: 119.6166, Mean_Anomaly: 240.5133, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43437, Element_Set_No: 999, Rev_At_Epoch: 20086, Bstar: 3.8356000000000003E-05, Mean_Motion_Dot: 4.9E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 5-01", + "expanded": "GAOFEN 5-01", + "numerical_value": 1626, + "description": "Object_Id: 2018-043A, Epoch: 2022-03-04T13: 19: 09.028704, Mean_Motion: 14.57899464, Eccentricity: 6.38E-05, Inclination: 98.2607, Ra_Of_Asc_Node: 4.7468, Arg_Of_Pericenter: 243.9963, Mean_Anomaly: 116.117, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43461, Element_Set_No: 999, Rev_At_Epoch: 20337, Bstar: 4.583000000000001E-05, Mean_Motion_Dot: 1.64E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 6", + "expanded": "GAOFEN 6", + "numerical_value": 1627, + "description": "Object_Id: 2018-048A, Epoch: 2022-03-04T11: 08: 40.752384, Mean_Motion: 14.76505378, Eccentricity: 0.0009718, Inclination: 97.936, Ra_Of_Asc_Node: 145.6314, Arg_Of_Pericenter: 176.4044, Mean_Anomaly: 183.7241, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43484, Element_Set_No: 999, Rev_At_Epoch: 20234, Bstar: 4.547200000000001E-05, Mean_Motion_Dot: 2.66E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 11-1", + "expanded": "GAOFEN 11-1", + "numerical_value": 1628, + "description": "Object_Id: 2018-063A, Epoch: 2022-03-04T11: 27: 09.569376, Mean_Motion: 15.23508263, Eccentricity: 0.0013984, Inclination: 97.3291, Ra_Of_Asc_Node: 142.0953, Arg_Of_Pericenter: 175.3993, Mean_Anomaly: 308.2428, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43585, Element_Set_No: 999, Rev_At_Epoch: 20040, Bstar: 0.00013232, Mean_Motion_Dot: 3.096E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "AEOLUS", + "expanded": "AEOLUS", + "numerical_value": 1629, + "description": "Object_Id: 2018-066A, Epoch: 2022-03-04T13: 28: 08.926752, Mean_Motion: 15.87320047, Eccentricity: 0.0006812, Inclination: 96.7114, Ra_Of_Asc_Node: 71.2368, Arg_Of_Pericenter: 82.3499, Mean_Anomaly: 277.8548, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43600, Element_Set_No: 999, Rev_At_Epoch: 20449, Bstar: 0.00029734, Mean_Motion_Dot: 0.00078087, Mean_Motion_Ddot: 0" + }, + { + "value": "ICESAT-2", + "expanded": "ICESAT-2", + "numerical_value": 1630, + "description": "Object_Id: 2018-070A, Epoch: 2022-03-04T13: 19: 21.801216, Mean_Motion: 15.28257733, Eccentricity: 0.0003907, Inclination: 92.0038, Ra_Of_Asc_Node: 229.8884, Arg_Of_Pericenter: 77.4052, Mean_Anomaly: 282.7634, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43613, Element_Set_No: 999, Rev_At_Epoch: 19335, Bstar: 6.2167E-05, Mean_Motion_Dot: 1.715E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "HYSIS", + "expanded": "HYSIS", + "numerical_value": 1631, + "description": "Object_Id: 2018-096A, Epoch: 2022-03-04T11: 30: 15.965280, Mean_Motion: 14.78664406, Eccentricity: 0.0002435, Inclination: 97.9709, Ra_Of_Asc_Node: 130.6496, Arg_Of_Pericenter: 147.6822, Mean_Anomaly: 212.4543, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43719, Element_Set_No: 999, Rev_At_Epoch: 17604, Bstar: 5.6674E-05, Mean_Motion_Dot: 3.64E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "KAZSTSAT", + "expanded": "KAZSTSAT", + "numerical_value": 1632, + "description": "Object_Id: 2018-099AB, Epoch: 2022-03-04T03: 24: 38.983104, Mean_Motion: 14.93813198, Eccentricity: 0.0006639, Inclination: 97.643, Ra_Of_Asc_Node: 131.4451, Arg_Of_Pericenter: 259.1809, Mean_Anomaly: 100.8664, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43783, Element_Set_No: 999, Rev_At_Epoch: 17708, Bstar: 6.629800000000001E-05, Mean_Motion_Dot: 6.48E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SAUDISAT 5A", + "expanded": "SAUDISAT 5A", + "numerical_value": 1633, + "description": "Object_Id: 2018-102A, Epoch: 2022-03-04T12: 29: 17.835648, Mean_Motion: 15.08713174, Eccentricity: 0.001445, Inclination: 97.5068, Ra_Of_Asc_Node: 139.0548, Arg_Of_Pericenter: 172.9524, Mean_Anomaly: 312.2767, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43831, Element_Set_No: 999, Rev_At_Epoch: 17835, Bstar: 4.4852000000000004E-05, Mean_Motion_Dot: 6.4199999999999995E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "SAUDISAT 5B", + "expanded": "SAUDISAT 5B", + "numerical_value": 1634, + "description": "Object_Id: 2018-102C, Epoch: 2022-03-04T12: 11: 48.493824, Mean_Motion: 15.09157665, Eccentricity: 0.0015434, Inclination: 97.5088, Ra_Of_Asc_Node: 139.883, Arg_Of_Pericenter: 179.8066, Mean_Anomaly: 304.8436, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 43833, Element_Set_No: 999, Rev_At_Epoch: 17839, Bstar: 0.00010632, Mean_Motion_Dot: 1.629E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 10R", + "expanded": "GAOFEN 10R", + "numerical_value": 1635, + "description": "Object_Id: 2019-066A, Epoch: 2022-03-04T10: 08: 51.702432, Mean_Motion: 14.80748104, Eccentricity: 0.000177, Inclination: 97.8837, Ra_Of_Asc_Node: 4.4107, Arg_Of_Pericenter: 65.5841, Mean_Anomaly: 294.555, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44622, Element_Set_No: 999, Rev_At_Epoch: 13046, Bstar: 7.540400000000001E-05, Mean_Motion_Dot: 5.29E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "CARTOSAT-3", + "expanded": "CARTOSAT-3", + "numerical_value": 1636, + "description": "Object_Id: 2019-081A, Epoch: 2022-03-04T11: 02: 42.545760, Mean_Motion: 15.19304057, Eccentricity: 0.001228, Inclination: 97.4118, Ra_Of_Asc_Node: 127.1092, Arg_Of_Pericenter: 220.2231, Mean_Anomaly: 258.7983, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44804, Element_Set_No: 999, Rev_At_Epoch: 12569, Bstar: 8.0358E-05, Mean_Motion_Dot: 1.631E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 12-1", + "expanded": "GAOFEN 12-1", + "numerical_value": 1637, + "description": "Object_Id: 2019-082A, Epoch: 2022-03-04T13: 23: 02.807232, Mean_Motion: 14.80291235, Eccentricity: 0.0002045, Inclination: 97.8706, Ra_Of_Asc_Node: 86.041, Arg_Of_Pericenter: 92.0097, Mean_Anomaly: 268.1355, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44819, Element_Set_No: 999, Rev_At_Epoch: 12242, Bstar: 2.8929000000000004E-05, Mean_Motion_Dot: 1.69E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "CSG-1", + "expanded": "CSG-1", + "numerical_value": 1638, + "description": "Object_Id: 2019-092A, Epoch: 2022-03-04T11: 34: 04.132128, Mean_Motion: 14.82151801, Eccentricity: 0.0001358, Inclination: 97.8849, Ra_Of_Asc_Node: 248.6567, Arg_Of_Pericenter: 84.3999, Mean_Anomaly: 275.7409, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 44873, Element_Set_No: 999, Rev_At_Epoch: 11955, Bstar: 1.5249000000000003E-05, Mean_Motion_Dot: 6.9E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-7 (SOPHIE)", + "expanded": "NUSAT-7 (SOPHIE)", + "numerical_value": 1639, + "description": "Object_Id: 2020-003B, Epoch: 2022-03-04T12: 40: 36.011712, Mean_Motion: 15.32534265, Eccentricity: 0.0013173, Inclination: 97.2306, Ra_Of_Asc_Node: 127.7232, Arg_Of_Pericenter: 22.1971, Mean_Anomaly: 84.7621, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 45017, Element_Set_No: 999, Rev_At_Epoch: 11914, Bstar: 0.00020738, Mean_Motion_Dot: 6.455000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-8 (MARIE)", + "expanded": "NUSAT-8 (MARIE)", + "numerical_value": 1640, + "description": "Object_Id: 2020-003C, Epoch: 2022-03-04T13: 57: 02.882304, Mean_Motion: 15.34772063, Eccentricity: 0.0012056, Inclination: 97.2439, Ra_Of_Asc_Node: 128.8767, Arg_Of_Pericenter: 25.5352, Mean_Anomaly: 110.4042, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 45018, Element_Set_No: 999, Rev_At_Epoch: 11916, Bstar: 0.00022979, Mean_Motion_Dot: 7.685000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-6 (HYPATIA)", + "expanded": "NUSAT-6 (HYPATIA)", + "numerical_value": 1641, + "description": "Object_Id: 2020-061A, Epoch: 2022-03-04T14: 06: 03.323808, Mean_Motion: 15.23445577, Eccentricity: 0.0008532, Inclination: 97.342, Ra_Of_Asc_Node: 136.8322, Arg_Of_Pericenter: 82.9798, Mean_Anomaly: 277.241, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46272, Element_Set_No: 999, Rev_At_Epoch: 8325, Bstar: 0.00016709, Mean_Motion_Dot: 3.914E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NEMO-HD", + "expanded": "NEMO-HD", + "numerical_value": 1594, + "description": "Object_Id: 2020-061F, Epoch: 2022-03-04T12: 51: 57.065760, Mean_Motion: 15.16908842, Eccentricity: 0.0002207, Inclination: 97.4033, Ra_Of_Asc_Node: 136.6755, Arg_Of_Pericenter: 133.0608, Mean_Anomaly: 339.9898, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46277, Element_Set_No: 999, Rev_At_Epoch: 8295, Bstar: 8.034200000000001E-05, Mean_Motion_Dot: 1.5180000000000002E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-12 (DOROTHY)", + "expanded": "NUSAT-12 (DOROTHY)", + "numerical_value": 1595, + "description": "Object_Id: 2020-079A, Epoch: 2022-03-04T12: 46: 26.308416, Mean_Motion: 15.34401623, Eccentricity: 0.0007635, Inclination: 97.2109, Ra_Of_Asc_Node: 135.863, Arg_Of_Pericenter: 327.3461, Mean_Anomaly: 145.387, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46827, Element_Set_No: 999, Rev_At_Epoch: 7400, Bstar: 0.00024089, Mean_Motion_Dot: 7.955000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-9 (ALICE)", + "expanded": "NUSAT-9 (ALICE)", + "numerical_value": 1596, + "description": "Object_Id: 2020-079B, Epoch: 2022-03-04T13: 25: 43.559616, Mean_Motion: 15.34908994, Eccentricity: 0.0003513, Inclination: 97.1971, Ra_Of_Asc_Node: 135.6565, Arg_Of_Pericenter: 21.1806, Mean_Anomaly: 94.2348, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46828, Element_Set_No: 999, Rev_At_Epoch: 7404, Bstar: 0.00023566, Mean_Motion_Dot: 7.902000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-11 (CORA)", + "expanded": "NUSAT-11 (CORA)", + "numerical_value": 1597, + "description": "Object_Id: 2020-079C, Epoch: 2022-03-04T12: 09: 02.608416, Mean_Motion: 15.34861567, Eccentricity: 0.0006418, Inclination: 97.2036, Ra_Of_Asc_Node: 135.8052, Arg_Of_Pericenter: 346.3875, Mean_Anomaly: 141.1035, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46829, Element_Set_No: 999, Rev_At_Epoch: 7402, Bstar: 0.00023835, Mean_Motion_Dot: 7.985000000000002E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-15 (KATHERINE)", + "expanded": "NUSAT-15 (KATHERINE)", + "numerical_value": 1598, + "description": "Object_Id: 2020-079D, Epoch: 2022-03-04T11: 44: 45.174336, Mean_Motion: 15.34808946, Eccentricity: 0.0002655, Inclination: 97.2178, Ra_Of_Asc_Node: 136.7443, Arg_Of_Pericenter: 318.8044, Mean_Anomaly: 166.639, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46830, Element_Set_No: 999, Rev_At_Epoch: 7403, Bstar: 0.00023601, Mean_Motion_Dot: 7.888E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-14 (HEDY)", + "expanded": "NUSAT-14 (HEDY)", + "numerical_value": 1599, + "description": "Object_Id: 2020-079E, Epoch: 2022-03-04T10: 46: 38.662176, Mean_Motion: 15.35413469, Eccentricity: 0.0007003, Inclination: 97.2142, Ra_Of_Asc_Node: 136.4493, Arg_Of_Pericenter: 327.1508, Mean_Anomaly: 158.9687, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46831, Element_Set_No: 999, Rev_At_Epoch: 7402, Bstar: 0.00024243, Mean_Motion_Dot: 8.268000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-10 (CAROLINE)", + "expanded": "NUSAT-10 (CAROLINE)", + "numerical_value": 1600, + "description": "Object_Id: 2020-079F, Epoch: 2022-03-04T12: 12: 53.432064, Mean_Motion: 15.3482764, Eccentricity: 0.0007499, Inclination: 97.2154, Ra_Of_Asc_Node: 136.3902, Arg_Of_Pericenter: 341.1003, Mean_Anomaly: 146.3267, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46832, Element_Set_No: 999, Rev_At_Epoch: 7402, Bstar: 0.00022042, Mean_Motion_Dot: 7.371000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-13 (EMMY)", + "expanded": "NUSAT-13 (EMMY)", + "numerical_value": 1601, + "description": "Object_Id: 2020-079G, Epoch: 2022-03-04T13: 18: 47.725920, Mean_Motion: 15.34726938, Eccentricity: 0.0007377, Inclination: 97.2145, Ra_Of_Asc_Node: 136.4654, Arg_Of_Pericenter: 343.6445, Mean_Anomaly: 129.0999, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46833, Element_Set_No: 999, Rev_At_Epoch: 7403, Bstar: 0.00021756, Mean_Motion_Dot: 7.251000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-17 (MARY)", + "expanded": "NUSAT-17 (MARY)", + "numerical_value": 1602, + "description": "Object_Id: 2020-079J, Epoch: 2022-03-04T12: 07: 58.643904, Mean_Motion: 15.34439532, Eccentricity: 0.0007984, Inclination: 97.2143, Ra_Of_Asc_Node: 136.2308, Arg_Of_Pericenter: 355.3629, Mean_Anomaly: 132.2917, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46835, Element_Set_No: 999, Rev_At_Epoch: 7401, Bstar: 0.00022367, Mean_Motion_Dot: 7.390000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-18 (VERA)", + "expanded": "NUSAT-18 (VERA)", + "numerical_value": 1603, + "description": "Object_Id: 2020-079K, Epoch: 2022-03-04T10: 51: 50.168736, Mean_Motion: 15.34811519, Eccentricity: 0.0009073, Inclination: 97.2152, Ra_Of_Asc_Node: 136.4873, Arg_Of_Pericenter: 2.1001, Mean_Anomaly: 125.6502, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46836, Element_Set_No: 999, Rev_At_Epoch: 7402, Bstar: 0.00022664, Mean_Motion_Dot: 7.581000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-16 (LISE)", + "expanded": "NUSAT-16 (LISE)", + "numerical_value": 1604, + "description": "Object_Id: 2020-079P, Epoch: 2022-03-04T14: 42: 00.413856, Mean_Motion: 15.34785837, Eccentricity: 0.0006224, Inclination: 97.2185, Ra_Of_Asc_Node: 136.6711, Arg_Of_Pericenter: 3.7264, Mean_Anomaly: 133.9415, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46840, Element_Set_No: 999, Rev_At_Epoch: 7404, Bstar: 0.00023366, Mean_Motion_Dot: 7.806000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "SENTINEL-6", + "expanded": "SENTINEL-6", + "numerical_value": 1605, + "description": "Object_Id: 2020-086A, Epoch: 2022-03-04T12: 09: 52.187328, Mean_Motion: 12.80931152, Eccentricity: 0.0007829, Inclination: 66.044, Ra_Of_Asc_Node: 147.0056, Arg_Of_Pericenter: 264.6781, Mean_Anomaly: 95.3336, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 46984, Element_Set_No: 999, Rev_At_Epoch: 5992, Bstar: 0, Mean_Motion_Dot: -6.1E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "GAOFEN 12-2", + "expanded": "GAOFEN 12-2", + "numerical_value": 1606, + "description": "Object_Id: 2021-026A, Epoch: 2022-03-04T10: 55: 30.484416, Mean_Motion: 14.80346136, Eccentricity: 6.560000000000001E-05, Inclination: 97.8871, Ra_Of_Asc_Node: 55.8939, Arg_Of_Pericenter: 59.6352, Mean_Anomaly: 300.4924, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 48079, Element_Set_No: 999, Rev_At_Epoch: 5009, Bstar: 2.8906000000000004E-05, Mean_Motion_Dot: 1.69E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "PLEIADES NEO 3", + "expanded": "PLEIADES NEO 3", + "numerical_value": 1607, + "description": "Object_Id: 2021-034A, Epoch: 2022-03-04T12: 18: 33.234624, Mean_Motion: 14.8167359, Eccentricity: 0.0001288, Inclination: 97.8933, Ra_Of_Asc_Node: 139.7454, Arg_Of_Pericenter: 86.4988, Mean_Anomaly: 273.635, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 48268, Element_Set_No: 999, Rev_At_Epoch: 4581, Bstar: -1.0803E-06, Mean_Motion_Dot: -6.1E-07, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-19 (ROSALIND)", + "expanded": "NUSAT-19 (ROSALIND)", + "numerical_value": 1608, + "description": "Object_Id: 2021-059AC, Epoch: 2022-03-04T10: 44: 18.359808, Mean_Motion: 15.17884371, Eccentricity: 0.0011649, Inclination: 97.4906, Ra_Of_Asc_Node: 194.035, Arg_Of_Pericenter: 81.6558, Mean_Anomaly: 3.6978, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 48905, Element_Set_No: 999, Rev_At_Epoch: 3813, Bstar: 0.00018472, Mean_Motion_Dot: 3.681E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-22 (SOFYA)", + "expanded": "NUSAT-22 (SOFYA)", + "numerical_value": 1609, + "description": "Object_Id: 2021-059AS, Epoch: 2022-03-04T09: 37: 59.592288, Mean_Motion: 15.348890279999999, Eccentricity: 0.0014964, Inclination: 97.3491, Ra_Of_Asc_Node: 194.9906, Arg_Of_Pericenter: 57.5438, Mean_Anomaly: 26.3222, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 48919, Element_Set_No: 999, Rev_At_Epoch: 3840, Bstar: 0.00045717, Mean_Motion_Dot: 0.00015456, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-21 (ELISA)", + "expanded": "NUSAT-21 (ELISA)", + "numerical_value": 1610, + "description": "Object_Id: 2021-059AT, Epoch: 2022-03-04T14: 04: 15.114720, Mean_Motion: 15.34715185, Eccentricity: 0.0015187, Inclination: 97.3379, Ra_Of_Asc_Node: 194.9186, Arg_Of_Pericenter: 67.6687, Mean_Anomaly: 60.7713, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 48920, Element_Set_No: 999, Rev_At_Epoch: 3843, Bstar: 0.00038727, Mean_Motion_Dot: 0.00013006, Mean_Motion_Ddot: 0" + }, + { + "value": "NUSAT-20 (GRACE)", + "expanded": "NUSAT-20 (GRACE)", + "numerical_value": 1611, + "description": "Object_Id: 2021-059AU, Epoch: 2022-03-04T13: 25: 08.482080, Mean_Motion: 15.34742402, Eccentricity: 0.0015107, Inclination: 97.3468, Ra_Of_Asc_Node: 195.1656, Arg_Of_Pericenter: 85.3164, Mean_Anomaly: 45.2601, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 48921, Element_Set_No: 999, Rev_At_Epoch: 3842, Bstar: 0.00028198, Mean_Motion_Dot: 9.452000000000001E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "PLEIADES NEO 4", + "expanded": "PLEIADES NEO 4", + "numerical_value": 1612, + "description": "Object_Id: 2021-073E, Epoch: 2022-03-04T11: 29: 56.402592, Mean_Motion: 14.81665642, Eccentricity: 0.0001191, Inclination: 97.8937, Ra_Of_Asc_Node: 139.7099, Arg_Of_Pericenter: 70.5889, Mean_Anomaly: 289.5405, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 49070, Element_Set_No: 999, Rev_At_Epoch: 2952, Bstar: -6.537900000000001E-05, Mean_Motion_Dot: -5.66E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "LANDSAT 9", + "expanded": "LANDSAT 9", + "numerical_value": 1613, + "description": "Object_Id: 2021-088A, Epoch: 2022-03-04T04: 31: 17.361696, Mean_Motion: 14.57109065, Eccentricity: 6.390000000000001E-05, Inclination: 98.1977, Ra_Of_Asc_Node: 135.0395, Arg_Of_Pericenter: 91.1476, Mean_Anomaly: 268.9796, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 49260, Element_Set_No: 999, Rev_At_Epoch: 2295, Bstar: 5.0987000000000005E-05, Mean_Motion_Dot: 1.85E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "CSG-2", + "expanded": "CSG-2", + "numerical_value": 1614, + "description": "Object_Id: 2022-008A, Epoch: 2022-03-04T14: 00: 24.882048, Mean_Motion: 14.82443701, Eccentricity: 0.0001559, Inclination: 97.8773, Ra_Of_Asc_Node: 248.8023, Arg_Of_Pericenter: 19.5248, Mean_Anomaly: 340.5993, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 51444, Element_Set_No: 999, Rev_At_Epoch: 468, Bstar: -0.012179, Mean_Motion_Dot: -0.00096305, Mean_Motion_Ddot: 0" + } + ] + }, + { + "predicate": "Disaster Monitoring", + "entry": [ + { + "value": "BEIJING 1", + "expanded": "BEIJING 1", + "numerical_value": 1615, + "description": "Object_Id: 2005-043A, Epoch: 2022-03-05T19:33:24.671232, Mean_Motion: 14.61391561, Eccentricity: 0.0016254, Inclination: 98.1016, Ra_Of_Asc_Node: 189.2289, Arg_Of_Pericenter: 135.8721, Mean_Anomaly: 224.3782, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 28890, Element_Set_No: 999, Rev_At_Epoch: 87200, Bstar: 3.2146E-05, Mean_Motion_Dot: 1.1299999999999998E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "HJ-1A", + "expanded": "HJ-1A", + "numerical_value": 1616, + "description": "Object_Id: 2008-041A, Epoch: 2022-03-05T18:09:56.696544, Mean_Motion: 14.77745776, Eccentricity: 0.0020312, Inclination: 97.6918, Ra_Of_Asc_Node: 102.6127, Arg_Of_Pericenter: 205.7751, Mean_Anomaly: 154.2443, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33320, Element_Set_No: 999, Rev_At_Epoch: 72707, Bstar: 3.7583E-05, Mean_Motion_Dot: 2.21E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "HJ-1B", + "expanded": "HJ-1B", + "numerical_value": 1617, + "description": "Object_Id: 2008-041B, Epoch: 2022-03-05T18:13:58.896480, Mean_Motion: 14.77570483, Eccentricity: 0.0033448, Inclination: 97.7101, Ra_Of_Asc_Node: 105.973, Arg_Of_Pericenter: 225.9407, Mean_Anomaly: 133.9047, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33321, Element_Set_No: 999, Rev_At_Epoch: 72707, Bstar: 7.460700000000001E-05, Mean_Motion_Dot: 4.87E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "YAOGAN 4", + "expanded": "YAOGAN 4", + "numerical_value": 1618, + "description": "Object_Id: 2008-061A, Epoch: 2022-03-05T19:35:10.362624, Mean_Motion: 14.77241404, Eccentricity: 0.0017605, Inclination: 97.8074, Ra_Of_Asc_Node: 8.1716, Arg_Of_Pericenter: 108.2393, Mean_Anomaly: 252.0735, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 33446, Element_Set_No: 999, Rev_At_Epoch: 71429, Bstar: 6.3713E-05, Mean_Motion_Dot: 4.03E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "DEIMOS-1", + "expanded": "DEIMOS-1", + "numerical_value": 1619, + "description": "Object_Id: 2009-041A, Epoch: 2022-03-05T19:14:54.756096, Mean_Motion: 14.71976938, Eccentricity: 0.0001713, Inclination: 97.7261, Ra_Of_Asc_Node: 281.1254, Arg_Of_Pericenter: 146.7686, Mean_Anomaly: 213.3625, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 35681, Element_Set_No: 999, Rev_At_Epoch: 67652, Bstar: 3.8527000000000006E-05, Mean_Motion_Dot: 1.96E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "UK-DMC 2", + "expanded": "UK-DMC 2", + "numerical_value": 1620, + "description": "Object_Id: 2009-041C, Epoch: 2022-03-05T18:44:45.231648, Mean_Motion: 14.71296933, Eccentricity: 0.0001133, Inclination: 97.6886, Ra_Of_Asc_Node: 243.5266, Arg_Of_Pericenter: 105.038, Mean_Anomaly: 255.0962, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 35683, Element_Set_No: 999, Rev_At_Epoch: 67626, Bstar: 2.4238E-05, Mean_Motion_Dot: 1.04E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "RISAT 1", + "expanded": "RISAT 1", + "numerical_value": 1621, + "description": "Object_Id: 2012-017A, Epoch: 2022-03-05T14:26:08.359296, Mean_Motion: 15.11191296, Eccentricity: 0.000245, Inclination: 97.5573, Ra_Of_Asc_Node: 77.1584, Arg_Of_Pericenter: 247.0801, Mean_Anomaly: 113.017, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 38248, Element_Set_No: 999, Rev_At_Epoch: 54315, Bstar: 0.00015131, Mean_Motion_Dot: 2.4760000000000003E-05, Mean_Motion_Ddot: 0" + }, + { + "value": "DMC3-FM1", + "expanded": "DMC3-FM1", + "numerical_value": 1622, + "description": "Object_Id: 2015-032A, Epoch: 2022-03-05T18:19:02.002368, Mean_Motion: 14.81941244, Eccentricity: 0.0007169, Inclination: 97.8626, Ra_Of_Asc_Node: 313.5348, Arg_Of_Pericenter: 129.594, Mean_Anomaly: 230.5919, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40715, Element_Set_No: 999, Rev_At_Epoch: 35793, Bstar: 3.4786E-05, Mean_Motion_Dot: 2.23E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "DMC3-FM2", + "expanded": "DMC3-FM2", + "numerical_value": 1623, + "description": "Object_Id: 2015-032B, Epoch: 2022-03-05T17:14:14.516448, Mean_Motion: 14.81915259, Eccentricity: 0.0009327, Inclination: 97.8668, Ra_Of_Asc_Node: 314.0813, Arg_Of_Pericenter: 132.7561, Mean_Anomaly: 227.4455, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40716, Element_Set_No: 999, Rev_At_Epoch: 35793, Bstar: 3.5309000000000004E-05, Mean_Motion_Dot: 2.27E-06, Mean_Motion_Ddot: 0" + }, + { + "value": "DMC3-FM3", + "expanded": "DMC3-FM3", + "numerical_value": 1624, + "description": "Object_Id: 2015-032C, Epoch: 2022-03-05T19:22:56.815392, Mean_Motion: 14.8196316, Eccentricity: 0.0010656, Inclination: 97.8696, Ra_Of_Asc_Node: 315.0409, Arg_Of_Pericenter: 130.9068, Mean_Anomaly: 229.3083, Ephemeris_Type: 0, Classification_Type: U, Norad_Cat_Id: 40717, Element_Set_No: 999, Rev_At_Epoch: 35794, Bstar: 3.5123E-05, Mean_Motion_Dot: 2.2599999999999995E-06, Mean_Motion_Ddot: 0" + } + ] + }, + { + "predicate": "GNSS", + "entry": [ + { + "value": "GPS BIIR-2 (PRN 13)", + "expanded": "GPS BIIR-2 (PRN 13)", + "numerical_value": 1625, + "description": "Object_Id : 1997-035A, Epoch : 2022-03-10T03:28:42.515328, Mean_Motion : 2.00563541, Eccentricity : 0.0056263, Inclination : 55.496, Ra_Of_Asc_Node : 159.5478, Arg_Of_Pericenter : 52.9287, Mean_Anomaly : 307.6136, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 24876, Element_Set_No : 999, Rev_At_Epoch : 18066, Bstar : 0, Mean_Motion_Dot : -2.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIR-4 (PRN 20)", + "expanded": "GPS BIIR-4 (PRN 20)", + "numerical_value": 1626, + "description": "Object_Id : 2000-025A, Epoch : 2022-03-10T18:15:55.812096, Mean_Motion : 2.00552799, Eccentricity : 0.005085, Inclination : 53.9794, Ra_Of_Asc_Node : 82.9429, Arg_Of_Pericenter : 182.9969, Mean_Anomaly : 347.4431, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 26360, Element_Set_No : 999, Rev_At_Epoch : 15999, Bstar : 0, Mean_Motion_Dot : -1.3999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIR-5 (PRN 28)", + "expanded": "GPS BIIR-5 (PRN 28)", + "numerical_value": 1627, + "description": "Object_Id : 2000-040A, Epoch : 2022-03-10T15:18:43.545600, Mean_Motion : 2.00561449, Eccentricity : 0.0169606, Inclination : 55.5318, Ra_Of_Asc_Node : 277.1806, Arg_Of_Pericenter : 286.2255, Mean_Anomaly : 356.8878, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 26407, Element_Set_No : 999, Rev_At_Epoch : 15866, Bstar : 0, Mean_Motion_Dot : 3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIR-8 (PRN 16)", + "expanded": "GPS BIIR-8 (PRN 16)", + "numerical_value": 1628, + "description": "Object_Id : 2003-005A, Epoch : 2022-03-10T13:17:50.862624, Mean_Motion : 2.00570524, Eccentricity : 0.0126277, Inclination : 55.5804, Ra_Of_Asc_Node : 276.9859, Arg_Of_Pericenter : 40.1873, Mean_Anomaly : 323.0289, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 27663, Element_Set_No : 999, Rev_At_Epoch : 14003, Bstar : 0, Mean_Motion_Dot : 3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIR-9 (PRN 21)", + "expanded": "GPS BIIR-9 (PRN 21)", + "numerical_value": 1629, + "description": "Object_Id : 2003-010A, Epoch : 2022-03-10T13:08:00.613248, Mean_Motion : 2.00575736, Eccentricity : 0.0247255, Inclination : 54.9883, Ra_Of_Asc_Node : 27.3112, Arg_Of_Pericenter : 302.9574, Mean_Anomaly : 274.614, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 27704, Element_Set_No : 999, Rev_At_Epoch : 13882, Bstar : 0, Mean_Motion_Dot : -8.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIR-10 (PRN 22)", + "expanded": "GPS BIIR-10 (PRN 22)", + "numerical_value": 1630, + "description": "Object_Id : 2003-058A, Epoch : 2022-03-10T07:58:57.864288, Mean_Motion : 2.0057297, Eccentricity : 0.0072105, Inclination : 53.7922, Ra_Of_Asc_Node : 85.5754, Arg_Of_Pericenter : 311.5627, Mean_Anomaly : 47.8652, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 28129, Element_Set_No : 999, Rev_At_Epoch : 13350, Bstar : 0, Mean_Motion_Dot : -1.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIR-11 (PRN 19)", + "expanded": "GPS BIIR-11 (PRN 19)", + "numerical_value": 1631, + "description": "Object_Id : 2004-009A, Epoch : 2022-03-10T16:47:21.267744, Mean_Motion : 2.00562394, Eccentricity : 0.0088277, Inclination : 56.0592, Ra_Of_Asc_Node : 337.9376, Arg_Of_Pericenter : 116.169, Mean_Anomaly : 150.4041, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 28190, Element_Set_No : 999, Rev_At_Epoch : 13166, Bstar : 0, Mean_Motion_Dot : -9.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIR-13 (PRN 02)", + "expanded": "GPS BIIR-13 (PRN 02)", + "numerical_value": 1632, + "description": "Object_Id : 2004-045A, Epoch : 2022-03-10T16:50:20.691168, Mean_Motion : 2.00560187, Eccentricity : 0.0208307, Inclination : 55.3173, Ra_Of_Asc_Node : 27.407, Arg_Of_Pericenter : 277.6749, Mean_Anomaly : 258.2202, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 28474, Element_Set_No : 999, Rev_At_Epoch : 12715, Bstar : 0, Mean_Motion_Dot : -8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "CRE (WAAS/PRN 138)", + "expanded": "CRE (WAAS/PRN 138)", + "numerical_value": 1633, + "description": "Object_Id : 2005-036A, Epoch : 2022-03-10T16:07:24.089376, Mean_Motion : 1.00272888, Eccentricity : 0.0002901, Inclination : 0.3114, Ra_Of_Asc_Node : 94.0947, Arg_Of_Pericenter : 284.1727, Mean_Anomaly : 284.578, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 28868, Element_Set_No : 999, Rev_At_Epoch : 3081, Bstar : 0, Mean_Motion_Dot : -7.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIRM-1 (PRN 17)", + "expanded": "GPS BIIRM-1 (PRN 17)", + "numerical_value": 1634, + "description": "Object_Id : 2005-038A, Epoch : 2022-03-10T15:14:18.474720, Mean_Motion : 2.00552775, Eccentricity : 0.0137982, Inclination : 56.1295, Ra_Of_Asc_Node : 335.3698, Arg_Of_Pericenter : 274.3248, Mean_Anomaly : 325.7331, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 28874, Element_Set_No : 999, Rev_At_Epoch : 12055, Bstar : 0, Mean_Motion_Dot : -8.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "IOR-W (EGNOS/PRN 126)", + "expanded": "IOR-W (EGNOS/PRN 126)", + "numerical_value": 1635, + "description": "Object_Id : 2005-044A, Epoch : 2022-03-10T17:39:47.875392, Mean_Motion : 1.00273192, Eccentricity : 0.0002859, Inclination : 3.4277, Ra_Of_Asc_Node : 36.4381, Arg_Of_Pericenter : 314.2459, Mean_Anomaly : 146.5255, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 28899, Element_Set_No : 999, Rev_At_Epoch : 5988, Bstar : 0, Mean_Motion_Dot : 9E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIRM-2 (PRN 31)", + "expanded": "GPS BIIRM-2 (PRN 31)", + "numerical_value": 1636, + "description": "Object_Id : 2006-042A, Epoch : 2022-03-10T12:35:27.254400, Mean_Motion : 2.00560222, Eccentricity : 0.0103717, Inclination : 54.7293, Ra_Of_Asc_Node : 213.2061, Arg_Of_Pericenter : 20.6935, Mean_Anomaly : 59.0291, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 29486, Element_Set_No : 999, Rev_At_Epoch : 11311, Bstar : 0, Mean_Motion_Dot : 2.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIRM-3 (PRN 12)", + "expanded": "GPS BIIRM-3 (PRN 12)", + "numerical_value": 1637, + "description": "Object_Id : 2006-052A, Epoch : 2022-03-10T08:39:35.775072, Mean_Motion : 2.00573695, Eccentricity : 0.0084977, Inclination : 55.5845, Ra_Of_Asc_Node : 275.9274, Arg_Of_Pericenter : 71.5538, Mean_Anomaly : 289.398, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 29601, Element_Set_No : 999, Rev_At_Epoch : 11212, Bstar : 0, Mean_Motion_Dot : 3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2425 (716)", + "expanded": "COSMOS 2425 (716)", + "numerical_value": 1638, + "description": "Object_Id : 2006-062A, Epoch : 2022-03-09T09:06:22.470336, Mean_Motion : 2.13110789, Eccentricity : 0.0024342, Inclination : 64.784, Ra_Of_Asc_Node : 246.5041, Arg_Of_Pericenter : 347.8622, Mean_Anomaly : 16.3237, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 29670, Element_Set_No : 999, Rev_At_Epoch : 11832, Bstar : 0, Mean_Motion_Dot : 7.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIRM-4 (PRN 15)", + "expanded": "GPS BIIRM-4 (PRN 15)", + "numerical_value": 1639, + "description": "Object_Id : 2007-047A, Epoch : 2022-03-10T04:06:55.841760, Mean_Motion : 2.00554162, Eccentricity : 0.01374, Inclination : 53.2859, Ra_Of_Asc_Node : 144.6577, Arg_Of_Pericenter : 61.3986, Mean_Anomaly : 300.0262, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 32260, Element_Set_No : 999, Rev_At_Epoch : 10552, Bstar : 0, Mean_Motion_Dot : -3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2433 (720)", + "expanded": "COSMOS 2433 (720)", + "numerical_value": 1640, + "description": "Object_Id : 2007-052A, Epoch : 2022-03-11T03:16:30.234720, Mean_Motion : 2.13104026, Eccentricity : 0.0003891, Inclination : 66.084, Ra_Of_Asc_Node : 7.9315999999999995, Arg_Of_Pericenter : 280.2525, Mean_Anomaly : 154.9723, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 32275, Element_Set_No : 999, Rev_At_Epoch : 11187, Bstar : 0, Mean_Motion_Dot : -8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2432 (719)", + "expanded": "COSMOS 2432 (719)", + "numerical_value": 1641, + "description": "Object_Id : 2007-052B, Epoch : 2022-03-11T05:31:01.526592, Mean_Motion : 2.13103407, Eccentricity : 0.0012052, Inclination : 66.0976, Ra_Of_Asc_Node : 8.0278, Arg_Of_Pericenter : 326.7932, Mean_Anomaly : 128.6685, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 32276, Element_Set_No : 999, Rev_At_Epoch : 11187, Bstar : 0, Mean_Motion_Dot : -8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIRM-5 (PRN 29)", + "expanded": "GPS BIIRM-5 (PRN 29)", + "numerical_value": 1642, + "description": "Object_Id : 2007-062A, Epoch : 2022-03-10T16:11:53.436192, Mean_Motion : 2.00556376, Eccentricity : 0.0017303, Inclination : 56.2454, Ra_Of_Asc_Node : 336.1167, Arg_Of_Pericenter : 132.9714, Mean_Anomaly : 1.2247, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 32384, Element_Set_No : 999, Rev_At_Epoch : 10423, Bstar : 0, Mean_Motion_Dot : -8.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2434 (721)", + "expanded": "COSMOS 2434 (721)", + "numerical_value": 1643, + "description": "Object_Id : 2007-065A, Epoch : 2022-03-09T01:49:28.344000, Mean_Motion : 2.13103053, Eccentricity : 0.0005136, Inclination : 64.4033, Ra_Of_Asc_Node : 244.8523, Arg_Of_Pericenter : 76.2763, Mean_Anomaly : 107.4477, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 32393, Element_Set_No : 999, Rev_At_Epoch : 11053, Bstar : 0, Mean_Motion_Dot : 6.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2436 (723)", + "expanded": "COSMOS 2436 (723)", + "numerical_value": 1644, + "description": "Object_Id : 2007-065C, Epoch : 2022-03-11T05:28:18.814656, Mean_Motion : 2.13102881, Eccentricity : 0.0016581, Inclination : 64.4117, Ra_Of_Asc_Node : 244.8351, Arg_Of_Pericenter : 8.3756, Mean_Anomaly : 162.2097, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 32395, Element_Set_No : 999, Rev_At_Epoch : 11051, Bstar : 0, Mean_Motion_Dot : 7.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIRM-6 (PRN 07)", + "expanded": "GPS BIIRM-6 (PRN 07)", + "numerical_value": 1645, + "description": "Object_Id : 2008-012A, Epoch : 2022-03-10T02:08:30.981408, Mean_Motion : 2.00561935, Eccentricity : 0.0158528, Inclination : 54.4874, Ra_Of_Asc_Node : 212.1819, Arg_Of_Pericenter : 229.5164, Mean_Anomaly : 129.0616, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 32711, Element_Set_No : 999, Rev_At_Epoch : 10246, Bstar : 0, Mean_Motion_Dot : 3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIRM-8 (PRN 05)", + "expanded": "GPS BIIRM-8 (PRN 05)", + "numerical_value": 1646, + "description": "Object_Id : 2009-043A, Epoch : 2022-03-10T13:35:33.489312, Mean_Motion : 2.0056294, Eccentricity : 0.0056752, Inclination : 54.9963, Ra_Of_Asc_Node : 89.5084, Arg_Of_Pericenter : 56.3904, Mean_Anomaly : 306.3849, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 35752, Element_Set_No : 999, Rev_At_Epoch : 9208, Bstar : 0, Mean_Motion_Dot : -1.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2456 (730)", + "expanded": "COSMOS 2456 (730)", + "numerical_value": 1647, + "description": "Object_Id : 2009-070A, Epoch : 2022-03-10T02:54:50.980032, Mean_Motion : 2.13099072, Eccentricity : 0.0004623, Inclination : 64.3271, Ra_Of_Asc_Node : 124.4653, Arg_Of_Pericenter : 302.0752, Mean_Anomaly : 130.6019, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36111, Element_Set_No : 999, Rev_At_Epoch : 9522, Bstar : 0, Mean_Motion_Dot : -6.000000000000001E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2457 (733)", + "expanded": "COSMOS 2457 (733)", + "numerical_value": 1648, + "description": "Object_Id : 2009-070B, Epoch : 2022-03-10T16:50:09.619008, Mean_Motion : 2.13101247, Eccentricity : 0.0004991, Inclination : 64.3104, Ra_Of_Asc_Node : 124.3237, Arg_Of_Pericenter : 180.463, Mean_Anomaly : 103.7327, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36112, Element_Set_No : 999, Rev_At_Epoch : 9523, Bstar : 0, Mean_Motion_Dot : -2E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 3 (C01)", + "expanded": "BEIDOU 3 (C01)", + "numerical_value": 1649, + "description": "Object_Id : 2010-001A, Epoch : 2022-03-10T15:49:48.987264, Mean_Motion : 1.00269001, Eccentricity : 0.0002864, Inclination : 1.9118, Ra_Of_Asc_Node : 48.3669, Arg_Of_Pericenter : 16.5107, Mean_Anomaly : 121.1924, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36287, Element_Set_No : 999, Rev_At_Epoch : 4452, Bstar : 0, Mean_Motion_Dot : -2.84E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2459 (731)", + "expanded": "COSMOS 2459 (731)", + "numerical_value": 1650, + "description": "Object_Id : 2010-007A, Epoch : 2022-03-10T15:19:35.651712, Mean_Motion : 2.1311395, Eccentricity : 0.0026767, Inclination : 65.9748, Ra_Of_Asc_Node : 6.8356, Arg_Of_Pericenter : 346.5696, Mean_Anomaly : 290.7565, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36400, Element_Set_No : 999, Rev_At_Epoch : 9357, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2461 (735)", + "expanded": "COSMOS 2461 (735)", + "numerical_value": 1651, + "description": "Object_Id : 2010-007B, Epoch : 2022-03-10T15:20:01.641696, Mean_Motion : 2.13103708, Eccentricity : 0.0021676, Inclination : 65.9706, Ra_Of_Asc_Node : 6.7994, Arg_Of_Pericenter : 2.3382, Mean_Anomaly : 268.6991, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36401, Element_Set_No : 999, Rev_At_Epoch : 9358, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2460 (732)", + "expanded": "COSMOS 2460 (732)", + "numerical_value": 1652, + "description": "Object_Id : 2010-007C, Epoch : 2022-03-10T16:49:43.292064, Mean_Motion : 2.13106333, Eccentricity : 0.0002133, Inclination : 65.9587, Ra_Of_Asc_Node : 6.7501999999999995, Arg_Of_Pericenter : 330.9495, Mean_Anomaly : 295.3573, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36402, Element_Set_No : 999, Rev_At_Epoch : 9358, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-1 (PRN 25)", + "expanded": "GPS BIIF-1 (PRN 25)", + "numerical_value": 1653, + "description": "Object_Id : 2010-022A, Epoch : 2022-03-10T08:56:33.552384, Mean_Motion : 2.0056036, Eccentricity : 0.01035, Inclination : 54.8654, Ra_Of_Asc_Node : 271.5147, Arg_Of_Pericenter : 55.931, Mean_Anomaly : 282.6728, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36585, Element_Set_No : 999, Rev_At_Epoch : 8630, Bstar : 0, Mean_Motion_Dot : 3.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 5 (C06)", + "expanded": "BEIDOU 5 (C06)", + "numerical_value": 1654, + "description": "Object_Id : 2010-036A, Epoch : 2022-03-10T16:08:23.694144, Mean_Motion : 1.00274821, Eccentricity : 0.0027596, Inclination : 54.1919, Ra_Of_Asc_Node : 177.1332, Arg_Of_Pericenter : 182.6535, Mean_Anomaly : 159.3205, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 36828, Element_Set_No : 999, Rev_At_Epoch : 4258, Bstar : 0, Mean_Motion_Dot : -1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2464 (736)", + "expanded": "COSMOS 2464 (736)", + "numerical_value": 1655, + "description": "Object_Id : 2010-041C, Epoch : 2022-03-10T05:32:37.201632, Mean_Motion : 2.13100713, Eccentricity : 0.0030242, Inclination : 64.0024, Ra_Of_Asc_Node : 243.9381, Arg_Of_Pericenter : 14.4177, Mean_Anomaly : 194.33, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37139, Element_Set_No : 999, Rev_At_Epoch : 8963, Bstar : 0, Mean_Motion_Dot : 7.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-1 (QZSS/PRN 183)", + "expanded": "QZS-1 (QZSS/PRN 183)", + "numerical_value": 1656, + "description": "Object_Id : 2010-045A, Epoch : 2022-03-10T11:46:36.296832, Mean_Motion : 1.00283099, Eccentricity : 0.075527, Inclination : 42.226, Ra_Of_Asc_Node : 134.7586, Arg_Of_Pericenter : 269.8976, Mean_Anomaly : 82.4981, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37158, Element_Set_No : 999, Rev_At_Epoch : 4207, Bstar : 0, Mean_Motion_Dot : -1.7399999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 6 (C04)", + "expanded": "BEIDOU 6 (C04)", + "numerical_value": 1657, + "description": "Object_Id : 2010-057A, Epoch : 2022-03-11T05:55:51.189600, Mean_Motion : 1.00271265, Eccentricity : 0.000369, Inclination : 0.9942, Ra_Of_Asc_Node : 55.1316, Arg_Of_Pericenter : 148.699, Mean_Anomaly : 214.0303, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37210, Element_Set_No : 999, Rev_At_Epoch : 4165, Bstar : 0, Mean_Motion_Dot : -1.14E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 7 (C07)", + "expanded": "BEIDOU 7 (C07)", + "numerical_value": 1658, + "description": "Object_Id : 2010-068A, Epoch : 2022-03-10T07:57:53.578368, Mean_Motion : 1.00281154, Eccentricity : 0.0017843, Inclination : 50.3861, Ra_Of_Asc_Node : 290.8337, Arg_Of_Pericenter : 184.3975, Mean_Anomaly : 280.7172, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37256, Element_Set_No : 999, Rev_At_Epoch : 4115, Bstar : 0, Mean_Motion_Dot : -1.66E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2471 (701K)", + "expanded": "COSMOS 2471 (701K)", + "numerical_value": 1659, + "description": "Object_Id : 2011-009A, Epoch : 2022-03-10T22:03:28.831680, Mean_Motion : 2.13063279, Eccentricity : 0.0016475, Inclination : 65.9519, Ra_Of_Asc_Node : 6.6726, Arg_Of_Pericenter : 234.8369, Mean_Anomaly : 305.7215, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37372, Element_Set_No : 999, Rev_At_Epoch : 8586, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 8 (C08)", + "expanded": "BEIDOU 8 (C08)", + "numerical_value": 1660, + "description": "Object_Id : 2011-013A, Epoch : 2022-03-10T17:33:18.812736, Mean_Motion : 1.00281743, Eccentricity : 0.001955, Inclination : 60.1538, Ra_Of_Asc_Node : 55.2329, Arg_Of_Pericenter : 195.867, Mean_Anomaly : 289.2208, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37384, Element_Set_No : 999, Rev_At_Epoch : 4003, Bstar : 0, Mean_Motion_Dot : -1.51E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-8 (GAGAN/PRN 127)", + "expanded": "GSAT-8 (GAGAN/PRN 127)", + "numerical_value": 1661, + "description": "Object_Id : 2011-022A, Epoch : 2022-03-10T15:10:37.975008, Mean_Motion : 1.00272548, Eccentricity : 0.0006832, Inclination : 0.0178, Ra_Of_Asc_Node : 124.3367, Arg_Of_Pericenter : 169.3255, Mean_Anomaly : 157.3093, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37605, Element_Set_No : 999, Rev_At_Epoch : 3960, Bstar : 0, Mean_Motion_Dot : 8.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-2 (PRN 01)", + "expanded": "GPS BIIF-2 (PRN 01)", + "numerical_value": 1662, + "description": "Object_Id : 2011-036A, Epoch : 2022-03-10T15:26:20.942016, Mean_Motion : 2.00564889, Eccentricity : 0.0113561, Inclination : 56.5628, Ra_Of_Asc_Node : 32.5511, Arg_Of_Pericenter : 49.8924, Mean_Anomaly : 208.9889, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37753, Element_Set_No : 999, Rev_At_Epoch : 7799, Bstar : 0, Mean_Motion_Dot : -7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 9 (C09)", + "expanded": "BEIDOU 9 (C09)", + "numerical_value": 1663, + "description": "Object_Id : 2011-038A, Epoch : 2022-03-10T17:21:14.681376, Mean_Motion : 1.00255558, Eccentricity : 0.0090143, Inclination : 54.4764, Ra_Of_Asc_Node : 179.6131, Arg_Of_Pericenter : 225.7927, Mean_Anomaly : 115.9236, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37763, Element_Set_No : 999, Rev_At_Epoch : 3900, Bstar : 0, Mean_Motion_Dot : -8.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0101 (PRN E11)", + "expanded": "GSAT0101 (PRN E11)", + "numerical_value": 1664, + "description": "Object_Id : 2011-060A, Epoch : 2022-03-10T02:50:23.088192, Mean_Motion : 1.70475194, Eccentricity : 0.0004089, Inclination : 56.9614, Ra_Of_Asc_Node : 24.0366, Arg_Of_Pericenter : 348.9195, Mean_Anomaly : 11.0562, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37846, Element_Set_No : 999, Rev_At_Epoch : 6452, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0102 (PRN E12)", + "expanded": "GSAT0102 (PRN E12)", + "numerical_value": 1665, + "description": "Object_Id : 2011-060B, Epoch : 2022-03-10T22:07:29.973216, Mean_Motion : 1.70475507, Eccentricity : 0.0005352, Inclination : 56.9623, Ra_Of_Asc_Node : 24.0143, Arg_Of_Pericenter : 328.2377, Mean_Anomaly : 211.4348, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37847, Element_Set_No : 999, Rev_At_Epoch : 6466, Bstar : 0, Mean_Motion_Dot : -8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2476 (744)", + "expanded": "COSMOS 2476 (744)", + "numerical_value": 1666, + "description": "Object_Id : 2011-064A, Epoch : 2022-03-11T02:14:43.042272, Mean_Motion : 2.13101806, Eccentricity : 0.0022332, Inclination : 64.6182, Ra_Of_Asc_Node : 125.7501, Arg_Of_Pericenter : 237.8345, Mean_Anomaly : 125.281, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37867, Element_Set_No : 999, Rev_At_Epoch : 8059, Bstar : 0, Mean_Motion_Dot : 1E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2477 (745)", + "expanded": "COSMOS 2477 (745)", + "numerical_value": 1667, + "description": "Object_Id : 2011-064B, Epoch : 2022-03-10T09:09:42.456960, Mean_Motion : 2.13101545, Eccentricity : 0.0019651, Inclination : 64.6232, Ra_Of_Asc_Node : 125.8406, Arg_Of_Pericenter : 239.3525, Mean_Anomaly : 115.8528, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37868, Element_Set_No : 999, Rev_At_Epoch : 8052, Bstar : 0, Mean_Motion_Dot : -5E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2475 (743)", + "expanded": "COSMOS 2475 (743)", + "numerical_value": 1668, + "description": "Object_Id : 2011-064C, Epoch : 2022-03-10T10:39:42.608160, Mean_Motion : 2.13101762, Eccentricity : 0.0023817, Inclination : 64.6324, Ra_Of_Asc_Node : 125.843, Arg_Of_Pericenter : 256.464, Mean_Anomaly : 104.6148, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37869, Element_Set_No : 999, Rev_At_Epoch : 8054, Bstar : 0, Mean_Motion_Dot : -4E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 10 (C10)", + "expanded": "BEIDOU 10 (C10)", + "numerical_value": 1669, + "description": "Object_Id : 2011-073A, Epoch : 2022-03-10T01:35:56.464800, Mean_Motion : 1.00275124, Eccentricity : 0.007707, Inclination : 50.5014, Ra_Of_Asc_Node : 290.4683, Arg_Of_Pericenter : 218.1366, Mean_Anomaly : 139.0462, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37948, Element_Set_No : 999, Rev_At_Epoch : 3775, Bstar : 0, Mean_Motion_Dot : -1.2099999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCH 5A (SDCM/PRN 140)", + "expanded": "LUCH 5A (SDCM/PRN 140)", + "numerical_value": 1670, + "description": "Object_Id : 2011-074B, Epoch : 2022-03-10T20:52:46.264224, Mean_Motion : 1.00269301, Eccentricity : 0.0003367, Inclination : 4.771, Ra_Of_Asc_Node : 99.6154, Arg_Of_Pericenter : 278.3788, Mean_Anomaly : 270.7531, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 37951, Element_Set_No : 999, Rev_At_Epoch : 3755, Bstar : 0, Mean_Motion_Dot : -4.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 11 (C05)", + "expanded": "BEIDOU 11 (C05)", + "numerical_value": 1671, + "description": "Object_Id : 2012-008A, Epoch : 2022-03-11T03:55:42.644928, Mean_Motion : 1.00275218, Eccentricity : 0.0013694, Inclination : 1.3482, Ra_Of_Asc_Node : 64.4632, Arg_Of_Pericenter : 315.2011, Mean_Anomaly : 266.5734, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38091, Element_Set_No : 999, Rev_At_Epoch : 3684, Bstar : 0, Mean_Motion_Dot : 5.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 12 (C11)", + "expanded": "BEIDOU 12 (C11)", + "numerical_value": 1672, + "description": "Object_Id : 2012-018A, Epoch : 2022-03-10T16:53:25.022976, Mean_Motion : 1.8623428199999998, Eccentricity : 0.0023047, Inclination : 56.7192, Ra_Of_Asc_Node : 356.8211, Arg_Of_Pericenter : 257.8665, Mean_Anomaly : 345.3967, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38250, Element_Set_No : 999, Rev_At_Epoch : 6724, Bstar : 0, Mean_Motion_Dot : -1.1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 13 (C12)", + "expanded": "BEIDOU 13 (C12)", + "numerical_value": 1673, + "description": "Object_Id : 2012-018B, Epoch : 2022-03-10T13:16:49.168704, Mean_Motion : 1.8623411399999998, Eccentricity : 0.0013995, Inclination : 56.6376, Ra_Of_Asc_Node : 356.1572, Arg_Of_Pericenter : 264.3077, Mean_Anomaly : 282.3676, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38251, Element_Set_No : 999, Rev_At_Epoch : 6724, Bstar : 0, Mean_Motion_Dot : -1.1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-5 (EGNOS/PRN 136)", + "expanded": "SES-5 (EGNOS/PRN 136)", + "numerical_value": 1674, + "description": "Object_Id : 2012-036A, Epoch : 2022-03-10T20:06:18.073152, Mean_Motion : 1.00272102, Eccentricity : 0.0001954, Inclination : 0.0581, Ra_Of_Asc_Node : 299.5507, Arg_Of_Pericenter : 35.2785, Mean_Anomaly : 140.1818, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38652, Element_Set_No : 999, Rev_At_Epoch : 2885, Bstar : 0, Mean_Motion_Dot : 3.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 15 (C14)", + "expanded": "BEIDOU 15 (C14)", + "numerical_value": 1675, + "description": "Object_Id : 2012-050B, Epoch : 2022-03-11T03:21:38.408832, Mean_Motion : 1.86231197, Eccentricity : 0.0014136, Inclination : 55.3423, Ra_Of_Asc_Node : 114.9939, Arg_Of_Pericenter : 318.3158, Mean_Anomaly : 98.3669, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38775, Element_Set_No : 999, Rev_At_Epoch : 6463, Bstar : 0, Mean_Motion_Dot : -1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-10 (GAGAN/PRN 128)", + "expanded": "GSAT-10 (GAGAN/PRN 128)", + "numerical_value": 1676, + "description": "Object_Id : 2012-051B, Epoch : 2022-03-10T20:28:39.417600, Mean_Motion : 1.00270364, Eccentricity : 0.0002027, Inclination : 0.079, Ra_Of_Asc_Node : 266.5344, Arg_Of_Pericenter : 349.5781, Mean_Anomaly : 302.517, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38779, Element_Set_No : 999, Rev_At_Epoch : 3448, Bstar : 0, Mean_Motion_Dot : -1.6699999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-3 (PRN 24)", + "expanded": "GPS BIIF-3 (PRN 24)", + "numerical_value": 1677, + "description": "Object_Id : 2012-053A, Epoch : 2022-03-10T06:26:48.873408, Mean_Motion : 2.0056069, Eccentricity : 0.0122193, Inclination : 53.5406, Ra_Of_Asc_Node : 207.4122, Arg_Of_Pericenter : 45.722, Mean_Anomaly : 315.2422, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38833, Element_Set_No : 999, Rev_At_Epoch : 6815, Bstar : 0, Mean_Motion_Dot : 2.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0103 (PRN E19)", + "expanded": "GSAT0103 (PRN E19)", + "numerical_value": 1678, + "description": "Object_Id : 2012-055A, Epoch : 2022-03-10T03:48:23.429664, Mean_Motion : 1.70473726, Eccentricity : 0.0004301, Inclination : 55.1076, Ra_Of_Asc_Node : 144.4287, Arg_Of_Pericenter : 257.4554, Mean_Anomaly : 102.5483, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38857, Element_Set_No : 999, Rev_At_Epoch : 5841, Bstar : 0, Mean_Motion_Dot : -1.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0104 (PRN E20)", + "expanded": "GSAT0104 (PRN E20)", + "numerical_value": 1679, + "description": "Object_Id : 2012-055B, Epoch : 2022-03-10T03:05:35.758176, Mean_Motion : 1.70473985, Eccentricity : 0.0001953, Inclination : 55.1076, Ra_Of_Asc_Node : 144.4309, Arg_Of_Pericenter : 244.7233, Mean_Anomaly : 115.3083, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38858, Element_Set_No : 999, Rev_At_Epoch : 5841, Bstar : 0, Mean_Motion_Dot : -1.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 16 (C02)", + "expanded": "BEIDOU 16 (C02)", + "numerical_value": 1680, + "description": "Object_Id : 2012-059A, Epoch : 2022-03-10T20:29:02.025024, Mean_Motion : 1.00275143, Eccentricity : 0.0012994, Inclination : 1.7444, Ra_Of_Asc_Node : 84.5951, Arg_Of_Pericenter : 285.3927, Mean_Anomaly : 189.7689, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38953, Element_Set_No : 999, Rev_At_Epoch : 3427, Bstar : 0, Mean_Motion_Dot : -1.78E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCH 5B (SDCM/PRN 125)", + "expanded": "LUCH 5B (SDCM/PRN 125)", + "numerical_value": 1681, + "description": "Object_Id : 2012-061A, Epoch : 2022-03-09T23:40:48.340704, Mean_Motion : 1.00271712, Eccentricity : 0.0002622, Inclination : 7.0786, Ra_Of_Asc_Node : 63.3472, Arg_Of_Pericenter : 347.1934, Mean_Anomaly : 95.9511, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 38977, Element_Set_No : 999, Rev_At_Epoch : 3453, Bstar : 0, Mean_Motion_Dot : -1.37E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2485 (747)", + "expanded": "COSMOS 2485 (747)", + "numerical_value": 1682, + "description": "Object_Id : 2013-019A, Epoch : 2022-03-10T11:48:59.454720, Mean_Motion : 2.13101775, Eccentricity : 0.0022699, Inclination : 64.7818, Ra_Of_Asc_Node : 126.177, Arg_Of_Pericenter : 233.6854, Mean_Anomaly : 72.6201, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39155, Element_Set_No : 999, Rev_At_Epoch : 6904, Bstar : 0, Mean_Motion_Dot : -4E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-4 (PRN 27)", + "expanded": "GPS BIIF-4 (PRN 27)", + "numerical_value": 1683, + "description": "Object_Id : 2013-023A, Epoch : 2022-03-10T03:05:02.423328, Mean_Motion : 2.00566643, Eccentricity : 0.0102131, Inclination : 55.761, Ra_Of_Asc_Node : 331.8013, Arg_Of_Pericenter : 36.2126, Mean_Anomaly : 324.5112, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39166, Element_Set_No : 999, Rev_At_Epoch : 6459, Bstar : 0, Mean_Motion_Dot : -8.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1A", + "expanded": "IRNSS-1A", + "numerical_value": 1684, + "description": "Object_Id : 2013-034A, Epoch : 2022-03-05T14:32:53.000736, Mean_Motion : 1.00279599, Eccentricity : 0.0019144, Inclination : 32.1973, Ra_Of_Asc_Node : 86.9612, Arg_Of_Pericenter : 189.7135, Mean_Anomaly : 160.1498, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39199, Element_Set_No : 999, Rev_At_Epoch : 3167, Bstar : 0, Mean_Motion_Dot : 8.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-5 (PRN 30)", + "expanded": "GPS BIIF-5 (PRN 30)", + "numerical_value": 1685, + "description": "Object_Id : 2014-008A, Epoch : 2022-03-10T14:53:56.468544, Mean_Motion : 2.00575253, Eccentricity : 0.0057051, Inclination : 53.6371, Ra_Of_Asc_Node : 212.8932, Arg_Of_Pericenter : 205.5653, Mean_Anomaly : 154.121, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39533, Element_Set_No : 999, Rev_At_Epoch : 5840, Bstar : 0, Mean_Motion_Dot : 2.6E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "ASTRA 5B (EGNOS/PRN 123)", + "expanded": "ASTRA 5B (EGNOS/PRN 123)", + "numerical_value": 1686, + "description": "Object_Id : 2014-011B, Epoch : 2022-03-10T20:13:50.212128, Mean_Motion : 1.00272121, Eccentricity : 0.0002983, Inclination : 0.0876, Ra_Of_Asc_Node : 299.7801, Arg_Of_Pericenter : 30.653, Mean_Anomaly : 172.972, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39617, Element_Set_No : 999, Rev_At_Epoch : 2903, Bstar : 0, Mean_Motion_Dot : 1.5199999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2492 (754)", + "expanded": "COSMOS 2492 (754)", + "numerical_value": 1687, + "description": "Object_Id : 2014-012A, Epoch : 2022-03-10T03:35:06.728352, Mean_Motion : 2.13103026, Eccentricity : 0.0015124, Inclination : 65.845, Ra_Of_Asc_Node : 6.464, Arg_Of_Pericenter : 324.2221, Mean_Anomaly : 113.5341, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39620, Element_Set_No : 999, Rev_At_Epoch : 6199, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1B", + "expanded": "IRNSS-1B", + "numerical_value": 1688, + "description": "Object_Id : 2014-017A, Epoch : 2022-03-06T03:09:42.589152, Mean_Motion : 1.00277319, Eccentricity : 0.0019814, Inclination : 28.9531, Ra_Of_Asc_Node : 266.8235, Arg_Of_Pericenter : 176.516, Mean_Anomaly : 183.0913, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39635, Element_Set_No : 999, Rev_At_Epoch : 2910, Bstar : 0, Mean_Motion_Dot : 9.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "LUCH 5V (SDCM/PRN 141)", + "expanded": "LUCH 5V (SDCM/PRN 141)", + "numerical_value": 1689, + "description": "Object_Id : 2014-023A, Epoch : 2022-03-10T20:32:02.880960, Mean_Motion : 1.00268447, Eccentricity : 0.000287, Inclination : 1.2699, Ra_Of_Asc_Node : 73.3589, Arg_Of_Pericenter : 316.3829, Mean_Anomaly : 181.4201, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39727, Element_Set_No : 999, Rev_At_Epoch : 2872, Bstar : 0, Mean_Motion_Dot : -2.7E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-6 (PRN 06)", + "expanded": "GPS BIIF-6 (PRN 06)", + "numerical_value": 1690, + "description": "Object_Id : 2014-026A, Epoch : 2022-03-10T09:42:23.833728, Mean_Motion : 2.00563124, Eccentricity : 0.0028813, Inclination : 56.5263, Ra_Of_Asc_Node : 32.0864, Arg_Of_Pericenter : 304.1389, Mean_Anomaly : 55.5814, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 39741, Element_Set_No : 999, Rev_At_Epoch : 5725, Bstar : 0, Mean_Motion_Dot : -7.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2500 (755)", + "expanded": "COSMOS 2500 (755)", + "numerical_value": 1691, + "description": "Object_Id : 2014-032A, Epoch : 2022-03-10T13:31:06.007008, Mean_Motion : 2.1310238, Eccentricity : 0.0005483, Inclination : 65.7849, Ra_Of_Asc_Node : 6.3187999999999995, Arg_Of_Pericenter : 222.4199, Mean_Anomaly : 31.777, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40001, Element_Set_No : 999, Rev_At_Epoch : 6021, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-7 (PRN 09)", + "expanded": "GPS BIIF-7 (PRN 09)", + "numerical_value": 1692, + "description": "Object_Id : 2014-045A, Epoch : 2022-03-10T11:53:55.067136, Mean_Motion : 2.00571106, Eccentricity : 0.0019711, Inclination : 54.669, Ra_Of_Asc_Node : 150.7553, Arg_Of_Pericenter : 109.6165, Mean_Anomaly : 250.638, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40105, Element_Set_No : 999, Rev_At_Epoch : 5479, Bstar : 0, Mean_Motion_Dot : -2.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0201 (PRN E18)", + "expanded": "GSAT0201 (PRN E18)", + "numerical_value": 1693, + "description": "Object_Id : 2014-050A, Epoch : 2022-03-10T00:48:01.876320, Mean_Motion : 1.85519447, Eccentricity : 0.1630409, Inclination : 50.3428, Ra_Of_Asc_Node : 336.2448, Arg_Of_Pericenter : 120.4757, Mean_Anomaly : 256.6258, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40128, Element_Set_No : 999, Rev_At_Epoch : 4937, Bstar : 0, Mean_Motion_Dot : -1.06E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0202 (PRN E14)", + "expanded": "GSAT0202 (PRN E14)", + "numerical_value": 1694, + "description": "Object_Id : 2014-050B, Epoch : 2022-03-09T18:08:14.125056, Mean_Motion : 1.85520081, Eccentricity : 0.1627492, Inclination : 50.3694, Ra_Of_Asc_Node : 335.3135, Arg_Of_Pericenter : 121.273, Mean_Anomaly : 255.6822, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40129, Element_Set_No : 999, Rev_At_Epoch : 5153, Bstar : 0, Mean_Motion_Dot : -1.07E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1C", + "expanded": "IRNSS-1C", + "numerical_value": 1695, + "description": "Object_Id : 2014-061A, Epoch : 2022-03-10T20:28:46.954272, Mean_Motion : 1.00270395, Eccentricity : 0.0017508, Inclination : 2.7586, Ra_Of_Asc_Node : 133.3688, Arg_Of_Pericenter : 6.4358, Mean_Anomaly : 58.9106, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40269, Element_Set_No : 999, Rev_At_Epoch : 2705, Bstar : 0, Mean_Motion_Dot : -1.64E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-8 (PRN 03)", + "expanded": "GPS BIIF-8 (PRN 03)", + "numerical_value": 1696, + "description": "Object_Id : 2014-068A, Epoch : 2022-03-10T08:53:46.259520, Mean_Motion : 2.00564745, Eccentricity : 0.003742, Inclination : 55.7407, Ra_Of_Asc_Node : 91.8486, Arg_Of_Pericenter : 52.1536, Mean_Anomaly : 308.2372, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40294, Element_Set_No : 999, Rev_At_Epoch : 5392, Bstar : 0, Mean_Motion_Dot : -1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2501 (702K)", + "expanded": "COSMOS 2501 (702K)", + "numerical_value": 1697, + "description": "Object_Id : 2014-075A, Epoch : 2022-03-10T05:54:23.802912, Mean_Motion : 2.13101296, Eccentricity : 0.0016252, Inclination : 63.7106, Ra_Of_Asc_Node : 244.644, Arg_Of_Pericenter : 205.2048, Mean_Anomaly : 333.1933, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40315, Element_Set_No : 999, Rev_At_Epoch : 5661, Bstar : 0, Mean_Motion_Dot : 7.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-9 (PRN 26)", + "expanded": "GPS BIIF-9 (PRN 26)", + "numerical_value": 1698, + "description": "Object_Id : 2015-013A, Epoch : 2022-03-10T12:04:11.249472, Mean_Motion : 2.00558706, Eccentricity : 0.0068334, Inclination : 53.7678, Ra_Of_Asc_Node : 268.792, Arg_Of_Pericenter : 19.9664, Mean_Anomaly : 340.3191, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40534, Element_Set_No : 999, Rev_At_Epoch : 5054, Bstar : 0, Mean_Motion_Dot : 3.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0203 (PRN E26)", + "expanded": "GSAT0203 (PRN E26)", + "numerical_value": 1699, + "description": "Object_Id : 2015-017A, Epoch : 2022-03-08T03:21:05.556960, Mean_Motion : 1.7047587499999999, Eccentricity : 0.0004302, Inclination : 56.7559, Ra_Of_Asc_Node : 24.1373, Arg_Of_Pericenter : 281.928, Mean_Anomaly : 78.0057, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40544, Element_Set_No : 999, Rev_At_Epoch : 4257, Bstar : 0, Mean_Motion_Dot : -8.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0204 (PRN E22)", + "expanded": "GSAT0204 (PRN E22)", + "numerical_value": 1700, + "description": "Object_Id : 2015-017B, Epoch : 2022-03-10T03:38:55.887072, Mean_Motion : 1.70475697, Eccentricity : 0.000345, Inclination : 56.7621, Ra_Of_Asc_Node : 24.0944, Arg_Of_Pericenter : 272.7574, Mean_Anomaly : 87.188, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40545, Element_Set_No : 999, Rev_At_Epoch : 4326, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1D", + "expanded": "IRNSS-1D", + "numerical_value": 1701, + "description": "Object_Id : 2015-018A, Epoch : 2022-03-10T11:00:27.681408, Mean_Motion : 1.00271665, Eccentricity : 0.0020574, Inclination : 28.7745, Ra_Of_Asc_Node : 266.7909, Arg_Of_Pericenter : 176.6222, Mean_Anomaly : 1.5459, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40547, Element_Set_No : 999, Rev_At_Epoch : 2560, Bstar : 0, Mean_Motion_Dot : -2.64E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 17 (C31)", + "expanded": "BEIDOU 17 (C31)", + "numerical_value": 1702, + "description": "Object_Id : 2015-019A, Epoch : 2022-03-10T15:22:03.718848, Mean_Motion : 1.00263208, Eccentricity : 0.0035441, Inclination : 52.0526, Ra_Of_Asc_Node : 313.9035, Arg_Of_Pericenter : 189.6529, Mean_Anomaly : 350.3077, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40549, Element_Set_No : 999, Rev_At_Epoch : 2544, Bstar : 0, Mean_Motion_Dot : -1.55E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-10 (PRN 08)", + "expanded": "GPS BIIF-10 (PRN 08)", + "numerical_value": 1703, + "description": "Object_Id : 2015-033A, Epoch : 2022-03-10T04:01:20.842176, Mean_Motion : 2.00557263, Eccentricity : 0.0073374, Inclination : 55.2619, Ra_Of_Asc_Node : 330.6758, Arg_Of_Pericenter : 5.3096, Mean_Anomaly : 354.8062, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40730, Element_Set_No : 999, Rev_At_Epoch : 4870, Bstar : 0, Mean_Motion_Dot : -8.499999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 18 (C57)", + "expanded": "BEIDOU 18 (C57)", + "numerical_value": 1704, + "description": "Object_Id : 2015-037A, Epoch : 2022-03-10T07:08:56.891616, Mean_Motion : 1.86233185, Eccentricity : 0.0005401, Inclination : 55.8939, Ra_Of_Asc_Node : 355.0917, Arg_Of_Pericenter : 355.981, Mean_Anomaly : 288.9935, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40748, Element_Set_No : 999, Rev_At_Epoch : 4506, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 19 (C58)", + "expanded": "BEIDOU 19 (C58)", + "numerical_value": 1705, + "description": "Object_Id : 2015-037B, Epoch : 2022-03-10T13:32:23.987328, Mean_Motion : 1.86232, Eccentricity : 0.0006868, Inclination : 55.8963, Ra_Of_Asc_Node : 355.0728, Arg_Of_Pericenter : 328.86, Mean_Anomaly : 269.5705, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40749, Element_Set_No : 999, Rev_At_Epoch : 4506, Bstar : 0, Mean_Motion_Dot : -1.11E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0205 (PRN E24)", + "expanded": "GSAT0205 (PRN E24)", + "numerical_value": 1706, + "description": "Object_Id : 2015-045A, Epoch : 2022-03-09T22:03:37.210752, Mean_Motion : 1.7047360299999998, Eccentricity : 0.0006134, Inclination : 55.6903, Ra_Of_Asc_Node : 264.7096, Arg_Of_Pericenter : 28.3038, Mean_Anomaly : 331.7381, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40889, Element_Set_No : 999, Rev_At_Epoch : 4041, Bstar : 0, Mean_Motion_Dot : 3.7999999999999996E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0206 (PRN E30)", + "expanded": "GSAT0206 (PRN E30)", + "numerical_value": 1707, + "description": "Object_Id : 2015-045B, Epoch : 2022-03-10T03:21:32.896512, Mean_Motion : 1.70473573, Eccentricity : 0.0004279, Inclination : 55.6892, Ra_Of_Asc_Node : 264.6994, Arg_Of_Pericenter : 25.8866, Mean_Anomaly : 334.1441, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40890, Element_Set_No : 999, Rev_At_Epoch : 4044, Bstar : 0, Mean_Motion_Dot : 3.8999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU 20 (C18)", + "expanded": "BEIDOU 20 (C18)", + "numerical_value": 1708, + "description": "Object_Id : 2015-053A, Epoch : 2022-03-08T06:14:00.494016, Mean_Motion : 1.00269532, Eccentricity : 0.004372, Inclination : 51.6553, Ra_Of_Asc_Node : 277.031, Arg_Of_Pericenter : 192.4464, Mean_Anomaly : 246.0063, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 40938, Element_Set_No : 999, Rev_At_Epoch : 2369, Bstar : 0, Mean_Motion_Dot : -1.0299999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-11 (PRN 10)", + "expanded": "GPS BIIF-11 (PRN 10)", + "numerical_value": 1709, + "description": "Object_Id : 2015-062A, Epoch : 2022-03-10T05:11:21.017472, Mean_Motion : 2.00563122, Eccentricity : 0.0076793, Inclination : 55.7304, Ra_Of_Asc_Node : 91.6954, Arg_Of_Pericenter : 217.9036, Mean_Anomaly : 141.6044, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41019, Element_Set_No : 999, Rev_At_Epoch : 4654, Bstar : 0, Mean_Motion_Dot : -1.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT-15 (GAGAN/PRN 139)", + "expanded": "GSAT-15 (GAGAN/PRN 139)", + "numerical_value": 1710, + "description": "Object_Id : 2015-065A, Epoch : 2022-03-10T20:31:40.274400, Mean_Motion : 1.00275247, Eccentricity : 7.620000000000001E-05, Inclination : 0.0593, Ra_Of_Asc_Node : 272.5351, Arg_Of_Pericenter : 136.2304, Mean_Anomaly : 161.0733, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41028, Element_Set_No : 999, Rev_At_Epoch : 2317, Bstar : 0, Mean_Motion_Dot : -2.6099999999999996E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0209 (PRN E09)", + "expanded": "GSAT0209 (PRN E09)", + "numerical_value": 1711, + "description": "Object_Id : 2015-079A, Epoch : 2022-03-07T09:10:27.528384, Mean_Motion : 1.70473784, Eccentricity : 0.0003986, Inclination : 55.1229, Ra_Of_Asc_Node : 144.208, Arg_Of_Pericenter : 302.6167, Mean_Anomaly : 57.4016, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41174, Element_Set_No : 999, Rev_At_Epoch : 3813, Bstar : 0, Mean_Motion_Dot : -1.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0208 (PRN E08)", + "expanded": "GSAT0208 (PRN E08)", + "numerical_value": 1712, + "description": "Object_Id : 2015-079B, Epoch : 2022-03-08T04:31:12.007488, Mean_Motion : 1.7047506000000001, Eccentricity : 0.0003299, Inclination : 55.1216, Ra_Of_Asc_Node : 144.1844, Arg_Of_Pericenter : 300.4086, Mean_Anomaly : 59.6142, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41175, Element_Set_No : 999, Rev_At_Epoch : 3856, Bstar : 0, Mean_Motion_Dot : -1.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1E", + "expanded": "IRNSS-1E", + "numerical_value": 1713, + "description": "Object_Id : 2016-003A, Epoch : 2022-03-09T20:19:42.634272, Mean_Motion : 1.00277404, Eccentricity : 0.0018987, Inclination : 29.7573, Ra_Of_Asc_Node : 86.1595, Arg_Of_Pericenter : 188.8104, Mean_Anomaly : 309.2333, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41241, Element_Set_No : 999, Rev_At_Epoch : 2255, Bstar : 0, Mean_Motion_Dot : -2.96E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIIF-12 (PRN 32)", + "expanded": "GPS BIIF-12 (PRN 32)", + "numerical_value": 1714, + "description": "Object_Id : 2016-007A, Epoch : 2022-03-10T07:30:49.986720, Mean_Motion : 2.00574899, Eccentricity : 0.005901, Inclination : 54.8892, Ra_Of_Asc_Node : 151.4104, Arg_Of_Pericenter : 228.3163, Mean_Anomaly : 131.2183, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41328, Element_Set_No : 999, Rev_At_Epoch : 4455, Bstar : 0, Mean_Motion_Dot : -2.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2514 (751)", + "expanded": "COSMOS 2514 (751)", + "numerical_value": 1715, + "description": "Object_Id : 2016-008A, Epoch : 2022-03-10T08:42:31.572288, Mean_Motion : 2.13102758, Eccentricity : 0.0009485, Inclination : 65.5855, Ra_Of_Asc_Node : 6.0414, Arg_Of_Pericenter : 225.7526, Mean_Anomaly : 58.3598, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41330, Element_Set_No : 999, Rev_At_Epoch : 4737, Bstar : 0, Mean_Motion_Dot : -8.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1F", + "expanded": "IRNSS-1F", + "numerical_value": 1716, + "description": "Object_Id : 2016-015A, Epoch : 2022-03-10T20:14:12.818688, Mean_Motion : 1.00268672, Eccentricity : 0.0022903, Inclination : 2.0723, Ra_Of_Asc_Node : 164.6161, Arg_Of_Pericenter : 193.3803, Mean_Anomaly : 146.5731, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41384, Element_Set_No : 999, Rev_At_Epoch : 2202, Bstar : 0, Mean_Motion_Dot : 1.5599999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU IGSO-6 (C13)", + "expanded": "BEIDOU IGSO-6 (C13)", + "numerical_value": 1717, + "description": "Object_Id : 2016-021A, Epoch : 2022-03-10T22:14:47.040576, Mean_Motion : 1.00261139, Eccentricity : 0.0043441, Inclination : 57.956, Ra_Of_Asc_Node : 53.8507, Arg_Of_Pericenter : 219.7548, Mean_Anomaly : 322.5409, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41434, Element_Set_No : 999, Rev_At_Epoch : 2184, Bstar : 0, Mean_Motion_Dot : -1.1499999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1G", + "expanded": "IRNSS-1G", + "numerical_value": 1718, + "description": "Object_Id : 2016-027A, Epoch : 2022-03-10T19:47:42.874656, Mean_Motion : 1.00267134, Eccentricity : 0.0005884, Inclination : 2.0177, Ra_Of_Asc_Node : 167.675, Arg_Of_Pericenter : 253.4392, Mean_Anomaly : 173.7088, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41469, Element_Set_No : 999, Rev_At_Epoch : 2154, Bstar : 0, Mean_Motion_Dot : -3.39E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0211 (PRN E02)", + "expanded": "GSAT0211 (PRN E02)", + "numerical_value": 1719, + "description": "Object_Id : 2016-030A, Epoch : 2022-03-10T01:37:16.860000, Mean_Motion : 1.70475049, Eccentricity : 0.000425, Inclination : 55.8329, Ra_Of_Asc_Node : 264.6239, Arg_Of_Pericenter : 359.0705, Mean_Anomaly : 0.9378, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41549, Element_Set_No : 999, Rev_At_Epoch : 3607, Bstar : 0, Mean_Motion_Dot : 3.8999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0210 (PRN E01)", + "expanded": "GSAT0210 (PRN E01)", + "numerical_value": 1720, + "description": "Object_Id : 2016-030B, Epoch : 2022-03-08T14:24:42.488928, Mean_Motion : 1.70475143, Eccentricity : 0.0002378, Inclination : 55.8348, Ra_Of_Asc_Node : 264.6658, Arg_Of_Pericenter : 340.3689, Mean_Anomaly : 19.6268, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41550, Element_Set_No : 999, Rev_At_Epoch : 3604, Bstar : 0, Mean_Motion_Dot : 3.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2516 (753)", + "expanded": "COSMOS 2516 (753)", + "numerical_value": 1721, + "description": "Object_Id : 2016-032A, Epoch : 2022-03-10T14:17:22.859808, Mean_Motion : 2.13106033, Eccentricity : 0.0011966, Inclination : 63.9366, Ra_Of_Asc_Node : 244.88, Arg_Of_Pericenter : 211.2452, Mean_Anomaly : 152.0346, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41554, Element_Set_No : 999, Rev_At_Epoch : 4499, Bstar : 0, Mean_Motion_Dot : 7.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-2 G7 (C03)", + "expanded": "BEIDOU-2 G7 (C03)", + "numerical_value": 1722, + "description": "Object_Id : 2016-037A, Epoch : 2022-03-10T20:36:34.164000, Mean_Motion : 1.00266713, Eccentricity : 0.0008946, Inclination : 1.7578, Ra_Of_Asc_Node : 68.1912, Arg_Of_Pericenter : 359.0204, Mean_Anomaly : 160.8685, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41586, Element_Set_No : 999, Rev_At_Epoch : 2115, Bstar : 0, Mean_Motion_Dot : -3.56E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "E 117 W B (WAAS/PRN 131)", + "expanded": "E 117 W B (WAAS/PRN 131)", + "numerical_value": 1723, + "description": "Object_Id : 2016-038B, Epoch : 2022-03-10T16:00:48.062880, Mean_Motion : 1.00272137, Eccentricity : 4.7600000000000005E-05, Inclination : 0.0337, Ra_Of_Asc_Node : 21.7568, Arg_Of_Pericenter : 58.0096, Mean_Anomaly : 211.7387, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41589, Element_Set_No : 999, Rev_At_Epoch : 2103, Bstar : 0, Mean_Motion_Dot : -1.3999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0207 (PRN E07)", + "expanded": "GSAT0207 (PRN E07)", + "numerical_value": 1724, + "description": "Object_Id : 2016-069A, Epoch : 2022-03-09T10:25:34.672512, Mean_Motion : 1.70473726, Eccentricity : 0.0004278, Inclination : 54.7834, Ra_Of_Asc_Node : 144.3573, Arg_Of_Pericenter : 287.5708, Mean_Anomaly : 72.4352, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41859, Element_Set_No : 999, Rev_At_Epoch : 3279, Bstar : 0, Mean_Motion_Dot : -1.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0212 (PRN E03)", + "expanded": "GSAT0212 (PRN E03)", + "numerical_value": 1725, + "description": "Object_Id : 2016-069B, Epoch : 2022-03-09T20:59:10.299264, Mean_Motion : 1.7047377099999999, Eccentricity : 0.0002807, Inclination : 54.7812, Ra_Of_Asc_Node : 144.3429, Arg_Of_Pericenter : 310.0834, Mean_Anomaly : 49.9441, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41860, Element_Set_No : 999, Rev_At_Epoch : 3305, Bstar : 0, Mean_Motion_Dot : -1.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0213 (PRN E04)", + "expanded": "GSAT0213 (PRN E04)", + "numerical_value": 1726, + "description": "Object_Id : 2016-069C, Epoch : 2022-03-10T05:45:26.981568, Mean_Motion : 1.70473777, Eccentricity : 0.000421, Inclination : 54.7836, Ra_Of_Asc_Node : 144.3378, Arg_Of_Pericenter : 265.1377, Mean_Anomaly : 94.866, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41861, Element_Set_No : 999, Rev_At_Epoch : 3292, Bstar : 0, Mean_Motion_Dot : -1.2E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0214 (PRN E05)", + "expanded": "GSAT0214 (PRN E05)", + "numerical_value": 1727, + "description": "Object_Id : 2016-069D, Epoch : 2022-03-08T15:03:12.928608, Mean_Motion : 1.70473871, Eccentricity : 0.0003273, Inclination : 54.7815, Ra_Of_Asc_Node : 144.3772, Arg_Of_Pericenter : 267.0413, Mean_Anomaly : 92.9753, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 41862, Element_Set_No : 999, Rev_At_Epoch : 3302, Bstar : 0, Mean_Motion_Dot : -1.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "SES-15 (WAAS/PRN 133)", + "expanded": "SES-15 (WAAS/PRN 133)", + "numerical_value": 1728, + "description": "Object_Id : 2017-026A, Epoch : 2022-03-11T00:37:50.142720, Mean_Motion : 1.00270318, Eccentricity : 5E-05, Inclination : 0.0356, Ra_Of_Asc_Node : 2.2385, Arg_Of_Pericenter : 310.5098, Mean_Anomaly : 96.1976, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 42709, Element_Set_No : 999, Rev_At_Epoch : 1855, Bstar : 0, Mean_Motion_Dot : 5.699999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-2 (QZSS/PRN 184)", + "expanded": "QZS-2 (QZSS/PRN 184)", + "numerical_value": 1729, + "description": "Object_Id : 2017-028A, Epoch : 2022-03-10T22:16:42.831264, Mean_Motion : 1.0026497, Eccentricity : 0.0746877, Inclination : 41.9368, Ra_Of_Asc_Node : 265.5519, Arg_Of_Pericenter : 270.2675, Mean_Anomaly : 107.4776, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 42738, Element_Set_No : 999, Rev_At_Epoch : 1750, Bstar : 0, Mean_Motion_Dot : -1.35E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-3 (QZSS/PRN 189)", + "expanded": "QZS-3 (QZSS/PRN 189)", + "numerical_value": 1730, + "description": "Object_Id : 2017-048A, Epoch : 2022-03-11T00:07:41.589408, Mean_Motion : 1.00267819, Eccentricity : 0.0002181, Inclination : 0.0528, Ra_Of_Asc_Node : 194.5723, Arg_Of_Pericenter : 156.8182, Mean_Anomaly : 306.134, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 42917, Element_Set_No : 999, Rev_At_Epoch : 1673, Bstar : 0, Mean_Motion_Dot : -3.5099999999999994E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2522 (752)", + "expanded": "COSMOS 2522 (752)", + "numerical_value": 1731, + "description": "Object_Id : 2017-055A, Epoch : 2022-03-10T13:08:32.203680, Mean_Motion : 2.13101909, Eccentricity : 0.0004899, Inclination : 64.1704, Ra_Of_Asc_Node : 245.2477, Arg_Of_Pericenter : 242.8975, Mean_Anomaly : 302.1204, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 42939, Element_Set_No : 999, Rev_At_Epoch : 3474, Bstar : 0, Mean_Motion_Dot : 7.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "QZS-4 (QZSS/PRN 185)", + "expanded": "QZS-4 (QZSS/PRN 185)", + "numerical_value": 1732, + "description": "Object_Id : 2017-062A, Epoch : 2022-03-10T11:19:48.544032, Mean_Motion : 1.00281031, Eccentricity : 0.0749524, Inclination : 40.7893, Ra_Of_Asc_Node : 3.3833, Arg_Of_Pericenter : 269.737, Mean_Anomaly : 203.9993, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 42965, Element_Set_No : 999, Rev_At_Epoch : 1616, Bstar : 0, Mean_Motion_Dot : -3.31E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M1 (C19)", + "expanded": "BEIDOU-3 M1 (C19)", + "numerical_value": 1733, + "description": "Object_Id : 2017-069A, Epoch : 2022-03-10T06:42:50.431968, Mean_Motion : 1.86231573, Eccentricity : 0.0011002, Inclination : 55.4949, Ra_Of_Asc_Node : 115.0105, Arg_Of_Pericenter : 286.0225, Mean_Anomaly : 70.0714, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43001, Element_Set_No : 999, Rev_At_Epoch : 2954, Bstar : 0, Mean_Motion_Dot : -1.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M2 (C20)", + "expanded": "BEIDOU-3 M2 (C20)", + "numerical_value": 1734, + "description": "Object_Id : 2017-069B, Epoch : 2022-03-10T05:16:51.610656, Mean_Motion : 1.8623132199999999, Eccentricity : 0.0009152, Inclination : 55.4946, Ra_Of_Asc_Node : 115.0482, Arg_Of_Pericenter : 305.2605, Mean_Anomaly : 53.95, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43002, Element_Set_No : 999, Rev_At_Epoch : 2953, Bstar : 0, Mean_Motion_Dot : -1.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0215 (PRN E21)", + "expanded": "GSAT0215 (PRN E21)", + "numerical_value": 1735, + "description": "Object_Id : 2017-079A, Epoch : 2022-03-10T21:03:57.125664, Mean_Motion : 1.70474309, Eccentricity : 0.0001793, Inclination : 55.8093, Ra_Of_Asc_Node : 264.4355, Arg_Of_Pericenter : 349.7922, Mean_Anomaly : 10.2153, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43055, Element_Set_No : 999, Rev_At_Epoch : 2640, Bstar : 0, Mean_Motion_Dot : 4.2999999999999996E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0216 (PRN E25)", + "expanded": "GSAT0216 (PRN E25)", + "numerical_value": 1736, + "description": "Object_Id : 2017-079B, Epoch : 2022-03-09T23:55:29.433216, Mean_Motion : 1.70474432, Eccentricity : 0.0002931, Inclination : 55.8102, Ra_Of_Asc_Node : 264.4596, Arg_Of_Pericenter : 316.0579, Mean_Anomaly : 43.9273, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43056, Element_Set_No : 999, Rev_At_Epoch : 2640, Bstar : 0, Mean_Motion_Dot : 3.8999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0217 (PRN E27)", + "expanded": "GSAT0217 (PRN E27)", + "numerical_value": 1737, + "description": "Object_Id : 2017-079C, Epoch : 2022-03-10T05:12:36.074016, Mean_Motion : 1.7047434799999999, Eccentricity : 0.0003207, Inclination : 55.8082, Ra_Of_Asc_Node : 264.4535, Arg_Of_Pericenter : 335.5158, Mean_Anomaly : 24.4781, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43057, Element_Set_No : 999, Rev_At_Epoch : 2639, Bstar : 0, Mean_Motion_Dot : 4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0218 (PRN E31)", + "expanded": "GSAT0218 (PRN E31)", + "numerical_value": 1738, + "description": "Object_Id : 2017-079D, Epoch : 2022-03-09T06:20:02.301792, Mean_Motion : 1.7047436299999998, Eccentricity : 0.0003114, Inclination : 55.809, Ra_Of_Asc_Node : 264.477, Arg_Of_Pericenter : 306.2357, Mean_Anomaly : 53.7419, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43058, Element_Set_No : 999, Rev_At_Epoch : 2637, Bstar : 0, Mean_Motion_Dot : 3.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M3 (C27)", + "expanded": "BEIDOU-3 M3 (C27)", + "numerical_value": 1739, + "description": "Object_Id : 2018-003A, Epoch : 2022-03-10T08:44:15.542592, Mean_Motion : 1.8623233099999998, Eccentricity : 0.0004999, Inclination : 55.3421, Ra_Of_Asc_Node : 356.0521, Arg_Of_Pericenter : 37.9951, Mean_Anomaly : 223.7999, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43107, Element_Set_No : 999, Rev_At_Epoch : 2830, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M4 (C28)", + "expanded": "BEIDOU-3 M4 (C28)", + "numerical_value": 1740, + "description": "Object_Id : 2018-003B, Epoch : 2022-03-10T07:08:30.899904, Mean_Motion : 1.8623081, Eccentricity : 0.0003304, Inclination : 55.3357, Ra_Of_Asc_Node : 356.0437, Arg_Of_Pericenter : 273.0255, Mean_Anomaly : 348.6378, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43108, Element_Set_No : 999, Rev_At_Epoch : 2830, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M5 (C21)", + "expanded": "BEIDOU-3 M5 (C21)", + "numerical_value": 1741, + "description": "Object_Id : 2018-018A, Epoch : 2022-03-10T08:28:49.930752, Mean_Motion : 1.86231507, Eccentricity : 0.0006226, Inclination : 55.454, Ra_Of_Asc_Node : 115.1269, Arg_Of_Pericenter : 321.5272, Mean_Anomaly : 38.4982, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43207, Element_Set_No : 999, Rev_At_Epoch : 2769, Bstar : 0, Mean_Motion_Dot : -1.7E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M6 (C22)", + "expanded": "BEIDOU-3 M6 (C22)", + "numerical_value": 1742, + "description": "Object_Id : 2018-018B, Epoch : 2022-03-09T08:18:22.858560, Mean_Motion : 1.86231574, Eccentricity : 0.0009277, Inclination : 55.4534, Ra_Of_Asc_Node : 115.1637, Arg_Of_Pericenter : 294.902, Mean_Anomaly : 65.0704, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43208, Element_Set_No : 999, Rev_At_Epoch : 2767, Bstar : 0, Mean_Motion_Dot : -2.2999999999999997E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M7 (C29)", + "expanded": "BEIDOU-3 M7 (C29)", + "numerical_value": 1743, + "description": "Object_Id : 2018-029A, Epoch : 2022-03-10T11:55:25.379328, Mean_Motion : 1.8623243, Eccentricity : 0.0001524, Inclination : 55.2602, Ra_Of_Asc_Node : 353.8221, Arg_Of_Pericenter : 339.7801, Mean_Anomaly : 281.3786, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43245, Element_Set_No : 999, Rev_At_Epoch : 2684, Bstar : 0, Mean_Motion_Dot : -1.12E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M8 (C30)", + "expanded": "BEIDOU-3 M8 (C30)", + "numerical_value": 1744, + "description": "Object_Id : 2018-029B, Epoch : 2022-03-10T02:56:33.923904, Mean_Motion : 1.86232659, Eccentricity : 0.000529, Inclination : 55.2575, Ra_Of_Asc_Node : 353.8655, Arg_Of_Pericenter : 350.3922, Mean_Anomaly : 66.3316, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43246, Element_Set_No : 999, Rev_At_Epoch : 2683, Bstar : 0.0001, Mean_Motion_Dot : -1.1299999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "IRNSS-1I", + "expanded": "IRNSS-1I", + "numerical_value": 1745, + "description": "Object_Id : 2018-035A, Epoch : 2022-03-09T04:03:42.609024, Mean_Motion : 1.00277403, Eccentricity : 0.0020532, Inclination : 28.8542, Ra_Of_Asc_Node : 98.9782, Arg_Of_Pericenter : 189.738, Mean_Anomaly : 354.1655, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43286, Element_Set_No : 999, Rev_At_Epoch : 1442, Bstar : 0, Mean_Motion_Dot : 8.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2527 (756)", + "expanded": "COSMOS 2527 (756)", + "numerical_value": 1746, + "description": "Object_Id : 2018-053A, Epoch : 2022-03-10T08:40:48.738144, Mean_Motion : 2.13102524, Eccentricity : 0.0008903, Inclination : 64.9454, Ra_Of_Asc_Node : 126.1615, Arg_Of_Pericenter : 234.0502, Mean_Anomaly : 200.4402, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43508, Element_Set_No : 999, Rev_At_Epoch : 2903, Bstar : 0, Mean_Motion_Dot : -5E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU IGSO-7 (C16)", + "expanded": "BEIDOU IGSO-7 (C16)", + "numerical_value": 1747, + "description": "Object_Id : 2018-057A, Epoch : 2022-03-10T11:54:47.104128, Mean_Motion : 1.00287882, Eccentricity : 0.0045856, Inclination : 55.0746, Ra_Of_Asc_Node : 176.5822, Arg_Of_Pericenter : 223.8419, Mean_Anomaly : 56.861, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43539, Element_Set_No : 999, Rev_At_Epoch : 1351, Bstar : 0, Mean_Motion_Dot : -1.4499999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0221 (PRN E15)", + "expanded": "GSAT0221 (PRN E15)", + "numerical_value": 1748, + "description": "Object_Id : 2018-060A, Epoch : 2022-03-09T17:57:54.068544, Mean_Motion : 1.70475715, Eccentricity : 0.0005201, Inclination : 57.1392, Ra_Of_Asc_Node : 23.8836, Arg_Of_Pericenter : 294.3297, Mean_Anomaly : 65.6003, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43564, Element_Set_No : 999, Rev_At_Epoch : 2256, Bstar : 0, Mean_Motion_Dot : -8.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0222 (PRN E33)", + "expanded": "GSAT0222 (PRN E33)", + "numerical_value": 1749, + "description": "Object_Id : 2018-060B, Epoch : 2022-03-09T23:14:28.938336, Mean_Motion : 1.7047567, Eccentricity : 0.0005026, Inclination : 57.1414, Ra_Of_Asc_Node : 23.8779, Arg_Of_Pericenter : 302.3291, Mean_Anomaly : 57.6069, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43565, Element_Set_No : 999, Rev_At_Epoch : 2261, Bstar : 0, Mean_Motion_Dot : -8.199999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0219 (PRN E36)", + "expanded": "GSAT0219 (PRN E36)", + "numerical_value": 1750, + "description": "Object_Id : 2018-060C, Epoch : 2022-03-09T00:22:44.118624, Mean_Motion : 1.70475714, Eccentricity : 0.0004736, Inclination : 57.1416, Ra_Of_Asc_Node : 23.9056, Arg_Of_Pericenter : 303.7746, Mean_Anomaly : 56.1637, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43566, Element_Set_No : 999, Rev_At_Epoch : 2257, Bstar : 0, Mean_Motion_Dot : -8.499999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GSAT0220 (PRN E13)", + "expanded": "GSAT0220 (PRN E13)", + "numerical_value": 1751, + "description": "Object_Id : 2018-060D, Epoch : 2022-03-09T19:44:17.335104, Mean_Motion : 1.7047578300000001, Eccentricity : 0.000482, Inclination : 57.1422, Ra_Of_Asc_Node : 23.8838, Arg_Of_Pericenter : 299.3722, Mean_Anomaly : 60.5641, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43567, Element_Set_No : 999, Rev_At_Epoch : 2257, Bstar : 0, Mean_Motion_Dot : -8.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M9 (C23)", + "expanded": "BEIDOU-3 M9 (C23)", + "numerical_value": 1752, + "description": "Object_Id : 2018-062A, Epoch : 2022-03-11T01:58:24.863808, Mean_Motion : 1.86231795, Eccentricity : 0.0001889, Inclination : 54.3078, Ra_Of_Asc_Node : 235.4515, Arg_Of_Pericenter : 322.3497, Mean_Anomaly : 228.4944, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43581, Element_Set_No : 999, Rev_At_Epoch : 2459, Bstar : 0, Mean_Motion_Dot : 5.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M10 (C24)", + "expanded": "BEIDOU-3 M10 (C24)", + "numerical_value": 1753, + "description": "Object_Id : 2018-062B, Epoch : 2022-03-10T15:52:23.702880, Mean_Motion : 1.86232057, Eccentricity : 0.0006482, Inclination : 54.3077, Ra_Of_Asc_Node : 235.4552, Arg_Of_Pericenter : 24.6822, Mean_Anomaly : 335.7015, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43582, Element_Set_No : 999, Rev_At_Epoch : 2459, Bstar : 0, Mean_Motion_Dot : 5.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M11 (C25)", + "expanded": "BEIDOU-3 M11 (C25)", + "numerical_value": 1754, + "description": "Object_Id : 2018-067A, Epoch : 2022-03-10T14:08:52.418976, Mean_Motion : 1.86231587, Eccentricity : 0.0007718, Inclination : 54.3883, Ra_Of_Asc_Node : 234.0639, Arg_Of_Pericenter : 15.3622, Mean_Anomaly : 338.3943, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43602, Element_Set_No : 999, Rev_At_Epoch : 2407, Bstar : 0, Mean_Motion_Dot : 5.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M12 (C26)", + "expanded": "BEIDOU-3 M12 (C26)", + "numerical_value": 1755, + "description": "Object_Id : 2018-067B, Epoch : 2022-03-10T13:24:49.632192, Mean_Motion : 1.8623151999999998, Eccentricity : 0.000473, Inclination : 54.3855, Ra_Of_Asc_Node : 234.0319, Arg_Of_Pericenter : 11.661, Mean_Anomaly : 231.9821, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43603, Element_Set_No : 999, Rev_At_Epoch : 2409, Bstar : 0, Mean_Motion_Dot : 5.4E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M13 (C32)", + "expanded": "BEIDOU-3 M13 (C32)", + "numerical_value": 1756, + "description": "Object_Id : 2018-072A, Epoch : 2022-03-10T05:29:11.789088, Mean_Motion : 1.8623141699999999, Eccentricity : 0.0007777, Inclination : 55.4206, Ra_Of_Asc_Node : 114.6883, Arg_Of_Pericenter : 280.7266, Mean_Anomaly : 131.0405, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43622, Element_Set_No : 999, Rev_At_Epoch : 2360, Bstar : 0, Mean_Motion_Dot : -1.8E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M14 (C33)", + "expanded": "BEIDOU-3 M14 (C33)", + "numerical_value": 1757, + "description": "Object_Id : 2018-072B, Epoch : 2022-03-10T02:46:28.813728, Mean_Motion : 1.8623140999999999, Eccentricity : 0.0005429, Inclination : 55.4217, Ra_Of_Asc_Node : 114.6843, Arg_Of_Pericenter : 300.5129, Mean_Anomaly : 125.7291, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43623, Element_Set_No : 999, Rev_At_Epoch : 2360, Bstar : 0, Mean_Motion_Dot : -1.8999999999999998E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M15 (C34)", + "expanded": "BEIDOU-3 M15 (C34)", + "numerical_value": 1758, + "description": "Object_Id : 2018-078A, Epoch : 2022-03-10T00:43:34.659264, Mean_Motion : 1.86232887, Eccentricity : 0.0007719, Inclination : 55.1552, Ra_Of_Asc_Node : 354.0058, Arg_Of_Pericenter : 357.9136, Mean_Anomaly : 266.5348, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43647, Element_Set_No : 999, Rev_At_Epoch : 2310, Bstar : 0.0001, Mean_Motion_Dot : -1.1299999999999998E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M16 (C35)", + "expanded": "BEIDOU-3 M16 (C35)", + "numerical_value": 1759, + "description": "Object_Id : 2018-078B, Epoch : 2022-03-10T16:52:59.019168, Mean_Motion : 1.86232118, Eccentricity : 0.0005506, Inclination : 55.1519, Ra_Of_Asc_Node : 353.9892, Arg_Of_Pericenter : 4.603, Mean_Anomaly : 259.1681, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43648, Element_Set_No : 999, Rev_At_Epoch : 2313, Bstar : 0, Mean_Motion_Dot : -1.11E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 G1 (C59)", + "expanded": "BEIDOU-3 G1 (C59)", + "numerical_value": 1760, + "description": "Object_Id : 2018-085A, Epoch : 2022-03-10T20:44:59.052768, Mean_Motion : 1.00267284, Eccentricity : 0.0001377, Inclination : 0.8389, Ra_Of_Asc_Node : 183.8174, Arg_Of_Pericenter : 347.7912, Mean_Anomaly : 88.0697, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43683, Element_Set_No : 999, Rev_At_Epoch : 1242, Bstar : 0, Mean_Motion_Dot : -2.83E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2529 (757)", + "expanded": "COSMOS 2529 (757)", + "numerical_value": 1761, + "description": "Object_Id : 2018-086A, Epoch : 2022-03-10T03:10:42.636288, Mean_Motion : 2.13102053, Eccentricity : 0.0007203, Inclination : 64.385, Ra_Of_Asc_Node : 245.5519, Arg_Of_Pericenter : 276.0696, Mean_Anomaly : 265.9648, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43687, Element_Set_No : 999, Rev_At_Epoch : 2604, Bstar : 0, Mean_Motion_Dot : 7.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M17 (C36)", + "expanded": "BEIDOU-3 M17 (C36)", + "numerical_value": 1762, + "description": "Object_Id : 2018-093A, Epoch : 2022-03-09T22:12:04.091904, Mean_Motion : 1.86232036, Eccentricity : 0.0007255, Inclination : 54.3904, Ra_Of_Asc_Node : 235.3685, Arg_Of_Pericenter : 280.3309, Mean_Anomaly : 79.559, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43706, Element_Set_No : 999, Rev_At_Epoch : 2246, Bstar : 0, Mean_Motion_Dot : 5.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M18 (C37)", + "expanded": "BEIDOU-3 M18 (C37)", + "numerical_value": 1763, + "description": "Object_Id : 2018-093B, Epoch : 2022-03-10T07:48:19.656864, Mean_Motion : 1.86232066, Eccentricity : 0.0006709, Inclination : 54.3899, Ra_Of_Asc_Node : 235.3459, Arg_Of_Pericenter : 319.1555, Mean_Anomaly : 40.1594, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43707, Element_Set_No : 999, Rev_At_Epoch : 2247, Bstar : 0, Mean_Motion_Dot : 5.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIII-1 (PRN 04)", + "expanded": "GPS BIII-1 (PRN 04)", + "numerical_value": 1764, + "description": "Object_Id : 2018-109A, Epoch : 2022-03-10T14:24:52.946784, Mean_Motion : 2.00566916, Eccentricity : 0.0017754, Inclination : 55.07, Ra_Of_Asc_Node : 153.7963, Arg_Of_Pericenter : 194.0587, Mean_Anomaly : 270.4674, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 43873, Element_Set_No : 999, Rev_At_Epoch : 2379, Bstar : 0, Mean_Motion_Dot : -2.9E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 IGSO-1 (C38)", + "expanded": "BEIDOU-3 IGSO-1 (C38)", + "numerical_value": 1765, + "description": "Object_Id : 2019-023A, Epoch : 2022-03-10T20:38:34.735200, Mean_Motion : 1.00287835, Eccentricity : 0.0020574, Inclination : 56.4176, Ra_Of_Asc_Node : 54.0267, Arg_Of_Pericenter : 205.7255, Mean_Anomaly : 336.9191, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44204, Element_Set_No : 999, Rev_At_Epoch : 1072, Bstar : 0, Mean_Motion_Dot : -1.85E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-2 G8", + "expanded": "BEIDOU-2 G8", + "numerical_value": 1766, + "description": "Object_Id : 2019-027A, Epoch : 2022-03-11T05:37:46.309728, Mean_Motion : 1.00273146, Eccentricity : 0.000507, Inclination : 0.6323, Ra_Of_Asc_Node : 70.4336, Arg_Of_Pericenter : 144.7842, Mean_Anomaly : 182.6045, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44231, Element_Set_No : 999, Rev_At_Epoch : 1044, Bstar : 0, Mean_Motion_Dot : -2.4900000000000003E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2534 (758)", + "expanded": "COSMOS 2534 (758)", + "numerical_value": 1767, + "description": "Object_Id : 2019-030A, Epoch : 2022-03-10T10:16:31.721088, Mean_Motion : 2.13101881, Eccentricity : 0.0010518, Inclination : 64.4569, Ra_Of_Asc_Node : 245.4163, Arg_Of_Pericenter : 298.3327, Mean_Anomaly : 245.1863, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44299, Element_Set_No : 999, Rev_At_Epoch : 2169, Bstar : 0, Mean_Motion_Dot : 7.599999999999999E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 IGSO-2 (C39)", + "expanded": "BEIDOU-3 IGSO-2 (C39)", + "numerical_value": 1768, + "description": "Object_Id : 2019-035A, Epoch : 2022-03-10T11:44:54.541824, Mean_Motion : 1.00283382, Eccentricity : 0.0022569, Inclination : 55.1136, Ra_Of_Asc_Node : 172.6067, Arg_Of_Pericenter : 190.1031, Mean_Anomaly : 100.3321, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44337, Element_Set_No : 999, Rev_At_Epoch : 1005, Bstar : 0, Mean_Motion_Dot : -1.53E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIII-2 (PRN 18)", + "expanded": "GPS BIII-2 (PRN 18)", + "numerical_value": 1769, + "description": "Object_Id : 2019-056A, Epoch : 2022-03-10T16:09:23.406048, Mean_Motion : 2.00570878, Eccentricity : 0.002123, Inclination : 55.6344, Ra_Of_Asc_Node : 32.9777, Arg_Of_Pericenter : 183.5232, Mean_Anomaly : 236.4718, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44506, Element_Set_No : 999, Rev_At_Epoch : 1878, Bstar : 0, Mean_Motion_Dot : -7.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M23 (C45)", + "expanded": "BEIDOU-3 M23 (C45)", + "numerical_value": 1770, + "description": "Object_Id : 2019-061A, Epoch : 2022-03-10T09:32:19.958208, Mean_Motion : 1.86231351, Eccentricity : 0.0008006, Inclination : 54.6163, Ra_Of_Asc_Node : 235.475, Arg_Of_Pericenter : 352.8807, Mean_Anomaly : 7.0807, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44542, Element_Set_No : 999, Rev_At_Epoch : 1674, Bstar : 0, Mean_Motion_Dot : 5.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M24 (C46)", + "expanded": "BEIDOU-3 M24 (C46)", + "numerical_value": 1771, + "description": "Object_Id : 2019-061B, Epoch : 2022-03-10T12:37:17.690016, Mean_Motion : 1.86231569, Eccentricity : 0.0005201, Inclination : 54.614, Ra_Of_Asc_Node : 235.4408, Arg_Of_Pericenter : 352.3367, Mean_Anomaly : 4.9088, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44543, Element_Set_No : 999, Rev_At_Epoch : 1673, Bstar : 0, Mean_Motion_Dot : 5.5E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 IGSO-3", + "expanded": "BEIDOU-3 IGSO-3", + "numerical_value": 1772, + "description": "Object_Id : 2019-073A, Epoch : 2022-03-09T12:48:42.511968, Mean_Motion : 1.00286516, Eccentricity : 0.0020344, Inclination : 57.4247, Ra_Of_Asc_Node : 297.419, Arg_Of_Pericenter : 173.2773, Mean_Anomaly : 7.5534, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44709, Element_Set_No : 999, Rev_At_Epoch : 880, Bstar : 0, Mean_Motion_Dot : -1.5599999999999999E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M21", + "expanded": "BEIDOU-3 M21", + "numerical_value": 1773, + "description": "Object_Id : 2019-078A, Epoch : 2022-03-09T17:06:54.357696, Mean_Motion : 1.86232045, Eccentricity : 0.0007546, Inclination : 55.0041, Ra_Of_Asc_Node : 354.0506, Arg_Of_Pericenter : 2.7109, Mean_Anomaly : 3.1662, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44793, Element_Set_No : 999, Rev_At_Epoch : 1559, Bstar : 0.0001, Mean_Motion_Dot : -1.14E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M22", + "expanded": "BEIDOU-3 M22", + "numerical_value": 1774, + "description": "Object_Id : 2019-078B, Epoch : 2022-03-11T02:19:16.218336, Mean_Motion : 1.8623257899999999, Eccentricity : 0.0005554, Inclination : 54.9778, Ra_Of_Asc_Node : 353.996, Arg_Of_Pericenter : 358.3944, Mean_Anomaly : 126.589, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44794, Element_Set_No : 999, Rev_At_Epoch : 1561, Bstar : 0, Mean_Motion_Dot : -1.1E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2544 (759)", + "expanded": "COSMOS 2544 (759)", + "numerical_value": 1775, + "description": "Object_Id : 2019-088A, Epoch : 2022-03-10T07:23:06.144000, Mean_Motion : 2.1310235, Eccentricity : 0.0013325, Inclination : 64.9301, Ra_Of_Asc_Node : 126.0168, Arg_Of_Pericenter : 259.906, Mean_Anomaly : 176.7279, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44850, Element_Set_No : 999, Rev_At_Epoch : 1746, Bstar : 0, Mean_Motion_Dot : -5E-08, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M19", + "expanded": "BEIDOU-3 M19", + "numerical_value": 1776, + "description": "Object_Id : 2019-090A, Epoch : 2022-03-11T03:04:54.733728, Mean_Motion : 1.86231741, Eccentricity : 0.0018029, Inclination : 55.3561, Ra_Of_Asc_Node : 114.8734, Arg_Of_Pericenter : 268.2238, Mean_Anomaly : 72.5271, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44864, Element_Set_No : 999, Rev_At_Epoch : 1519, Bstar : 0, Mean_Motion_Dot : -1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 M20", + "expanded": "BEIDOU-3 M20", + "numerical_value": 1777, + "description": "Object_Id : 2019-090B, Epoch : 2022-03-11T01:32:08.556288, Mean_Motion : 1.86231668, Eccentricity : 0.0016197, Inclination : 55.3583, Ra_Of_Asc_Node : 114.9071, Arg_Of_Pericenter : 281.045, Mean_Anomaly : 106.3958, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 44865, Element_Set_No : 999, Rev_At_Epoch : 1517, Bstar : 0, Mean_Motion_Dot : -1.1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 G2", + "expanded": "BEIDOU-3 G2", + "numerical_value": 1778, + "description": "Object_Id : 2020-017A, Epoch : 2022-03-10T20:27:46.668672, Mean_Motion : 1.00272948, Eccentricity : 0.0002295, Inclination : 2.1399, Ra_Of_Asc_Node : 347.2795, Arg_Of_Pericenter : 65.5103, Mean_Anomaly : 142.6626, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 45344, Element_Set_No : 999, Rev_At_Epoch : 762, Bstar : 0, Mean_Motion_Dot : -1.42E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "COSMOS 2545 (760)", + "expanded": "COSMOS 2545 (760)", + "numerical_value": 1779, + "description": "Object_Id : 2020-018A, Epoch : 2022-03-10T02:49:12.724896, Mean_Motion : 2.13102618, Eccentricity : 0.0009803, Inclination : 64.9226, Ra_Of_Asc_Node : 6.7398, Arg_Of_Pericenter : 261.1917, Mean_Anomaly : 239.1468, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 45358, Element_Set_No : 999, Rev_At_Epoch : 1541, Bstar : 0, Mean_Motion_Dot : -8.3E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "BEIDOU-3 G3", + "expanded": "BEIDOU-3 G3", + "numerical_value": 1780, + "description": "Object_Id : 2020-040A, Epoch : 2022-03-10T22:19:56.002656, Mean_Motion : 1.00267301, Eccentricity : 0.0007923, Inclination : 1.6673, Ra_Of_Asc_Node : 300.9388, Arg_Of_Pericenter : 348.474, Mean_Anomaly : 324.5934, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 45807, Element_Set_No : 999, Rev_At_Epoch : 644, Bstar : 0, Mean_Motion_Dot : -3.5499999999999995E-06, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIII-3 (PRN 23)", + "expanded": "GPS BIII-3 (PRN 23)", + "numerical_value": 1781, + "description": "Object_Id : 2020-041A, Epoch : 2022-03-10T10:46:15.829248, Mean_Motion : 2.005603, Eccentricity : 0.0019767, Inclination : 55.4476, Ra_Of_Asc_Node : 90.2552, Arg_Of_Pericenter : 177.6947, Mean_Anomaly : 18.8638, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 45854, Element_Set_No : 999, Rev_At_Epoch : 1275, Bstar : 0, Mean_Motion_Dot : -1E-07, Mean_Motion_Ddot : 0" + }, + { + "value": "GPS BIII-4 (PRN 14)", + "expanded": "GPS BIII-4 (PRN 14)", + "numerical_value": 1782, + "description": "Object_Id : 2020-078A, Epoch : 2022-03-10T17:05:08.111616, Mean_Motion : 2.00566305, Eccentricity : 0.0015355, Inclination : 54.6334, Ra_Of_Asc_Node : 274.0992, Arg_Of_Pericenter : 181.4826, Mean_Anomaly : 177.692, Ephemeris_Type : 0, Classification_Type : U, Norad_Cat_Id : 46826, Element_Set_No : 999, Rev_At_Epoch : 1022, Bstar : 0, Mean_Motion_Dot : 3.2999999999999996E-07, Mean_Motion_Ddot : 0" + } + ] + }, + { + "predicate": "Space & Earth Science", + "entry": [ + { + "value": "HST", + "expanded": "HST", + "numerical_value": 1784, + "description": "OBJECT_ID : 1990-037B, EPOCH : 2022-03-10T18:53:56.364288, MEAN_MOTION : 15.10110916, ECCENTRICITY : 0.0002755, INCLINATION : 28.4699, RA_OF_ASC_NODE : 102.3518, ARG_OF_PERICENTER : 57.6101,MEAN_ANOMALY : 106.808, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 20580, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 55128, BSTAR : 0.00010713, MEAN_MOTION_DOT : 1.973E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "POLAR", + "expanded": "POLAR", + "numerical_value": 1785, + "description": "OBJECT_ID : 1996-013A, EPOCH : 2022-03-09T16:12:39.028608, MEAN_MOTION : 1.29846821, ECCENTRICITY : 0.5854789, INCLINATION : 78.7452, RA_OF_ASC_NODE : 242.6143, ARG_OF_PERICENTER : 262.2719, MEAN_ANOMALY : 31.3992, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 23802, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 12457, BSTAR : 0, MEAN_MOTION_DOT : 2.68E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SWAS", + "expanded": "SWAS", + "numerical_value": 1786, + "description": "OBJECT_ID : 1998-071A, EPOCH : 2022-03-10T15:51:02.334816, MEAN_MOTION : 14.94415784, ECCENTRICITY : 0.0005208, INCLINATION : 69.8976, RA_OF_ASC_NODE : 235.0298, ARG_OF_PERICENTER : 123.7032, MEAN_ANOMALY : 236.4622, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 25560, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 26326, BSTAR : 0.00011154, MEAN_MOTION_DOT : 1.113E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CXO", + "expanded": "CXO", + "numerical_value": 1787, + "description": "OBJECT_ID : 1999-040B, EPOCH : 2022-03-13T20:22:27.344640, MEAN_MOTION : 0.37808093, ECCENTRICITY : 0.8708306, INCLINATION : 48.0589, RA_OF_ASC_NODE : 241.6762, ARG_OF_PERICENTER : 230.717, MEAN_ANOMALY : 0.2692, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 25867, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 2259, BSTAR : 0, MEAN_MOTION_DOT : 9.76E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "XMM-NEWTON", + "expanded": "XMM-NEWTON", + "numerical_value": 1788, + "description": "OBJECT_ID : 1999-066A, EPOCH : 2022-03-07T18:39:49.141440, MEAN_MOTION : 0.50133382, ECCENTRICITY : 0.6188386, INCLINATION : 70.3314, RA_OF_ASC_NODE : 306.6301, ARG_OF_PERICENTER : 87.8642, MEAN_ANOMALY : 359.8725, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 25989, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 2953, BSTAR : 0, MEAN_MOTION_DOT : 8E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "TERRA", + "expanded": "TERRA", + "numerical_value": 1789, + "description": "OBJECT_ID : 1999-068A, EPOCH : 2022-03-10T16:07:34.282848, MEAN_MOTION : 14.57140303, ECCENTRICITY : 0.0001302, INCLINATION : 98.146, RA_OF_ASC_NODE : 143.82, ARG_OF_PERICENTER : 97.7019, MEAN_ANOMALY : 18.9228, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 25994, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 18211, BSTAR : 5.9242000000000006E-05, MEAN_MOTION_DOT : 2.22E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CLUSTER II-FM7 (SAMBA)", + "expanded": "CLUSTER II-FM7 (SAMBA)", + "numerical_value": 1790, + "description": "OBJECT_ID : 2000-041A, EPOCH : 2022-03-12T15:05:05.738496, MEAN_MOTION : 0.4418891, ECCENTRICITY : 0.5437408, INCLINATION : 133.765, RA_OF_ASC_NODE : 346.8402, ARG_OF_PERICENTER : 197.5734, MEAN_ANOMALY : 0.0324, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26410, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 2514, BSTAR : 0, MEAN_MOTION_DOT : -2.18E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CLUSTER II-FM6 (SALSA)", + "expanded": "CLUSTER II-FM6 (SALSA)", + "numerical_value": 1791, + "description": "OBJECT_ID : 2000-041B, EPOCH : 2022-03-12T14:34:52.129056, MEAN_MOTION : 0.4421853, ECCENTRICITY : 0.705397, INCLINATION : 135.5319, RA_OF_ASC_NODE : 349.7658, ARG_OF_PERICENTER : 202.1376, MEAN_ANOMALY : 359.9978, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26411, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 2445, BSTAR : 0, MEAN_MOTION_DOT : -3.06E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CLUSTER II-FM5 (RUMBA)", + "expanded": "CLUSTER II-FM5 (RUMBA)", + "numerical_value": 1792, + "description": "OBJECT_ID : 2000-045A, EPOCH : 2022-03-12T14:41:43.694592, MEAN_MOTION : 0.44218304, ECCENTRICITY : 0.657752, INCLINATION : 139.1126, RA_OF_ASC_NODE : 349.9995, ARG_OF_PERICENTER : 202.8337, MEAN_ANOMALY : 0.1274, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26463, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 2572, BSTAR : 0, MEAN_MOTION_DOT : -1.99E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CLUSTER II-FM8 (TANGO)", + "expanded": "CLUSTER II-FM8 (TANGO)", + "numerical_value": 1793, + "description": "OBJECT_ID : 2000-045B, EPOCH : 2022-03-12T14:46:43.506912, MEAN_MOTION : 0.44220396, ECCENTRICITY : 0.5434723, INCLINATION : 133.7575, RA_OF_ASC_NODE : 346.8328, ARG_OF_PERICENTER : 197.565, MEAN_ANOMALY : 0.0701, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26464, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 1339, BSTAR : 0, MEAN_MOTION_DOT : -2.18E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "ODIN", + "expanded": "ODIN", + "numerical_value": 1794, + "description": "OBJECT_ID : 2001-007A, EPOCH : 2022-03-11T02:05:46.408416, MEAN_MOTION : 15.09187244, ECCENTRICITY : 0.000873, INCLINATION : 97.528, RA_OF_ASC_NODE : 86.6465, ARG_OF_PERICENTER : 266.0508, MEAN_ANOMALY : 93.9723, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26702, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 15204, BSTAR : 0.00014621, MEAN_MOTION_DOT : 2.262E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "TIMED", + "expanded": "TIMED", + "numerical_value": 1795, + "description": "OBJECT_ID : 2001-055B, EPOCH : 2022-03-10T20:27:55.227456, MEAN_MOTION : 14.88491746, ECCENTRICITY : 0.0001673, INCLINATION : 74.0713, RA_OF_ASC_NODE : 116.0544, ARG_OF_PERICENTER : 309.4295, MEAN_ANOMALY : 50.6737, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26998, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 9833, BSTAR : 6.506200000000001E-05, MEAN_MOTION_DOT : 5.67E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "RHESSI", + "expanded": "RHESSI", + "numerical_value": 1796, + "description": "OBJECT_ID : 2002-004A, EPOCH : 2022-03-10T19:24:14.203008, MEAN_MOTION : 15.39151788, ECCENTRICITY : 0.0008475, INCLINATION : 38.0317, RA_OF_ASC_NODE : 255.9619, ARG_OF_PERICENTER : 102.6643, MEAN_ANOMALY : 257.5078, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27370, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 11138, BSTAR : 0.00038182, MEAN_MOTION_DOT : 0.00015095, MEAN_MOTION_DDOT : 0" + }, + { + "value": "INTEGRAL", + "expanded": "INTEGRAL", + "numerical_value": 1797, + "description": "OBJECT_ID : 2002-048A, EPOCH : 2022-03-10T07:48:58.600800, MEAN_MOTION : 0.37586706, ECCENTRICITY : 0.8943961, INCLINATION : 72.4286, RA_OF_ASC_NODE : 65.6477, ARG_OF_PERICENTER : 299.5556, MEAN_ANOMALY : 52.8475, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27540, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 2077, BSTAR : 0, MEAN_MOTION_DOT : -2.87E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CORIOLIS", + "expanded": "CORIOLIS", + "numerical_value": 1798, + "description": "OBJECT_ID : 2003-001A, EPOCH : 2022-03-10T22:58:51.489696, MEAN_MOTION : 14.19107477, ECCENTRICITY : 0.0014573, INCLINATION : 98.7211, RA_OF_ASC_NODE : 80.5094, ARG_OF_PERICENTER : 25.1187, MEAN_ANOMALY : 29.9262, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27640, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 99300, BSTAR : 5.0977E-05, MEAN_MOTION_DOT : 6.3E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SORCE", + "expanded": "SORCE", + "numerical_value": 1799, + "description": "OBJECT_ID : 2003-004A, EPOCH : 2022-03-10T20:32:10.983552, MEAN_MOTION : 14.89614207, ECCENTRICITY : 0.0022528, INCLINATION : 39.9963, RA_OF_ASC_NODE : 47.9017, ARG_OF_PERICENTER : 142.2784, MEAN_ANOMALY : 217.9589, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27651, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 3836, BSTAR : 0.00014391, MEAN_MOTION_DOT : 1.267E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "MOST", + "expanded": "MOST", + "numerical_value": 1800, + "description": "OBJECT_ID : 2003-031D, EPOCH : 2022-03-10T21:28:23.020896, MEAN_MOTION : 14.20665045, ECCENTRICITY : 0.0011067, INCLINATION : 98.7105, RA_OF_ASC_NODE : 78.9364, ARG_OF_PERICENTER : 74.4117, MEAN_ANOMALY : 285.8281, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27843, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 96925, BSTAR : 4.3976E-05, MEAN_MOTION_DOT : 5.1E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SCISAT 1", + "expanded": "SCISAT 1", + "numerical_value": 1801, + "description": "OBJECT_ID : 2003-036A, EPOCH : 2022-03-10T20:35:26.570688, MEAN_MOTION : 14.7745526, ECCENTRICITY : 0.0006442, INCLINATION : 73.9351, RA_OF_ASC_NODE : 18.7402, ARG_OF_PERICENTER : 78.8296, MEAN_ANOMALY : 281.3602, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27858, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 87, BSTAR : 7.471700000000001E-05, MEAN_MOTION_DOT : 4.97E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SWIFT", + "expanded": "SWIFT", + "numerical_value": 1802, + "description": "OBJECT_ID : 2004-047A, EPOCH : 2022-03-10T22:14:55.032576, MEAN_MOTION : 15.05702172, ECCENTRICITY : 0.0010877, INCLINATION : 20.5564, RA_OF_ASC_NODE : 281.6931, ARG_OF_PERICENTER : 128.734, MEAN_ANOMALY : 231.4067, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 28485, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 94867, BSTAR : 0.00021775, MEAN_MOTION_DOT : 3.6950000000000004E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CLOUDSAT", + "expanded": "CLOUDSAT", + "numerical_value": 1803, + "description": "OBJECT_ID : 2006-016A, EPOCH : 2022-03-10T21:50:37.725504, MEAN_MOTION : 14.62817039, ECCENTRICITY : 0.0001812, INCLINATION : 98.3168, RA_OF_ASC_NODE : 29.2164, ARG_OF_PERICENTER : 239.8888, MEAN_ANOMALY : 120.2134, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 29107, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 84462, BSTAR : 6.4763E-05, MEAN_MOTION_DOT : 2.81999999999999E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CALIPSO", + "expanded": "CALIPSO", + "numerical_value": 1804, + "description": "OBJECT_ID : 2006-016B, EPOCH : 2022-03-10T21:43:08.768640, MEAN_MOTION : 14.62748271, ECCENTRICITY : 0.0001329, INCLINATION : 98.3135, RA_OF_ASC_NODE : 28.8228, ARG_OF_PERICENTER : 78.6238, MEAN_ANOMALY : 281.5112, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 29108, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 84461, BSTAR : 0.00015596, MEAN_MOTION_DOT : 7.46E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "HINODE (SOLAR-B)", + "expanded": "HINODE (SOLAR-B)", + "numerical_value": 1805, + "description": "OBJECT_ID : 2006-041A, EPOCH : 2022-03-10T19:12:37.395648, MEAN_MOTION : 14.64705187, ECCENTRICITY : 0.0018763, INCLINATION : 98.1278, RA_OF_ASC_NODE : 86.1921, ARG_OF_PERICENTER : 172.6217, MEAN_ANOMALY : 187.5265, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 29479, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 82631, BSTAR : 7.200300000000001E-05, MEAN_MOTION_DOT : 3.35999999999999E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SJ-6C", + "expanded": "SJ-6C", + "numerical_value": 1806, + "description": "OBJECT_ID : 2006-046A, EPOCH : 2022-03-11T02:15:10.770624, MEAN_MOTION : 14.9562418, ECCENTRICITY : 0.0006396, INCLINATION : 97.787, RA_OF_ASC_NODE : 91.7486, ARG_OF_PERICENTER : 89.7368, MEAN_ANOMALY : 270.4573, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 29505, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 83799, BSTAR : 0.00021952, MEAN_MOTION_DOT : 2.3810000000000004E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SJ-6D", + "expanded": "SJ-6D", + "numerical_value": 1807, + "description": "OBJECT_ID : 2006-046B, EPOCH : 2022-03-11T03:39:58.762944, MEAN_MOTION : 14.93787696, ECCENTRICITY : 0.0002778, INCLINATION : 97.8067, RA_OF_ASC_NODE : 92.0062, ARG_OF_PERICENTER : 145.7646, MEAN_ANOMALY : 214.3756, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 29506, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 83746, BSTAR : 0.00015534, MEAN_MOTION_DOT : 1.59E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "AGILE", + "expanded": "AGILE", + "numerical_value": 1808, + "description": "OBJECT_ID : 2007-013A, EPOCH : 2022-03-07T09:32:29.731776, MEAN_MOTION : 15.35676145, ECCENTRICITY : 0.0011401, INCLINATION : 2.4676, RA_OF_ASC_NODE : 315.5755, ARG_OF_PERICENTER : 287.1018, MEAN_ANOMALY : 72.7787, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 31135, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 46122, BSTAR : 0.00025745, MEAN_MOTION_DOT : 0.00010488, MEAN_MOTION_DDOT : 0" + }, + { + "value": "AIM", + "expanded": "AIM", + "numerical_value": 1809, + "description": "OBJECT_ID : 2007-015A, EPOCH : 2022-03-10T16:59:35.083680, MEAN_MOTION : 15.15985393, ECCENTRICITY : 0.0005321, INCLINATION : 97.8573, RA_OF_ASC_NODE : 345.3537, ARG_OF_PERICENTER : 15.496, MEAN_ANOMALY : 344.6433, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 31304, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 81622, BSTAR : 0.00035858, MEAN_MOTION_DOT : 6.816E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "FGRST (GLAST)", + "expanded": "FGRST (GLAST)", + "numerical_value": 1810, + "description": "OBJECT_ID : 2008-029A, EPOCH : 2022-03-10T20:05:21.711840, MEAN_MOTION : 15.11860658, ECCENTRICITY : 0.0012491, INCLINATION : 25.5824, RA_OF_ASC_NODE : 119.4655, ARG_OF_PERICENTER : 117.0615, MEAN_ANOMALY : 243.1196, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 33053, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 75875, BSTAR : 8.0023E-05, MEAN_MOTION_DOT : 1.705E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "WISE", + "expanded": "WISE", + "numerical_value": 1811, + "description": "OBJECT_ID : 2009-071A, EPOCH : 2022-03-10T19:49:26.354208, MEAN_MOTION : 15.32238288, ECCENTRICITY : 9.79E-05, INCLINATION : 97.254, RA_OF_ASC_NODE : 106.2408, ARG_OF_PERICENTER : 337.321, MEAN_ANOMALY : 22.7989, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 36119, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 68039, BSTAR : 0.00017501, MEAN_MOTION_DOT : 5.3710000000000006E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SDO", + "expanded": "SDO", + "numerical_value": 1812, + "description": "OBJECT_ID : 2010-005A, EPOCH : 2022-03-08T15:16:12.876960, MEAN_MOTION : 1.00275792, ECCENTRICITY : 0.0001859, INCLINATION : 31.4586, RA_OF_ASC_NODE : 110.8551, ARG_OF_PERICENTER : 238.8497, MEAN_ANOMALY : 303.6009, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 36395, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 4440, BSTAR : 0, MEAN_MOTION_DOT : -7.3E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CRYOSAT 2", + "expanded": "CRYOSAT 2", + "numerical_value": 1813, + "description": "OBJECT_ID : 2010-013A, EPOCH : 2022-03-10T21:43:55.509312, MEAN_MOTION : 14.51905198, ECCENTRICITY : 0.0004388, INCLINATION : 92.0231, RA_OF_ASC_NODE : 260.199, ARG_OF_PERICENTER : 199.9642, MEAN_ANOMALY : 160.1394, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 36508, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 63183, BSTAR : 3.3885000000000005E-05, MEAN_MOTION_DOT : 1.39E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "X-SAT", + "expanded": "X-SAT", + "numerical_value": 1814, + "description": "OBJECT_ID : 2011-015C, EPOCH : 2022-03-11T02:18:04.523616, MEAN_MOTION : 14.24406014, ECCENTRICITY : 0.0013052, INCLINATION : 98.349, RA_OF_ASC_NODE : 108.2952, ARG_OF_PERICENTER : 238.0939, MEAN_ANOMALY : 121.8971, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 37389, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 56620, BSTAR : 2.6911000000000004E-05, MEAN_MOTION_DOT : 2.1E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "GCOM-W1 (SHIZUKU)", + "expanded": "GCOM-W1 (SHIZUKU)", + "numerical_value": 1815, + "description": "OBJECT_ID : 2012-025A, EPOCH : 2022-03-10T19:42:02.399904, MEAN_MOTION : 14.57101481, ECCENTRICITY : 0.0001545, INCLINATION : 98.194, RA_OF_ASC_NODE : 11.8541, ARG_OF_PERICENTER : 111.6463, MEAN_ANOMALY : 301.311, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 38337, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 52195, BSTAR : 8.8234E-05, MEAN_MOTION_DOT : 3.5199999999999896E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "NUSTAR", + "expanded": "NUSTAR", + "numerical_value": 1816, + "description": "OBJECT_ID : 2012-031A, EPOCH : 2022-03-09T23:56:09.328416, MEAN_MOTION : 14.88930337, ECCENTRICITY : 0.0011799, INCLINATION : 6.0277, RA_OF_ASC_NODE : 7.1682, ARG_OF_PERICENTER : 339.5216, MEAN_ANOMALY : 20.444, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 38358, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 53000, BSTAR : 0.00017513, MEAN_MOTION_DOT : 2.4020000000000004E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "NEOSSAT", + "expanded": "NEOSSAT", + "numerical_value": 1817, + "description": "OBJECT_ID : 2013-009D, EPOCH : 2022-03-10T20:10:53.183712, MEAN_MOTION : 14.34624197, ECCENTRICITY : 0.0010763, INCLINATION : 98.428, RA_OF_ASC_NODE : 268.5778, ARG_OF_PERICENTER : 205.9435, MEAN_ANOMALY : 154.1212, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39089, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 47307, BSTAR : 6.240500000000001E-05, MEAN_MOTION_DOT : 1.34E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "BRITE-AUSTRIA", + "expanded": "BRITE-AUSTRIA", + "numerical_value": 1818, + "description": "OBJECT_ID : 2013-009F, EPOCH : 2022-03-11T03:01:50.563488, MEAN_MOTION : 14.35235317, ECCENTRICITY : 0.0009936, INCLINATION : 98.412, RA_OF_ASC_NODE : 269.9452, ARG_OF_PERICENTER : 205.5049, MEAN_ANOMALY : 154.5648, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39091, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 47333, BSTAR : 5.5412000000000004E-05, MEAN_MOTION_DOT : 1.16E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "IRIS", + "expanded": "IRIS", + "numerical_value": 1819, + "description": "OBJECT_ID : 2013-033A, EPOCH : 2022-03-11T02:08:11.591520, MEAN_MOTION : 14.79061183, ECCENTRICITY : 0.0027226, INCLINATION : 97.9688, RA_OF_ASC_NODE : 256.8127, ARG_OF_PERICENTER : 349.9719, MEAN_ANOMALY : 10.0945, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39197, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 46945, BSTAR : 9.59E-05, MEAN_MOTION_DOT : 6.599999999999989E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "HISAKI (SPRINT-A)", + "expanded": "HISAKI (SPRINT-A)", + "numerical_value": 1820, + "description": "OBJECT_ID : 2013-049A, EPOCH : 2022-03-10T17:51:49.202208, MEAN_MOTION : 13.55264561, ECCENTRICITY : 0.0137365, INCLINATION : 29.7189, RA_OF_ASC_NODE : 226.3671, ARG_OF_PERICENTER : 337.1448, MEAN_ANOMALY : 22.3055, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39253, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 41970, BSTAR : 0.00011275, MEAN_MOTION_DOT : 1.47E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CASSIOPE", + "expanded": "CASSIOPE", + "numerical_value": 1821, + "description": "OBJECT_ID : 2013-055A, EPOCH : 2022-03-11T03:40:53.673600, MEAN_MOTION : 14.36140333, ECCENTRICITY : 0.063189, INCLINATION : 80.9696, RA_OF_ASC_NODE : 11.3815, ARG_OF_PERICENTER : 249.0232, MEAN_ANOMALY : 104.2263, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39265, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 43819, BSTAR : 0.00026369, MEAN_MOTION_DOT : 9.592000000000002E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "STSAT-3", + "expanded": "STSAT-3", + "numerical_value": 1822, + "description": "OBJECT_ID : 2013-066G, EPOCH : 2022-03-10T17:22:33.167136, MEAN_MOTION : 14.9020101, ECCENTRICITY : 0.0021141, INCLINATION : 97.4734, RA_OF_ASC_NODE : 80.2009, ARG_OF_PERICENTER : 249.5475, MEAN_ANOMALY : 110.3444, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39422, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 45113, BSTAR : 0.00015762, MEAN_MOTION_DOT : 1.481E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SWARM B", + "expanded": "SWARM B", + "numerical_value": 1823, + "description": "OBJECT_ID : 2013-067A, EPOCH : 2022-03-10T21:43:12.239328, MEAN_MOTION : 15.22516459, ECCENTRICITY : 0.0002459, INCLINATION : 87.7446, RA_OF_ASC_NODE : 90.8332, ARG_OF_PERICENTER : 64.3404, MEAN_ANOMALY : 295.8095, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39451, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 44595, BSTAR : 8.034200000000001E-05, MEAN_MOTION_DOT : 1.8950000000000003E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SWARM A", + "expanded": "SWARM A", + "numerical_value": 1824, + "description": "OBJECT_ID : 2013-067B, EPOCH : 2022-03-10T22:07:02.487648, MEAN_MOTION : 15.47372223, ECCENTRICITY : 0.0003403, INCLINATION : 87.3552, RA_OF_ASC_NODE : 260.4516, ARG_OF_PERICENTER : 83.6739, MEAN_ANOMALY : 276.4908, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39452, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 46671, BSTAR : 0.00013691, MEAN_MOTION_DOT : 7.038000000000001E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SWARM C", + "expanded": "SWARM C", + "numerical_value": 1825, + "description": "OBJECT_ID : 2013-067C, EPOCH : 2022-03-10T22:06:55.312992, MEAN_MOTION : 15.47372774, ECCENTRICITY : 0.0003403, INCLINATION : 87.3405, RA_OF_ASC_NODE : 260.1234, ARG_OF_PERICENTER : 83.6971, MEAN_ANOMALY : 276.4675, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39453, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 46667, BSTAR : 0.00013608, MEAN_MOTION_DOT : 6.996000000000001E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "BRITE-CA1 (TORONTO)", + "expanded": "BRITE-CA1 (TORONTO)", + "numerical_value": 1826, + "description": "OBJECT_ID : 2014-033L, EPOCH : 2022-03-10T23:48:27.723456, MEAN_MOTION : 14.66884369, ECCENTRICITY : 0.0086308, INCLINATION : 97.7645, RA_OF_ASC_NODE : 234.0406, ARG_OF_PERICENTER : 216.8424, MEAN_ANOMALY : 142.6832, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40020, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 41333, BSTAR : 0.00013194, MEAN_MOTION_DOT : 7.299999999999989E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "OCO 2", + "expanded": "OCO 2", + "numerical_value": 1827, + "description": "OBJECT_ID : 2014-035A, EPOCH : 2022-03-10T22:40:43.838112, MEAN_MOTION : 14.57124049, ECCENTRICITY : 0.0001394, INCLINATION : 98.1931, RA_OF_ASC_NODE : 12.7169, ARG_OF_PERICENTER : 81.1093, MEAN_ANOMALY : 279.0263, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40059, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 40898, BSTAR : 7.816500000000001E-05, MEAN_MOTION_DOT : 3.07E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "BRITE-PL2 (HEWELIUSZ)", + "expanded": "BRITE-PL2 (HEWELIUSZ)", + "numerical_value": 1828, + "description": "OBJECT_ID : 2014-049B, EPOCH : 2022-03-10T19:59:22.150464, MEAN_MOTION : 14.84879003, ECCENTRICITY : 0.0016859, INCLINATION : 97.8808, RA_OF_ASC_NODE : 166.5176, ARG_OF_PERICENTER : 200.7626, MEAN_ANOMALY : 159.2906, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40119, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 40937, BSTAR : 0.0001082, MEAN_MOTION_DOT : 8.68E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "RESURS P2", + "expanded": "RESURS P2", + "numerical_value": 1829, + "description": "OBJECT_ID : 2014-087A, EPOCH : 2022-03-11T01:22:54.054048, MEAN_MOTION : 15.35470747, ECCENTRICITY : 0.001116, INCLINATION : 97.2104, RA_OF_ASC_NODE : 156.9982, ARG_OF_PERICENTER : 84.6975, MEAN_ANOMALY : 36.6791, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40360, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 40315, BSTAR : 0.00014435, MEAN_MOTION_DOT : 4.9050000000000006E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "MMS 1", + "expanded": "MMS 1", + "numerical_value": 1830, + "description": "OBJECT_ID : 2015-011A, EPOCH : 2022-03-08T03:00:00.000000, MEAN_MOTION : 0.2845047, ECCENTRICITY : 0.8570985, INCLINATION : 33.0277, RA_OF_ASC_NODE : 109.4574, ARG_OF_PERICENTER : 46.2931, MEAN_ANOMALY : 172.1023, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40482, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 1301, BSTAR : 0, MEAN_MOTION_DOT : -2.004E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "MMS 2", + "expanded": "MMS 2", + "numerical_value": 1831, + "description": "OBJECT_ID : 2015-011B, EPOCH : 2022-03-08T03:00:00.000000, MEAN_MOTION : 0.28450433, ECCENTRICITY : 0.8570419, INCLINATION : 33.0259, RA_OF_ASC_NODE : 109.4605, ARG_OF_PERICENTER : 46.299, MEAN_ANOMALY : 172.0703, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40483, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 1307, BSTAR : 0, MEAN_MOTION_DOT : -2.004E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "MMS 3", + "expanded": "MMS 3", + "numerical_value": 1832, + "description": "OBJECT_ID : 2015-011C, EPOCH : 2022-03-08T03:00:00.000000, MEAN_MOTION : 0.28449431, ECCENTRICITY : 0.8569805, INCLINATION : 33.031, RA_OF_ASC_NODE : 109.4378, ARG_OF_PERICENTER : 46.3068, MEAN_ANOMALY : 172.0762, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40484, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 1275, BSTAR : 0, MEAN_MOTION_DOT : -2.0030000000000003E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "MMS 4", + "expanded": "MMS 4", + "numerical_value": 1833, + "description": "OBJECT_ID : 2015-011D, EPOCH : 2022-03-08T03:00:00.000000, MEAN_MOTION : 0.28450434, ECCENTRICITY : 0.8569571, INCLINATION : 33.0281, RA_OF_ASC_NODE : 109.4599, ARG_OF_PERICENTER : 46.2911, MEAN_ANOMALY : 172.0937, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40485, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 1296, BSTAR : 0, MEAN_MOTION_DOT : -2.0030000000000003E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "ASTROSAT", + "expanded": "ASTROSAT", + "numerical_value": 1834, + "description": "OBJECT_ID : 2015-052A, EPOCH : 2022-03-07T06:38:16.162944, MEAN_MOTION : 14.7651199, ECCENTRICITY : 0.0008265, INCLINATION : 5.9957, RA_OF_ASC_NODE : 186.8502, ARG_OF_PERICENTER : 153.327, MEAN_ANOMALY : 206.7283, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40930, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 34802, BSTAR : 9.441200000000002E-05, MEAN_MOTION_DOT : 1.3100000000000002E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "DAMPE", + "expanded": "DAMPE", + "numerical_value": 1835, + "description": "OBJECT_ID : 2015-078A, EPOCH : 2022-03-11T03:12:49.282272, MEAN_MOTION : 15.2422869, ECCENTRICITY : 0.0013309, INCLINATION : 97.3724, RA_OF_ASC_NODE : 62.4507, ARG_OF_PERICENTER : 178.8217, MEAN_ANOMALY : 251.5798, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 41173, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 34660, BSTAR : 3.5708000000000004E-05, MEAN_MOTION_DOT : 8.01E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "PISAT", + "expanded": "PISAT", + "numerical_value": 1836, + "description": "OBJECT_ID : 2016-059B, EPOCH : 2022-03-10T20:19:24.017664, MEAN_MOTION : 14.63771924, ECCENTRICITY : 0.0033077, INCLINATION : 97.9304, RA_OF_ASC_NODE : 116.9761, ARG_OF_PERICENTER : 120.2987, MEAN_ANOMALY : 240.1496, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 41784, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 29126, BSTAR : 0.00010175, MEAN_MOTION_DOT : 4.88E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "HXMT (HUIYAN)", + "expanded": "HXMT (HUIYAN)", + "numerical_value": 1837, + "description": "OBJECT_ID : 2017-034A, EPOCH : 2022-03-11T00:14:37.730688, MEAN_MOTION : 15.09813547, ECCENTRICITY : 0.0008355, INCLINATION : 43.0163, RA_OF_ASC_NODE : 169.4825, ARG_OF_PERICENTER : 13.3259, MEAN_ANOMALY : 155.3773, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 42758, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 26129, BSTAR : 0.00018441, MEAN_MOTION_DOT : 2.8150000000000003E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "FLYING LAPTOP", + "expanded": "FLYING LAPTOP", + "numerical_value": 1838, + "description": "OBJECT_ID : 2017-042G, EPOCH : 2022-03-11T01:19:16.233600, MEAN_MOTION : 14.91554057, ECCENTRICITY : 0.0013614, INCLINATION : 97.4357, RA_OF_ASC_NODE : 290.1688, ARG_OF_PERICENTER : 343.5743, MEAN_ANOMALY : 16.5009, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 42831, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 25342, BSTAR : 6.7197E-05, MEAN_MOTION_DOT : 6.22E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "PICSAT", + "expanded": "PICSAT", + "numerical_value": 1839, + "description": "OBJECT_ID : 2018-004X, EPOCH : 2022-03-10T17:36:39.458592, MEAN_MOTION : 15.28472579, ECCENTRICITY : 0.0007912, INCLINATION : 97.38, RA_OF_ASC_NODE : 146.8368, ARG_OF_PERICENTER : 357.7008, MEAN_ANOMALY : 2.4194, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 43132, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 23131, BSTAR : 0.00036656, MEAN_MOTION_DOT : 0.00010096, MEAN_MOTION_DDOT : 0" + }, + { + "value": "ZHANGZHENG-1 (CSES)", + "expanded": "ZHANGZHENG-1 (CSES)", + "numerical_value": 1840, + "description": "OBJECT_ID : 2018-015C, EPOCH : 2022-03-11T02:53:30.101856, MEAN_MOTION : 15.20625595, ECCENTRICITY : 0.0011618, INCLINATION : 97.5064, RA_OF_ASC_NODE : 201.1142, ARG_OF_PERICENTER : 88.7855, MEAN_ANOMALY : 83.7973, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 43194, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 22767, BSTAR : 0.00031474, MEAN_MOTION_DOT : 6.846E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "ICON", + "expanded": "ICON", + "numerical_value": 1841, + "description": "OBJECT_ID : 2019-068A, EPOCH : 2022-03-10T16:19:20.469792, MEAN_MOTION : 14.92384933, ECCENTRICITY : 0.0018722, INCLINATION : 26.988, RA_OF_ASC_NODE : 233.9572, ARG_OF_PERICENTER : 352.4071, MEAN_ANOMALY : 7.6202, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 44628, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 13179, BSTAR : 0.00017741, MEAN_MOTION_DOT : 2.0670000000000004E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SALSAT", + "expanded": "SALSAT", + "numerical_value": 1842, + "description": "OBJECT_ID : 2020-068K, EPOCH : 2022-03-10T18:43:06.176640, MEAN_MOTION : 15.03973345, ECCENTRICITY : 0.0015499, INCLINATION : 97.7206, RA_OF_ASC_NODE : 11.1474, ARG_OF_PERICENTER : 250.1807, MEAN_ANOMALY : 109.7747, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 46495, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 7935, BSTAR : 0.0002001, MEAN_MOTION_DOT : 2.7060000000000002E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "IXPE", + "expanded": "IXPE", + "numerical_value": 1843, + "description": "OBJECT_ID : 2021-121A, EPOCH : 2022-03-07T02:54:06.685344, MEAN_MOTION : 14.90931885, ECCENTRICITY : 0.0011319, INCLINATION : 0.2312, RA_OF_ASC_NODE : 53.4729, ARG_OF_PERICENTER : 230.6025, MEAN_ANOMALY : 75.7991, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 49954, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 1312, BSTAR : 0.0001738, MEAN_MOTION_DOT : 2.5240000000000002E-05, MEAN_MOTION_DDOT : 0" + } + ] + }, + { + "predicate": "Geodetic", + "entry": [ + { + "value": "STARLETTE", + "expanded": "STARLETTE", + "numerical_value": 1844, + "description": "OBJECT_ID : 1975-010A, EPOCH : 2022-03-10T20:39:17.185248, MEAN_MOTION : 13.82311134, ECCENTRICITY : 0.020572, INCLINATION : 49.824, RA_OF_ASC_NODE : 139.3503, ARG_OF_PERICENTER : 311.8942, MEAN_ANOMALY : 46.4563, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 7646, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 37884, BSTAR : 6.0853E-07, MEAN_MOTION_DOT : -1.4099999999999998E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "LAGEOS 1", + "expanded": "LAGEOS 1", + "numerical_value": 1845, + "description": "OBJECT_ID : 1976-039A, EPOCH : 2022-03-10T16:42:34.320384, MEAN_MOTION : 6.38665071, ECCENTRICITY : 0.0045079, INCLINATION : 109.8625, RA_OF_ASC_NODE : 5.1595, ARG_OF_PERICENTER : 275.9061, MEAN_ANOMALY : 343.8535, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 8820, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 81354, BSTAR : 0, MEAN_MOTION_DOT : -1.2E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "AJISAI (EGS)", + "expanded": "AJISAI (EGS)", + "numerical_value": 1846, + "description": "OBJECT_ID : 1986-061A, EPOCH : 2022-03-10T21:43:19.807104, MEAN_MOTION : 12.44495729, ECCENTRICITY : 0.0011371, INCLINATION : 50.0072, RA_OF_ASC_NODE : 262.0634, ARG_OF_PERICENTER : 170.4346, MEAN_ANOMALY : 355.5631, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 16908, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 28622, BSTAR : 0.00012375, MEAN_MOTION_DOT : -8E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "COSMOS 1989 (ETALON 1)", + "expanded": "COSMOS 1989 (ETALON 1)", + "numerical_value": 1847, + "description": "OBJECT_ID : 1989-001C, EPOCH : 2022-03-10T16:47:47.295744, MEAN_MOTION : 2.13156391, ECCENTRICITY : 0.0023648, INCLINATION : 64.2786, RA_OF_ASC_NODE : 125.7835, ARG_OF_PERICENTER : 212.9798, MEAN_ANOMALY : 62.4885, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 19751, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 25819, BSTAR : 0, MEAN_MOTION_DOT : -3.0000000000000004E-08, MEAN_MOTION_DDOT : 0" + }, + { + "value": "COSMOS 2024 (ETALON 2)", + "expanded": "COSMOS 2024 (ETALON 2)", + "numerical_value": 1848, + "description": "OBJECT_ID : 1989-039C, EPOCH : 2022-03-10T16:22:37.561152, MEAN_MOTION : 2.13204376, ECCENTRICITY : 0.0018379, INCLINATION : 65.5489, RA_OF_ASC_NODE : 3.7304, ARG_OF_PERICENTER : 219.2443, MEAN_ANOMALY : 296.1421, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 20026, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 25525, BSTAR : 0, MEAN_MOTION_DOT : -8.4E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "LAGEOS 2", + "expanded": "LAGEOS 2", + "numerical_value": 1849, + "description": "OBJECT_ID : 1992-070B, EPOCH : 2022-03-10T16:36:43.919136, MEAN_MOTION : 6.47293912, ECCENTRICITY : 0.0137715, INCLINATION : 52.6457, RA_OF_ASC_NODE : 172.22, ARG_OF_PERICENTER : 225.6394, MEAN_ANOMALY : 77.1354, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 22195, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 69445, BSTAR : 0, MEAN_MOTION_DOT : -9E-08, MEAN_MOTION_DDOT : 0" + }, + { + "value": "STELLA", + "expanded": "STELLA", + "numerical_value": 1850, + "description": "OBJECT_ID : 1993-061B, EPOCH : 2022-03-10T18:31:41.135232, MEAN_MOTION : 14.27388231, ECCENTRICITY : 0.0007425, INCLINATION : 98.9729, RA_OF_ASC_NODE : 88.1505, ARG_OF_PERICENTER : 82.6347, MEAN_ANOMALY : 332.363, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 22824, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 48230, BSTAR : 3.9198E-06, MEAN_MOTION_DOT : -3.7E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "LARES", + "expanded": "LARES", + "numerical_value": 1851, + "description": "OBJECT_ID : 2012-006A, EPOCH : 2022-03-10T12:25:51.717216, MEAN_MOTION : 12.5493149, ECCENTRICITY : 0.000641, INCLINATION : 69.4913, RA_OF_ASC_NODE : 76.2958, ARG_OF_PERICENTER : 71.2218, MEAN_ANOMALY : 288.9516, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 38077, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 46149, BSTAR : 0.00011755, MEAN_MOTION_DOT : -1.8999999999999998E-07, MEAN_MOTION_DDOT : 0" + } + ] + }, + { + "predicate": "Engineering", + "entry": [ + { + "value": "PROBA-1", + "expanded": "PROBA-1", + "numerical_value": 1852, + "description": "OBJECT_ID : 2001-049B, EPOCH : 2022-03-11T02:54:22.003200, MEAN_MOTION : 14.96048451, ECCENTRICITY : 0.0070798, INCLINATION : 97.8103, RA_OF_ASC_NODE : 30.1441, ARG_OF_PERICENTER : 313.3801, MEAN_ANOMALY : 46.1516, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26958, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 10977, BSTAR : 0.00018156, MEAN_MOTION_DOT : 2.0790000000000003E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "BIRD 2", + "expanded": "BIRD 2", + "numerical_value": 1853, + "description": "OBJECT_ID : 2001-049C, EPOCH : 2022-03-10T19:20:35.992032, MEAN_MOTION : 15.41631212, ECCENTRICITY : 0.0007267, INCLINATION : 97.7646, RA_OF_ASC_NODE : 155.1455, ARG_OF_PERICENTER : 16.3375, MEAN_ANOMALY : 343.8103, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 26959, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 43797, BSTAR : 0.00024886, MEAN_MOTION_DOT : 0.00010396, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CUTE-1 (CO-55)", + "expanded": "CUTE-1 (CO-55)", + "numerical_value": 1854, + "description": "OBJECT_ID : 2003-031E, EPOCH : 2022-03-11T00:25:22.876032, MEAN_MOTION : 14.22392242, ECCENTRICITY : 0.0010414, INCLINATION : 98.6818, RA_OF_ASC_NODE : 79.1802, ARG_OF_PERICENTER : 33.0671, MEAN_ANOMALY : 327.1156, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27844, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 96991, BSTAR : 0.00012042, MEAN_MOTION_DOT : 2.25E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "CUBESAT XI-IV (CO-57)", + "expanded": "CUBESAT XI-IV (CO-57)", + "numerical_value": 1855, + "description": "OBJECT_ID : 2003-031J, EPOCH : 2022-03-10T12:40:23.562336, MEAN_MOTION : 14.21957123, ECCENTRICITY : 0.0010536, INCLINATION : 98.6867, RA_OF_ASC_NODE : 79.2357, ARG_OF_PERICENTER : 47.4828, MEAN_ANOMALY : 312.7238, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27848, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 96965, BSTAR : 9.5952E-05, MEAN_MOTION_DOT : 1.68E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "GENESIS 1", + "expanded": "GENESIS 1", + "numerical_value": 1856, + "description": "OBJECT_ID : 2006-029A, EPOCH : 2022-03-10T20:28:04.510272, MEAN_MOTION : 15.19723591, ECCENTRICITY : 0.0060198, INCLINATION : 64.5232, RA_OF_ASC_NODE : 34.6667, ARG_OF_PERICENTER : 277.2727, MEAN_ANOMALY : 82.1557, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 29252, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 86398, BSTAR : 0.00020735, MEAN_MOTION_DOT : 4.451E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "FALCONSAT-3", + "expanded": "FALCONSAT-3", + "numerical_value": 1857, + "description": "OBJECT_ID : 2007-006E, EPOCH : 2022-03-10T10:43:40.018080, MEAN_MOTION : 15.46435154, ECCENTRICITY : 0.0001934, INCLINATION : 35.4319, RA_OF_ASC_NODE : 185.3829, ARG_OF_PERICENTER : 169.9466, MEAN_ANOMALY : 190.1302, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 30776, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 83421, BSTAR : 0.00050023, MEAN_MOTION_DOT : 0.0002553, MEAN_MOTION_DDOT : 0" + }, + { + "value": "GENESIS 2", + "expanded": "GENESIS 2", + "numerical_value": 1858, + "description": "OBJECT_ID : 2007-028A, EPOCH : 2022-03-10T20:31:39.401760, MEAN_MOTION : 15.18650089, ECCENTRICITY : 0.0036677, INCLINATION : 64.4966, RA_OF_ASC_NODE : 77.592, ARG_OF_PERICENTER : 330.0618, MEAN_ANOMALY : 29.8407, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 31789, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 81092, BSTAR : 0.00020389, MEAN_MOTION_DOT : 4.108E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 4", + "expanded": "APRIZESAT 4", + "numerical_value": 1859, + "description": "OBJECT_ID : 2009-041D, EPOCH : 2022-03-10T23:19:31.880928, MEAN_MOTION : 14.79510837, ECCENTRICITY : 0.0045912, INCLINATION : 98.3157, RA_OF_ASC_NODE : 80.2306, ARG_OF_PERICENTER : 308.6261, MEAN_ANOMALY : 51.0843, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 35684, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 68055, BSTAR : 7.9202E-05, MEAN_MOTION_DOT : 5.43E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 3", + "expanded": "APRIZESAT 3", + "numerical_value": 1860, + "description": "OBJECT_ID : 2009-041F, EPOCH : 2022-03-10T18:31:08.491584, MEAN_MOTION : 14.87713757, ECCENTRICITY : 0.0073166, INCLINATION : 98.11, RA_OF_ASC_NODE : 154.2804, ARG_OF_PERICENTER : 147.9629, MEAN_ANOMALY : 212.6066, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 35686, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 68393, BSTAR : 9.5702E-05, MEAN_MOTION_DOT : 8.53E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "PROBA-2", + "expanded": "PROBA-2", + "numerical_value": 1861, + "description": "OBJECT_ID : 2009-059B, EPOCH : 2022-03-11T02:36:22.379040, MEAN_MOTION : 14.53204631, ECCENTRICITY : 0.001434, INCLINATION : 98.2231, RA_OF_ASC_NODE : 258.5607, ARG_OF_PERICENTER : 55.5166, MEAN_ANOMALY : 304.7382, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 36037, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 65506, BSTAR : 4.2505E-05, MEAN_MOTION_DOT : 1.32E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 5", + "expanded": "APRIZESAT 5", + "numerical_value": 1862, + "description": "OBJECT_ID : 2011-044E, EPOCH : 2022-03-11T02:49:05.339424, MEAN_MOTION : 14.75626752, ECCENTRICITY : 0.005713, INCLINATION : 98.3414, RA_OF_ASC_NODE : 302.5703, ARG_OF_PERICENTER : 318.6, MEAN_ANOMALY : 41.0886, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 37792, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 56863, BSTAR : 7.504400000000001E-05, MEAN_MOTION_DOT : 4.669999999999999E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 6", + "expanded": "APRIZESAT 6", + "numerical_value": 1863, + "description": "OBJECT_ID : 2011-044F, EPOCH : 2022-03-10T20:30:23.880384, MEAN_MOTION : 14.72667571, ECCENTRICITY : 0.0046945, INCLINATION : 98.4126, RA_OF_ASC_NODE : 278.5304, ARG_OF_PERICENTER : 8.6756, MEAN_ANOMALY : 2.4383, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 37793, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 56735, BSTAR : 6.572300000000001E-05, MEAN_MOTION_DOT : 3.69E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "TET-1", + "expanded": "TET-1", + "numerical_value": 1864, + "description": "OBJECT_ID : 2012-039D, EPOCH : 2022-03-10T17:59:47.334624, MEAN_MOTION : 15.61740082, ECCENTRICITY : 0.0002088, INCLINATION : 97.519, RA_OF_ASC_NODE : 143.7517, ARG_OF_PERICENTER : 73.2785, MEAN_ANOMALY : 286.8701, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 38710, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 54196, BSTAR : 0.00036307, MEAN_MOTION_DOT : 0.00031299, MEAN_MOTION_DDOT : 0" + }, + { + "value": "PROBA-V", + "expanded": "PROBA-V", + "numerical_value": 1865, + "description": "OBJECT_ID : 2013-021A, EPOCH : 2022-03-11T01:38:30.287904, MEAN_MOTION : 14.23020207, ECCENTRICITY : 0.000466, INCLINATION : 98.3718, RA_OF_ASC_NODE : 110.8647, ARG_OF_PERICENTER : 33.2318, MEAN_ANOMALY : 326.9153, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39159, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 45933, BSTAR : 2.3308E-05, MEAN_MOTION_DOT : 1.1E-07, MEAN_MOTION_DDOT : 0" + }, + { + "value": "STPSAT-3", + "expanded": "STPSAT-3", + "numerical_value": 1866, + "description": "OBJECT_ID : 2013-064A, EPOCH : 2022-03-10T13:19:50.168064, MEAN_MOTION : 15.4145932, ECCENTRICITY : 0.0006252, INCLINATION : 40.4978, RA_OF_ASC_NODE : 273.0881, ARG_OF_PERICENTER : 308.4535, MEAN_ANOMALY : 51.5719, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39380, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 46402, BSTAR : 0.0001576, MEAN_MOTION_DOT : 6.531E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 7", + "expanded": "APRIZESAT 7", + "numerical_value": 1867, + "description": "OBJECT_ID : 2013-066A, EPOCH : 2022-03-10T20:44:40.183872, MEAN_MOTION : 14.84264486, ECCENTRICITY : 0.0040045, INCLINATION : 97.5635, RA_OF_ASC_NODE : 54.9909, ARG_OF_PERICENTER : 324.7916, MEAN_ANOMALY : 35.0655, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39416, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 44941, BSTAR : 0.00010924, MEAN_MOTION_DOT : 8.759999999999999E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 8", + "expanded": "APRIZESAT 8", + "numerical_value": 1868, + "description": "OBJECT_ID : 2013-066K, EPOCH : 2022-03-10T21:52:07.118400, MEAN_MOTION : 14.81443335, ECCENTRICITY : 0.0051842, INCLINATION : 97.6155, RA_OF_ASC_NODE : 46.1225, ARG_OF_PERICENTER : 5.2219, MEAN_ANOMALY : 354.9524, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 39425, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 44837, BSTAR : 0.00010793, MEAN_MOTION_DOT : 8.119999999999998E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "BUGSAT-1 (TITA)", + "expanded": "BUGSAT-1 (TITA)", + "numerical_value": 1869, + "description": "OBJECT_ID : 2014-033E, EPOCH : 2022-03-10T23:26:48.349536, MEAN_MOTION : 14.96208335, ECCENTRICITY : 0.0031749, INCLINATION : 98.1382, RA_OF_ASC_NODE : 64.4187, ARG_OF_PERICENTER : 5.6457, MEAN_ANOMALY : 354.5115, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40014, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 42141, BSTAR : 0.00014323, MEAN_MOTION_DOT : 1.566E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SAUDISAT 4", + "expanded": "SAUDISAT 4", + "numerical_value": 1870, + "description": "OBJECT_ID : 2014-033G, EPOCH : 2022-03-11T02:30:01.402560, MEAN_MOTION : 14.75462189, ECCENTRICITY : 0.004962, INCLINATION : 97.647, RA_OF_ASC_NODE : 270.3273, ARG_OF_PERICENTER : 100.0858, MEAN_ANOMALY : 260.5956, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40016, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 41591, BSTAR : 5.846700000000001E-05, MEAN_MOTION_DOT : 3.5699999999999997E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 9", + "expanded": "APRIZESAT 9", + "numerical_value": 1871, + "description": "OBJECT_ID : 2014-033J, EPOCH : 2022-03-11T01:24:29.811168, MEAN_MOTION : 14.70159287, ECCENTRICITY : 0.007151, INCLINATION : 97.7068, RA_OF_ASC_NODE : 245.9883, ARG_OF_PERICENTER : 168.3984, MEAN_ANOMALY : 191.8892, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40018, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 41432, BSTAR : 8.6031E-05, MEAN_MOTION_DOT : 4.9000000000000005E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "APRIZESAT 10", + "expanded": "APRIZESAT 10", + "numerical_value": 1872, + "description": "OBJECT_ID : 2014-033K, EPOCH : 2022-03-11T00:28:06.714624, MEAN_MOTION : 14.67202635, ECCENTRICITY : 0.0083444, INCLINATION : 97.755, RA_OF_ASC_NODE : 235.4194, ARG_OF_PERICENTER : 209.7429, MEAN_ANOMALY : 149.902, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40019, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 41354, BSTAR : 9.093400000000002E-05, MEAN_MOTION_DOT : 4.89E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "TDS 1", + "expanded": "TDS 1", + "numerical_value": 1873, + "description": "OBJECT_ID : 2014-037H, EPOCH : 2022-03-10T21:26:35.624832, MEAN_MOTION : 14.85207865, ECCENTRICITY : 0.0007701, INCLINATION : 98.4069, RA_OF_ASC_NODE : 297.4296, ARG_OF_PERICENTER : 36.7876, MEAN_ANOMALY : 323.3864, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40076, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 41507, BSTAR : 0.00020434, MEAN_MOTION_DOT : 1.692E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "TIANTUO 2", + "expanded": "TIANTUO 2", + "numerical_value": 1874, + "description": "OBJECT_ID : 2014-053B, EPOCH : 2022-03-11T02:13:59.945088, MEAN_MOTION : 15.36764843, ECCENTRICITY : 0.0010845, INCLINATION : 97.1994, RA_OF_ASC_NODE : 152.031, ARG_OF_PERICENTER : 186.1557, MEAN_ANOMALY : 258.6127, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 40144, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 41998, BSTAR : 0.000135, MEAN_MOTION_DOT : 4.7770000000000005E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "TECHNOSAT", + "expanded": "TECHNOSAT", + "numerical_value": 1875, + "description": "OBJECT_ID : 2017-042E, EPOCH : 2022-03-11T03:34:20.049024, MEAN_MOTION : 14.91574591, ECCENTRICITY : 0.0013627, INCLINATION : 97.4346, RA_OF_ASC_NODE : 289.961, ARG_OF_PERICENTER : 342.4723, MEAN_ANOMALY : 17.6025, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 42829, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 25343, BSTAR : 0.00012708, MEAN_MOTION_DOT : 1.2240000000000001E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "FLYING LAPTOP", + "expanded": "FLYING LAPTOP", + "numerical_value": 1876, + "description": "OBJECT_ID : 2017-042G, EPOCH : 2022-03-11T01:19:16.233600, MEAN_MOTION : 14.91554057, ECCENTRICITY : 0.0013614, INCLINATION : 97.4357, RA_OF_ASC_NODE : 290.1688, ARG_OF_PERICENTER : 343.5743, MEAN_ANOMALY : 16.5009, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 42831, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 25342, BSTAR : 6.7197E-05, MEAN_MOTION_DOT : 6.22E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "HAWK-A", + "expanded": "HAWK-A", + "numerical_value": 1877, + "description": "OBJECT_ID : 2018-099H, EPOCH : 2022-03-10T21:00:39.427776, MEAN_MOTION : 14.96669635, ECCENTRICITY : 0.0013441, INCLINATION : 97.6303, RA_OF_ASC_NODE : 140.3452, ARG_OF_PERICENTER : 238.4884, MEAN_ANOMALY : 121.5025, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 43765, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 17839, BSTAR : 0.00018263, MEAN_MOTION_DOT : 2.03E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "HAWK-B", + "expanded": "HAWK-B", + "numerical_value": 1878, + "description": "OBJECT_ID : 2018-099AN, EPOCH : 2022-03-10T17:48:39.723552, MEAN_MOTION : 14.96670025, ECCENTRICITY : 0.0013532, INCLINATION : 97.6304, RA_OF_ASC_NODE : 140.2151, ARG_OF_PERICENTER : 239.1751, MEAN_ANOMALY : 120.814, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 43794, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 17836, BSTAR : 0.00017661, MEAN_MOTION_DOT : 1.961E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "HAWK-C", + "expanded": "HAWK-C", + "numerical_value": 1879, + "description": "OBJECT_ID : 2018-099AT, EPOCH : 2022-03-10T17:48:22.769280, MEAN_MOTION : 14.96670555, ECCENTRICITY : 0.0013397, INCLINATION : 97.6302, RA_OF_ASC_NODE : 140.1265, ARG_OF_PERICENTER : 238.8482, MEAN_ANOMALY : 121.1427, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 43799, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 17911, BSTAR : 0.00017607, MEAN_MOTION_DOT : 1.955E-05, MEAN_MOTION_DDOT : 0" + } + ] + }, + { + "predicate": "Education", + "entry": [ + { + "value": "SALSAT", + "expanded": "SALSAT", + "numerical_value": 1880, + "description": "OBJECT_ID : 2020-068K, EPOCH : 2022-03-10T18:43:06.176640, MEAN_MOTION : 15.03973345, ECCENTRICITY : 0.0015499, INCLINATION : 97.7206, RA_OF_ASC_NODE : 11.1474, ARG_OF_PERICENTER : 250.1807, MEAN_ANOMALY : 109.7747, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 46495, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 7935, BSTAR : 0.0002001, MEAN_MOTION_DOT : 2.7060000000000002E-05, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SAUDISAT 1C", + "expanded": "SAUDISAT 1C", + "numerical_value": 1881, + "description": "OBJECT_ID : 2002-058C, EPOCH : 2022-03-11T01:55:47.330688, MEAN_MOTION : 14.75944389, ECCENTRICITY : 0.0071645, INCLINATION : 64.5535, RA_OF_ASC_NODE : 242.8899, ARG_OF_PERICENTER : 314.069, MEAN_ANOMALY : 45.4527, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 27607, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 3406, BSTAR : 9.3782E-05, MEAN_MOTION_DOT : 5.26E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SAUDISAT 2", + "expanded": "SAUDISAT 2", + "numerical_value": 1882, + "description": "OBJECT_ID : 2004-025F, EPOCH : 2022-03-11T02:56:00.283200, MEAN_MOTION : 14.54496083, ECCENTRICITY : 0.0026702, INCLINATION : 98.3649, RA_OF_ASC_NODE : 26.740099999999998, ARG_OF_PERICENTER : 48.3302, MEAN_ANOMALY : 312.0143, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 28371, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 93899, BSTAR : 7.4598E-05, MEAN_MOTION_DOT : 2.72E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "SAUDISAT 3", + "expanded": "SAUDISAT 3", + "numerical_value": 1883, + "description": "OBJECT_ID : 2007-012B, EPOCH : 2022-03-11T02:31:24.974688, MEAN_MOTION : 14.69266068, ECCENTRICITY : 0.0015839, INCLINATION : 97.9579, RA_OF_ASC_NODE : 19.5956, ARG_OF_PERICENTER : 144.9175, MEAN_ANOMALY : 215.3077, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 31118, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 79871, BSTAR : 4.1771000000000004E-05, MEAN_MOTION_DOT : 1.99E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "PISAT", + "expanded": "PISAT", + "numerical_value": 1884, + "description": "OBJECT_ID : 2016-059B, EPOCH : 2022-03-10T20:19:24.017664, MEAN_MOTION : 14.63771924, ECCENTRICITY : 0.0033077, INCLINATION : 97.9304, RA_OF_ASC_NODE : 116.9761, ARG_OF_PERICENTER : 120.2987, MEAN_ANOMALY : 240.1496, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 41784, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 29126, BSTAR : 0.00010175, MEAN_MOTION_DOT : 4.88E-06, MEAN_MOTION_DDOT : 0" + }, + { + "value": "FLYING LAPTOP", + "expanded": "FLYING LAPTOP", + "numerical_value": 1885, + "description": "OBJECT_ID : 2017-042G, EPOCH : 2022-03-11T01:19:16.233600, MEAN_MOTION : 14.91554057, ECCENTRICITY : 0.0013614, INCLINATION : 97.4357, RA_OF_ASC_NODE : 290.1688, ARG_OF_PERICENTER : 343.5743, MEAN_ANOMALY : 16.5009, EPHEMERIS_TYPE : 0, CLASSIFICATION_TYPE : U, NORAD_CAT_ID : 42831, ELEMENT_SET_NO : 999, REV_AT_EPOCH : 25342, BSTAR : 6.7197E-05, MEAN_MOTION_DOT : 6.22E-06, MEAN_MOTION_DDOT : 0" + } + ] + } + ] +} diff --git a/aviation/machinetag.json b/aviation/machinetag.json new file mode 100644 index 0000000..f23a87c --- /dev/null +++ b/aviation/machinetag.json @@ -0,0 +1,397 @@ +{ + "predicates": [ + { + "expanded": "Target", + "value": "target" + }, + { + "expanded": "Target systems", + "value": "target-systems" + }, + { + "expanded": "Target Sub Systems", + "value": "target-sub-systems" + }, + { + "value": "impact", + "expanded": "Impact", + "exclusive": true + }, + { + "value": "likelihood", + "expanded": "Likelihood", + "exclusive": true + }, + { + "expanded": "Criticality", + "value": "criticality" + }, + { + "value": "certainty", + "expanded": "Certainty", + "exclusive": true + } + ], + "version": 1, + "description": "A taxonomy describing security threats or incidents against the aviation sector.", + "namespace": "aviation", + "values": [ + { + "predicate": "target", + "entry": [ + { + "value": "airline", + "expanded": "airline", + "description": "airlines or airline groups" + }, + { + "value": "airspace users", + "expanded": "Airspace Users", + "description": "Airspace users other than airlines like drone, helicopter, baloon operators" + }, + { + "value": "airport", + "expanded": "Airport", + "description": "Airports or airport operators" + }, + { + "value": "ansp", + "expanded": "Air Navigation Service Provider", + "description": "Air Navigation Service Provider who is managing the airspace of a country or a specific region" + }, + { + "value": "international-association", + "expanded": "International Association", + "description": "International associations related with aviation sector" + }, + { + "value": "caa", + "expanded": "Civil Aviation Authority", + "description": "Civil Aviation Authority who is responsible for regulation the aviation of a country" + }, + { + "value": "manufacturer", + "expanded": "Manufacturer", + "description": "Manufacturers who produce aircrafts,aircraft or ATM related components" + }, + { + "value": "service-provider", + "expanded": "Service Provider", + "description": "Service providers who provide different services to the aviation stakeholders" + }, + { + "value": "network-manager", + "expanded": "Network Manager", + "description": "Network Manager manages ATM network functions (airspace design, flow management) as well as scarce resources" + }, + { + "value": "military", + "expanded": "Military", + "description": "Military aviation" + } + ] + }, + { + "predicate": "target-systems", + "entry": [ + { + "value": "ATM", + "expanded": "ATM - Air Traffic Management", + "description": "Air traffic management systems which manage airspace" + }, + { + "value": "AIS", + "expanded": "AIS - Aeronautical Information Service", + "description": "Aeronatutical Infromation Service whose objective is to ensure the flow of aeronautical information and data necessary for the safety, regularity and efficiency of international air navigation" + }, + { + "value": "MET", + "expanded": "MET - Meteorological Service", + "description": "Meteorological service which provides meteo data to the airspace users" + }, + { + "value": "SAR", + "expanded": "SAR - Search and Rescue", + "description": "Search and rescue (SAR) service is provided to the survivors of aircraft accidents as well as aircraft in distress (and their occupants) regardless of their nationality" + }, + { + "value": "CNS", + "expanded": "CNS - Communication, Navigation and Surveillance", + "description": "The main functions of ATM: Communication, Navigation and Surveillance" + }, + { + "value": "airport-management-systems", + "expanded": "Airport Management Systems", + "description": "Airport IT and OT systems that manage airport internal operations" + }, + { + "value": "airport-online-services", + "expanded": "Airport Online Services", + "description": "Airport online service that helps external users to reach airport services" + }, + { + "value": "airport-fids-systems", + "expanded": "Airport Flight Information Display Systems", + "description": "Airport Flight Information Display Systems that guide the passangers about flights" + }, + { + "value": "airline-management-systems", + "expanded": "Airline Management Systems", + "description": "Airline Management Systems that manage airline intenal operations" + }, + { + "value": "airline-online-services", + "expanded": "Airline Online Services", + "description": "Airline Online Services that helps external users to reach airlines services" + } + ] + }, + { + "predicate": "target-sub-systems", + "entry": [ + { + "value": "ATM:NewPENS", + "expanded": "ATM New PENS(Pan-European Network Service)", + "description": "ATM New PENS(Pan-European Network Service) which is private network for aviation stakeholders" + }, + { + "value": "ATM:SWIM", + "expanded": "ATM SWIM(Sytem Wide Information Management)", + "description": "ATM SWIM(System Wide Information Management) is the system that enables seamless information access and interchange between all providers and users of ATM information and services" + }, + { + "value": "ATM:ATS:ATC", + "expanded": "ATM ATS(Air Traffic Service) ATC - Air Traffic Control", + "description": "ATM ATS(Air Traffic Service) ATC - Air Traffic Control systems" + }, + { + "value": "ATM:ATS:FIS", + "expanded": "ATM ATS FIS - Flight Information Services", + "description": "ATM ATS FIS - Flight Information Services systems" + }, + { + "value": "ATM:ATS:ALRS", + "expanded": "ATM ATS ALRS - Alerting Services", + "description": "ATM ATS ALRS - Alerting Services systems" + }, + { + "value": "ATM:ATS:ATFM", + "expanded": "ATM ATS ATFM(Air Traffic Flow Management)", + "description": "ATM ATS ATFM(Air Traffic Flow Management) systems " + }, + { + "value": "ATM:ATS:ASM", + "expanded": "ATM ATS ASM(Airspace management)", + "description": "ATM ATS ASM(Airspace management) systems " + }, + { + "value": "CNS:COM:Ground-Ground", + "expanded": "CNS COM Ground-Ground", + "description": "Ground-ground communication systems" + }, + { + "value": "CNS:COM:Ground-Air", + "expanded": "CNS COM Ground Air", + "description": "Ground-Air communication systems" + }, + { + "value": "CNS:COM:Air-Air", + "expanded": "CNS COM Air Air", + "description": "Air-Air Communication systems" + }, + { + "value": "CNS:COM:Asterix", + "expanded": "CNS COM Asterix", + "description": "Asterix radar data protocol processing systems" + }, + { + "value": "CNS:COM:VDL", + "expanded": "CNS COM VDL", + "description": "Very High Frequency Data link" + }, + { + "value": "CNS:SUR:ADS-B", + "expanded": "CNS SUR ADS-B(Automatic Dependent Surveillance-Broadcast)", + "description": "ADS-B Automatic Dependent Surveillance-Broadcast) protocol" + }, + { + "value": "CNS:SUR:ADS-C", + "expanded": "CNS SUR ADS-C(Automatic dependent surveillance-contract)", + "description": "ADS-C Automatic Dependent Surveillance-contract" + }, + { + "value": "CNS:SUR:Radar", + "expanded": "CNS SUR Radar", + "description": "Radar related systems" + }, + { + "value": "CNS:SUR:PR", + "expanded": "CNS SUR PR(Primary Radar)", + "description": "Primary Radar related systems" + }, + { + "value": "CNS:SUR:SSR", + "expanded": "CNS SUR SSR(Secondary Surveillance Radar)", + "description": "Secondary Surveillance Radar related systems" + }, + { + "value": "CNS:Nav:GNSS", + "expanded": "CNS Nav GNSS(Global Navigation Satellite Systems)", + "description": "GNSS(Global Naviation Satellite Systems) related systems" + }, + { + "value": "CNS:Nav:GPS", + "expanded": "CNS Nav GPS(Global Positioning Systems)", + "description": "GPS(Global Positioning Systems) related systems" + }, + { + "value": "CNS:Nav:GLONASS", + "expanded": "CNS Nav GLONASS(GLObal NAvigation Satellite Systems)", + "description": "GLONASS(GLObal NAvigation Satellite Systems) related systems" + }, + { + "value": "CNS:Nav:ILS", + "expanded": "CNS Nav ILS(Instrument landing systems)", + "description": "ILS(Instrument landing systems) related systems" + }, + { + "value": "CNS:Nav:GLS", + "expanded": "CNS Nav GLS (GNSS dependent landing systems", + "description": "GLS(GNSS dependent landing systems) related systems" + } + ] + }, + { + "predicate": "impact", + "entry": [ + { + "value": "trivial", + "expanded": "Trivial" + }, + { + "value": "minor", + "expanded": "Minor" + }, + { + "value": "moderate", + "expanded": "Moderate" + }, + { + "value": "major", + "expanded": "Major" + }, + { + "value": "extreme", + "expanded": "Extreme" + } + ] + }, + { + "predicate": "likelihood", + "entry": [ + { + "value": "almost-no-chance", + "expanded": "Almost no chance - remote - 01-05%", + "numerical_value": 0 + }, + { + "value": "very-unlikely", + "expanded": "Very unlikely - highly improbable - 05-20%", + "numerical_value": 5 + }, + { + "value": "unlikely", + "expanded": "Unlikely - improbable (improbably) - 20-45%", + "numerical_value": 20 + }, + { + "value": "roughly-even-chance", + "expanded": "Roughly even change - roughly even odds - 45-55%", + "numerical_value": 45 + }, + { + "value": "likely", + "expanded": "Likely - probable (probably) - 55-80%", + "numerical_value": 55 + }, + { + "value": "very-likely", + "expanded": "Very likely - highly probable - 80-95%", + "numerical_value": 80 + }, + { + "value": "almost-certain", + "expanded": "Almost certain(ly) - nearly certain - 95-99%", + "numerical_value": 95 + } + ] + }, + { + "predicate": "criticality", + "entry": [ + { + "value": "safety-critical", + "expanded": "Safety Critical", + "description": "Criticality level that threatens human life" + }, + { + "value": "mission-critical", + "expanded": "Mission Critical", + "description": "Criticality level that affects the critical services impacting the airspace management" + }, + { + "value": "business-critical", + "expanded": "business Critical", + "description": "Criticality level that affects business functions" + } + ] + }, + { + "entry": [ + { + "description": "Certainty", + "expanded": "Certainty (probability equals 1 - 100%)", + "value": "100", + "numerical_value": 100 + }, + { + "description": "Almost certain", + "expanded": "Almost certain (probability equals 0.93 - 93%)", + "value": "93", + "numerical_value": 93 + }, + { + "description": "Probable", + "expanded": "Probable (probability equals 0.75 - 75%)", + "value": "75", + "numerical_value": 75 + }, + { + "description": "Chances about even", + "expanded": "Chances about even (probability equals 0.50 - 50%)", + "value": "50", + "numerical_value": 50 + }, + { + "description": "Probably not", + "expanded": "Probably not (probability equals 0.30 - 30%)", + "value": "30", + "numerical_value": 30 + }, + { + "description": "Almost certainly not", + "expanded": "Almost certainly not (probability equals 0.07 - 7%)", + "value": "7", + "numerical_value": 7 + }, + { + "description": "Impossibility", + "expanded": "Impossibility (probability equals 0 - 0%)", + "value": "0", + "numerical_value": 0 + } + ], + "predicate": "certainty" + } + ] +} diff --git a/circl/machinetag.json b/circl/machinetag.json index 9091773..db88ce4 100644 --- a/circl/machinetag.json +++ b/circl/machinetag.json @@ -1,7 +1,7 @@ { "namespace": "circl", - "description": "CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection", - "version": 5, + "description": "CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection.", + "version": 6, "predicates": [ { "value": "incident-classification", @@ -10,6 +10,11 @@ { "value": "topic", "expanded": "Topic" + }, + { + "value": "significant", + "expanded": "Significant", + "description": "Significant topic which has been evaluated to have a certain level of significancy which can have or had a severe impact." } ], "values": [ diff --git a/cnsd/machinetag.json b/cnsd/machinetag.json new file mode 100644 index 0000000..3c8adbb --- /dev/null +++ b/cnsd/machinetag.json @@ -0,0 +1,230 @@ +{ + "values": [ + { + "entry": [ + { + "description": "Correo electrónico masivo no solicitado, el destinatario no ha otorgado un permiso verificable", + "expanded": "Spam", + "value": "spam" + }, + { + "description": "Ofrecer o instalar copias de software, u otros materiales sin licencia o derechos adquiridos de autor", + "expanded": "Copyright", + "value": "copyright" + }, + { + "description": "Comprende los incidentes relacionados con la explotación sexual infantil, glorificación de la violencia o incitación al terrorismo.", + "expanded": "Explotación sexual infantil, racismo e incitación a la violencia.", + "value": "explotacion sexual infantil" + } + ], + "predicate": "Contenido abusivo" + }, + { + "entry": [ + { + "description": "Inundaciones ICMP y SYN, los ataques Teardrop y los bombardeos por correo, y los ataques DDoS que se originan por bots.", + "expanded": "DoS/DDoS", + "value": "DoS/DDoS" + }, + { + "description": "La disponibilidad tambien puede verse afectada por acciones locales o por fuerza mayor.", + "expanded": "sabotaje", + "value": "sabotaje" + } + ], + "predicate": "Disponibilidad" + }, + { + "entry": [ + { + "description": "Mal uso o uso no autorizado de recursos, incluidas empresas con fines de lucro, cadenas de ganancias o esquemas piramidales.", + "expanded": "Mal-Uso", + "value": "mal-uso" + }, + { + "description": "Una entidad u organización asume o se atribuye ilegitimamente la identidad de otra para beneficiarse de ella.", + "expanded": "Repres-Falsa", + "value": "repres-falsa" + } + ], + "predicate": "Fraude" + }, + { + "entry": [ + { + "description": "Son ataques que interceptan y acceden a la información durante la transmisión.", + "expanded": "Acc-No-autorizado", + "value": "acc-no-autorizado" + }, + { + "description": "El error humano de configuración de software puede ser una causa.", + "expanded": "Modi-Elim-No-Autorizada", + "value": "modi-elim-no-autorizada" + } + ], + "predicate": "Fuga de información" + }, + { + "entry": [ + { + "description": "Un intento de comprometer un sistema o interrumpir cualquier servicio mediante la explotación de vulnerabilidades.", + "expanded": "Explot-Vulnerab", + "value": "explot-vulnerab" + }, + { + "description": "Múltiples intentos de inicio de sesión (adivinar, descifrar contraseñas, fuerza bruta).", + "expanded": "Intento-Inicio-Sesión", + "value": "intento-inicio-sesión" + } + ], + "predicate": "Intentos de intrusión" + }, + { + "entry": [ + { + "description": "Un intento de comprometer un sistema o interrumpir cualquier servicio mediante la explotación de vulnerabilidades.", + "expanded": "Explot-Extra-Vulnerab", + "value": "explot-extra-vulnerab" + }, + { + "description": "Compromiso de un sistema en el que el atacante ha adquirido privilegios, accesa y sustrae de datos del centro de datos.", + "expanded": "Comprometer-Cuenta", + "value": "comprometer-cuenta" + } + ], + "predicate": "Intrusión" + }, + { + "entry": [ + { + "description": "Se através de dispositivos extraibles, descargas de internet, adjuntos en correos, por scripts y vulneabilidades XSS.", + "expanded": "Infección", + "value": "infección" + }, + { + "description": "Se presenta cuando un recurso de la organización es utilizado para la distribución de malware.", + "expanded": "Distribución", + "value": "distribución" + }, + { + "description": "Conexión con servidor de mando y Control, mediante malware o sistemas infectados.", + "expanded": "C&C", + "value": "c&c" + }, + { + "description": "Intercambio de información a nivel de red local o pública, cuyo origen o destino no este plenamente identificado.", + "expanded": "Conexión-Maliciosa", + "value": "conexión-maliciosa" + }, + { + "description": "No se puede determinar.", + "expanded": "Indeterminado", + "value": "indeterminado" + } + ], + "predicate": "Malware" + }, + { + "entry": [ + { + "description": "Se através de dispositivos extraibles, descargas de internet, adjuntos en correos, por scripts y vulneabilidades XSS.", + "expanded": "Scanning", + "value": "scanning" + }, + { + "description": "Se presenta cuando un recurso de la organización es utilizado para la distribución de malware.", + "expanded": "Sniffing", + "value": "sniffing" + }, + { + "description": "Conexión con servidor de mando y Control, mediante malware o sistemas infectados.", + "expanded": "Phishing", + "value": "phishing" + } + ], + "predicate": "Recopilación de información" + }, + { + "entry": [ + { + "description": "Incidente no encontrado en la lista.", + "expanded": "Inc-No-Listado", + "value": "inc-no-listado" + }, + { + "description": "Incidente que no se puede determinar o clasificar.", + "expanded": "Inc-Indeter", + "value": "inc-indeter" + }, + { + "description": "Amenaza Avanzada Persistente (APT), ataques dirigidos contra entidades u organizaciones concretas, con mecanismos sofisticados.", + "expanded": "APT", + "value": "APT" + }, + { + "description": "Uso de redes o sistemas de información con fines de caracter terrorista.", + "expanded": "Ciberterrorismo", + "value": "ciberterrorismo" + }, + { + "description": "Daños en activos críticos nacionales, comprende el borrado, dañado, alteración, supresión o inaccesibilidad a un activo crítico.", + "expanded": "Danos-en-Activos", + "value": "danos-en-activos" + } + ], + "predicate": "Otros" + } + ], + "predicates": [ + { + "description": "Comprende aquellos incidentes de contenido comercial no autorizados, comentarios ofensivos, violencia y/o delitos sexuales.", + "expanded": "Contenido abusivo", + "value": "Contenido abusivo" + }, + { + "description": "Las operaciones se retrasan o el sistema se bloquea debido al gran número de peticiones concurrentes u orquestadas.", + "expanded": "Disponibilidad", + "value": "Disponibilidad" + }, + { + "description": "Uso no autorizado de un bien o servicio, violación de derechos de autor o propiedad, suplantación de identidad.", + "expanded": "Fraude", + "value": "Fraude" + }, + { + "description": "Pérdida de los datos e información, debido al acceso o conocimiento del contenido por parte de personas no autorizadas.", + "expanded": "Fuga de información", + "value": "Fuga de información" + }, + { + "description": "Intento de comprometer la confidencialidad, integridad y disponibilidad de un activo de información.", + "expanded": "Intentos de intrusión", + "value": "Intentos de intrusión" + }, + { + "description": "Se manifiesta el claro acceso a cuentas de usuarios con el propósito de comprometer la información crítica del negocio.", + "expanded": "Intrusión", + "value": "Intrusión" + }, + { + "description": "Incidente relacionado con el uso de software que se incluye o inserta intencionalmente en el sistema para causar daño.", + "expanded": "Malware", + "value": "Malware" + }, + { + "description": "Comprende aquellos incidentes relacionados con el uso de analizadores de paquetes, ingenieria social o ataques de fuerza bruta.", + "expanded": "Recopilación de información", + "value": "Recopilación de información" + }, + { + "value": "Otros", + "expanded": "Otros", + "description": "Otros" + } + ], + "version": 20220513, + "description": "La presente taxonomia es la primera versión disponible para el Centro Nacional de Seguridad Digital del Perú.", + "expanded": "CNSD Taxonomia de Incidentes de Seguridad Digital", + "namespace": "cnsd" +} diff --git a/course-of-action/machinetag.json b/course-of-action/machinetag.json index f302bae..5750e42 100644 --- a/course-of-action/machinetag.json +++ b/course-of-action/machinetag.json @@ -2,7 +2,7 @@ "namespace": "course-of-action", "expanded": "Courses of Action", "description": "A Course Of Action analysis considers six potential courses of action for the development of a cyber security capability.", - "version": 2, + "version": 3, "predicates": [ { "value": "passive", @@ -21,6 +21,10 @@ "value": "discover", "expanded": "The discover action is a 'historical look at the data'. This action heavily relies on your capability to store logs for a reasonable amount of time and have them accessible for searching. Typically, this type of action is applied against security information and event management (SIEM) or stored network data. The goal is to determine whether you have seen a specific indicator in the past." }, + { + "value": "nodiscover", + "expanded": "The no-discover action is a negation of discover in case you want to explicit prohibit 'historical look at the data'. The goal is to exclude a specific indicator from searches of historical data." + }, { "value": "detect", "expanded": "The passive action is setting up detection rules of an indicator for future traffic. These actions are most often executed via an intrusion detection system (IDS) or a specific logging rule on your firewall or application. It can also be configured as an alert in a SIEM when a specific condition is triggered." diff --git a/crowdsec/machinetag.json b/crowdsec/machinetag.json new file mode 100644 index 0000000..96cc1ba --- /dev/null +++ b/crowdsec/machinetag.json @@ -0,0 +1,309 @@ +{ + "version": 1, + "namespace": "crowdsec", + "description": "Crowdsec IP address classifications and behaviors taxonomy.", + "predicates": [ + { + "value": "behavior", + "expanded": "Behavior", + "description": "Attack categories and behaviors associated with an IP address." + }, + { + "value": "false-positive", + "expanded": "False positive", + "description": "Defines whether an IP address is a known false positive." + }, + { + "value": "classification", + "expanded": "Classification", + "description": "Category associated to an IP address." + } + ], + "values": [ + { + "predicate": "behavior", + "entry": [ + { + "value": "database-bruteforce", + "expanded": "Database Bruteforce", + "description": "IP has been reported for performing brute force on databases." + }, + { + "value": "ftp-bruteforce", + "expanded": "FTP Bruteforce", + "description": "IP has been reported for performing brute force on FTP services." + }, + { + "value": "generic-exploit", + "expanded": "Exploitation attempt", + "description": "IP has been reported trying to exploit known vulnerability/CVE on unspecified protocol." + }, + { + "value": "http-bruteforce", + "expanded": "HTTP Bruteforce", + "description": "IP has been reported for performing a HTTP brute force attack (either generic http probing or applicative related brute force)." + }, + { + "value": "http-crawl", + "expanded": "HTTP Crawl", + "description": "IP has been reported for performing aggressive crawling of web applications." + }, + { + "value": "http-exploit", + "expanded": "HTTP Exploit", + "description": "IP has been reported for attempting to exploit a vulnerability in a web application." + }, + { + "value": "http-scan", + "expanded": "HTTP Scan", + "description": "IP has been reported for performing actions related to HTTP vulnerability scanning and discovery." + }, + { + "value": "http-spam", + "expanded": "Web form spam", + "description": "IP has been reported trying to perform spam via web forms/forums." + }, + { + "value": "iot-bruteforce", + "expanded": "IOT Bruteforce", + "description": "IP has been reported for performing brute force on IOT management interfaces." + }, + { + "value": "ldap-bruteforce", + "expanded": "LDAP Bruteforce", + "description": "IP has been reported for performing brute force on ldap services." + }, + { + "value": "pop3/imap-bruteforce", + "expanded": "POP3/IMAP Bruteforce", + "description": "IP has been reported for performing a POP3/IMAP brute force attack." + }, + { + "value": "sip-bruteforce", + "expanded": "SIP Bruteforce", + "description": "IP has been reported for performing a SIP (VOIP) brute force attack." + }, + { + "value": "smb-bruteforce", + "expanded": "SMB Bruteforce", + "description": "IP has been reported for performing brute force on samba services." + }, + { + "value": "smtp-spam", + "expanded": "SMTP spam", + "description": "IP has been reported trying to perform spam SMTP service." + }, + { + "value": "ssh-bruteforce", + "expanded": "SSH Bruteforce", + "description": "IP has been reported for performing brute force on ssh services." + }, + { + "value": "tcp-scan", + "expanded": "TCP Scan", + "description": "IP has been reported for performing TCP port scanning." + }, + { + "value": "telnet-bruteforce", + "expanded": "TELNET Bruteforce", + "description": "IP has been reported for performing brute force on telnet services." + }, + { + "value": "vm-management-bruteforce", + "expanded": "VM Management Bruteforce", + "description": "IP has been reported for performing brute force on virtual environement management applications." + }, + { + "value": "windows-bruteforce", + "expanded": "SMB/RDP bruteforce", + "description": "IP has been reported for performing brute force on Windows (samba, remote desktop) services." + } + ] + }, + { + "predicate": "false-positive", + "entry": [ + { + "value": "cdn-cloudflare_exit_node", + "expanded": "Cloudflare CDN", + "description": "IP is a Cloudflare CDN exit IP and should not be flagged as a threat." + }, + { + "value": "cdn-exit_node", + "expanded": "CDN exit node", + "description": "IP is a CDN exit IP and should not be flagged as a threat." + }, + { + "value": "ip-private_range", + "expanded": "Private IP address range", + "description": "This IP address is in a private IP range" + }, + { + "value": "msp-scanner", + "expanded": "Legitimate Scanner", + "description": "IP belongs to a known 'legitimate' scanner (MSP) and should not be flagged as a threat." + }, + { + "value": "seo-crawler", + "expanded": "SEO crawler", + "description": "IP belongs to a known SEO crawler and should not be flagged as a threat." + }, + { + "value": "seo-duckduckbot", + "expanded": "Duckduckbot SEO crawler", + "description": "IP belongs to Duckduckbot SEO crawler and should not be flagged as a threat." + }, + { + "value": "seo-pinterest", + "expanded": "Pinterest crawler", + "description": "IP belongs to Pinterest crawler and should not be flagged as a threat." + } + ] + }, + { + "predicate": "classification", + "entry": [ + { + "value": "community-blocklist", + "expanded": "CrowdSec Community Blocklist", + "description": "IP belong to the CrowdSec Community Blocklist" + }, + { + "value": "profile-insecure_services", + "expanded": "Dangerous Services Exposed", + "description": "IP exposes dangerous services (vnc, telnet, rdp), possibly due to a misconfiguration or because it's a honeypot." + }, + { + "value": "profile-many_services", + "expanded": "Many Services Exposed", + "description": "IP exposes many open port, possibly due to a misconfiguration or because it's a honeypot." + }, + { + "value": "proxy-tor", + "expanded": "TOR exit node", + "description": "IP is being flagged as a TOR exit node." + }, + { + "value": "proxy-vpn", + "expanded": "VPN", + "description": "IP exposes a VPN service or is being flagged as one." + }, + { + "value": "range-data_center", + "expanded": "Data Center", + "description": "IP is known to be hosted in a data center." + }, + { + "value": "scanner-alphastrike", + "expanded": "Known Security Company", + "description": "IP belongs to a company that scans internet : AlphaSrike." + }, + { + "value": "scanner-binaryedge", + "expanded": "Known Security Company", + "description": "IP belongs to a company that scans internet : binaryedge." + }, + { + "value": "scanner-censys", + "expanded": "Known Security Company", + "description": "IP belongs to a company that scans internet : Censys." + }, + { + "value": "scanner-cert.ssi.gouv.fr", + "expanded": "Known CERT", + "description": "IP belongs to an entity that scans internet : cert.ssi.gouv.fr." + }, + { + "value": "scanner-cisa.dhs.gov", + "expanded": "Known CERT", + "description": "IP belongs to an entity that scans internet : cisa.dhs.gov." + }, + { + "value": "scanner-internet-census", + "expanded": "Known Security Company", + "description": "IP belongs to a company that scans internet : internet-census." + }, + { + "value": "scanner-leakix", + "expanded": "Known Security Company", + "description": "IP belongs to a company that scans internet : leakix." + }, + { + "value": "scanner-legit", + "expanded": "Legit scanner", + "description": "IP belongs to a company that scans internet" + }, + { + "value": "scanner-shadowserver.org", + "expanded": "Known Security Company", + "description": "IP belongs to an entity that scans internet : www.shadowserver.org." + }, + { + "value": "scanner-shodan", + "expanded": "Known Security Company", + "description": "IP belongs to a company that scans internet : Shodan." + }, + { + "value": "scanner-stretchoid", + "expanded": "Known Security Company", + "description": "IP belongs to an entity that scans internet : stretchoid." + }, + { + "value": "profile-fake_rdns", + "expanded": "Fake RDNS", + "description": "IP is using a fake RDNS" + }, + { + "value": "profile-nxdomain", + "expanded": "NXDOMAIN", + "description": "RDNS doesn't exist" + }, + { + "value": "profile-router", + "expanded": "Router", + "description": "IP belongs to a router exping services on the internet" + }, + { + "value": "profile-proxy", + "expanded": "Proxy", + "description": "IP exposes services that are commonly used by proxies" + }, + { + "value": "profile-jupiter-vpn", + "expanded": "JupiterVPN", + "description": "IP belongs to a jupiter vpn" + }, + { + "value": "device-cyberoam", + "expanded": "Cyberoam", + "description": "IP belongs to a Cyberoam router" + }, + { + "value": "device-microtik", + "expanded": "Mikrotik", + "description": "IP belongs to a Mikrotik router" + }, + { + "value": "device-asuswrt", + "expanded": "AsusWRT", + "description": "IP belongs to a AsusWRT router" + }, + { + "value": "device-hikvision", + "expanded": "Hikvision", + "description": "IP belongs to a Hikvision camera" + }, + { + "value": "device-ipcam", + "expanded": "IpCamera", + "description": "IP belongs to a IP camera" + }, + { + "value": "profile-likely_botnet", + "expanded": "Likely Botnet", + "description": "IP is likely to belong to a botnet (based on behaviour and/or characteristics)" + } + ] + } + ] +} diff --git a/cryptocurrency-threat/machinetag.json b/cryptocurrency-threat/machinetag.json index f82ae2b..4b1b957 100644 --- a/cryptocurrency-threat/machinetag.json +++ b/cryptocurrency-threat/machinetag.json @@ -45,8 +45,12 @@ }, { "value": "Rag Pull", - "expanded": "Crypto scam that occurs when a team pumps their project’s token before disappearing with the funds, leaving their investors with a valueless asset." - } + "expanded": "Crypto scam that occurs when a team pumps their project’s token before disappearing with the funds, leaving their investors with a valueless asset." + }, + { + "value": "Pig Butchering Scam", + "expanded": "Cryptocurrency investment fraud that lures individuals into investing their money in seemingly legitimate and profitable ventures." + } ], "refs": [ "https://ciphertrace.com/wp-content/uploads/2019/01/crypto_aml_report_2018q4.pdf" diff --git a/dark-web/machinetag.json b/dark-web/machinetag.json index 4da2f50..7abb13a 100644 --- a/dark-web/machinetag.json +++ b/dark-web/machinetag.json @@ -1,8 +1,8 @@ { "namespace": "dark-web", "expanded": "Dark Web", - "description": "Criminal motivation on the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project", - "version": 4, + "description": "Criminal motivation and content detection the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project and extended by the JRC (Joint Research Centre) of the European Commission.", + "version": 6, "predicates": [ { "value": "topic", @@ -18,6 +18,16 @@ "value": "structure", "description": "Structure of the materials tagged", "expanded": "Structure" + }, + { + "value": "service", + "description": "Information related to an Dark-Web service", + "expanded": "Service" + }, + { + "value": "content", + "description": "Identifiable entities and information contained in a Dark-Web service", + "expanded": "Content" } ], "values": [ @@ -26,182 +36,182 @@ "entry": [ { "value": "drugs-narcotics", - "expanded": "Drugs/Narcotics", + "expanded": "drugsNarcotics", "description": "Illegal drugs/chemical compounds for consumption/ingestion - either via blanket unlawfulness (e.g. proscribed drugs) or via unlawful access (e.g. prescription-only/restricted medications sold without lawful accessibility)." }, { "value": "electronics", - "expanded": "Electronics", + "expanded": "electronics", "description": "Electronics and high tech materials, described or to sell for example." }, { "value": "finance", - "expanded": "Finance", + "expanded": "finance", "description": "Any monetary/currency/exchangeable materials. Includes carding, Paypal etc." }, { "value": "finance-crypto", - "expanded": "CryptoFinance", + "expanded": "cryptoFinance", "description": "Any monetary/currency/exchangeable materials based on cryptocurrencies. Includes Bitcoin, Litecoin etc." }, { "value": "credit-card", - "expanded": "Credit-Card", + "expanded": "creditCard", "description": "Credit cards and payments materials" }, { "value": "cash-in", - "expanded": "Cash-in", + "expanded": "cashIn", "description": "Buying parts of assets, conversion from liquid assets, currency, etc." }, { "value": "cash-out", - "expanded": "Cash-out", + "expanded": "cashOut", "description": "Selling parts of assets, conversion to liquid assets, currency, etc." }, { "value": "escrow", - "expanded": "Escrow", + "expanded": "escrow", "description": "Third party keeping assets in behalf of two other parties making a transactions." }, { "value": "hacking", - "expanded": "Hacking", + "expanded": "hacking", "description": "Materials relating to the illegal access to or alteration of data and/or electronic services." }, { "value": "identification-credentials", - "expanded": "Identification/Credentials", + "expanded": "identificationCredentials", "description": "Materials used for providing/establishing identification with third parties. Examples include passports, driver licenses and login credentials." }, { "value": "intellectual-property-copyright-materials", - "expanded": "Intellectual Property/Copyright Materials", + "expanded": "intellectualPropertyCopyrightMaterials", "description": "Otherwise lawful materials stored, transferred or made available without consent of their legal rights holders." }, { "value": "pornography-adult", - "expanded": "Pornography - Adult", + "expanded": "pornographyAdult", "description": "Lawful, ethical pornography (i.e. involving only consenting adults)." }, { "value": "pornography-child-exploitation", - "expanded": "Pornography - Child (Child Exploitation)", + "expanded": "pornographyChild(ChildExploitation)", "description": "Child abuse materials (aka child pornography), including 'fantasy' fiction materials, CGI. Also includes the provision/offering of child abuse materials and/or activities" }, { "value": "pornography-illicit-or-illegal", - "expanded": "Pornography - Illicit or Illegal", + "expanded": "pornographyIllicitOrIllegal", "description": "Illegal pornography NOT including children/child abuse. Includes bestiality, stolen/revenge porn, hidden cameras etc." }, { "value": "search-engine-index", - "expanded": "Search Engine/Index", + "expanded": "searchEngineIndex", "description": "Site providing links/references to other sites/services. Referred to as a ‘nexus’ by (Moore and Rid, 2016)" }, { "value": "unclear", - "expanded": "Unclear", + "expanded": "unclear", "description": "Unable to completely establish topic of material." }, { "value": "extremism", - "expanded": "Extremism", + "expanded": "extremism", "description": "Illegal or ‘of concern’ levels of extremist ideology. Note this does not provide blanket coverage of fundamentalist ideologies and dogma - only those associated with illegal acts. Socialist/anarchist/religious materials (for example) will not be included unless inclusive or indicative of associated illegal conduct, such as hate crimes." }, { "value": "violence", - "expanded": "Violence", + "expanded": "violence", "description": "Materials relating to violence against persons or property." }, { "value": "weapons", - "expanded": "Weapons", + "expanded": "weapons", "description": "Materials specifically associated with materials and/or items for use in violent acts against persons or property. Examples include firearms and bomb-making ingredients." }, { "value": "softwares", - "expanded": "Softwares", + "expanded": "softwares", "description": "Illegal or armful software distribution" }, { "value": "counteir-feit-materials", - "expanded": "Counter-feit materials", + "expanded": "counterFeitMaterials", "description": "Fake identification papers." }, { "value": "gambling", - "expanded": "Gambling", + "expanded": "gambling", "description": "Games involving money" }, { "value": "library", - "expanded": "Library", + "expanded": "library", "description": "Library or list of books" }, { "value": "other-not-illegal", - "expanded": "Other not illegal", + "expanded": "otherNotIllegal", "description": "Material not of interest to law enforcement - e.g. personal sites, Facebook mirrors." }, { "value": "legitimate", - "expanded": "Legitimate", + "expanded": "legitimate", "description": "Legitimate websites" }, { "value": "chat", - "expanded": "Chats platforms", + "expanded": "chatsPlatforms", "description": "Chats space or equivalent, which are not forums" }, { "value": "mixer", - "expanded": "Mixer", + "expanded": "mixer", "description": "Anonymization tools for crypto-currencies transactions" }, { "value": "mystery-box", - "expanded": "Mystery-Box", + "expanded": "mysteryBox", "description": "Mystery Box seller" }, { "value": "anonymizer", - "expanded": "Anonymizer", + "expanded": "anonymizer", "description": "Anonymization tools" }, { "value": "vpn-provider", - "expanded": "VPN-Provider", + "expanded": "vpnProvider", "description": "Provides VPN services and related" }, { "value": "email-provider", - "expanded": "EMail-Provider", + "expanded": "emailProvider", "description": "Provides e-mail services and related" }, { "value": "ponies", - "expanded": "Ponies", + "expanded": "ponies", "description": "self-explanatory. It's ponies" }, { "value": "games", - "expanded": "Games", + "expanded": "games", "description": "Flash or online games" }, { "value": "parody", - "expanded": "Parody or Joke", + "expanded": "parodyOrJoke", "description": "Meme, Parody, Jokes, Trolling, ..." }, { "value": "whistleblower", - "expanded": "Whistleblower", + "expanded": "whistleblower", "description": "Exposition and sharing of confidential information with protection of the witness in mind" }, { "value": "ransomware-group", - "expanded": "Ransomware Group", + "expanded": "ransomwareGroup", "description": "Ransomware group PR or leak website" } ] @@ -211,92 +221,92 @@ "entry": [ { "value": "education-training", - "expanded": "Education & Training", + "expanded": "educationTraining", "description": "Materials providing instruction - e.g. ‘how to’ guides" }, { "value": "wiki", - "expanded": "Wiki", + "expanded": "wiki", "description": "Wiki pages, documentation and information display" }, { "value": "forum", - "expanded": "Forum", + "expanded": "forum", "description": "Sites specifically designed for multiple users to communicate as peers" }, { "value": "file-sharing", - "expanded": "File Sharing", + "expanded": "fileSharing", "description": "General file sharing, typically (but not limited to) movie/image sharing" }, { "value": "hosting", - "expanded": "Hosting", + "expanded": "hosting", "description": "Hosting providers, e-mails, websites, file-storage etc." }, { "value": "ddos-services", - "expanded": "DDoS-Services", + "expanded": "ddosServices", "description": "Stresser, Booter, DDoSer, DDoS as a Service provider, DDoS tools, etc." }, { "value": "general", - "expanded": "General", + "expanded": "general", "description": "Materials not covered by the other motivations. Typically, materials of a nature not of interest to law enforcement. For example, personal biography sites." }, { "value": "information-sharing-reportage", - "expanded": "Information Sharing/Reportage", + "expanded": "InformationSharingReportage", "description": "Journalism/reporting on topics. Can include biased coverage, but obvious propaganda materials are covered by Recruitment/Advocacy." }, { "value": "scam", - "expanded": "Scam", + "expanded": "scam", "description": "Intentional confidence trick to fraud people or group of people" }, { "value": "political-speech", - "expanded": "Political-Speech", + "expanded": "politicalSpeech", "description": "Political, activism, without extremism." }, { "value": "conspirationist", - "expanded": "Conspirationist", + "expanded": "conspirationist", "description": "Conspirationist content, fake news, etc." }, { "value": "hate-speech", - "expanded": "Hate-Speech", + "expanded": "hateSpeech", "description": "Racism, violent, hate... speech." }, { "value": "religious", - "expanded": "Religious", + "expanded": "religious", "description": "Religious, faith, doctrinal related content." }, { "value": "marketplace-for-sale", - "expanded": "Marketplace/For Sale", + "expanded": "marketplaceForSale", "description": "Services/goods for sale, regardless of means of payment." }, { "value": "smuggling", - "expanded": "Smuggling", + "expanded": "smuggling", "description": "Information or trading of wild animals, prohibited goods, ... " }, { "value": "recruitment-advocacy", - "expanded": "Recruitment/Advocacy", + "expanded": "recruitmentAdvocacy", "description": "Propaganda" }, { "value": "system-placeholder", - "expanded": "System/Placeholder", + "expanded": "systemPlaceholder", "description": "Automatically generated content, not designed for any identifiable purpose other than diagnostics - e.g. “It Works” message provided by default by Apache2" }, { "value": "unclear", - "expanded": "Unclear", + "expanded": "unclear", "description": "Unable to completely establish motivation of material." } ] @@ -306,55 +316,195 @@ "entry": [ { "value": "incomplete", - "expanded": "Incomplete websites or information", + "expanded": "incomplete", "description": "Websites and pages that are unable to load completely properly" }, { "value": "captcha", - "expanded": "Captcha and Solvers", + "expanded": "captcha", "description": "Captchas and solvers elements" }, { "value": "login-forms", - "expanded": "Logins forms and gates", + "expanded": "loginForms", "description": "Authentication pages, login page, login forms that block access to an internal part of a website." }, { "value": "contact-forms", - "expanded": "Contact forms and gates", + "expanded": "contactForms", "description": "Forms to perform a contact request, send an e-mail, fill information, enter a password, ..." }, { "value": "encryption-keys", - "expanded": "Encryption and decryption keys", + "expanded": "encryptionKeys", "description": "e.g. PGP Keys, passwords, ..." }, { "value": "police-notice", - "expanded": "Police Notice", + "expanded": "policeNotice", "description": "Closed websites, with police-equivalent banners" }, { "value": "legal-statement", - "expanded": "Legal-Statement", + "expanded": "legalStatement", "description": "RGPD statement, Privacy-policy, guidelines of a websites or forum..." }, { "value": "test", - "expanded": "Test", + "expanded": "test", "description": "Test websites without any real consequences or effects" }, { "value": "videos", - "expanded": "Videos", + "expanded": "videos", "description": "Videos and streaming" }, + { + "value": "ransomware-post", + "expanded": "ransomwarePost", + "description": "Ransomware post published by a ransomware group" + }, { "value": "unclear", - "expanded": "Unclear", + "expanded": "unclear", "description": "Unable to completely establish structure of material." } ] + }, + { + "predicate": "service", + "entry": [ + { + "value": "url", + "expanded": "url", + "description": "Uniform Resource Locator (URL) of a dark-web. The url should indicate a protocol (http), a hostname (www.example.com), and a file name (index.html). Example: http://www.example.com/index.html" + }, + { + "value": "content-type", + "expanded": "contentType", + "description": "Content-Type representaton headerused to indicate the original media type of the resource (prior to any content encoding applied for sending). https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type" + }, + { + "value": "path", + "expanded": "path", + "description": "The URL path is the string of information that comes after the top level domain name " + }, + { + "value": "detection-date", + "expanded": "detectionDate", + "description": "Date in which the dark-web was detected. The date should be in ISO 8601 format. Example: 2019-01-01T00:00:00Z" + }, + { + "value": "network-protocol", + "expanded": "networkProtocol", + "description": "Network protocol used to access the dark-web site (e.g., HTTP, HTTPS)" + }, + { + "value": "port", + "expanded": "port", + "description": "Port number where the dark-web service is being offered" + }, + { + "value": "network", + "expanded": "network", + "description": "Overlay network (darknet) that host the service or content" + }, + { + "value": "found-at", + "expanded": "foundAt", + "description": "Domain or service where the dark-web where found at" + } + ] + }, + { + "predicate": "content", + "entry": [ + { + "value": "sha1sum", + "expanded": "sha1sum", + "description": "SHA-1 (Secure Hash Algorithm 1) hash of the HTML or objectName content" + }, + { + "value": "sha256sum", + "expanded": "sha256sum", + "description": "SHA-256 hash of the HTML or objectName content" + }, + { + "value": "ssdeep", + "expanded": "ssdeep", + "description": "ssdeep fuzzy hash of the HTML or objectName content" + }, + { + "value": "language", + "expanded": "language", + "description": "Detected language of the service in ISO 639‑1 Code. Example: en" + }, + { + "value": "html", + "expanded": "html", + "description": "HyperText Markup Language (HTML) used in a website" + }, + { + "value": "css", + "expanded": "css", + "description": "CSS (Cascading Style Sheets) used in a dark-web site" + }, + { + "value": "text", + "expanded": "text", + "description": "Content of the dark-web service without HTML tags" + }, + { + "value": "page-title", + "expanded": "pageTitle", + "description": "HTML tag content of a dark-web site" + }, + { + "value": "phone-number", + "expanded": "phoneNumber", + "description": "Phone number identified in the dark-web site" + }, + { + "value": "creditCard", + "expanded": "creditCard", + "description": "Credit card identified in the dark-web site" + }, + { + "value": "email", + "expanded": "email", + "description": "Email address identified in the dark-web site" + }, + { + "value": "pgp-public-key-block", + "expanded": "pgpPublicKeyBlock", + "description": "PGP public key block identified in the dark-web site" + }, + { + "value": "country", + "expanded": "country", + "description": "Associated country detected on the code of the dark-web site, following ISO 3166-1 alpha-2" + }, + { + "value": "company-name", + "expanded": "companyName", + "description": "Company name identified in a dark-web site" + }, + { + "value": "company-link", + "expanded": "companyLink", + "description": "Company link identified in a dark-web site" + }, + { + "value": "victim-address", + "expanded": "victimAddress", + "description": "Business address identified in a dark-web site" + }, + { + "value": "victim-TLD", + "expanded": "victimTLD", + "description": "Business Top Level Domain (TLD) of a company identified in a dark-web site" + } + ] } ] } diff --git a/death-possibilities/machinetag.json b/death-possibilities/machinetag.json new file mode 100644 index 0000000..6045c1f --- /dev/null +++ b/death-possibilities/machinetag.json @@ -0,0 +1,4304 @@ +{ + "version": 1, + "namespace": "death-possibilities", + "description": "Taxonomy of Death Possibilities", + "predicates": [ + { + "value": "(001-009) Intestinal infectious diseases" + }, + { + "value": "(010-018) Tuberculosis" + }, + { + "value": "(020-027) Zoonotic bacterial diseases" + }, + { + "value": "(030-041) Other bacterial diseases" + }, + { + "value": "(042-042) Human immunodeficiency virus [HIV] infection" + }, + { + "value": "(045-049) Poliomyelitis and other non-arthropod-borne viral diseases of central nervous system" + }, + { + "value": "(050-057) Viral diseases accompanied by exanthem" + }, + { + "value": "(060-066) Arthropod-borne viral diseases" + }, + { + "value": "(070-079) Other diseases due to viruses and Chlamydiae" + }, + { + "value": "(080-088) Rickettsioses and other arthropod-borne diseases" + }, + { + "value": "(090-099) Syphilis and other venereal diseases" + }, + { + "value": "(100-104) Other spirochaetal diseases" + }, + { + "value": "(110-118) Mycoses" + }, + { + "value": "(120-129) Helminthiases" + }, + { + "value": "(130-136) Other infectious and parasitic diseases" + }, + { + "value": "(137-139) Late effects of infectious and parasitic diseases" + }, + { + "value": "(140-149) Malignant neoplasm of lip, oral cavity and pharynx" + }, + { + "value": "(150-159) Malignant neoplasm of digestive organs and peritoneum" + }, + { + "value": "(160-165) Malignant neoplasm of respiratory and intrathoracic organs" + }, + { + "value": "(170-176) Malignant neoplasm of bone, connective tissue, skin and breast" + }, + { + "value": "(179-189) Malignant neoplasm of genito-urinary organs" + }, + { + "value": "(190-199) Malignant neoplasm of other and unspecified sites" + }, + { + "value": "(200-208) Malignant neoplasm of lymphatic and haematopoietic tissue" + }, + { + "value": "(210-229) Benign neoplasms" + }, + { + "value": "(230-234) Carcinoma in situ" + }, + { + "value": "(235-238) Neoplasms of uncertain behaviour" + }, + { + "value": "(239-239) Neoplasms of unspecified nature" + }, + { + "value": "(240-246) Disorders of thyroid gland" + }, + { + "value": "(250-259) Diseases of other endocrine glands" + }, + { + "value": "(260-269) Nutritional deficiencies" + }, + { + "value": "(270-279) Other metabolic disorders and immunity disorders" + }, + { + "value": "(280-289) Diseases of blood and blood-forming organs" + }, + { + "value": "(290-294) Organic psychotic conditions" + }, + { + "value": "(295-299) Other psychoses" + }, + { + "value": "(300-316) Neurotic disorders, personality disorders and other nonpsychotic mental disorders" + }, + { + "value": "(317-319) Mental retardation" + }, + { + "value": "(320-326) Inflammatory diseases of the central nervous system" + }, + { + "value": "(330-337) Hereditary and degenerative diseases of the central nervous system" + }, + { + "value": "(340-349) Other disorders of the central nervous system" + }, + { + "value": "(350-359) Disorders of the peripheral nervous system" + }, + { + "value": "(360-379) Disorders of the eye and adnexa" + }, + { + "value": "(380-389) Diseases of the ear and mastoid process" + }, + { + "value": "(390-392) Acute rheumatic fever" + }, + { + "value": "(393-398) Chronic rheumatic heart disease" + }, + { + "value": "(401-405) Hypertensive disease" + }, + { + "value": "(410-414) Ischaemic heart disease" + }, + { + "value": "(415-417) Diseases of pulmonary circulation" + }, + { + "value": "(420-429) Other forms of heart disease" + }, + { + "value": "(430-438) Cerebrovascular disease" + }, + { + "value": "(440-448) Diseases of arteries, arterioles and capillaries" + }, + { + "value": "(451-459) Diseases of veins and lymphatics, and other diseases of circulatory system" + }, + { + "value": "(460-466) Acute respiratory infections" + }, + { + "value": "(470-478) Other diseases of upper respiratory tract" + }, + { + "value": "(480-487) Pneumonia and influenza" + }, + { + "value": "(490-496) Chronic obstructive pulmonary disease and allied conditions" + }, + { + "value": "(500-508) Pneumoconioses and other lung diseases due to external agents" + }, + { + "value": "(510-519) Other diseases of respiratory system" + }, + { + "value": "(520-529) Diseases of oral cavity, salivary glands and jaws" + }, + { + "value": "(530-537) Diseases of oesophagus, stomach and duodenum" + }, + { + "value": "(540-543) Appendicitis" + }, + { + "value": "(550-553) Hernia of abdominal cavity" + }, + { + "value": "(555-558) Non-infective enteritis and colitis" + }, + { + "value": "(560-569) Other diseases of intestines and peritoneum" + }, + { + "value": "(570-579) Other diseases of digestive system" + }, + { + "value": "(580-589) Nephritis, nephrotic syndrome and nephrosis" + }, + { + "value": "(590-599) Other diseases of urinary system" + }, + { + "value": "(600-608) Diseases of male genital organs" + }, + { + "value": "(610-611) Disorders of breast" + }, + { + "value": "(614-616) Inflammatory disease of female pelvic organs" + }, + { + "value": "(617-629) Other disorders of female genital tract" + }, + { + "value": "(630-633) Ectopic and molar pregnancy" + }, + { + "value": "(634-639) Other pregnancy with abortive outcome" + }, + { + "value": "(640-648) Complications mainly related to pregnancy" + }, + { + "value": "(650-659) Normal delivery and other indications for care in pregnancy, labour and delivery" + }, + { + "value": "(660-669) Complications occurring mainly in the course of labour and delivery" + }, + { + "value": "(670-677) Complications of the puerperium" + }, + { + "value": "(680-686) Infections of skin and subcutaneous tissue" + }, + { + "value": "(690-698) Other inflammatory conditions of skin and subcutaneous tissue" + }, + { + "value": "(700-709) Other diseases of skin and subcutaneous tissue" + }, + { + "value": "(710-719) Arthropathies and related disorders" + }, + { + "value": "(720-724) Dorsopathies" + }, + { + "value": "(725-729) Rheumatism, excluding the back" + }, + { + "value": "(730-739) Osteopathies, chondropathies and acquired musculoskeletal deformities" + }, + { + "value": "(740-759) Congenital anomalies" + }, + { + "value": "(760-763) Maternal causes of perinatal morbidity and mortality" + }, + { + "value": "(764-779) Other conditions originating in the perinatal period" + }, + { + "value": "(780-789) Symptoms" + }, + { + "value": "(790-796) Nonspecific abnormal findings" + }, + { + "value": "(797-799) Ill-defined and unknown causes of morbidity and mortality" + }, + { + "value": "(800-804) Fracture of skull" + }, + { + "value": "(805-809) Fracture of neck and trunk" + }, + { + "value": "(810-819) Fracture of upper limb" + }, + { + "value": "(820-829) Fracture of lower limb" + }, + { + "value": "(830-839) Dislocation" + }, + { + "value": "(840-848) Sprains and strains of joints and adjacent muscles" + }, + { + "value": "(850-854) Intracranial injury, excluding those with skull fracture" + }, + { + "value": "(860-869) Internal injury of chest, abdomen and pelvis" + }, + { + "value": "(870-879) Open wound of head, neck and trunk" + }, + { + "value": "(880-887) Open wound of upper limb" + }, + { + "value": "(890-897) Open wound of lower limb" + }, + { + "value": "(900-904) Injury to blood vessels" + }, + { + "value": "(905-909) Late effects of injuries, poisonings, toxic effects and other external causes" + }, + { + "value": "(910-919) Superficial injury" + }, + { + "value": "(920-924) Contusion with intact skin surface" + }, + { + "value": "(925-929) Crushing injury" + }, + { + "value": "(930-939) Effects of foreign body entering through orifice" + }, + { + "value": "(940-949) Burns" + }, + { + "value": "(950-957) Injury to nerves and spinal cord" + }, + { + "value": "(958-959) Certain traumatic complications and unspecified injuries" + }, + { + "value": "(960-979) Poisoning by drugs, medicaments and biological substances" + }, + { + "value": "(980-989) Toxic effects of substances chiefly nonmedicinal as to source" + }, + { + "value": "(990-995) Other and unspecified effects of external causes" + }, + { + "value": "(996-999) Complications of surgical and medical care, not elsewhere classified" + }, + { + "value": "(E800-E807) Railway accidents" + }, + { + "value": "(E810-E819) Motor vehicle traffic accidents" + }, + { + "value": "(E820-E825) Motor vehicle nontraffic accidents" + }, + { + "value": "(E826-E829) Other road vehicle accidents" + }, + { + "value": "(E830-E838) Water transport accidents" + }, + { + "value": "(E840-E845) Air and space transport accidents" + }, + { + "value": "(E846-E848) Vehicle accidents not elsewhere classifiable" + }, + { + "value": "(E849-E858) Accidental poisoning by drugs, medicaments and biologicals" + }, + { + "value": "(E860-E869) Accidental poisoning by other solid and liquid substances, gases and vapours" + }, + { + "value": "(E870-E876) Misadventures to patients during surgical and medical care" + }, + { + "value": "(E878-E879) Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure" + }, + { + "value": "(E880-E888) Accidental falls" + }, + { + "value": "(E890-E899) Accidents caused by fire and flames" + }, + { + "value": "(E900-E909) Accidents due to natural and environmental factors" + }, + { + "value": "(E910-E915) Accidents caused by submersion, suffocation and foreign bodies" + }, + { + "value": "(E916-E928) Other accidents" + }, + { + "value": "(E929-E929) Late effects of accidental injury" + }, + { + "value": "(E930-E949) Drugs, medicaments and biological substances causing adverse effects in therapeutic use" + }, + { + "value": "(E950-E959) Suicide and self-inflicted injury" + }, + { + "value": "(E960-E969) Homicide and injury purposely inflicted by other persons" + } + ], + "values": [ + { + "predicate": "(001-009) Intestinal infectious diseases", + "entry": [ + { + "value": "001 Cholera" + }, + { + "value": "002 Typhoid and paratyphoid fevers" + }, + { + "value": "003 Other Salmonella infections" + }, + { + "value": "004 Shigellosis" + }, + { + "value": "005 Other food poisoning (bacterial)" + }, + { + "value": "006 Amoebiasis" + }, + { + "value": "007 Other protozoal intestinal diseases" + }, + { + "value": "008 Intestinal infections due to other organisms" + }, + { + "value": "009 Ill-defined intestinal infections" + } + ] + }, + { + "predicate": "(010-018) Tuberculosis", + "entry": [ + { + "value": "010 Primary tuberculous infection" + }, + { + "value": "011 Pulmonary tuberculosis" + }, + { + "value": "012 Other respiratory tuberculosis" + }, + { + "value": "013 Tuberculosis of meninges and central nervous system" + }, + { + "value": "014 Tuberculosis of intestines, peritoneum and mesenteric glands" + }, + { + "value": "015 Tuberculosis of bones and joints" + }, + { + "value": "016 Tuberculosis of genito-urinary system" + }, + { + "value": "017 Tuberculosis of other organs" + }, + { + "value": "018 Miliary tuberculosis" + } + ] + }, + { + "predicate": "(020-027) Zoonotic bacterial diseases", + "entry": [ + { + "value": "020 Plague" + }, + { + "value": "021 Tularaemia" + }, + { + "value": "022 Anthrax" + }, + { + "value": "023 Brucellosis" + }, + { + "value": "024 Glanders" + }, + { + "value": "025 Melioidosis" + }, + { + "value": "026 Rat-bite fever" + }, + { + "value": "027 Other zoonotic bacterial diseases" + } + ] + }, + { + "predicate": "(030-041) Other bacterial diseases", + "entry": [ + { + "value": "030 Leprosy" + }, + { + "value": "031 Diseases due to other mycobacteria" + }, + { + "value": "032 Diphtheria" + }, + { + "value": "033 Whooping cough" + }, + { + "value": "034 Streptococcal sore throat and scarlatina" + }, + { + "value": "035 Erysipelas" + }, + { + "value": "036 Meningococcal infection" + }, + { + "value": "037 Tetanus" + }, + { + "value": "038 Septicaemia" + }, + { + "value": "039 Actinomycotic infections" + }, + { + "value": "040 Other bacterial diseases" + }, + { + "value": "041 Bacterial infection in conditions classified elsewhere and of unspecified site" + } + ] + }, + { + "predicate": "(042-042) Human immunodeficiency virus [HIV] infection", + "entry": [ + { + "value": "042 Human immunodeficiency virus [HIV] disease" + } + ] + }, + { + "predicate": "(045-049) Poliomyelitis and other non-arthropod-borne viral diseases of central nervous system", + "entry": [ + { + "value": "045 Acute poliomyelitis" + }, + { + "value": "046 Slow virus infection of central nervous system" + }, + { + "value": "047 Meningitis due to enterovirus" + }, + { + "value": "048 Other enterovirus diseases of central nervous system" + }, + { + "value": "049 Other non-arthropod-borne viral diseases of central nervous system" + } + ] + }, + { + "predicate": "(050-057) Viral diseases accompanied by exanthem", + "entry": [ + { + "value": "050 Smallpox" + }, + { + "value": "051 Cowpox and paravaccinia" + }, + { + "value": "052 Chickenpox" + }, + { + "value": "053 Herpes zoster" + }, + { + "value": "054 Herpes simplex" + }, + { + "value": "055 Measles" + }, + { + "value": "056 Rubella" + }, + { + "value": "057 Other viral exanthemata" + } + ] + }, + { + "predicate": "(060-066) Arthropod-borne viral diseases", + "entry": [ + { + "value": "060 Yellow fever" + }, + { + "value": "061 Dengue" + }, + { + "value": "062 Mosquito-borne viral encephalitis" + }, + { + "value": "063 Tick-borne viral encephalitis" + }, + { + "value": "064 Viral encephalitis transmitted by other and unspecified arthropods" + }, + { + "value": "065 Arthropod-borne haemorrhagic fever" + }, + { + "value": "066 Other arthropod-borne viral diseases" + } + ] + }, + { + "predicate": "(070-079) Other diseases due to viruses and Chlamydiae", + "entry": [ + { + "value": "070 Viral hepatitis" + }, + { + "value": "071 Rabies" + }, + { + "value": "072 Mumps" + }, + { + "value": "073 Ornithosis" + }, + { + "value": "074 Specific diseases due to Coxsackie virus" + }, + { + "value": "075 Infectious mononucleosis" + }, + { + "value": "076 Trachoma" + }, + { + "value": "077 Other diseases of conjunctiva due to viruses and Chlamydiae" + }, + { + "value": "078 Other diseases due to viruses and Chlamydiae" + }, + { + "value": "079 Viral and chlamydial infection in conditions classified elsewhere and of unspecified site" + } + ] + }, + { + "predicate": "(080-088) Rickettsioses and other arthropod-borne diseases", + "entry": [ + { + "value": "080 Louse-borne [epidemic] typhus" + }, + { + "value": "081 Other typhus" + }, + { + "value": "082 Tick-borne rickettsioses" + }, + { + "value": "083 Other rickettsioses" + }, + { + "value": "084 Malaria" + }, + { + "value": "085 Leishmaniasis" + }, + { + "value": "086 Trypanosomiasis" + }, + { + "value": "087 Relapsing fever" + }, + { + "value": "088 Other arthropod-borne diseases" + } + ] + }, + { + "predicate": "(090-099) Syphilis and other venereal diseases", + "entry": [ + { + "value": "090 Congenital syphilis" + }, + { + "value": "091 Early syphilis, symptomatic" + }, + { + "value": "092 Early syphilis, latent" + }, + { + "value": "093 Cardiovascular syphilis" + }, + { + "value": "094 Neurosyphilis" + }, + { + "value": "095 Other forms of late syphilis, with symptoms" + }, + { + "value": "096 Late syphilis, latent" + }, + { + "value": "097 Other and unspecified syphilis" + }, + { + "value": "098 Gonococcal infections" + }, + { + "value": "099 Other venereal diseases" + } + ] + }, + { + "predicate": "(100-104) Other spirochaetal diseases", + "entry": [ + { + "value": "100 Leptospirosis" + }, + { + "value": "101 Vincent's angina" + }, + { + "value": "102 Yaws" + }, + { + "value": "103 Pinta" + }, + { + "value": "104 Other spirochaetal infection" + } + ] + }, + { + "predicate": "(110-118) Mycoses", + "entry": [ + { + "value": "110 Dermatophytosis" + }, + { + "value": "111 Dermatomycosis, other and unspecified" + }, + { + "value": "112 Candidiasis" + }, + { + "value": "113 Actinomycosis" + }, + { + "value": "114 Coccidioidomycosis" + }, + { + "value": "115 Histoplasmosis" + }, + { + "value": "116 Blastomycotic infection" + }, + { + "value": "117 Other mycoses" + }, + { + "value": "118 Opportunistic mycoses" + } + ] + }, + { + "predicate": "(120-129) Helminthiases", + "entry": [ + { + "value": "120 Schistosomiasis [bilharziasis]" + }, + { + "value": "121 Other trematode infections" + }, + { + "value": "122 Echinococcosis" + }, + { + "value": "123 Other cestode infection" + }, + { + "value": "124 Trichinosis" + }, + { + "value": "125 Filarial infection and dracontiasis" + }, + { + "value": "126 Ankylostomiasis and necatoriasis" + }, + { + "value": "127 Other intestinal helminthiases" + }, + { + "value": "128 Other and unspecified helminthiases" + }, + { + "value": "129 Intestinal parasitism, unspecified" + } + ] + }, + { + "predicate": "(130-136) Other infectious and parasitic diseases", + "entry": [ + { + "value": "130 Toxoplasmosis" + }, + { + "value": "131 Trichomoniasis" + }, + { + "value": "132 Pediculosis and phthirus infestation" + }, + { + "value": "133 Acariasis" + }, + { + "value": "134 Other infestation" + }, + { + "value": "135 Sarcoidosis" + }, + { + "value": "136 Other and unspecified infectious and parasitic diseases" + } + ] + }, + { + "predicate": "(137-139) Late effects of infectious and parasitic diseases", + "entry": [ + { + "value": "137 Late effects of tuberculosis" + }, + { + "value": "138 Late effects of acute poliomyelitis" + }, + { + "value": "139 Late effects of other infectious and parasitic diseases" + } + ] + }, + { + "predicate": "(140-149) Malignant neoplasm of lip, oral cavity and pharynx", + "entry": [ + { + "value": "140 Malignant neoplasm of lip" + }, + { + "value": "141 Malignant neoplasm of tongue" + }, + { + "value": "142 Malignant neoplasm of major salivary glands" + }, + { + "value": "143 Malignant neoplasm of gum" + }, + { + "value": "144 Malignant neoplasm of floor of mouth" + }, + { + "value": "145 Malignant neoplasm of other and unspecified parts of mouth" + }, + { + "value": "146 Malignant neoplasm of oropharynx" + }, + { + "value": "147 Malignant neoplasm of nasopharynx" + }, + { + "value": "148 Malignant neoplasm of hypopharynx" + }, + { + "value": "149 Malignant neoplasm of other and ill-defined sites within the lip, oral cavity and pharynx" + } + ] + }, + { + "predicate": "(150-159) Malignant neoplasm of digestive organs and peritoneum", + "entry": [ + { + "value": "150 Malignant neoplasm of oesophagus" + }, + { + "value": "151 Malignant neoplasm of stomach" + }, + { + "value": "152 Malignant neoplasm of small intestine, including duodenum" + }, + { + "value": "153 Malignant neoplasm of colon" + }, + { + "value": "154 Malignant neoplasm of rectum, rectosigmoid junction and anus" + }, + { + "value": "155 Malignant neoplasm of liver and intrahepatic bile ducts" + }, + { + "value": "156 Malignant neoplasm of gallbladder and extrahepatic bile ducts" + }, + { + "value": "157 Malignant neoplasm of pancreas" + }, + { + "value": "158 Malignant neoplasm of retroperitoneum and peritoneum" + }, + { + "value": "159 Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum" + } + ] + }, + { + "predicate": "(160-165) Malignant neoplasm of respiratory and intrathoracic organs", + "entry": [ + { + "value": "160 Malignant neoplasm of nasal cavities, middle ear and accessory sinuses" + }, + { + "value": "161 Malignant neoplasm of larynx" + }, + { + "value": "162 Malignant neoplasm of trachea, bronchus and lung" + }, + { + "value": "163 Malignant neoplasm of pleura" + }, + { + "value": "164 Malignant neoplasm of thymus, heart and mediastinum" + }, + { + "value": "165 Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs" + } + ] + }, + { + "predicate": "(170-176) Malignant neoplasm of bone, connective tissue, skin and breast", + "entry": [ + { + "value": "170 Malignant neoplasm of bone and articular cartilage" + }, + { + "value": "171 Malignant neoplasm of connective and other soft tissue" + }, + { + "value": "172 Malignant melanoma of skin" + }, + { + "value": "173 Other malignant neoplasm of skin" + }, + { + "value": "174 Malignant neoplasm of female breast" + }, + { + "value": "175 Malignant neoplasm of male breast" + }, + { + "value": "176 Kaposi's sarcoma" + } + ] + }, + { + "predicate": "(179-189) Malignant neoplasm of genito-urinary organs", + "entry": [ + { + "value": "179 Malignant neoplasm of uterus, part unspecified" + }, + { + "value": "180 Malignant neoplasm of cervix uteri" + }, + { + "value": "181 Malignant neoplasm of placenta" + }, + { + "value": "182 Malignant neoplasm of body of uterus" + }, + { + "value": "183 Malignant neoplasm of ovary and other uterine adnexa" + }, + { + "value": "184 Malignant neoplasm of other and unspecified female genital organs" + }, + { + "value": "185 Malignant neoplasm of prostate" + }, + { + "value": "186 Malignant neoplasm of testis" + }, + { + "value": "187 Malignant neoplasm of penis and other male genital organs" + }, + { + "value": "188 Malignant neoplasm of bladder" + }, + { + "value": "189 Malignant neoplasm of kidney and other and unspecified urinary organs" + } + ] + }, + { + "predicate": "(190-199) Malignant neoplasm of other and unspecified sites", + "entry": [ + { + "value": "190 Malignant neoplasm of eye" + }, + { + "value": "191 Malignant neoplasm of brain" + }, + { + "value": "192 Malignant neoplasm of other and unspecified parts of nervous system" + }, + { + "value": "193 Malignant neoplasm of thyroid gland" + }, + { + "value": "194 Malignant neoplasm of other endocrine glands and related structures" + }, + { + "value": "195 Malignant neoplasm of other and ill-defined sites" + }, + { + "value": "196 Secondary and unspecified malignant neoplasm of lymph nodes" + }, + { + "value": "197 Secondary malignant neoplasm of respiratory and digestive systems" + }, + { + "value": "198 Secondary malignant neoplasm of other specified sites" + }, + { + "value": "199 Malignant neoplasm without specification of site" + } + ] + }, + { + "predicate": "(200-208) Malignant neoplasm of lymphatic and haematopoietic tissue", + "entry": [ + { + "value": "200 Lymphosarcoma and reticulosarcoma" + }, + { + "value": "201 Hodgkin's disease" + }, + { + "value": "202 Other malignant neoplasm of lymphoid and histiocytic tissue" + }, + { + "value": "203 Multiple myeloma and immunoproliferative neoplasms" + }, + { + "value": "204 Lymphoid leukaemia" + }, + { + "value": "205 Myeloid leukaemia" + }, + { + "value": "206 Monocytic leukaemia" + }, + { + "value": "207 Other specified leukaemia" + }, + { + "value": "208 Leukaemia of unspecified cell type" + } + ] + }, + { + "predicate": "(210-229) Benign neoplasms", + "entry": [ + { + "value": "210 Benign neoplasm of lip, oral cavity and pharynx" + }, + { + "value": "211 Benign neoplasm of other parts of digestive system" + }, + { + "value": "212 Benign neoplasm of respiratory and intrathoracic organs" + }, + { + "value": "213 Benign neoplasm of bone and articular cartilage" + }, + { + "value": "214 Lipoma" + }, + { + "value": "215 Other benign neoplasm of connective and other soft tissue" + }, + { + "value": "216 Benign neoplasm of skin" + }, + { + "value": "217 Benign neoplasm of breast" + }, + { + "value": "218 Uterine leiomyoma" + }, + { + "value": "219 Other benign neoplasm of uterus" + }, + { + "value": "220 Benign neoplasm of ovary" + }, + { + "value": "221 Benign neoplasm of other female genital organs" + }, + { + "value": "222 Benign neoplasm of male genital organs" + }, + { + "value": "223 Benign neoplasm of kidney and other urinary organs" + }, + { + "value": "224 Benign neoplasm of eye" + }, + { + "value": "225 Benign neoplasm of brain and other parts of nervous system" + }, + { + "value": "226 Benign neoplasm of thyroid gland" + }, + { + "value": "227 Benign neoplasm of other endocrine glands and related structures" + }, + { + "value": "228 Haemangioma and lymphangioma, any site" + }, + { + "value": "229 Benign neoplasm of other and unspecified sites" + } + ] + }, + { + "predicate": "(230-234) Carcinoma in situ", + "entry": [ + { + "value": "230 Carcinoma in situ of digestive organs" + }, + { + "value": "231 Carcinoma in situ of respiratory system" + }, + { + "value": "232 Carcinoma in situ of skin" + }, + { + "value": "233 Carcinoma in situ of breast and genito-urinary system" + }, + { + "value": "234 Carcinoma in situ of other and unspecified sites" + } + ] + }, + { + "predicate": "(235-238) Neoplasms of uncertain behaviour", + "entry": [ + { + "value": "235 Neoplasm of uncertain behaviour of digestive and respiratory systems" + }, + { + "value": "236 Neoplasm of uncertain behaviour of genito-urinary organs" + }, + { + "value": "237 Neoplasm of uncertain behaviour of endocrine glands and nervous system" + }, + { + "value": "238 Neoplasm of uncertain behaviour of other and unspecified sites and tissues" + } + ] + }, + { + "predicate": "(239-239) Neoplasms of unspecified nature", + "entry": [ + { + "value": "239 Neoplasm of unspecified nature" + } + ] + }, + { + "predicate": "(240-246) Disorders of thyroid gland", + "entry": [ + { + "value": "240 Simple and unspecified goitre" + }, + { + "value": "241 Non-toxic nodular goitre" + }, + { + "value": "242 Thyrotoxicosis with or without goitre" + }, + { + "value": "243 Congenital hypothyroidism" + }, + { + "value": "244 Acquired hypothyroidism" + }, + { + "value": "245 Thyroiditis" + }, + { + "value": "246 Other disorders of thyroid" + } + ] + }, + { + "predicate": "(250-259) Diseases of other endocrine glands", + "entry": [ + { + "value": "250 Diabetes mellitus" + }, + { + "value": "251 Other disorders of pancreatic internal secretion" + }, + { + "value": "252 Disorders of parathyroid gland" + }, + { + "value": "253 Disorders of the pituitary gland and its hypothalamic control" + }, + { + "value": "254 Diseases of thymus gland" + }, + { + "value": "255 Disorders of adrenal glands" + }, + { + "value": "256 Ovarian dysfunction" + }, + { + "value": "257 Testicular dysfunction" + }, + { + "value": "258 Polyglandular dysfunction and related disorders" + }, + { + "value": "259 Other endocrine disorders" + } + ] + }, + { + "predicate": "(260-269) Nutritional deficiencies", + "entry": [ + { + "value": "260 Kwashiorkor" + }, + { + "value": "261 Nutritional marasmus" + }, + { + "value": "262 Other severe protein-calorie malnutrition" + }, + { + "value": "263 Other and unspecified protein-calorie malnutrition" + }, + { + "value": "264 Vitamin A deficiency" + }, + { + "value": "265 Thiamine and niacin deficiency states" + }, + { + "value": "266 Deficiency of B-complex components" + }, + { + "value": "267 Ascorbic acid deficiency" + }, + { + "value": "268 Vitamin D deficiency" + }, + { + "value": "269 Other nutritional deficiencies" + } + ] + }, + { + "predicate": "(270-279) Other metabolic disorders and immunity disorders", + "entry": [ + { + "value": "270 Disorders of amino-acid transport and metabolism" + }, + { + "value": "271 Disorders of carbohydrate transport and metabolism" + }, + { + "value": "272 Disorders of lipoid metabolism" + }, + { + "value": "273 Disorders of plasma protein metabolism" + }, + { + "value": "274 Gout" + }, + { + "value": "275 Disorders of mineral metabolism" + }, + { + "value": "276 Disorders of fluid, electrolyte and acid-base balance" + }, + { + "value": "277 Other and unspecified disorders of metabolism" + }, + { + "value": "278 Obesity and other hyperalimentation" + }, + { + "value": "279 Disorders involving the immune mechanism" + } + ] + }, + { + "predicate": "(280-289) Diseases of blood and blood-forming organs", + "entry": [ + { + "value": "280 Iron deficiency anaemias" + }, + { + "value": "281 Other deficiency anaemias" + }, + { + "value": "282 Hereditary haemolytic anaemias" + }, + { + "value": "283 Acquired haemolytic anaemias" + }, + { + "value": "284 Aplastic anaemia" + }, + { + "value": "285 Other and unspecified anaemias" + }, + { + "value": "286 Coagulation defects" + }, + { + "value": "287 Purpura and other haemorrhagic conditions" + }, + { + "value": "288 Diseases of white blood cells" + }, + { + "value": "289 Other diseases of blood and blood-forming organs" + } + ] + }, + { + "predicate": "(290-294) Organic psychotic conditions", + "entry": [ + { + "value": "290 Senile and presenile organic psychotic conditions" + }, + { + "value": "291 Alcoholic psychoses" + }, + { + "value": "292 Drug psychoses" + }, + { + "value": "293 Transient organic psychotic conditions" + }, + { + "value": "294 Other organic psychotic conditions (chronic)" + } + ] + }, + { + "predicate": "(295-299) Other psychoses", + "entry": [ + { + "value": "295 Schizophrenic psychoses" + }, + { + "value": "296 Affective psychoses" + }, + { + "value": "297 Paranoid states" + }, + { + "value": "298 Other nonorganic psychoses" + }, + { + "value": "299 Psychoses with origin specific to childhood" + } + ] + }, + { + "predicate": "(300-316) Neurotic disorders, personality disorders and other nonpsychotic mental disorders", + "entry": [ + { + "value": "300 Neurotic disorders" + }, + { + "value": "301 Personality disorders" + }, + { + "value": "302 Sexual deviations and disorders" + }, + { + "value": "303 Alcohol dependence syndrome" + }, + { + "value": "304 Drug dependence" + }, + { + "value": "305 Nondependent abuse of drugs" + }, + { + "value": "306 Physiological malfunction arising from mental factors" + }, + { + "value": "307 Special symptoms or syndromes not elsewhere classified" + }, + { + "value": "308 Acute reaction to stress" + }, + { + "value": "309 Adjustment reaction" + }, + { + "value": "310 Specific nonpsychotic mental disorders following organic brain damage" + }, + { + "value": "311 Depressive disorder, not elsewhere classified" + }, + { + "value": "312 Disturbance of conduct not elsewhere classified" + }, + { + "value": "313 Disturbance of emotions specific to childhood and adolescence" + }, + { + "value": "314 Hyperkinetic syndrome of childhood" + }, + { + "value": "315 Specific delays in development" + }, + { + "value": "316 Psychic factors associated with diseases classified elsewhere" + } + ] + }, + { + "predicate": "(317-319) Mental retardation", + "entry": [ + { + "value": "317 Mild mental retardation" + }, + { + "value": "318 Other specified mental retardation" + }, + { + "value": "319 Unspecified mental retardation" + } + ] + }, + { + "predicate": "(320-326) Inflammatory diseases of the central nervous system", + "entry": [ + { + "value": "320 Bacterial meningitis" + }, + { + "value": "321 Meningitis due to other organisms" + }, + { + "value": "322 Meningitis of unspecified cause" + }, + { + "value": "323 Encephalitis, myelitis and encephalomyelitis" + }, + { + "value": "324 Intracranial and intraspinal abscess" + }, + { + "value": "325 Phlebitis and thrombophlebitis of intracranial venous sinuses" + }, + { + "value": "326 Late effects of intracranial abscess or pyogenic infection" + } + ] + }, + { + "predicate": "(330-337) Hereditary and degenerative diseases of the central nervous system", + "entry": [ + { + "value": "330 Cerebral degenerations usually manifest in childhood" + }, + { + "value": "331 Other cerebral degenerations" + }, + { + "value": "332 Parkinson's disease" + }, + { + "value": "333 Other extrapyramidal disease and abnormal movement disorders" + }, + { + "value": "334 Spinocerebellar disease" + }, + { + "value": "335 Anterior horn cell disease" + }, + { + "value": "336 Other diseases of spinal cord" + }, + { + "value": "337 Disorders of the autonomic nervous system" + } + ] + }, + { + "predicate": "(340-349) Other disorders of the central nervous system", + "entry": [ + { + "value": "340 Multiple sclerosis" + }, + { + "value": "341 Other demyelinating diseases of central nervous system" + }, + { + "value": "342 Hemiplegia" + }, + { + "value": "343 Infantile cerebral palsy" + }, + { + "value": "344 Other paralytic syndromes" + }, + { + "value": "345 Epilepsy" + }, + { + "value": "346 Migraine" + }, + { + "value": "347 Cataplexy and narcolepsy" + }, + { + "value": "348 Other conditions of brain" + }, + { + "value": "349 Other and unspecified disorders of the nervous system" + } + ] + }, + { + "predicate": "(350-359) Disorders of the peripheral nervous system", + "entry": [ + { + "value": "350 Trigeminal nerve disorders" + }, + { + "value": "351 Facial nerve disorders" + }, + { + "value": "352 Disorders of other cranial nerves" + }, + { + "value": "353 Nerve root and plexus disorders" + }, + { + "value": "354 Mononeuritis of upper limb and mononeuritis multiplex" + }, + { + "value": "355 Mononeuritis of lower limb" + }, + { + "value": "356 Hereditary and idiopathic peripheral neuropathy" + }, + { + "value": "357 Inflammatory and toxic neuropathy" + }, + { + "value": "358 Myoneural disorders" + }, + { + "value": "359 Muscular dystrophies and other myopathies" + } + ] + }, + { + "predicate": "(360-379) Disorders of the eye and adnexa", + "entry": [ + { + "value": "360 Disorders of the globe" + }, + { + "value": "361 Retinal detachments and defects" + }, + { + "value": "362 Other retinal disorders" + }, + { + "value": "363 Chorioretinal inflammations and scars and other disorders of choroid" + }, + { + "value": "364 Disorders of iris and ciliary body" + }, + { + "value": "365 Glaucoma" + }, + { + "value": "366 Cataract" + }, + { + "value": "367 Disorders of refraction and accommodation" + }, + { + "value": "368 Visual disturbances" + }, + { + "value": "369 Blindness and low vision" + }, + { + "value": "370 Keratitis" + }, + { + "value": "371 Corneal opacity and other disorders of cornea" + }, + { + "value": "372 Disorders of conjunctiva" + }, + { + "value": "373 Inflammation of eyelids" + }, + { + "value": "374 Other disorders of eyelids" + }, + { + "value": "375 Disorders of lachrymal system" + }, + { + "value": "376 Disorders of the orbit" + }, + { + "value": "377 Disorders of optic nerve and visual pathways" + }, + { + "value": "378 Strabismus and other disorders of binocular eye movements" + }, + { + "value": "379 Other disorders of eye" + } + ] + }, + { + "predicate": "(380-389) Diseases of the ear and mastoid process", + "entry": [ + { + "value": "380 Disorders of external ear" + }, + { + "value": "381 Nonsuppurative otitis media and Eustachian tube disorders" + }, + { + "value": "382 Suppurative and unspecified otitis media" + }, + { + "value": "383 Mastoiditis and related conditions" + }, + { + "value": "384 Other disorders of tympanic membrane" + }, + { + "value": "385 Other disorders of middle ear and mastoid" + }, + { + "value": "386 Vertiginous syndromes and other disorders of vestibular system" + }, + { + "value": "387 Otosclerosis" + }, + { + "value": "388 Other disorders of ear" + }, + { + "value": "389 Deafness" + } + ] + }, + { + "predicate": "(390-392) Acute rheumatic fever", + "entry": [ + { + "value": "390 Rheumatic fever without mention of heart involvement" + }, + { + "value": "391 Rheumatic fever with heart involvement" + }, + { + "value": "392 Rheumatic chorea" + } + ] + }, + { + "predicate": "(393-398) Chronic rheumatic heart disease", + "entry": [ + { + "value": "393 Chronic rheumatic pericarditis" + }, + { + "value": "394 Diseases of mitral valve" + }, + { + "value": "395 Diseases of aortic valve" + }, + { + "value": "396 Diseases of mitral and aortic valves" + }, + { + "value": "397 Diseases of other endocardial structures" + }, + { + "value": "398 Other rheumatic heart disease" + } + ] + }, + { + "predicate": "(401-405) Hypertensive disease", + "entry": [ + { + "value": "401 Essential hypertension" + }, + { + "value": "402 Hypertensive heart disease" + }, + { + "value": "403 Hypertensive renal disease" + }, + { + "value": "404 Hypertensive heart and renal disease" + }, + { + "value": "405 Secondary hypertension" + } + ] + }, + { + "predicate": "(410-414) Ischaemic heart disease", + "entry": [ + { + "value": "410 Acute myocardial infarction" + }, + { + "value": "411 Other acute and subacute forms of ischaemic heart disease" + }, + { + "value": "412 Old myocardial infarction" + }, + { + "value": "413 Angina pectoris" + }, + { + "value": "414 Other forms of chronic ischaemic heart disease" + } + ] + }, + { + "predicate": "(415-417) Diseases of pulmonary circulation", + "entry": [ + { + "value": "415 Acute pulmonary heart disease" + }, + { + "value": "416 Chronic pulmonary heart disease" + }, + { + "value": "417 Other diseases of pulmonary circulation" + } + ] + }, + { + "predicate": "(420-429) Other forms of heart disease", + "entry": [ + { + "value": "420 Acute pericarditis" + }, + { + "value": "421 Acute and subacute endocarditis" + }, + { + "value": "422 Acute myocarditis" + }, + { + "value": "423 Other diseases of pericardium" + }, + { + "value": "424 Other diseases of endocardium" + }, + { + "value": "425 Cardiomyopathy" + }, + { + "value": "426 Conduction disorders" + }, + { + "value": "427 Cardiac dysrhythmias" + }, + { + "value": "428 Heart failure" + }, + { + "value": "429 Ill-defined descriptions and complications of heart disease" + } + ] + }, + { + "predicate": "(430-438) Cerebrovascular disease", + "entry": [ + { + "value": "430 Subarachnoid haemorrhage" + }, + { + "value": "431 Intracerebral haemorrhage" + }, + { + "value": "432 Other and unspecified intracranial haemorrhage" + }, + { + "value": "433 Occlusion and stenosis of precerebral arteries" + }, + { + "value": "434 Occlusion of cerebral arteries" + }, + { + "value": "435 Transient cerebral ischaemia" + }, + { + "value": "436 Acute but ill-defined cerebrovascular disease" + }, + { + "value": "437 Other and ill-defined cerebrovascular disease" + }, + { + "value": "438 Late effects of cerebrovascular disease" + } + ] + }, + { + "predicate": "(440-448) Diseases of arteries, arterioles and capillaries", + "entry": [ + { + "value": "440 Atherosclerosis" + }, + { + "value": "441 Aortic aneurysm" + }, + { + "value": "442 Other aneurysm" + }, + { + "value": "443 Other peripheral vascular disease" + }, + { + "value": "444 Arterial embolism and thrombosis" + }, + { + "value": "446 Polyarteritis nodosa and allied conditions" + }, + { + "value": "447 Other disorders of arteries and arterioles" + }, + { + "value": "448 Diseases of capillaries" + } + ] + }, + { + "predicate": "(451-459) Diseases of veins and lymphatics, and other diseases of circulatory system", + "entry": [ + { + "value": "451 Phlebitis and thrombophlebitis" + }, + { + "value": "452 Portal vein thrombosis" + }, + { + "value": "453 Other venous embolism and thrombosis" + }, + { + "value": "454 Varicose veins of lower extremities" + }, + { + "value": "455 Haemorrhoids" + }, + { + "value": "456 Varicose veins of other sites" + }, + { + "value": "457 Non-infective disorders of lymphatic channels" + }, + { + "value": "458 Hypotension" + }, + { + "value": "459 Other disorders of circulatory system" + } + ] + }, + { + "predicate": "(460-466) Acute respiratory infections", + "entry": [ + { + "value": "460 Acute nasopharyngitis [common cold]" + }, + { + "value": "461 Acute sinusitis" + }, + { + "value": "462 Acute pharyngitis" + }, + { + "value": "463 Acute tonsillitis" + }, + { + "value": "464 Acute laryngitis and tracheitis" + }, + { + "value": "465 Acute upper respiratory infections of multiple or unspecified sites" + }, + { + "value": "466 Acute bronchitis and bronchiolitis" + } + ] + }, + { + "predicate": "(470-478) Other diseases of upper respiratory tract", + "entry": [ + { + "value": "470 Deflected nasal septum" + }, + { + "value": "471 Nasal polyps" + }, + { + "value": "472 Chronic pharyngitis and nasopharyngitis" + }, + { + "value": "473 Chronic sinusitis" + }, + { + "value": "474 Chronic disease of tonsils and adenoids" + }, + { + "value": "475 Peritonsillar abscess" + }, + { + "value": "476 Chronic laryngitis and laryngotracheitis" + }, + { + "value": "477 Allergic rhinitis" + }, + { + "value": "478 Other diseases of upper respiratory tract" + } + ] + }, + { + "predicate": "(480-487) Pneumonia and influenza", + "entry": [ + { + "value": "480 Viral pneumonia" + }, + { + "value": "481 Pneumococcal pneumonia" + }, + { + "value": "482 Other bacterial pneumonia" + }, + { + "value": "483 Pneumonia due to other specified organism" + }, + { + "value": "484 Pneumonia in infectious diseases classified elsewhere" + }, + { + "value": "485 Bronchopneumonia, organism unspecified" + }, + { + "value": "486 Pneumonia, organism unspecified" + }, + { + "value": "487 Influenza" + } + ] + }, + { + "predicate": "(490-496) Chronic obstructive pulmonary disease and allied conditions", + "entry": [ + { + "value": "490 Bronchitis, not specified as acute or chronic" + }, + { + "value": "491 Chronic bronchitis" + }, + { + "value": "492 Emphysema" + }, + { + "value": "493 Asthma" + }, + { + "value": "494 Bronchiectasis" + }, + { + "value": "495 Extrinsic allergic alveolitis" + }, + { + "value": "496 Chronic airways obstruction, not elsewhere classified" + } + ] + }, + { + "predicate": "(500-508) Pneumoconioses and other lung diseases due to external agents", + "entry": [ + { + "value": "500 Coalworkers' pneumoconiosis" + }, + { + "value": "501 Asbestosis" + }, + { + "value": "502 Pneumoconiosis due to other silica or silicates" + }, + { + "value": "503 Pneumoconiosis due to other inorganic dust" + }, + { + "value": "504 Pneumopathy due to inhalation of other dust" + }, + { + "value": "505 Pneumoconiosis, unspecified" + }, + { + "value": "506 Respiratory conditions due to chemical fumes and vapours" + }, + { + "value": "507 Pneumonitis due to solids and liquids" + }, + { + "value": "508 Respiratory conditions due to other and unspecified external agents" + } + ] + }, + { + "predicate": "(510-519) Other diseases of respiratory system", + "entry": [ + { + "value": "510 Empyema" + }, + { + "value": "511 Pleurisy" + }, + { + "value": "512 Pneumothorax" + }, + { + "value": "513 Abscess of lung and mediastinum" + }, + { + "value": "514 Pulmonary congestion and hypostasis" + }, + { + "value": "515 Postinflammatory pulmonary fibrosis" + }, + { + "value": "516 Other alveolar and parietoalveolar pneumopathy" + }, + { + "value": "517 Lung involvement in conditions classified elsewhere" + }, + { + "value": "518 Other diseases of lung" + }, + { + "value": "519 Other diseases of respiratory system" + } + ] + }, + { + "predicate": "(520-529) Diseases of oral cavity, salivary glands and jaws", + "entry": [ + { + "value": "520 Disorders of tooth development and eruption" + }, + { + "value": "521 Diseases of hard tissues of teeth" + }, + { + "value": "522 Diseases of pulp and periapical tissues" + }, + { + "value": "523 Gingival and periodontal diseases" + }, + { + "value": "524 Dentofacial anomalies, including malocclusion" + }, + { + "value": "525 Other diseases and conditions of the teeth and supporting structures" + }, + { + "value": "526 Diseases of the jaws" + }, + { + "value": "527 Diseases of the salivary glands" + }, + { + "value": "528 Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue" + }, + { + "value": "529 Diseases and other conditions of the tongue" + } + ] + }, + { + "predicate": "(530-537) Diseases of oesophagus, stomach and duodenum", + "entry": [ + { + "value": "530 Diseases of oesophagus" + }, + { + "value": "531 Gastric ulcer" + }, + { + "value": "532 Duodenal ulcer" + }, + { + "value": "533 Peptic ulcer, site unspecified" + }, + { + "value": "534 Gastrojejunal ulcer" + }, + { + "value": "535 Gastritis and duodenitis" + }, + { + "value": "536 Disorders of function of stomach" + }, + { + "value": "537 Other disorders of stomach and duodenum" + } + ] + }, + { + "predicate": "(540-543) Appendicitis", + "entry": [ + { + "value": "540 Acute appendicitis" + }, + { + "value": "541 Appendicitis, unqualified" + }, + { + "value": "542 Other appendicitis" + }, + { + "value": "543 Other diseases of appendix" + } + ] + }, + { + "predicate": "(550-553) Hernia of abdominal cavity", + "entry": [ + { + "value": "550 Inguinal hernia" + }, + { + "value": "551 Other hernia of abdominal cavity, with gangrene" + }, + { + "value": "552 Other hernia of abdominal cavity with obstruction, without mention of gangrene" + }, + { + "value": "553 Other hernia of abdominal cavity without mention of obstruction or gangrene" + } + ] + }, + { + "predicate": "(555-558) Non-infective enteritis and colitis", + "entry": [ + { + "value": "555 Regional enteritis" + }, + { + "value": "556 Idiopathic proctocolitis" + }, + { + "value": "557 Vascular insufficiency of intestine" + }, + { + "value": "558 Other non-infective gastro-enteritis and colitis" + } + ] + }, + { + "predicate": "(560-569) Other diseases of intestines and peritoneum", + "entry": [ + { + "value": "560 Intestinal obstruction without mention of hernia" + }, + { + "value": "562 Diverticula of intestine" + }, + { + "value": "564 Functional digestive disorders, not elsewhere classified" + }, + { + "value": "565 Anal fissure and fistula" + }, + { + "value": "566 Abscess of anal and rectal regions" + }, + { + "value": "567 Peritonitis" + }, + { + "value": "568 Other disorders of peritoneum" + }, + { + "value": "569 Other disorders of intestine" + } + ] + }, + { + "predicate": "(570-579) Other diseases of digestive system", + "entry": [ + { + "value": "570 Acute and subacute necrosis of liver" + }, + { + "value": "571 Chronic liver disease and cirrhosis" + }, + { + "value": "572 Liver abscess and sequelae of chronic liver disease" + }, + { + "value": "573 Other disorders of liver" + }, + { + "value": "574 Cholelithiasis" + }, + { + "value": "575 Other disorders of gallbladder" + }, + { + "value": "576 Other disorders of biliary tract" + }, + { + "value": "577 Diseases of pancreas" + }, + { + "value": "578 Gastro-intestinal haemorrhage" + }, + { + "value": "579 Intestinal malabsorption" + } + ] + }, + { + "predicate": "(580-589) Nephritis, nephrotic syndrome and nephrosis", + "entry": [ + { + "value": "580 Acute glomerulonephritis" + }, + { + "value": "581 Nephrotic syndrome" + }, + { + "value": "582 Chronic glomerulonephritis" + }, + { + "value": "583 Nephritis and nephropathy, not specified as acute or chronic" + }, + { + "value": "584 Acute renal failure" + }, + { + "value": "585 Chronic renal failure" + }, + { + "value": "586 Renal failure, unspecified" + }, + { + "value": "587 Renal sclerosis, unspecified" + }, + { + "value": "588 Disorders resulting from impaired renal function" + }, + { + "value": "589 Small kidney of unknown cause" + } + ] + }, + { + "predicate": "(590-599) Other diseases of urinary system", + "entry": [ + { + "value": "590 Infections of kidney" + }, + { + "value": "591 Hydronephrosis" + }, + { + "value": "592 Calculus of kidney and ureter" + }, + { + "value": "593 Other disorders of kidney and ureter" + }, + { + "value": "594 Calculus of lower urinary tract" + }, + { + "value": "595 Cystitis" + }, + { + "value": "596 Other disorders of bladder" + }, + { + "value": "597 Urethritis, not sexually transmitted, and urethral syndrome" + }, + { + "value": "598 Urethral stricture" + }, + { + "value": "599 Other disorders of urethra and urinary tract" + } + ] + }, + { + "predicate": "(600-608) Diseases of male genital organs", + "entry": [ + { + "value": "600 Hyperplasia of prostate" + }, + { + "value": "601 Inflammatory diseases of prostate" + }, + { + "value": "602 Other disorders of prostate" + }, + { + "value": "603 Hydrocele" + }, + { + "value": "604 Orchitis and epididymitis" + }, + { + "value": "605 Redundant prepuce and phimosis" + }, + { + "value": "606 Infertility, male" + }, + { + "value": "607 Disorders of penis" + }, + { + "value": "608 Other disorders of male genital organs" + } + ] + }, + { + "predicate": "(610-611) Disorders of breast", + "entry": [ + { + "value": "610 Benign mammary dysplasias" + }, + { + "value": "611 Other disorders of breast" + } + ] + }, + { + "predicate": "(614-616) Inflammatory disease of female pelvic organs", + "entry": [ + { + "value": "614 Inflammatory disease of ovary, Fallopian tube, pelvic cellular tissue and peritoneum" + }, + { + "value": "615 Inflammatory diseases of uterus, except cervix" + }, + { + "value": "616 Inflammatory disease of cervix, vagina and vulva" + } + ] + }, + { + "predicate": "(617-629) Other disorders of female genital tract", + "entry": [ + { + "value": "617 Endometriosis" + }, + { + "value": "618 Genital prolapse" + }, + { + "value": "619 Fistulae involving female genital tract" + }, + { + "value": "620 Noninflammatory disorders of ovary, Fallopian tube and broad ligament" + }, + { + "value": "621 Disorders of uterus, not elsewhere classified" + }, + { + "value": "622 Noninflammatory disorders of cervix" + }, + { + "value": "623 Noninflammatory disorders of vagina" + }, + { + "value": "624 Noninflammatory disorders of vulva and perineum" + }, + { + "value": "625 Pain and other symptoms associated with female genital organs" + }, + { + "value": "626 Disorders of menstruation and other abnormal bleeding from female genital tract" + }, + { + "value": "627 Menopausal and postmenopausal disorders" + }, + { + "value": "628 Infertility, female" + }, + { + "value": "629 Other disorders of female genital organs" + } + ] + }, + { + "predicate": "(630-633) Ectopic and molar pregnancy", + "entry": [ + { + "value": "630 Hydatidiform mole" + }, + { + "value": "631 Other abnormal product of conception" + }, + { + "value": "632 Missed abortion" + }, + { + "value": "633 Ectopic pregnancy" + } + ] + }, + { + "predicate": "(634-639) Other pregnancy with abortive outcome", + "entry": [ + { + "value": "634 Spontaneous abortion" + }, + { + "value": "635 Legally induced abortion" + }, + { + "value": "636 Illegally induced abortion" + }, + { + "value": "637 Unspecified abortion" + }, + { + "value": "638 Failed attempted abortion" + }, + { + "value": "639 Complications following abortion and ectopic and molar pregnancies" + } + ] + }, + { + "predicate": "(640-648) Complications mainly related to pregnancy", + "entry": [ + { + "value": "640 Haemorrhage in early pregnancy" + }, + { + "value": "641 Antepartum haemorrhage, abruptio placentae and placenta praevia" + }, + { + "value": "642 Hypertension complicating pregnancy, childbirth and the puerperium" + }, + { + "value": "643 Excessive vomiting in pregnancy" + }, + { + "value": "644 Early or threatened labour" + }, + { + "value": "645 Prolonged pregnancy" + }, + { + "value": "646 Other complications of pregnancy, not elsewhere classified" + }, + { + "value": "647 Infective and parasitic conditions in the mother classifiable elsewhere but complicating pregnancy, childbirth and the puerperium" + }, + { + "value": "648 Other current conditions in the mother classifiable elsewhere but complicating pregnancy, childbirth and the puerperium" + } + ] + }, + { + "predicate": "(650-659) Normal delivery and other indications for care in pregnancy, labour and delivery", + "entry": [ + { + "value": "650 Delivery in a completely normal case" + }, + { + "value": "651 Multiple gestation" + }, + { + "value": "652 Malposition and malpresentation of foetus" + }, + { + "value": "653 Disproportion" + }, + { + "value": "654 Abnormality of organs and soft tissues of pelvis" + }, + { + "value": "655 Known or suspected foetal abnormality affecting management of mother" + }, + { + "value": "656 Other foetal and placental problems affecting management of mother" + }, + { + "value": "657 Polyhydramnios" + }, + { + "value": "658 Other problems associated with amniotic cavity and membranes" + }, + { + "value": "659 Other indications for care or intervention related to labour and delivery and not elsewhere classified" + } + ] + }, + { + "predicate": "(660-669) Complications occurring mainly in the course of labour and delivery", + "entry": [ + { + "value": "660 Obstructed labour" + }, + { + "value": "661 Abnormality of forces of labour" + }, + { + "value": "662 Long labour" + }, + { + "value": "663 Umbilical cord complications" + }, + { + "value": "664 Trauma to perineum and vulva during delivery" + }, + { + "value": "665 Other obstetrical trauma" + }, + { + "value": "666 Postpartum haemorrhage" + }, + { + "value": "667 Retained placenta or membranes, without haemorrhage" + }, + { + "value": "668 Complications of the administration of anaesthetic or other sedation in labour and delivery" + }, + { + "value": "669 Other complications of labour and delivery, not elsewhere classified" + } + ] + }, + { + "predicate": "(670-677) Complications of the puerperium", + "entry": [ + { + "value": "670 Major puerperal infection" + }, + { + "value": "671 Venous complications in pregnancy and the puerperium" + }, + { + "value": "672 Pyrexia of unknown origin during the puerperium" + }, + { + "value": "673 Obstetrical pulmonary embolism" + }, + { + "value": "674 Other and unspecified complications of the puerperium, not elsewhere classified" + }, + { + "value": "675 Infections of the breast and nipple associated with childbirth" + }, + { + "value": "676 Other disorders of the breast associated with childbirth, and disorders of lactation" + }, + { + "value": "677 Late effect of complication of pregnancy, childbirth and the puerperium" + } + ] + }, + { + "predicate": "(680-686) Infections of skin and subcutaneous tissue", + "entry": [ + { + "value": "680 Carbuncle and furuncle" + }, + { + "value": "681 Cellulitis and abscess of finger and toe" + }, + { + "value": "682 Other cellulitis and abscess" + }, + { + "value": "683 Acute lymphadenitis" + }, + { + "value": "684 Impetigo" + }, + { + "value": "685 Pilonidal cyst" + }, + { + "value": "686 Other local infections of skin and subcutaneous tissue" + } + ] + }, + { + "predicate": "(690-698) Other inflammatory conditions of skin and subcutaneous tissue", + "entry": [ + { + "value": "690 Erythematosquamous dermatosis" + }, + { + "value": "691 Atopic dermatitis and related conditions" + }, + { + "value": "692 Contact dermatitis and other eczema" + }, + { + "value": "693 Dermatitis due to substances taken internally" + }, + { + "value": "694 Bullous dermatoses" + }, + { + "value": "695 Erythematous conditions" + }, + { + "value": "696 Psoriasis and similar disorders" + }, + { + "value": "697 Lichen" + }, + { + "value": "698 Pruritus and related conditions" + } + ] + }, + { + "predicate": "(700-709) Other diseases of skin and subcutaneous tissue", + "entry": [ + { + "value": "700 Corns and callosities" + }, + { + "value": "701 Other hypertrophic and atrophic conditions of skin" + }, + { + "value": "702 Other dermatoses" + }, + { + "value": "703 Diseases of nail" + }, + { + "value": "704 Diseases of hair and hair follicles" + }, + { + "value": "705 Disorders of sweat glands" + }, + { + "value": "706 Diseases of sebaceous glands" + }, + { + "value": "707 Chronic ulcer of skin" + }, + { + "value": "708 Urticaria" + }, + { + "value": "709 Other disorders of skin and subcutaneous tissue" + } + ] + }, + { + "predicate": "(710-719) Arthropathies and related disorders", + "entry": [ + { + "value": "710 Diffuse diseases of connective tissue" + }, + { + "value": "711 Arthropathy associated with infections" + }, + { + "value": "712 Crystal arthropathies" + }, + { + "value": "713 Arthropathy associated with other disorders classified elsewhere" + }, + { + "value": "714 Rheumatoid arthritis and other inflammatory polyarthropathies" + }, + { + "value": "715 Osteo-arthrosis and allied disorders" + }, + { + "value": "716 Other and unspecified arthropathies" + }, + { + "value": "717 Internal derangement of knee" + }, + { + "value": "718 Other derangement of joint" + }, + { + "value": "719 Other and unspecified disorder of joint" + } + ] + }, + { + "predicate": "(720-724) Dorsopathies", + "entry": [ + { + "value": "720 Ankylosing spondylitis and other inflammatory spondylopathies" + }, + { + "value": "721 Spondylosis and allied disorders" + }, + { + "value": "722 Intervertebral disk disorders" + }, + { + "value": "723 Other disorders of cervical region" + }, + { + "value": "724 Other and unspecified disorders of back" + } + ] + }, + { + "predicate": "(725-729) Rheumatism, excluding the back", + "entry": [ + { + "value": "725 Polymyalgia rheumatica" + }, + { + "value": "726 Peripheral enthesopathies and allied syndromes" + }, + { + "value": "727 Other disorders of synovium, tendon and bursa" + }, + { + "value": "728 Disorders of muscle, ligament and fascia" + }, + { + "value": "729 Other disorders of soft tissues" + } + ] + }, + { + "predicate": "(730-739) Osteopathies, chondropathies and acquired musculoskeletal deformities", + "entry": [ + { + "value": "730 Osteomyelitis, periostitis and other infections involving bone" + }, + { + "value": "731 Osteitis deformans and osteopathies associated with other disorders classified elsewhere" + }, + { + "value": "732 Osteochondropathies" + }, + { + "value": "733 Other disorders of bone and cartilage" + }, + { + "value": "734 Flat foot" + }, + { + "value": "735 Acquired deformities of toe" + }, + { + "value": "736 Other acquired deformities of limbs" + }, + { + "value": "737 Curvature of spine" + }, + { + "value": "738 Other acquired deformity" + }, + { + "value": "739 Nonallopathic lesions, not elsewhere classified" + } + ] + }, + { + "predicate": "(740-759) Congenital anomalies", + "entry": [ + { + "value": "740 Anencephalus and similar anomalies" + }, + { + "value": "741 Spina bifida" + }, + { + "value": "742 Other congenital anomalies of nervous system" + }, + { + "value": "743 Congenital anomalies of eye" + }, + { + "value": "744 Congenital anomalies of ear, face and neck" + }, + { + "value": "745 Bulbus cordis anomalies and anomalies of cardiac septal closure" + }, + { + "value": "746 Other congenital anomalies of heart" + }, + { + "value": "747 Other congenital anomalies of circulatory system" + }, + { + "value": "748 Congenital anomalies of respiratory system" + }, + { + "value": "749 Cleft palate and cleft lip" + }, + { + "value": "750 Other congenital anomalies of upper alimentary tract" + }, + { + "value": "751 Other congenital anomalies of digestive system" + }, + { + "value": "752 Congenital anomalies of genital organs" + }, + { + "value": "753 Congenital anomalies of urinary system" + }, + { + "value": "754 Certain congenital musculoskeletal deformities" + }, + { + "value": "755 Other congenital anomalies of limbs" + }, + { + "value": "756 Other congenital musculoskeletal anomalies" + }, + { + "value": "757 Congenital anomalies of the integument" + }, + { + "value": "758 Chromosomal anomalies" + }, + { + "value": "759 Other and unspecified congenital anomalies" + } + ] + }, + { + "predicate": "(760-763) Maternal causes of perinatal morbidity and mortality", + "entry": [ + { + "value": "760 Foetus or newborn affected by maternal conditions which may be unrelated to present pregnancy" + }, + { + "value": "761 Foetus or newborn affected by maternal complications of pregnancy" + }, + { + "value": "762 Foetus or newborn affected by complications of placenta, cord and membranes" + }, + { + "value": "763 Foetus or newborn affected by other complications of labour and delivery" + } + ] + }, + { + "predicate": "(764-779) Other conditions originating in the perinatal period", + "entry": [ + { + "value": "764 Slow foetal growth and foetal malnutrition" + }, + { + "value": "765 Disorders relating to short gestation and unspecified low birthweight" + }, + { + "value": "766 Disorders relating to long gestation and high birthweight" + }, + { + "value": "767 Birth trauma" + }, + { + "value": "768 Intra-uterine hypoxia and birth asphyxia" + }, + { + "value": "769 Respiratory distress syndrome" + }, + { + "value": "770 Other respiratory conditions of foetus and newborn" + }, + { + "value": "771 Infections specific to the perinatal period" + }, + { + "value": "772 Foetal and neonatal haemorrhage" + }, + { + "value": "773 Haemolytic disease of foetus or newborn, due to isoimmunisation" + }, + { + "value": "774 Other perinatal jaundice" + }, + { + "value": "775 Endocrine and metabolic disturbances specific to the foetus and newborn" + }, + { + "value": "776 Haematological disorders of foetus and newborn" + }, + { + "value": "777 Perinatal disorders of digestive system" + }, + { + "value": "778 Conditions involving the integument and temperature regulation of foetus and newborn" + }, + { + "value": "779 Other and ill-defined conditions originating in the perinatal period" + } + ] + }, + { + "predicate": "(780-789) Symptoms", + "entry": [ + { + "value": "780 General symptoms" + }, + { + "value": "781 Symptoms involving nervous and musculoskeletal systems" + }, + { + "value": "782 Symptoms involving skin and other integumentary tissue" + }, + { + "value": "783 Symptoms concerning nutrition, metabolism and development" + }, + { + "value": "784 Symptoms involving head and neck" + }, + { + "value": "785 Symptoms involving cardiovascular system" + }, + { + "value": "786 Symptoms involving respiratory system and other chest symptoms" + }, + { + "value": "787 Symptoms involving digestive system" + }, + { + "value": "788 Symptoms involving urinary system" + }, + { + "value": "789 Other symptoms involving abdomen and pelvis" + } + ] + }, + { + "predicate": "(790-796) Nonspecific abnormal findings", + "entry": [ + { + "value": "790 Nonspecific findings on examination of blood" + }, + { + "value": "791 Nonspecific findings on examination of urine" + }, + { + "value": "792 Nonspecific abnormal findings in other body substances" + }, + { + "value": "793 Nonspecific abnormal findings on radiological and other examination of body structure" + }, + { + "value": "794 Nonspecific abnormal results of function studies" + }, + { + "value": "795 Nonspecific abnormal histological and immunological findings" + }, + { + "value": "796 Other nonspecific abnormal findings" + } + ] + }, + { + "predicate": "(797-799) Ill-defined and unknown causes of morbidity and mortality", + "entry": [ + { + "value": "797 Senility without mention of psychosis" + }, + { + "value": "798 Sudden death, cause unknown" + }, + { + "value": "799 Other ill-defined and unknown causes of morbidity and mortality" + } + ] + }, + { + "predicate": "(800-804) Fracture of skull", + "entry": [ + { + "value": "800 Fracture of vault of skull" + }, + { + "value": "801 Fracture of base of skull" + }, + { + "value": "802 Fracture of face bones" + }, + { + "value": "803 Other and unqualified skull fractures" + }, + { + "value": "804 Multiple fractures involving skull or face with other bones" + } + ] + }, + { + "predicate": "(805-809) Fracture of neck and trunk", + "entry": [ + { + "value": "805 Fracture of vertebral column without mention of spinal cord lesion" + }, + { + "value": "806 Fracture of vertebral column with spinal cord lesion" + }, + { + "value": "807 Fracture of rib(s), sternum, larynx and trachea" + }, + { + "value": "808 Fracture of pelvis" + }, + { + "value": "809 Ill-defined fractures of trunk" + } + ] + }, + { + "predicate": "(810-819) Fracture of upper limb", + "entry": [ + { + "value": "810 Fracture of clavicle" + }, + { + "value": "811 Fracture of scapula" + }, + { + "value": "812 Fracture of humerus" + }, + { + "value": "813 Fracture of radius and ulna" + }, + { + "value": "814 Fracture of carpal bone(s)" + }, + { + "value": "815 Fracture of metacarpal bone(s)" + }, + { + "value": "816 Fracture of one or more phalanges of hand" + }, + { + "value": "817 Multiple fractures of hand bones" + }, + { + "value": "818 Ill-defined fractures of upper limb" + }, + { + "value": "819 Multiple fractures involving both upper limbs and upper limb with rib(s) and sternum" + } + ] + }, + { + "predicate": "(820-829) Fracture of lower limb", + "entry": [ + { + "value": "820 Fracture of neck of femur" + }, + { + "value": "821 Fracture of other and unspecified parts of femur" + }, + { + "value": "822 Fracture of patella" + }, + { + "value": "823 Fracture of tibia and fibula" + }, + { + "value": "824 Fracture of ankle" + }, + { + "value": "825 Fracture of one or more tarsal and metatarsal bones" + }, + { + "value": "826 Fracture of one or more phalanges of foot" + }, + { + "value": "827 Other, multiple and ill-defined fractures of lower limb" + }, + { + "value": "828 Multiple fractures involving both lower limbs, lower with upper limb and lower limb(s) with rib(s) and sternum" + }, + { + "value": "829 Fracture of unspecified bones" + } + ] + }, + { + "predicate": "(830-839) Dislocation", + "entry": [ + { + "value": "830 Dislocation of jaw" + }, + { + "value": "831 Dislocation of shoulder" + }, + { + "value": "832 Dislocation of elbow" + }, + { + "value": "833 Dislocation of wrist" + }, + { + "value": "834 Dislocation of finger" + }, + { + "value": "835 Dislocation of hip" + }, + { + "value": "836 Dislocation of knee" + }, + { + "value": "837 Dislocation of ankle" + }, + { + "value": "838 Dislocation of foot" + }, + { + "value": "839 Other, multiple and ill-defined dislocations" + } + ] + }, + { + "predicate": "(840-848) Sprains and strains of joints and adjacent muscles", + "entry": [ + { + "value": "840 Sprains and strains of shoulder and upper arm" + }, + { + "value": "841 Sprains and strains of elbow and forearm" + }, + { + "value": "842 Sprains and strains of wrist and hand" + }, + { + "value": "843 Sprains and strains of hip and thigh" + }, + { + "value": "844 Sprains and strains of knee and leg" + }, + { + "value": "845 Sprains and strains of ankle and foot" + }, + { + "value": "846 Sprains and strains of sacro-iliac region" + }, + { + "value": "847 Sprains and strains of other and unspecified parts of back" + }, + { + "value": "848 Other and ill-defined sprains and strains" + } + ] + }, + { + "predicate": "(850-854) Intracranial injury, excluding those with skull fracture", + "entry": [ + { + "value": "850 Concussion" + }, + { + "value": "851 Cerebral laceration and contusion" + }, + { + "value": "852 Subarachnoid, subdural and extradural haemorrhage, following injury" + }, + { + "value": "853 Other and unspecified intracranial haemorrhage following injury" + }, + { + "value": "854 Intracranial injury of other and unspecified nature" + } + ] + }, + { + "predicate": "(860-869) Internal injury of chest, abdomen and pelvis", + "entry": [ + { + "value": "860 Traumatic pneumothorax and haemothorax" + }, + { + "value": "861 Injury to heart and lung" + }, + { + "value": "862 Injury to other and unspecified intrathoracic organs" + }, + { + "value": "863 Injury to gastro-intestinal tract" + }, + { + "value": "864 Injury to liver" + }, + { + "value": "865 Injury to spleen" + }, + { + "value": "866 Injury to kidney" + }, + { + "value": "867 Injury to pelvic organs" + }, + { + "value": "868 Injury to other intra-abdominal organs" + }, + { + "value": "869 Internal injury to unspecified or ill-defined organs" + } + ] + }, + { + "predicate": "(870-879) Open wound of head, neck and trunk", + "entry": [ + { + "value": "870 Open wound of ocular adnexa" + }, + { + "value": "871 Open wound of eyeball" + }, + { + "value": "872 Open wound of ear" + }, + { + "value": "873 Other open wound of head" + }, + { + "value": "874 Open wound of neck" + }, + { + "value": "875 Open wound of chest (wall)" + }, + { + "value": "876 Open wound of back" + }, + { + "value": "877 Open wound of buttock" + }, + { + "value": "878 Open wound of genital organs (external), including traumatic amputation" + }, + { + "value": "879 Open wound of other and unspecified sites, except limbs" + } + ] + }, + { + "predicate": "(880-887) Open wound of upper limb", + "entry": [ + { + "value": "880 Open wound of shoulder and upper arm" + }, + { + "value": "881 Open wound of elbow, forearm and wrist" + }, + { + "value": "882 Open wound of hand except finger(s) alone" + }, + { + "value": "883 Open wound of finger(s)" + }, + { + "value": "884 Multiple and unspecified open wound of upper limb" + }, + { + "value": "885 Traumatic amputation of thumb (complete) (partial)" + }, + { + "value": "886 Traumatic amputation of other finger(s) (complete) (partial)" + }, + { + "value": "887 Traumatic amputation of arm and hand (complete) (partial)" + } + ] + }, + { + "predicate": "(890-897) Open wound of lower limb", + "entry": [ + { + "value": "890 Open wound of hip and thigh" + }, + { + "value": "891 Open wound of knee, leg [except thigh] and ankle" + }, + { + "value": "892 Open wound of foot except toe(s) alone" + }, + { + "value": "893 Open wound of toe(s)" + }, + { + "value": "894 Multiple and unspecified open wound of lower limb" + }, + { + "value": "895 Traumatic amputation of toe(s) (complete) (partial)" + }, + { + "value": "896 Traumatic amputation of foot (complete) (partial)" + }, + { + "value": "897 Traumatic amputation of leg(s) (complete) (partial)" + } + ] + }, + { + "predicate": "(900-904) Injury to blood vessels", + "entry": [ + { + "value": "900 Injury to blood vessels of head and neck" + }, + { + "value": "901 Injury to blood vessels of thorax" + }, + { + "value": "902 Injury to blood vessels of abdomen and pelvis" + }, + { + "value": "903 Injury to blood vessels of upper extremity" + }, + { + "value": "904 Injury to blood vessels of lower extremity and unspecified sites" + } + ] + }, + { + "predicate": "(905-909) Late effects of injuries, poisonings, toxic effects and other external causes", + "entry": [ + { + "value": "905 Late effects of musculoskeletal and connective tissue injuries" + }, + { + "value": "906 Late effects of injuries to skin and subcutaneous tissues" + }, + { + "value": "907 Late effects of injuries to the nervous system" + }, + { + "value": "908 Late effects of other and unspecified injuries" + }, + { + "value": "909 Late effects of other and unspecified external causes" + } + ] + }, + { + "predicate": "(910-919) Superficial injury", + "entry": [ + { + "value": "910 Superficial injury of face, neck and scalp except eye" + }, + { + "value": "911 Superficial injury of trunk" + }, + { + "value": "912 Superficial injury of shoulder and upper arm" + }, + { + "value": "913 Superficial injury of elbow, forearm and wrist" + }, + { + "value": "914 Superficial injury of hand(s) except finger(s) alone" + }, + { + "value": "915 Superficial injury of finger(s)" + }, + { + "value": "916 Superficial injury of hip, thigh, leg and ankle" + }, + { + "value": "917 Superficial injury of foot and toe(s)" + }, + { + "value": "918 Superficial injury of eye and adnexa" + }, + { + "value": "919 Superficial injury of other, multiple and unspecified sites" + } + ] + }, + { + "predicate": "(920-924) Contusion with intact skin surface", + "entry": [ + { + "value": "920 Contusion of face, scalp and neck except eye(s)" + }, + { + "value": "921 Contusion of eye and adnexa" + }, + { + "value": "922 Contusion of trunk" + }, + { + "value": "923 Contusion of upper limb" + }, + { + "value": "924 Contusion of lower limb and of other and unspecified sites" + } + ] + }, + { + "predicate": "(925-929) Crushing injury", + "entry": [ + { + "value": "925 Crushing injury of face, scalp and neck" + }, + { + "value": "926 Crushing injury of trunk" + }, + { + "value": "927 Crushing injury of upper limb" + }, + { + "value": "928 Crushing injury of lower limb" + }, + { + "value": "929 Crushing injury of multiple and unspecified sites" + } + ] + }, + { + "predicate": "(930-939) Effects of foreign body entering through orifice", + "entry": [ + { + "value": "930 Foreign body on external eye" + }, + { + "value": "931 Foreign body in ear" + }, + { + "value": "932 Foreign body in nose" + }, + { + "value": "933 Foreign body in pharynx and larynx" + }, + { + "value": "934 Foreign body in trachea, bronchus and lung" + }, + { + "value": "935 Foreign body in mouth, oesophagus and stomach" + }, + { + "value": "936 Foreign body in intestine and colon" + }, + { + "value": "937 Foreign body in anus and rectum" + }, + { + "value": "938 Foreign body in digestive system, unspecified" + }, + { + "value": "939 Foreign body in genito-urinary tract" + } + ] + }, + { + "predicate": "(940-949) Burns", + "entry": [ + { + "value": "940 Burn confined to eye and adnexa" + }, + { + "value": "941 Burn of face, head and neck" + }, + { + "value": "942 Burn of trunk" + }, + { + "value": "943 Burn of upper limb, except wrist and hand" + }, + { + "value": "944 Burn of wrist(s) and hand(s)" + }, + { + "value": "945 Burn of lower limb(s)" + }, + { + "value": "946 Burns of multiple specified sites" + }, + { + "value": "947 Burn of internal organs" + }, + { + "value": "948 Burns classified according to extent of body surface involved" + }, + { + "value": "949 Burn, unspecified" + } + ] + }, + { + "predicate": "(950-957) Injury to nerves and spinal cord", + "entry": [ + { + "value": "950 Injury to optic nerve and pathways" + }, + { + "value": "951 Injury to other cranial nerve(s)" + }, + { + "value": "952 Spinal cord lesion without evidence of spinal bone injury" + }, + { + "value": "953 Injury to nerve roots and spinal plexus" + }, + { + "value": "954 Injury to other nerve(s) of trunk excluding shoulder and pelvic girdles" + }, + { + "value": "955 Injury to peripheral nerve(s) of shoulder girdle and upper limb" + }, + { + "value": "956 Injury to peripheral nerve(s) of pelvic girdle and lower limb" + }, + { + "value": "957 Injury to other and unspecified nerves" + } + ] + }, + { + "predicate": "(958-959) Certain traumatic complications and unspecified injuries", + "entry": [ + { + "value": "958 Certain early complications of trauma" + }, + { + "value": "959 Injury, other and unspecified" + } + ] + }, + { + "predicate": "(960-979) Poisoning by drugs, medicaments and biological substances", + "entry": [ + { + "value": "960 Poisoning by antibiotics" + }, + { + "value": "961 Poisoning by other anti-infectives" + }, + { + "value": "962 Poisoning by hormones and synthetic substitutes" + }, + { + "value": "963 Poisoning by primarily systemic agents" + }, + { + "value": "964 Poisoning by agents primarily affecting blood constituents" + }, + { + "value": "965 Poisoning by analgesics, antipyretics and antirheumatics" + }, + { + "value": "966 Poisoning by anticonvulsants and anti-Parkinsonism drugs" + }, + { + "value": "967 Poisoning by sedatives and hypnotics" + }, + { + "value": "968 Poisoning by other central nervous system depressants and anaesthetics" + }, + { + "value": "969 Poisoning by psychotropic agents" + }, + { + "value": "970 Poisoning by central nervous system stimulants" + }, + { + "value": "971 Poisoning by drugs primarily affecting the autonomic nervous system" + }, + { + "value": "972 Poisoning by agents primarily affecting the cardiovascular system" + }, + { + "value": "973 Poisoning by agents primarily affecting the gastro-intestinal system" + }, + { + "value": "974 Poisoning by water, mineral and uric acid metabolism drugs" + }, + { + "value": "975 Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system" + }, + { + "value": "976 Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological and dental drugs" + }, + { + "value": "977 Poisoning by other and unspecified drugs and medicaments" + }, + { + "value": "978 Poisoning by bacterial vaccines" + }, + { + "value": "979 Poisoning by other vaccines and biological substances" + } + ] + }, + { + "predicate": "(980-989) Toxic effects of substances chiefly nonmedicinal as to source", + "entry": [ + { + "value": "980 Toxic effect of alcohol" + }, + { + "value": "981 Toxic effect of petroleum products" + }, + { + "value": "982 Toxic effect of solvents other than petroleum-based" + }, + { + "value": "983 Toxic effect of corrosive aromatics, acids and caustic alkalis" + }, + { + "value": "984 Toxic effect of lead and its compounds (including fumes)" + }, + { + "value": "985 Toxic effect of other metals" + }, + { + "value": "986 Toxic effect of carbon monoxide" + }, + { + "value": "987 Toxic effect of other gases, fumes or vapours" + }, + { + "value": "988 Toxic effect of noxious substances eaten as food" + }, + { + "value": "989 Toxic effect of other substances, chiefly nonmedicinal as to source" + } + ] + }, + { + "predicate": "(990-995) Other and unspecified effects of external causes", + "entry": [ + { + "value": "990 Effects of radiation, unspecified" + }, + { + "value": "991 Effects of reduced temperature" + }, + { + "value": "992 Effects of heat and light" + }, + { + "value": "993 Effects of air pressure" + }, + { + "value": "994 Effects of other external causes" + }, + { + "value": "995 Certain adverse effects not elsewhere classified" + } + ] + }, + { + "predicate": "(996-999) Complications of surgical and medical care, not elsewhere classified", + "entry": [ + { + "value": "996 Complications peculiar to certain specified procedures" + }, + { + "value": "997 Complications affecting specified body systems, not elsewhere classified" + }, + { + "value": "998 Other complications of procedures, not elsewhere classified" + }, + { + "value": "999 Complications of medical care, not elsewhere classified" + } + ] + }, + { + "predicate": "(E800-E807) Railway accidents", + "entry": [ + { + "value": "E800 Railway accident involving collision with rolling stock" + }, + { + "value": "E801 Railway accident involving collision with other object" + }, + { + "value": "E802 Railway accident involving derailment without antecedent collision" + }, + { + "value": "E803 Railway accident involving explosion, fire or burning" + }, + { + "value": "E804 Fall in, on or from railway train" + }, + { + "value": "E805 Hit by rolling stock" + }, + { + "value": "E806 Other specified railway accident" + }, + { + "value": "E807 Railway accident of unspecified nature" + } + ] + }, + { + "predicate": "(E810-E819) Motor vehicle traffic accidents", + "entry": [ + { + "value": "E810 Motor vehicle traffic accident involving collision with train" + }, + { + "value": "E811 Motor vehicle traffic accident involving re-entrant collision with another motor vehicle" + }, + { + "value": "E812 Other motor vehicle traffic accident involving collision with another motor vehicle" + }, + { + "value": "E813 Motor vehicle traffic accident involving collision with other vehicle" + }, + { + "value": "E814 Motor vehicle traffic accident involving collision with pedestrian" + }, + { + "value": "E815 Other motor vehicle traffic accident involving collision on the highway" + }, + { + "value": "E816 Motor vehicle traffic accident due to loss of control, without collision on the highway" + }, + { + "value": "E817 Noncollision motor vehicle traffic accident while boarding or alighting" + }, + { + "value": "E818 Other noncollision motor vehicle traffic accident" + }, + { + "value": "E819 Motor vehicle traffic accident of unspecified nature" + } + ] + }, + { + "predicate": "(E820-E825) Motor vehicle nontraffic accidents", + "entry": [ + { + "value": "E820 Nontraffic accident involving motor-driven snow vehicle" + }, + { + "value": "E821 Nontraffic accident involving other off-road motor vehicle" + }, + { + "value": "E822 Other motor vehicle nontraffic accident involving collision with moving object" + }, + { + "value": "E823 Other motor vehicle nontraffic accident involving collision with stationary object" + }, + { + "value": "E824 Other motor vehicle nontraffic accident while boarding and alighting" + }, + { + "value": "E825 Other motor vehicle nontraffic accident of other and unspecified nature" + } + ] + }, + { + "predicate": "(E826-E829) Other road vehicle accidents", + "entry": [ + { + "value": "E826 Pedal cycle accident" + }, + { + "value": "E827 Animal-drawn vehicle accident" + }, + { + "value": "E828 Accident involving animal being ridden" + }, + { + "value": "E829 Other road vehicle accidents" + } + ] + }, + { + "predicate": "(E830-E838) Water transport accidents", + "entry": [ + { + "value": "E830 Accident to watercraft causing submersion" + }, + { + "value": "E831 Accident to watercraft causing other injury" + }, + { + "value": "E832 Other accidental submersion or drowning in water transport accident" + }, + { + "value": "E833 Fall on stairs or ladders in water transport" + }, + { + "value": "E834 Other fall from one level to another in water transport" + }, + { + "value": "E835 Other and unspecified fall in water transport" + }, + { + "value": "E836 Machinery accident in water transport" + }, + { + "value": "E837 Explosion, fire or burning in watercraft" + }, + { + "value": "E838 Other and unspecified water transport accident" + } + ] + }, + { + "predicate": "(E840-E845) Air and space transport accidents", + "entry": [ + { + "value": "E840 Accident to powered aircraft at takeoff or landing" + }, + { + "value": "E841 Accident to powered aircraft, other and unspecified" + }, + { + "value": "E842 Accident to unpowered aircraft" + }, + { + "value": "E843 Fall in, on or from aircraft" + }, + { + "value": "E844 Other specified air transport accidents" + }, + { + "value": "E845 Accident involving spacecraft" + } + ] + }, + { + "predicate": "(E846-E848) Vehicle accidents not elsewhere classifiable", + "entry": [ + { + "value": "E846 Accidents involving powered vehicles used solely within the buildings and premises of an industrial or commercial establishment" + }, + { + "value": "E847 Accidents involving cable cars not running on rails" + }, + { + "value": "E848 Accidents involving other vehicles not elsewhere classifiable" + } + ] + }, + { + "predicate": "(E849-E858) Accidental poisoning by drugs, medicaments and biologicals", + "entry": [ + { + "value": "E849 Place of occurrence" + }, + { + "value": "E850 Accidental poisoning by analgesics, antipyretics, antirheumatics" + }, + { + "value": "E851 Accidental poisoning by barbiturates" + }, + { + "value": "E852 Accidental poisoning by other sedatives and hypnotics" + }, + { + "value": "E853 Accidental poisoning by tranquillisers" + }, + { + "value": "E854 Accidental poisoning by other psychotropic agents" + }, + { + "value": "E855 Accidental poisoning by other drugs acting on central and autonomic nervous systems" + }, + { + "value": "E856 Accidental poisoning by antibiotics" + }, + { + "value": "E857 Accidental poisoning by anti-infectives" + }, + { + "value": "E858 Accidental poisoning by other drugs" + } + ] + }, + { + "predicate": "(E860-E869) Accidental poisoning by other solid and liquid substances, gases and vapours", + "entry": [ + { + "value": "E860 Accidental poisoning by alcohol, not elsewhere classified" + }, + { + "value": "E861 Accidental poisoning by cleansing and polishing agents, disinfectants, paints and varnishes" + }, + { + "value": "E862 Accidental poisoning by petroleum products, other solvents and their vapours, not elsewhere classified" + }, + { + "value": "E863 Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilisers" + }, + { + "value": "E864 Accidental poisoning by corrosives and caustics, not elsewhere classified" + }, + { + "value": "E865 Accidental poisoning from foodstuffs and poisonous plants" + }, + { + "value": "E866 Accidental poisoning by other and unspecified solid and liquid substances" + }, + { + "value": "E867 Accidental poisoning by gas distributed by pipeline" + }, + { + "value": "E868 Accidental poisoning by other utility gas and other carbon monoxide" + }, + { + "value": "E869 Accidental poisoning by other gases and vapours" + } + ] + }, + { + "predicate": "(E870-E876) Misadventures to patients during surgical and medical care", + "entry": [ + { + "value": "E870 Accidental cut, puncture, perforation or haemorrhage during medical care" + }, + { + "value": "E871 Foreign object left in body during procedure" + }, + { + "value": "E872 Failure of sterile precautions during procedure" + }, + { + "value": "E873 Failure in dosage" + }, + { + "value": "E874 Mechanical failure of instrument or apparatus during procedure" + }, + { + "value": "E875 Contaminated or infected blood, other fluid, drug or biological substance" + }, + { + "value": "E876 Other and unspecified misadventures during medical care" + } + ] + }, + { + "predicate": "(E878-E879) Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure", + "entry": [ + { + "value": "E878 Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation" + }, + { + "value": "E879 Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication" + } + ] + }, + { + "predicate": "(E880-E888) Accidental falls", + "entry": [ + { + "value": "E880 Fall on or from stairs or steps" + }, + { + "value": "E881 Fall on or from ladders or scaffolding" + }, + { + "value": "E882 Fall from or out of building or other structure" + }, + { + "value": "E883 Fall into hole or other opening in surface" + }, + { + "value": "E884 Other fall from one level to another" + }, + { + "value": "E885 Fall on same level from slipping, tripping or stumbling" + }, + { + "value": "E886 Fall on same level from collision, pushing or shoving, by or with other person" + }, + { + "value": "E887 Fracture, cause unspecified" + }, + { + "value": "E888 Other and unspecified fall" + } + ] + }, + { + "predicate": "(E890-E899) Accidents caused by fire and flames", + "entry": [ + { + "value": "E890 Conflagration in private dwelling" + }, + { + "value": "E891 Conflagration in other and unspecified building or structure" + }, + { + "value": "E892 Conflagration not in building or structure" + }, + { + "value": "E893 Accident caused by ignition of clothing" + }, + { + "value": "E894 Ignition of highly inflammable material" + }, + { + "value": "E895 Accident caused by controlled fire in private dwelling" + }, + { + "value": "E896 Accident caused by controlled fire in other and unspecified building or structure" + }, + { + "value": "E897 Accident caused by controlled fire not in building or structure" + }, + { + "value": "E898 Accident caused by other specified fire and flames" + }, + { + "value": "E899 Accident caused by unspecified fire" + } + ] + }, + { + "predicate": "(E900-E909) Accidents due to natural and environmental factors", + "entry": [ + { + "value": "E900 Excessive heat" + }, + { + "value": "E901 Excessive cold" + }, + { + "value": "E902 High and low air pressure and changes in air pressure" + }, + { + "value": "E903 Travel and motion" + }, + { + "value": "E904 Hunger, thirst, exposure, neglect" + }, + { + "value": "E905 Venomous animals and plants as the cause of poisoning and toxic reactions" + }, + { + "value": "E906 Other injury caused by animals" + }, + { + "value": "E907 Lightning" + }, + { + "value": "E908 Cataclysmic storms and floods resulting from storms" + }, + { + "value": "E909 Cataclysmic earth surface movements and eruptions" + } + ] + }, + { + "predicate": "(E910-E915) Accidents caused by submersion, suffocation and foreign bodies", + "entry": [ + { + "value": "E910 Accidental drowning and submersion" + }, + { + "value": "E911 Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation" + }, + { + "value": "E912 Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation" + }, + { + "value": "E913 Accidental mechanical suffocation" + }, + { + "value": "E914 Foreign body accidentally entering eye and adnexa" + }, + { + "value": "E915 Foreign body accidentally entering other orifice" + } + ] + }, + { + "predicate": "(E916-E928) Other accidents", + "entry": [ + { + "value": "E916 Struck accidentally by falling object" + }, + { + "value": "E917 Striking against or struck accidentally by objects or persons" + }, + { + "value": "E918 Caught accidentally in or between objects" + }, + { + "value": "E919 Accidents caused by machinery" + }, + { + "value": "E920 Accidents caused by cutting and piercing instruments or objects" + }, + { + "value": "E921 Accident caused by explosion of pressure vessel" + }, + { + "value": "E922 Accident caused by firearm missile" + }, + { + "value": "E923 Accident caused by explosive material" + }, + { + "value": "E924 Accident caused by hot substance or object, caustic or corrosive material and steam" + }, + { + "value": "E925 Accident caused by electric current" + }, + { + "value": "E926 Exposure to radiation" + }, + { + "value": "E927 Overexertion and strenuous movements" + }, + { + "value": "E928 Other and unspecified environmental and accidental causes" + } + ] + }, + { + "predicate": "(E929-E929) Late effects of accidental injury", + "entry": [ + { + "value": "E929 Late effects of accidental injury" + } + ] + }, + { + "predicate": "(E930-E949) Drugs, medicaments and biological substances causing adverse effects in therapeutic use", + "entry": [ + { + "value": "E930 Antibiotics" + }, + { + "value": "E931 Other anti-infectives" + }, + { + "value": "E932 Hormones and synthetic substitutes" + }, + { + "value": "E933 Primarily systemic agents" + }, + { + "value": "E934 Agents primarily affecting blood constituents" + }, + { + "value": "E935 Analgesics, antipyretics and antirheumatics" + }, + { + "value": "E936 Anticonvulsants and anti-Parkinsonism drugs" + }, + { + "value": "E937 Sedatives and hypnotics" + }, + { + "value": "E938 Other central nervous system depressants and anaesthetics" + }, + { + "value": "E939 Psychotropic agents" + }, + { + "value": "E940 Central nervous system stimulants" + }, + { + "value": "E941 Drugs primarily affecting the autonomic nervous system" + }, + { + "value": "E942 Agents primarily affecting the cardiovascular system" + }, + { + "value": "E943 Agents primarily affecting gastro-intestinal system" + }, + { + "value": "E944 Water, mineral and uric acid metabolism drugs" + }, + { + "value": "E945 Agents primarily acting on the smooth and skeletal muscles and respiratory system" + }, + { + "value": "E946 Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological and dental drugs" + }, + { + "value": "E947 Other and unspecified drugs and medicaments" + }, + { + "value": "E948 Bacterial vaccines" + }, + { + "value": "E949 Other vaccines and biological substances" + } + ] + }, + { + "predicate": "(E950-E959) Suicide and self-inflicted injury", + "entry": [ + { + "value": "E950 Suicide and self-inflicted poisoning by solid or liquid substances" + }, + { + "value": "E951 Suicide and self-inflicted poisoning by gases in domestic use" + }, + { + "value": "E952 Suicide and self-inflicted poisoning by other gases and vapours" + }, + { + "value": "E953 Suicide and self-inflicted injury by hanging, strangulation and suffocation" + }, + { + "value": "E954 Suicide and self-inflicted injury by submersion [drowning]" + }, + { + "value": "E955 Suicide and self-inflicted injury by firearms and explosives" + }, + { + "value": "E956 Suicide and self-inflicted injury by cutting and piercing instruments" + }, + { + "value": "E957 Suicide and self-inflicted injuries by jumping from high place" + }, + { + "value": "E958 Suicide and self-inflicted injury by other and unspecified means" + }, + { + "value": "E959 Late effects of self-inflicted injury" + } + ] + }, + { + "predicate": "(E960-E969) Homicide and injury purposely inflicted by other persons", + "entry": [ + { + "value": "E960 Fight, brawl, rape" + }, + { + "value": "E961 Assault by corrosive or caustic substance, except poisoning" + }, + { + "value": "E962 Assault by poisoning" + }, + { + "value": "E963 Assault by hanging and strangulation" + }, + { + "value": "E964 Assault by submersion [drowning]" + }, + { + "value": "E965 Assault by firearms and explosives" + }, + { + "value": "E966 Assault by cutting and piercing instrument" + }, + { + "value": "E967 Child battering and other maltreatment" + }, + { + "value": "E968 Assault by other and unspecified means" + }, + { + "value": "E969 Late effects of injury purposely inflicted by other person" + } + ] + } + ] +} diff --git a/deception/machinetag.json b/deception/machinetag.json new file mode 100644 index 0000000..8e5b512 --- /dev/null +++ b/deception/machinetag.json @@ -0,0 +1,243 @@ +{ + "namespace": "deception", + "description": "Deception is an important component of information operations, valuable for both offense and defense. ", + "version": 1, + "refs": [ + "https://faculty.nps.edu/ncrowe/rowe_iciw06.htm" + ], + "expanded": "Deception", + "predicates": [ + { + "value": "space", + "expanded": "Space", + "description": "Actions have associated locations, and deception can apply to those references." + }, + { + "value": "time", + "expanded": "Time", + "description": "Many actions on computer are timestamped, and attackers and defenders can deceive in regard to those times. An attacker could change the times of events recorded in a log file or the directory information about files to conceal records of their activities." + }, + { + "value": "participant", + "expanded": "Participant", + "description": "Actions have associated participants and the tools or objects by actions are accomplished." + }, + { + "value": "causality", + "expanded": "Causality", + "description": "Deception in cause, purpose, and effect is important in many kinds of social-engineering attacks where false reasons like \"I have a deadline\" or \"It didn't work\" are given for requests for actions or information that aid the adversary. Deception in a contradiction action is not possible in cyberspace because commands do not generally relate actions." + }, + { + "value": "quality", + "expanded": "Quality", + "description": "The \"quality\" semantic cases cover the manner in which actions are performed." + }, + { + "value": "essence", + "expanded": "Essence", + "description": "Deception can occur in the ontological features of an action, its type and the context to which is belongs." + }, + { + "value": "speech-act-theory", + "expanded": "Speech-Act-Theory", + "description": "Deception can involve semantic cases related to communication. Both internal and external preconditions provide useful deceptions by defenders since it is often hard to confirm deception in such conditions in cyberspace." + } + ], + "values": [ + { + "predicate": "space", + "entry": [ + { + "value": "direction", + "expanded": "Direction", + "description": "direction of the action. Direction cases can arise with some actions that are supposedly one-way like file transfers." + }, + { + "value": "location-at", + "expanded": "Location at", + "description": "Location where something occured" + }, + { + "value": "location-from", + "expanded": "Location from", + "description": "Location where something started" + }, + { + "value": "location-to", + "expanded": "Location to", + "description": "Location where something finished" + }, + { + "value": "location-through", + "expanded": "Location through", + "description": "Location where some action passed through" + }, + { + "value": "orientation", + "expanded": "Orientation", + "description": "Orientation (in some space). Orientation cases can arise with some actions that are supposedly one-way like file transfers." + } + ] + }, + { + "predicate": "time", + "entry": [ + { + "value": "frequency", + "expanded": "Frequency", + "description": "Frequency of occurrence of a repeated action. Frequency is an excellent case for deception, as in denial-of-service attacks that greatly increase the frequency of requests or transactions to tie up computer resources." + }, + { + "value": "time-at", + "expanded": "Time at", + "description": "Time at which something occurred" + }, + { + "value": "time-from", + "expanded": "Time from", + "description": "Time at which something started" + }, + { + "value": "time-to", + "expanded": "Time to", + "description": "Time at which something ended" + }, + { + "value": "time-through", + "expanded": "Time through", + "description": "Time through which something occurred" + } + ] + }, + { + "predicate": "participant", + "entry": [ + { + "value": "agent", + "expanded": "Agent", + "description": "Who initiates the action.Identification of participants responsible for actions (\"agents\") is a key problem in cyberspace, and is an easy target for deception." + }, + { + "value": "beneficiary", + "expanded": "Beneficiary", + "description": "Who benefits. Deceptions involving the beneficiary of an action occur with phishing and other email scams." + }, + { + "value": "experiencer", + "expanded": "Experiencer", + "description": "Who senses, experiences the action. Deception in the \"experiencer\" case occurs with secret monitoring of adversary activities." + }, + { + "value": "instrument", + "expanded": "Instrument", + "description": "What helps accomplish the action. Deception is easy with the instrument case because details of how software accomplishes things are often hidden in cyberspace." + }, + { + "value": "object", + "expanded": "Object", + "description": "What the action is done for. Deception in objects of the action is easy: Honeypots deceive as to the hardware and software objects of an attack, and \"bait\" data such as credit-card numbers can also be deceptive objects." + }, + { + "value": "recipient", + "expanded": "Recipient", + "description": "Who receives the action. The recipient of an action in cyberspace is usually the object. " + } + ] + }, + { + "predicate": "causality", + "entry": [ + { + "value": "cause", + "expanded": "Cause", + "description": "Cause of the action" + }, + { + "value": "contradiction", + "expanded": "Contradiction", + "description": "What this action opposes if anything" + }, + { + "value": "effect", + "expanded": "Effect", + "description": "Effect of the action" + }, + { + "value": "purpose", + "expanded": "Purpose", + "description": "Purpose of the action" + } + ] + }, + { + "predicate": "quality", + "entry": [ + { + "value": "accompaniment", + "expanded": "Accompaniment", + "description": "An additionnal object associated with the action" + }, + { + "value": "content", + "expanded": "Content", + "description": "What is contained by th eaction object" + }, + { + "value": "manner", + "expanded": "Manner", + "description": "The way in which action is done. (Deception in manner does not generally apply because the manner in which a command is issued or executed should not affect the outcome.)" + }, + { + "value": "material", + "expanded": "Material", + "description": "The atomic units out of which the action is composed. Deception in material does not apply much because everything is represented as bits in cyberspace, though defenders can deceive this way by simulating commands rather than executing them." + }, + { + "value": "measure", + "expanded": "Measure", + "description": "The mesurement associated with the action. Deception in measure (the amount of data) is important in denial-of-service attacks and can also done defensively by swamping the attacker with data." + }, + { + "value": "order", + "expanded": "Order", + "description": "With respect to other actions" + }, + { + "value": "value", + "expanded": "Value", + "description": "The data transmitted by the action (the software sense of the term). Deception in value (or subroutine \"argument\") can occur defensively as in a ploy of misunderstanding attacker commands." + } + ] + }, + { + "predicate": "essence", + "entry": [ + { + "value": "supertype", + "expanded": "Supertype", + "description": "a generalization of the action type. Phishing email is an example of deception in supertype." + }, + { + "value": "whole", + "expanded": "Whole", + "description": "of which the action is a part" + } + ] + }, + { + "predicate": "speech-act-theory", + "entry": [ + { + "value": "external-precondition", + "expanded": "External precondition", + "description": "external precondition on the action. External preconditions are on the rest of the world such as the ability of a site to accept a particular user-supplied password. " + }, + { + "value": "internal-precondition", + "expanded": "Internal precondition", + "description": "internal precondition, on the ability of the agent to perform the action. Internal preconditions are on the agent of the action, such as ability of a user to change their password." + } + ] + } + ] +} diff --git a/dga/machinetag.json b/dga/machinetag.json new file mode 100644 index 0000000..3b6144c --- /dev/null +++ b/dga/machinetag.json @@ -0,0 +1,64 @@ +{ + "namespace": "dga", + "expanded": "Domain-Generation Algorithms", + "description": "A taxonomy to describe domain-generation algorithms often called DGA. Ref: A Comprehensive Measurement Study of Domain Generating Malware Daniel Plohmann and others.", + "version": 2, + "predicates": [ + { + "value": "generation-scheme", + "expanded": "Generation scheme used for the DGA" + }, + { + "value": "seeding", + "expanded": "Seeding scheme used for the DGA" + } + ], + "values": [ + { + "predicate": "generation-scheme", + "entry": [ + { + "value": "arithmetic", + "expanded": "Arithmetic", + "description": "Calculate a sequence of values that either have a direct ASCII representation usable for a domain name or designate an offset in one or more hard- coded arrays, constituting the alphabet of the DGA. " + }, + { + "value": "hash", + "expanded": "Hash", + "description": "Use the hexdigest representation of a hash to produce the domain." + }, + { + "value": "wordlist", + "expanded": "Wordlist", + "description": "Concatenate a sequence of words from one or more wordlists, resulting in less randomly appealing and thus more camouflaging domains" + }, + { + "value": "permutation", + "expanded": "Permutation", + "description": "derive all possible AGDs (Algorithmically-Generated Domain) through permutation of an initial domain name." + } + ] + }, + { + "predicate": "seeding", + "entry": [ + { + "value": "time-dependent", + "expanded": "The DGA uses temporal information in the seeding for its domain generation, resulting in sets of domains with certain validity time spans." + }, + { + "value": "time-independent", + "expanded": "The DGA does not rely on temporal information in the seeding for its domain generation, resulting in a single set of domains." + }, + { + "value": "deterministic", + "expanded": "Given the implementation of the DGA and a seed, its full set of possible domains can be calculated at any point in time." + }, + { + "value": "non-deterministic", + "expanded": "Domains depend on unpredictable seed input, e.g. on external dynamic information that can be published at a later time (e.g. via posting on social media), on data specific to the system it is executed on, or on arbitrary non-predictable PRNG output." + } + ] + } + ] +} diff --git a/diamond-model-for-influence-operations/machinetag.json b/diamond-model-for-influence-operations/machinetag.json new file mode 100644 index 0000000..65ed2c7 --- /dev/null +++ b/diamond-model-for-influence-operations/machinetag.json @@ -0,0 +1,31 @@ +{ + "namespace": "diamond-model-for-influence-operations", + "expanded": "The Diamond Model for Influence Operations Analysis", + "description": "The diamond model for influence operations analysis is a framework that leads analysts and researchers toward a comprehensive understanding of a malign influence campaign by addressing the socio-political, technical, and psychological aspects of the campaign. The diamond model for influence operations analysis consists of 5 components: 4 corners and a core element. The 4 corners are divided into 2 axes: influencer and audience on the socio-political axis, capabilities and infrastructure on the technical axis. Narrative makes up the core of the diamond.", + "version": 1, + "refs": [ + "https://go.recordedfuture.com/hubfs/white-papers/diamond-model-influence-operations-analysis.pdf" + ], + "predicates": [ + { + "value": "Influencer", + "expanded": "The influencer is an individual or organization that is conducting malign influence activity." + }, + { + "value": "Capabilities", + "expanded": "Capabilities are the influencer’s TTPs. Studying the way influencers plan, test, and execute their operations can enable analysts to be more proactive in defending against malign influence and to discern how to neutralize harmful narratives when they are identified. " + }, + { + "value": "Infrastructure", + "expanded": "The infrastructure used by influencers can include print media, television, digital platforms like websites, mobile phones, mobile applications, and more. " + }, + { + "value": "Audience", + "expanded": "The audience is the intended target of the influence operation. The audience can range in size from a single individual to a large international audience. " + }, + { + "value": "Narrative", + "expanded": "The narrative is often key to identifying who would be affected by the story and who would be motivated to propagate that particular message. " + } + ] +} diff --git a/doping-substances/Misp-logo.png b/doping-substances/Misp-logo.png new file mode 100644 index 0000000..5f2d4dd Binary files /dev/null and b/doping-substances/Misp-logo.png differ diff --git a/doping-substances/README.md b/doping-substances/README.md new file mode 100644 index 0000000..db4ba68 --- /dev/null +++ b/doping-substances/README.md @@ -0,0 +1,44 @@ +# MISP_DopingSubstanceTaxonomy + +This project aims to gather information about all the prohibited sports Doping Substances. + +We collected all of the information on the [WADA website](https://www.wada-ama.org/en/prohibited-list). + +To do that we have created a python script to scrap this website and generate a JSON file (Taxonomy). + +This Taxonomy could be add in MISP to help sports organizations to fight against usage of doping substances. + +## MISP + +![logo](Misp-logo.png) + +What is MISP ? + +>A threat intelligence platform for sharing, storing and correlating +Indicators of Compromise of targeted attacks, threat intelligence, +financial fraud information, vulnerability information or even +counter-terrorism information. Discover how MISP is used today in +multiple organisations. Not only to store, share, collaborate on cyber +security indicators, malware analysis, but also to use the IoCs and +information to detect and prevent attacks, frauds or threats against ICT + infrastructures, organisations or people. + +## JSON Generation + +In order to build the JSON file, we created a Python script which scrap the WADA (World Anti-Doping Agency) ‘s prohibited list. + +Thanks to BeautifulSoup, a useful library that helps a lot when it comes to scrap HTLM documents, the script is able to get all the list of doping substances. + +The file is created with PyTaxonomies, a MISP library that help to create valid JSON file according to the [MISP Platform](https://www.misp-project.org/taxonomies.html#_misp_taxonomies). + +Finally, the script generates all predicates (doping categories) and the entries associated (the doping substances themselves). + +## Installation + +If you want to try it out yourself, you need to have both BeautifulSoup & PyTaxonomies installated. + +## Authors + +DELUS Thibaut : https://github.com/WooZyhh + +JACOB Lucas : https://github.com/Chaamoxs diff --git a/doping-substances/gen_taxonomy.py b/doping-substances/gen_taxonomy.py new file mode 100644 index 0000000..aa205da --- /dev/null +++ b/doping-substances/gen_taxonomy.py @@ -0,0 +1,63 @@ +import json +import requests +from bs4 import BeautifulSoup +from pathlib import Path +from pytaxonomies import Entry, Predicate, Taxonomy + +CONTENT_URL = 'https://www.wada-ama.org/en/prohibited-list' + +TAXONOMY_DESCRIPTION = 'This taxonomy aims to list doping substances' +TAXONOMY_EXPANDED = 'Doping substances' +TAXONOMY_NAME = 'doping-substances' + +ignore = ('NON-APPROVED SUBSTANCES', ) + + +def list_predicates(articles): + predicates = {} + for article in articles: + title = article.find('p', attrs={'class': 'h3 panel-title'}).text + if title in ignore: + continue + predicate = Predicate() + predicate.predicate = title + div = article.find('div', attrs={'class': 'layout-wysiwyg'}) + description = div.find('p') + predicate.description = description.find_next_sibling().text + predicates[title] = predicate + return predicates + + +def generate_taxonomy(): + new_taxonomy = Taxonomy() + + new_taxonomy.name = TAXONOMY_NAME + new_taxonomy.expanded = TAXONOMY_EXPANDED + new_taxonomy.description = TAXONOMY_DESCRIPTION + + response = requests.get(CONTENT_URL) + soup = BeautifulSoup(response.text, 'html.parser') + articles = soup.findAll('article', attrs={'class': 'panel hide-reader'}) + + new_taxonomy.predicates = list_predicates(articles) + + for article in articles: + title = article.find('p', attrs={'class': 'h3 panel-title'}).text + if title in ignore: + continue + products = article.findAll('li') + products_list = {} + for product in products: + entry = Entry() + entry.value = product.text + products_list[entry.value] = entry + new_taxonomy.predicates[title].entries = products_list + + return new_taxonomy + + +if __name__ == '__main__': + taxonomy = generate_taxonomy() + taxonomy.version = 2 + with open(Path(__file__).resolve().parent / 'machinetag.json', 'wt', encoding='utf-8') as f: + json.dump(taxonomy.to_dict(), f, indent=2, ensure_ascii=False) diff --git a/doping-substances/machinetag.json b/doping-substances/machinetag.json new file mode 100644 index 0000000..cbafb6f --- /dev/null +++ b/doping-substances/machinetag.json @@ -0,0 +1,1116 @@ +{ + "namespace": "doping-substances", + "description": "This taxonomy aims to list doping substances", + "version": 2, + "expanded": "Doping substances", + "predicates": [ + { + "value": "anabolic agents", + "description": "Anabolic agents are prohibited." + }, + { + "value": "peptide hormones, growth factors, related substances and mimetics", + "description": "The following substances, and other substances with similar chemical structure or similar biological effect(s), are prohibited." + }, + { + "value": "beta-2 agonists", + "description": "All selective and non-selective beta-2 agonists, including all optical isomers, are prohibited." + }, + { + "value": "hormone and metabolic modulators", + "description": "The following hormone and metabolic modulators are prohibited." + }, + { + "value": "diuretics and masking agents", + "description": "All diuretics and masking agents, including all optical isomers, e.g. d- and l- where relevant, are prohibited." + }, + { + "value": "manipulation of blood and blood components", + "description": "The following are prohibited" + }, + { + "value": "chemical and physical manipulation", + "description": "The following are prohibited" + }, + { + "value": "gene and cell doping", + "description": "The following, with the potential to enhance sport performance, are prohibited" + }, + { + "value": "stimulants", + "description": "Substances of Abuse in this section: cocaine and methylenedioxymethamphetamine (MDMA / “ecstasy”)." + }, + { + "value": "narcotics", + "description": "The following narcotics, including all optical isomers, e.g. d- and l- where relevant, are prohibited." + }, + { + "value": "cannabinoids" + }, + { + "value": "glucocorticoids", + "description": "All glucocorticoids are prohibited when administered by any injectable, oral [including oromucosal (e.g. buccal, gingival, sublingual)] or rectal route." + }, + { + "value": "beta-blockers", + "description": "Beta-blockers are prohibited In-Competition only, in the following sports, and also prohibited Out-of-Competition where indicated (*)." + } + ], + "values": [ + { + "predicate": "anabolic agents", + "entry": [ + { + "value": "1-androstenediol", + "expanded": "1-androstenediol (5α-androst-1-ene-3β, 17β-diol)" + }, + { + "value": "1-androstenedione", + "expanded": "1-androstenedione (5α-androst-1-ene-3, 17-dione)" + }, + { + "value": "1-androsterone", + "expanded": "1-androsterone (3α-hydroxy-5α-androst-1-ene-17-one)" + }, + { + "value": "1-epiandrosterone", + "expanded": "1-epiandrosterone (3β-hydroxy-5α-androst-1-ene-17-one)" + }, + { + "value": "1-testosterone", + "expanded": "1-testosterone (17β-hydroxy-5α-androst-1-en-3-one)" + }, + { + "value": "4-androstenediol", + "expanded": "4-androstenediol (androst-4-ene-3β,17β-diol)" + }, + { + "value": "4-hydroxytestosterone", + "expanded": "4-hydroxytestosterone (4,17β-dihydroxyandrost-4-en-3-one)" + }, + { + "value": "5-androstenedione", + "expanded": "5-androstenedione (androst-5-ene-3,17-dione)" + }, + { + "value": "7α-hydroxy-dhea" + }, + { + "value": "7β-hydroxy-dhea" + }, + { + "value": "7-keto-dhea" + }, + { + "value": "17α-methylepithiostanol", + "expanded": "17α-methylepithiostanol (epistane)" + }, + { + "value": "19-norandrostenediol", + "expanded": "19-norandrostenediol  (estr-4-ene-3,17-diol)" + }, + { + "value": "19-norandrostenedione", + "expanded": "19-norandrostenedione (estr-4-ene-3,17-dione)" + }, + { + "value": "androst-4-ene-3,11,17-trione", + "expanded": "androst-4-ene-3,11,17-trione (11-ketoandrostenedione, adrenosterone)" + }, + { + "value": "androstanolone", + "expanded": "androstanolone (5α-dihydrotestosterone, 17β-hydroxy-5α-androstan-3-one)" + }, + { + "value": "androstenediol", + "expanded": "androstenediol (androst-5-ene-3β,17β-diol)" + }, + { + "value": "androstenedione", + "expanded": "androstenedione (androst-4-ene-3,17-dione)" + }, + { + "value": "bolasterone" + }, + { + "value": "boldenone" + }, + { + "value": "boldione", + "expanded": "boldione (androsta-1,4-diene-3,17-dione)" + }, + { + "value": "calusterone" + }, + { + "value": "clostebol" + }, + { + "value": "danazol", + "expanded": "danazol ([1,2]oxazolo[4’,5’:2,3]pregna-4-en-20-yn-17α-ol)" + }, + { + "value": "dehydrochlormethyltestosterone", + "expanded": "dehydrochlormethyltestosterone (4-chloro-17β-hydroxy-17α-methylandrosta-1,4-dien-3-one)" + }, + { + "value": "desoxymethyltestosterone", + "expanded": "desoxymethyltestosterone (17α-methyl-5α-androst-2-en-17β-ol and 17α-methyl-5α-androst-3-en-17β-ol)" + }, + { + "value": "drostanolone" + }, + { + "value": "epiandrosterone", + "expanded": "epiandrosterone (3β-hydroxy-5α-androstan-17-one)" + }, + { + "value": "epi-dihydrotestosterone", + "expanded": "epi-dihydrotestosterone (17β-hydroxy-5β-androstan-3-one)" + }, + { + "value": "epitestosterone" + }, + { + "value": "ethylestrenol", + "expanded": "ethylestrenol  (19-norpregna-4-en-17α-ol)" + }, + { + "value": "fluoxymesterone" + }, + { + "value": "formebolone" + }, + { + "value": "furazabol", + "expanded": "furazabol (17α-methyl [1,2,5] oxadiazolo[3’,4’:2,3]-5α-androstan-17β-ol)" + }, + { + "value": "gestrinone" + }, + { + "value": "mestanolone" + }, + { + "value": "mesterolone" + }, + { + "value": "metandienone", + "expanded": "metandienone (17β-hydroxy-17α- methylandrosta-1,4-dien-3-one)" + }, + { + "value": "metenolone" + }, + { + "value": "methandriol" + }, + { + "value": "methasterone", + "expanded": "methasterone (17β-hydroxy-2α,17α- dimethyl-5α-androstan-3-one)" + }, + { + "value": "methyl-1-testosterone", + "expanded": "methyl-1-testosterone (17β-hydroxy-17α- methyl-5α-androst-1-en-3-one)" + }, + { + "value": "methylclostebol" + }, + { + "value": "methyldienolone", + "expanded": "methyldienolone (17β-hydroxy-17α- methylestra-4,9-dien-3-one)" + }, + { + "value": "methylnortestosterone", + "expanded": "methylnortestosterone (17β-hydroxy-17α- methylestr-4-en-3-one)" + }, + { + "value": "methyltestosterone" + }, + { + "value": "metribolone", + "expanded": "metribolone (methyltrienolone, 17β-hydroxy- 17α-methylestra-4,9,11-trien-3-one)" + }, + { + "value": "mibolerone" + }, + { + "value": "nandrolone", + "expanded": "nandrolone (19-nortestosterone)" + }, + { + "value": "norboletone" + }, + { + "value": "norclostebol", + "expanded": "norclostebol (4-chloro-17β-ol-estr-4-en-3- one)" + }, + { + "value": "norethandrolone" + }, + { + "value": "oxabolone" + }, + { + "value": "oxandrolone" + }, + { + "value": "oxymesterone" + }, + { + "value": "oxymetholone" + }, + { + "value": "prasterone", + "expanded": "prasterone (dehydroepiandrosterone, dhea, 3β-hydroxyandrost-5-en-17-one)" + }, + { + "value": "prostanozol", + "expanded": "prostanozol (17β-[(tetrahydropyran-2-yl) oxy]-1’h-pyrazolo[3,4:2,3]-5α-androstane)" + }, + { + "value": "quinbolone" + }, + { + "value": "stanozolol" + }, + { + "value": "stenbolone" + }, + { + "value": "testosterone" + }, + { + "value": "tetrahydrogestrinone", + "expanded": "tetrahydrogestrinone (17-hydroxy-18a- homo-19-nor-17α-pregna-4,9,11-trien-3- one)" + }, + { + "value": "tibolone" + }, + { + "value": "trenbolone", + "expanded": "trenbolone (17β-hydroxyestr-4,9,11-trien-3-one) and other substances with a similar chemical structure or similar biological effect(s)." + }, + { + "value": "clenbuterol" + }, + { + "value": "osilodrostat" + }, + { + "value": "ractopamine" + }, + { + "value": "selective androgen receptor modulators", + "expanded": "selective androgen receptor modulators [sarms, e.g. andarine, enobosarm (ostarine), lgd-4033 (ligandrol), rad140, s-23 and yk-11]" + }, + { + "value": "zeranol" + }, + { + "value": "zilpaterol" + } + ] + }, + { + "predicate": "peptide hormones, growth factors, related substances and mimetics", + "entry": [ + { + "value": "darbepoetins", + "expanded": "darbepoetins (depo)" + }, + { + "value": "erythropoietins", + "expanded": "erythropoietins (epo)" + }, + { + "value": "epo-based constructs", + "expanded": "epo-based constructs [e.g. epo-fc, methoxy polyethylene glycol-epoetin beta (cera)]" + }, + { + "value": "epo-mimetic agents", + "expanded": "epo-mimetic agents and their constructs (e.g. cnto-530, peginesatide)" + }, + { + "value": "cobalt" + }, + { + "value": "daprodustat", + "expanded": "daprodustat (gsk1278863)" + }, + { + "value": "iox2" + }, + { + "value": "molidustat", + "expanded": "molidustat (bay 85-3934)" + }, + { + "value": "roxadustat", + "expanded": "roxadustat (fg-4592)" + }, + { + "value": "vadadustat", + "expanded": "vadadustat (akb-6548)" + }, + { + "value": "xenon" + }, + { + "value": "k-11706" + }, + { + "value": "luspatercept" + }, + { + "value": "sotatercept" + }, + { + "value": "asialo epo" + }, + { + "value": "carbamylated epo", + "expanded": "carbamylated epo (cepo)" + }, + { + "value": "buserelin" + }, + { + "value": "deslorelin" + }, + { + "value": "gonadorelin" + }, + { + "value": "goserelin" + }, + { + "value": "leuprorelin" + }, + { + "value": "nafarelin" + }, + { + "value": "triptorelin" + }, + { + "value": "corticorelin" + }, + { + "value": "growth hormone analogues, e.g. lonapegsomatropin, somapacitan and somatrogon" + }, + { + "value": "growth hormone fragments, e.g. aod-9604 and hgh 176-191" + }, + { + "value": "growth hormone-releasing hormone", + "expanded": "growth hormone-releasing hormone (ghrh) and its analogues (e.g. cjc-1293, cjc-1295, sermorelin and tesamorelin)" + }, + { + "value": "growth hormone secretagogues", + "expanded": "growth hormone secretagogues (ghs) and their mimetics [e.g. lenomorelin (ghrelin), anamorelin, ipamorelin, macimorelin and tabimorelin]" + }, + { + "value": "gh-releasing peptides", + "expanded": "gh-releasing peptides (ghrps) [e.g. alexamorelin, ghrp-1, ghrp-2 (pralmorelin), ghrp-3, ghrp-4, ghrp-5, ghrp-6, and examorelin (hexarelin)]" + }, + { + "value": "fibroblast growth factors", + "expanded": "fibroblast growth factors (fgfs)" + }, + { + "value": "hepatocyte growth factor", + "expanded": "hepatocyte growth factor (hgf)" + }, + { + "value": "insulin-like growth factor 1", + "expanded": "insulin-like growth factor 1 (igf-1) and its analogues" + }, + { + "value": "mechano growth factors", + "expanded": "mechano growth factors (mgfs)" + }, + { + "value": "platelet-derived growth factor", + "expanded": "platelet-derived growth factor (pdgf)" + }, + { + "value": "thymosin-β4 and its derivatives e.g. tb-500" + }, + { + "value": "vascular endothelial growth factor", + "expanded": "vascular endothelial growth factor (vegf) and other growth factors or growth factor modulators affecting muscle, tendon or ligament protein synthesis/degradation, vascularisation, energy utilization, regenerative capacity or fibre type switching." + } + ] + }, + { + "predicate": "beta-2 agonists", + "entry": [ + { + "value": "arformoterol" + }, + { + "value": "fenoterol" + }, + { + "value": "higenamine" + }, + { + "value": "indacaterol" + }, + { + "value": "levosalbutamol" + }, + { + "value": "olodaterol" + }, + { + "value": "procaterol" + }, + { + "value": "reproterol" + }, + { + "value": "terbutaline" + }, + { + "value": "tretoquinol", + "expanded": "tretoquinol (trimetoquinol)" + }, + { + "value": "tulobuterol" + }, + { + "value": "salbutamol", + "expanded": "inhaled salbutamol: maximum 1600 micrograms over 24 hours in divided doses not to exceed 600 micrograms over 8 hours starting from any dose" + }, + { + "value": "formoterol", + "expanded": "inhaled formoterol: maximum delivered dose of 54 micrograms over 24 hours" + }, + { + "value": "salmeterol", + "expanded": "inhaled salmeterol: maximum 200 micrograms over 24 hours" + }, + { + "value": "vilanterol", + "expanded": "inhaled vilanterol: maximum 25 micrograms over 24 hours" + } + ] + }, + { + "predicate": "hormone and metabolic modulators", + "entry": [ + { + "value": "2-androstenol", + "expanded": "2-androstenol  (5α-androst-2-en-17-ol)" + }, + { + "value": "2-androstenone", + "expanded": "2-androstenone (5α-androst-2-en-17-one)" + }, + { + "value": "3-androstenol", + "expanded": "3-androstenol  (5α-androst-3-en-17-ol)" + }, + { + "value": "3-androstenone", + "expanded": "3-androstenone (5α-androst-3-en-17-one)" + }, + { + "value": "4-androstene-3,6,17 trione", + "expanded": "4-androstene-3,6,17 trione (6-oxo)" + }, + { + "value": "aminoglutethimide" + }, + { + "value": "anastrozole" + }, + { + "value": "androsta-1,4,6-triene-3,17-dione", + "expanded": "androsta-1,4,6-triene-3,17-dione (androstatrienedione)" + }, + { + "value": "androsta-3,5-diene-7,17-dione", + "expanded": "androsta-3,5-diene-7,17-dione (arimistane)" + }, + { + "value": "exemestane" + }, + { + "value": "formestane" + }, + { + "value": "letrozole" + }, + { + "value": "testolactone" + }, + { + "value": "bazedoxifene" + }, + { + "value": "clomifene" + }, + { + "value": "cyclofenil" + }, + { + "value": "fulvestrant" + }, + { + "value": "ospemifene" + }, + { + "value": "raloxifene" + }, + { + "value": "tamoxifen" + }, + { + "value": "toremifene" + }, + { + "value": "activin a-neutralizing antibodies" + }, + { + "value": "activin receptor iib competitors", + "expanded": "activin receptor iib competitors such as: decoy activin receptors (e.g. ace-031)" + }, + { + "value": "decoy activin receptors", + "expanded": "decoy activin receptors (e.g. ace-031)" + }, + { + "value": "anti-activin receptor iib antibodies", + "expanded": "anti-activin receptor iib antibodies (e.g. bimagrumab)" + }, + { + "value": "myostatin inhibitors", + "expanded": "myostatin inhibitors such as: agents reducing or ablating myostatin expression myostatin-binding proteins (e.g. follistatin, myostatin propeptide) myostatin- or precursor - neutralizing  antibodies (e.g. apitegromab, domagrozumab, landogrozumab, stamulumab)" + }, + { + "value": "agents reducing or ablating myostatin expression" + }, + { + "value": "myostatin-binding proteins", + "expanded": "myostatin-binding proteins (e.g. follistatin, myostatin propeptide)" + }, + { + "value": "myostatini - or precursor - neutralizing  antibodies", + "expanded": "myostatin - or precursor - neutralizing  antibodies (e.g. apitegromab, domagrozumab, landogrozumab, stamulumab)" + } + ] + }, + { + "predicate": "diuretics and masking agents", + "entry": [ + { + "value": "desmopressin" + }, + { + "value": "probenecid" + }, + { + "value": "plasma expanders", + "expanded": "plasma expanders, e.g. intravenous administration of albumin, dextran, hydroxyethyl starch and mannitol." + }, + { + "value": "acetazolamide" + }, + { + "value": "amiloride" + }, + { + "value": "bumetanide" + }, + { + "value": "canrenone" + }, + { + "value": "chlortalidone" + }, + { + "value": "etacrynic acid" + }, + { + "value": "furosemide" + }, + { + "value": "indapamide" + }, + { + "value": "metolazone" + }, + { + "value": "spironolactone" + }, + { + "value": "thiazides", + "expanded": "thiazides, e.g. bendroflumethiazide, chlorothiazide and hydrochlorothiazide" + }, + { + "value": "torasemide" + }, + { + "value": "triamterene" + }, + { + "value": "vaptans" + }, + { + "value": "vaptans, e.g. tolvaptan." + }, + { + "value": "drospirenone" + }, + { + "value": "pamabrom" + }, + { + "value": "carbonic anhydrase inhibitors", + "expanded": "topical ophthalmic administration of carbonic anhydrase inhibitors (e.g. dorzolamide, brinzolamide)" + }, + { + "value": "felypressin", + "expanded": "local administration of felypressin in dental anaesthesia" + } + ] + }, + { + "predicate": "stimulants", + "entry": [ + { + "value": "adrafinil" + }, + { + "value": "amfepramone" + }, + { + "value": "amfetamine" + }, + { + "value": "amfetaminil" + }, + { + "value": "amiphenazole" + }, + { + "value": "benfluorex" + }, + { + "value": "benzylpiperazine" + }, + { + "value": "bromantan" + }, + { + "value": "clobenzorex" + }, + { + "value": "cocaine" + }, + { + "value": "cropropamide" + }, + { + "value": "crotetamide" + }, + { + "value": "fencamine" + }, + { + "value": "fenetylline" + }, + { + "value": "fenfluramine" + }, + { + "value": "fenproporex" + }, + { + "value": "fonturacetam", + "expanded": "fonturacetam [4-phenylpiracetam (carphedon)]" + }, + { + "value": "furfenorex" + }, + { + "value": "lisdexamfetamine" + }, + { + "value": "mefenorex" + }, + { + "value": "mephentermine" + }, + { + "value": "mesocarb" + }, + { + "value": "metamfetamine", + "expanded": "metamfetamine(d-)" + }, + { + "value": "p-methylamfetamine" + }, + { + "value": "modafinil" + }, + { + "value": "norfenfluramine" + }, + { + "value": "phendimetrazine" + }, + { + "value": "phentermine" + }, + { + "value": "prenylamine" + }, + { + "value": "prolintane" + }, + { + "value": "3-methylhexan-2-amine", + "expanded": "3-methylhexan-2-amine (1,2-dimethylpentylamine)" + }, + { + "value": "4-fluoromethylphenidate" + }, + { + "value": "4-methylhexan-2-amine", + "expanded": "4-methylhexan-2-amine (methylhexaneamine, 1,3-dimethylamylamine, 1,3 dmaa)" + }, + { + "value": "4-methylpentan-2-amine", + "expanded": "4-methylpentan-2-amine (1,3-dimethylbutylamine)" + }, + { + "value": "5-methylhexan-2-amine", + "expanded": "5-methylhexan-2-amine (1,4-dimethylpentylamine, 1,4-dimethylamylamine, 1,4-dmaa)" + }, + { + "value": "benzfetamine" + }, + { + "value": "cathine**" + }, + { + "value": "cathinone and its analogues", + "expanded": "cathinone and its analogues, e.g. mephedrone, methedrone, and α - pyrrolidinovalerophenone" + }, + { + "value": "dimetamfetamine", + "expanded": "dimetamfetamine (dimethylamphetamine)" + }, + { + "value": "ephedrine***" + }, + { + "value": "epinephrine****", + "expanded": "epinephrine**** (adrenaline)" + }, + { + "value": "etamivan" + }, + { + "value": "ethylphenidate" + }, + { + "value": "etilamfetamine" + }, + { + "value": "etilefrine" + }, + { + "value": "famprofazone" + }, + { + "value": "fenbutrazate" + }, + { + "value": "fencamfamin" + }, + { + "value": "heptaminol" + }, + { + "value": "hydrafinil", + "expanded": "hydrafinil (fluorenol)" + }, + { + "value": "hydroxyamfetamine", + "expanded": "hydroxyamfetamine (parahydroxyamphetamine)" + }, + { + "value": "isometheptene" + }, + { + "value": "levmetamfetamine" + }, + { + "value": "meclofenoxate" + }, + { + "value": "methylenedioxymetham- phetamine" + }, + { + "value": "methylephedrine***" + }, + { + "value": "methylnaphthidate", + "expanded": "methylnaphthidate [((±)-methyl-2-(naphthalen-2-yl)-2-(piperidin-2-yl)acetate]" + }, + { + "value": "methylphenidate" + }, + { + "value": "nikethamide" + }, + { + "value": "norfenefrine" + }, + { + "value": "octodrine", + "expanded": "octodrine (1,5-dimethylhex- ylamine)" + }, + { + "value": "octopamine" + }, + { + "value": "oxilofrine", + "expanded": "oxilofrine (methylsynephrine)" + }, + { + "value": "pemoline" + }, + { + "value": "pentetrazol" + }, + { + "value": "phenethylamine and its derivatives" + }, + { + "value": "phenmetrazine" + }, + { + "value": "phenpromethamine" + }, + { + "value": "propylhexedrine" + }, + { + "value": "pseudoephedrine*****" + }, + { + "value": "selegiline" + }, + { + "value": "sibutramine" + }, + { + "value": "solriamfetol" + }, + { + "value": "strychnine" + }, + { + "value": "tenamfetamine", + "expanded": "tenamfetamine (methylenedioxyamphet- amine)" + }, + { + "value": "tuaminoheptane" + }, + { + "value": "clonidine" + }, + { + "value": "imidazole derivatives", + "expanded": "imidazole derivatives for dermatological, nasal, ophthalmic or otic use (e.g. brimonidine, clonazoline, fenoxazoline, indanazoline, naphazoline, oxymetazoline, tetryzoline, xylometazoline) and those stimulants included in the 2023 monitoring program*" + } + ] + }, + { + "predicate": "narcotics", + "entry": [ + { + "value": "buprenorphine" + }, + { + "value": "dextromoramide" + }, + { + "value": "diamorphine", + "expanded": "diamorphine (heroin)" + }, + { + "value": "fentanyl", + "expanded": "fentanyl and its derivatives" + }, + { + "value": "hydromorphone" + }, + { + "value": "methadone" + }, + { + "value": "morphine" + }, + { + "value": "nicomorphine" + }, + { + "value": "oxycodone" + }, + { + "value": "oxymorphone" + }, + { + "value": "pentazocine" + }, + { + "value": "pethidine" + } + ] + }, + { + "predicate": "cannabinoids", + "entry": [ + { + "value": "in cannabis", + "expanded": "in cannabis (hashish, marijuana) and cannabis products" + }, + { + "value": "synthetic cannabinoids that mimic the effects of thc" + }, + { + "value": "natural and synthetic tetrahydrocannabinols", + "expanded": "natural and synthetic tetrahydrocannabinols (thcs)" + }, + { + "value": "cannabidiol" + } + ] + }, + { + "predicate": "glucocorticoids", + "entry": [ + { + "value": "beclometasone" + }, + { + "value": "betamethasone" + }, + { + "value": "budesonide" + }, + { + "value": "ciclesonide" + }, + { + "value": "cortisone" + }, + { + "value": "deflazacort" + }, + { + "value": "dexamethasone" + }, + { + "value": "flucortolone" + }, + { + "value": "flunisolide" + }, + { + "value": "fluticasone" + }, + { + "value": "hydrocortisone" + }, + { + "value": "methylprednisolone" + }, + { + "value": "mometasone" + }, + { + "value": "prednisolone" + }, + { + "value": "prednisone" + }, + { + "value": "triamcinolone acetonide" + } + ] + }, + { + "predicate": "beta-blockers", + "entry": [ + { + "value": "acebutolol" + }, + { + "value": "alprenolol" + }, + { + "value": "atenolol" + }, + { + "value": "betaxolol" + }, + { + "value": "bisoprolol" + }, + { + "value": "bunolol" + }, + { + "value": "carteolol" + }, + { + "value": "carvedilol" + }, + { + "value": "celiprolol" + }, + { + "value": "esmolol" + }, + { + "value": "labetalol" + }, + { + "value": "metipranolol" + }, + { + "value": "metoprolol" + }, + { + "value": "nadolol" + }, + { + "value": "nebivolol" + }, + { + "value": "oxprenolol" + }, + { + "value": "pindolol" + }, + { + "value": "propranolol" + }, + { + "value": "sotalol" + }, + { + "value": "timolol" + } + ] + } + ] +} diff --git a/exercise/machinetag.json b/exercise/machinetag.json index 43b52d5..e296bc7 100644 --- a/exercise/machinetag.json +++ b/exercise/machinetag.json @@ -45,6 +45,16 @@ { "predicate": "cyber-europe", "entry": [ + { + "value": "2024", + "expanded": "2024", + "description": "7th pan European cyber crisis exercise: Cyber Europe 2024 (CE2024)" + }, + { + "value": "2022", + "expanded": "2022", + "description": "6th pan European cyber crisis exercise: Cyber Europe 2022 (CE2022)" + }, { "value": "2018", "expanded": "2018", @@ -94,6 +104,21 @@ "value": "2021", "expanded": "2021", "description": "Locked Shields 2021" + }, + { + "value": "2022", + "expanded": "2022", + "description": "Locked Shields 2022" + }, + { + "value": "2023", + "expanded": "2023", + "description": "Locked Shields 2023" + }, + { + "value": "2024", + "expanded": "2024", + "description": "Locked Shields 2024" } ] }, @@ -183,7 +208,7 @@ ] } ], - "version": 8, + "version": 11, "description": "Exercise is a taxonomy to describe if the information is part of one or more cyber or crisis exercise.", "expanded": "Exercise", "namespace": "exercise" diff --git a/extended-event/machinetag.json b/extended-event/machinetag.json index 45e05c4..37286cd 100644 --- a/extended-event/machinetag.json +++ b/extended-event/machinetag.json @@ -1,7 +1,7 @@ { "namespace": "extended-event", - "description": "Reasons why an event has been extended. ", - "version": 1, + "description": "Reasons why an event has been extended. This taxonomy must be used on the extended event. The competitive analysis aspect is from Psychology of Intelligence Analysis by Richard J. Heuer, Jr. ref:http://www.foo.be/docs/intelligence/PsychofIntelNew.pdf", + "version": 2, "predicates": [ { "value": "competitive-analysis", @@ -25,6 +25,11 @@ "value": "update", "expanded": "Update", "description": "Original event is deprecated" + }, + { + "value": "counter-analysis", + "expanded": "Counter analysis", + "description": "This extended event is a counter analysis of the original one. The author disagrees with the original statement." } ], "values": [ @@ -34,22 +39,22 @@ { "value": "devil-advocate", "expanded": "Devil's advocate", - "description": "Is a competitive analysis of devil's advocate type." + "description": "Is a competitive analysis of devil's advocate type. A devil’s advocate is someone who defends a minority point of view." }, { "value": "absurd-reasoning", "expanded": "Absurd reasoning", - "description": "Is a competitive analysis of absurd reasoning type" + "description": "Is a competitive analysis of absurd reasoning type." }, { "value": "role-playing", "expanded": "Role playing", - "description": "Is a competitive analysis of role playing type" + "description": "Is a competitive analysis of role playing type. Role playing is commonly used to overcome con- straints and inhibitions that limit the range of one’s thinking. Playing a role changes “where you sit.” It also gives one license to think and act differently." }, { "value": "crystal-ball", "expanded": "Crystal ball", - "description": "Is a competitive analysis of crystal ball type" + "description": "Is a competitive analysis of crystal ball type. The crystal ball approach works in much the same way as thinking backwards. Imagine that a “perfect” intelligence source (such as a crystal ball) has told you a certain assumption is wrong. You must then develop a scenario to explain how this could be true. If you can develop a plausible scenario, this suggests your assumption is open to some question." } ] }, @@ -59,7 +64,7 @@ { "value": "automatic-expansion", "expanded": "Automatic expansion", - "description": "This extended event is composed of elements derived from automatic expanxions services" + "description": "This extended event is composed of elements derived from automatic expansions services" }, { "value": "aggressive-pivoting", diff --git a/false-positive/machinetag.json b/false-positive/machinetag.json index 359123d..a6c4a70 100644 --- a/false-positive/machinetag.json +++ b/false-positive/machinetag.json @@ -1,7 +1,7 @@ { "namespace": "false-positive", "description": "This taxonomy aims to ballpark the expected amount of false positives.", - "version": 5, + "version": 7, "expanded": "False positive", "predicates": [ { @@ -25,19 +25,29 @@ "value": "low", "expanded": "Low", "description": "The risk of having false positives in the tagged value is low.", - "numerical_value": 75 + "numerical_value": 75, + "colour": "#33FF00" }, { "value": "medium", "expanded": "Medium", "description": "The risk of having false positives in the tagged value is medium.", - "numerical_value": 50 + "numerical_value": 50, + "colour": "#FFFF00" }, { "value": "high", "expanded": "High", "description": "The risk of having false positives in the tagged value is high.", - "numerical_value": 25 + "numerical_value": 25, + "colour": "#FF2B2B" + }, + { + "value": "cannot-be-judged", + "expanded": "Risk cannot be judged", + "description": "The risk of having false positives in the tagged value cannot be judged.", + "numerical_value": 25, + "colour": "#FFC000" } ] }, @@ -53,7 +63,7 @@ { "value": "false", "expanded": "False", - "description": "The flase positive is not confirmed.", + "description": "The false positive is not confirmed.", "numerical_value": 50 } ] diff --git a/file-type/machinetag.json b/file-type/machinetag.json index afd4413..66c0df2 100755 --- a/file-type/machinetag.json +++ b/file-type/machinetag.json @@ -107,6 +107,11 @@ "expanded": "internet", "value": "xml" }, + { + "colour": "#11eded", + "expanded": "internet", + "value": "hta" + }, { "colour": "#ccffeb", "expanded": "internet", @@ -202,6 +207,11 @@ "expanded": "image", "value": "gimp" }, + { + "colour": "#25c3e6", + "expanded": "image", + "value": "img" + }, { "colour": "#80ffce", "expanded": "image", @@ -362,11 +372,36 @@ "expanded": "document", "value": "ps" }, + { + "colour": "#33ffb1", + "expanded": "document", + "value": "dot" + }, + { + "colour": "#33ffb1", + "expanded": "document", + "value": "dotm" + }, + { + "colour": "#33ffb1", + "expanded": "document", + "value": "dotx" + }, { "colour": "#33ffb1", "expanded": "document", "value": "doc" }, + { + "colour": "#35b8f0", + "expanded": "document", + "value": "txt" + }, + { + "colour": "#ccffeb", + "expanded": "document", + "value": "docm" + }, { "colour": "#ccffeb", "expanded": "document", @@ -397,6 +432,11 @@ "expanded": "document", "value": "xlsx" }, + { + "colour": "#00663f", + "expanded": "document", + "value": "xlsm" + }, { "colour": "#99ffd8", "expanded": "document", @@ -437,6 +477,11 @@ "expanded": "bundle", "value": "isoimage" }, + { + "colour": "#00b36e", + "expanded": "bundle", + "value": "txz" + }, { "colour": "#00b36e", "expanded": "bundle", @@ -447,6 +492,11 @@ "expanded": "bundle", "value": "gzip" }, + { + "colour": "#33ffb1", + "expanded": "bundle", + "value": "tar" + }, { "colour": "#33ffb1", "expanded": "bundle", @@ -522,6 +572,11 @@ "expanded": "bundle", "value": "xz" }, + { + "colour": "#33ffb1", + "expanded": "code", + "value": "bat" + }, { "colour": "#33ffb1", "expanded": "code", @@ -557,6 +612,11 @@ "expanded": "code", "value": "cpp" }, + { + "colour": "#00cc7e", + "expanded": "code", + "value": "javascript" + }, { "colour": "#00cc7e", "expanded": "code", @@ -572,6 +632,11 @@ "expanded": "code", "value": "pascal" }, + { + "colour": "#33b5a5", + "expanded": "code", + "value": "vbs" + }, { "colour": "#b3ffe2", "expanded": "code", @@ -592,6 +657,11 @@ "expanded": "code", "value": "java-bytecode" }, + { + "colour": "#2e73db", + "expanded": "code", + "value": "ppa" + }, { "colour": "#004d2f", "expanded": "apple", @@ -645,7 +715,7 @@ { "colour": "#00663f", "expanded": "miscellaneous", - "value": "data" + "value": "dat" } ], "predicate": "type" diff --git a/financial/machinetag.json b/financial/machinetag.json new file mode 100644 index 0000000..53225fc --- /dev/null +++ b/financial/machinetag.json @@ -0,0 +1,200 @@ +{ + "predicates": [ + { + "description": "Categories and types of services in the financial scope. An entity can be tag with one or more categories or types of services.", + "expanded": "Categories and types of services", + "value": "categories-and-types-of-services" + }, + { + "description": "Geographical footprint of the financial entity.", + "expanded": "Geographical footprint", + "value": "geographical-footprint" + }, + { + "description": "Online exposition of the financial entity.", + "expanded": "Online exposition", + "value": "online-exposition" + }, + { + "description": "Physical presence of the financial entity.", + "expanded": "Physical presence", + "value": "physical-presence" + }, + { + "description": "Services provided by the financial entity.", + "expanded": "Services", + "value": "services" + } + ], + "values": [ + { + "predicate": "categories-and-types-of-services", + "entry": [ + { + "value": "banking", + "expanded": "Banking", + "description": "Financial entity described or/and regulated as banking." + }, + { + "value": "private", + "expanded": "Private", + "description": "Financial entity engaged in private banking." + }, + { + "value": "retail", + "expanded": "Retail", + "description": "Financial entity engaged in retail banking." + }, + { + "value": "custodian-banking", + "expanded": "Custodian banking", + "description": "Financial entity having physical possessions of clients financial assets or instruments." + }, + { + "value": "financial-market-infrastructure", + "expanded": "Financial market infrastructure", + "description": "Financial market infrastructure such as stock exchange, CSD" + }, + { + "value": "asset-management", + "expanded": "Asset management", + "description": "Financial entity managing financial assets on behalf of others." + }, + { + "value": "it-provider", + "expanded": "IT provider", + "description": "IT provider supporting financial entities and regulated in the financial legal framework (such as support PFS in Luxembourg)." + }, + { + "value": "e-money-and-payment", + "expanded": "e-money and payment", + "description": "Financial entity managing electronic money as alternative to cash payment. (EU directive - Directive 2009/110/EC)" + }, + { + "value": "other", + "expanded": "Other", + "description": "Other entity classified as financial entity with other activities not defined in this taxonomy." + } + ] + }, + { + "predicate": "geographical-footprint", + "entry": [ + { + "value": "client-coverage-local", + "expanded": "Client coverage is local", + "description": "Client and customer coverage is local to the financial entity (such as a country)." + }, + { + "value": "client-coverage-eu", + "expanded": "Client coverage in EU", + "description": "Client and customer coverage is limited to the European Union." + }, + { + "value": "client-coverage-worldwide", + "expanded": "Client coverage is worldwide", + "description": "Client and customer coverage is worldwide." + }, + { + "value": "corporate-structure-local", + "expanded": "Corporate structure is local", + "description": "Corporate structure is local to the financial entity (such as a country)." + }, + { + "value": "corporate-structure-eu", + "expanded": "Corporate structure in EU", + "description": "Corporate structure is located in the European Union." + }, + { + "value": "corporate-structure-worldwide", + "expanded": "Corporate structure is worldwide", + "description": "Corporate structure is located worldwide." + } + ] + }, + { + "predicate": "online-exposition", + "entry": [ + { + "value": "limited", + "expanded": "Limited", + "description": "Online presence of the financial entity is limited such as just a public web server and/or email services." + }, + { + "value": "extended", + "expanded": "Extended", + "description": "Online presence of the financial entity is extended with online services for the clients and customers but still with a physical presence." + }, + { + "value": "crucial", + "expanded": "Crucial", + "description": "Online presence of the financial entity is crucial and business depends on online presence, extensive use of cloud computing, APIs, etc." + } + ] + }, + { + "predicate": "physical-presence", + "entry": [ + { + "value": "atm", + "expanded": "Automated teller machines", + "description": "The financial entity owns and/or operates automated teller machines (ATM)." + }, + { + "value": "pos", + "expanded": "Point of sale terminals", + "description": "The financial entity owns and/or operates point of sale terminals (POS)." + } + ] + }, + { + "predicate": "services", + "entry": [ + { + "value": "settlement", + "expanded": "Settlement", + "description": "A financial entity providing settlement services." + }, + { + "value": "collateral-management", + "expanded": "Collatoral management", + "description": "A financial entity providing collateral management services." + }, + { + "value": "listing-operation-of-trading-platform", + "expanded": "Listing and operation of trading platform", + "description": "A financial entity providing listing and operation of trading platform." + }, + { + "value": "credit-granting", + "expanded": "Credit granting", + "description": "A financial entity providing credit granting." + }, + { + "value": "deposit-management", + "expanded": "Deposit management", + "description": "A financial entity providing deposit management." + }, + { + "value": "custodian-banking", + "expanded": "Custodian banking", + "description": "A financial entity providing custodian banking." + }, + { + "value": "payment-services", + "expanded": "Payment services", + "description": "A financial entity providing payment services." + }, + { + "value": "investment-services", + "expanded": "Investment services", + "description": "A financial entity providing investment services." + } + ] + } + ], + "version": 7, + "description": "Financial taxonomy to describe financial services, infrastructure and financial scope.", + "expanded": "Financial", + "namespace": "financial" +} diff --git a/fr-classif/machinetag.json b/fr-classif/machinetag.json index 8172ec4..ba49329 100755 --- a/fr-classif/machinetag.json +++ b/fr-classif/machinetag.json @@ -3,65 +3,62 @@ { "entry": [ { - "expanded": "TRES SECRET DEFENSE", - "value": "TRES_SECRET_DEFENSE" + "expanded": "TRES SECRET", + "value": "TRES_SECRET", + "colour": "#f54a4a" }, - { - "expanded": "SECRET DEFENSE", - "value": "SECRET_DEFENSE" - }, - { - "expanded": "CONFIDENTIEL DEFENSE", - "value": "CONFIDENTIEL_DEFENSE" - } - ], - "predicate": "classifiees-defense" - }, - { - "entry": [ { "expanded": "SECRET", - "value": "SECRET" - }, - { - "expanded": "CONFIDENTIEL", - "value": "CONFIDENTIEL" - }, - { - "expanded": "DIFFUSION RESTREINTE", - "value": "DIFFUSION_RESTREINTE" + "value": "SECRET", + "colour": "#f54a4a" } ], - "predicate": "non-classifiees-defense" + "predicate": "classifiees" }, { "entry": [ { - "expanded": "NON CLASSIFIEES", - "value": "NON-CLASSIFIEES" + "expanded": "DIFFUSION RESTREINTE", + "value": "DIFFUSION_RESTREINTE", + "colour": "#f87272" + }, + { + "expanded": "NON PROTEGE", + "value": "NON-PROTEGE", + "colour": "#f89595" } ], "predicate": "non-classifiees" + }, + { + "entry": [ + { + "expanded": "SPECIAL FRANCE", + "value": "SPECIAL_FRANCE", + "colour": "#0434cc" + } + ], + "predicate": "special-france" } ], "predicates": [ { - "expanded": "Informations classifiées défense", - "value": "classifiees-defense", - "exclusive": true - }, - { - "expanded": "Informations non classifiées defense", - "value": "non-classifiees-defense", + "expanded": "Informations classifiées", + "value": "classifiees", "exclusive": true }, { "expanded": "Informations non classifiées", "value": "non-classifiees", "exclusive": true + }, + { + "expanded": "Mention Spécial France", + "value": "special-france", + "exclusive": false } ], - "version": 3, + "version": 6, "description": "French gov information classification system", "namespace": "fr-classif" } diff --git a/information-origin/machinetag.json b/information-origin/machinetag.json new file mode 100644 index 0000000..711b4e7 --- /dev/null +++ b/information-origin/machinetag.json @@ -0,0 +1,25 @@ +{ + "namespace": "information-origin", + "description": "Taxonomy for tagging information by its origin: human-generated or AI-generated.", + "version": 2, + "predicates": [ + { + "value": "human-generated", + "description": "Information that has been generated by a human.", + "expanded": "human generated", + "colour": "#33FF00" + }, + { + "value": "AI-generated", + "description": "Information that has been generated by an AI LLM or similar technologies.", + "expanded": "AI generated", + "colour": "#FFC000" + }, + { + "value": "uncertain-origin", + "description": "Information for which the origin is uncertain which can be machine or a human.", + "expanded": "uncertain origin", + "colour": "#FFC000" + } + ] +} diff --git a/interactive-cyber-training-audience/machinetag.json b/interactive-cyber-training-audience/machinetag.json index c26bd3a..4ec5e76 100644 --- a/interactive-cyber-training-audience/machinetag.json +++ b/interactive-cyber-training-audience/machinetag.json @@ -2,7 +2,9 @@ "namespace": "interactive-cyber-training-audience", "description": "Describes the target of cyber training and education.", "version": 1, - "refs": ["https://arxiv.org/abs/2101.05538"], + "refs": [ + "https://arxiv.org/abs/2101.05538" + ], "expanded": "Interactive Cyber Training - Audience", "predicates": [ { @@ -25,127 +27,127 @@ "expanded": "Target Audience", "description": "Target audience describes the audience, which is targeted by the training." } - ], - "values": [ - { - "predicate": "sector", - "entry": [ - { - "value": "academic-school", - "expanded": "Academic - School", - "description": "The focus is on the principles underlying cybersecurity, ranging from theoretical to applied, at school level." - }, - { - "value": "academic-university", - "expanded": "Academic - University", - "description": "The focus is on the principles underlying cybersecurity, ranging from theoretical to applied, at university level." - }, - { - "value": "public-government", - "expanded": "Public - Government", - "description": "In public sector such as government, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." - }, - { - "value": "public-authorities", - "expanded": "Public - Authorities", - "description": "In public sector such as authorities, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." - }, - { - "value": "public-ngo", - "expanded": "Public - NGO", - "description": "In public sector such as NGO, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." - }, - { - "value": "public-military", - "expanded": "Public - Military", - "description": "In public sector such as military sector, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." - }, - { - "value": "private", - "expanded": "Private", - "description": "The private sector and industry focuses more on protecting its investments. The effectiveness of security mechanisms and people are more important than principles they embody." - } - ] - }, - { - "predicate": "purpose", - "entry": [ - { - "value": "awareness", - "expanded": "Awareness", - "description": "This training should be used to raise the awareness in multiple and different security threats." - }, - { - "value": "skills", - "expanded": "Skills", - "description": "This training should be used to recognize the different skill levels of the participants so that can they be improved in a targeted manner." - }, - { - "value": "collaboration", - "expanded": "Collaboration", - "description": "This training should be used to improve the cooperation within a team or beyond." - }, - { - "value": "communication", - "expanded": "Communication", - "description": "This training should be used to increase the efficiency of internal and external communication in case of an incident." - }, - { - "value": "leadership", - "expanded": "Leadership", - "description": "This training should be used to improve the management and coordination of the responsible entities." - } - ] - }, - { - "predicate": "proficiency-level", - "entry": [ - { - "value": "beginner", - "expanded": "Beginner", - "description": "The lowest level. Beginner are limited in abilities and knowledge. They have the possibility to use foundational conceptual and procedural knowledge in a controlled and limited environment. Beginners cannot solve critical tasks and need significant supervision. They are able to perform daily processing tasks. The focus is on learning." - }, - { - "value": "professional", - "expanded": "Professional", - "description": "The mid level. Professionals have deeper knowledge and understanding in specific sectors. For these sectors they are able to complete tasks as requested. Sometimes supervision is needed but usually they perform independently. The focus is on enhancing and applying existing knowledge." - }, - { - "value": "expert", - "expanded": "Expert", - "description": "The highest level. Experts have deeper knowledge and understanding in different sectors. They complete tasks self-dependent and have the possibilities to achieve goals in the most effective and efficient way. Experts have comprehensive understanding and abilities to lead and train others. The focus is on strategic action." - } - ] - }, - { - "predicate": "target-audience", - "entry": [ - { - "value": "student-trainee", - "expanded": "Student/Trainee", - "description": "Student and trainees have little to none practical knowledge. Training can be used for students and trainees, to enhance their knowledge and to practice theoretical courses." - }, - { - "value": "it-user", - "expanded": "IT User", - "description": "IT users use the IT but have little to none knowledge about IT security. Users can get trained to understand principles of IT security and to grow awareness." - }, - { - "value": "it-professional", - "expanded": "IT Professional", - "description": "Professionals have little to medium knowledge about IT security. Their professional focus is in specific sectors, therefore, they receive IT security knowledge for their sectors." - }, - { - "value": "it-specialist", - "expanded": "IT Specialist", - "description": "Specialists already have a comprehensive knowledge in IT security. Therefore, the training is focussed on specific aspects." - }, - { - "value": "management", - "expanded": "Management", - "description": "Management has little knowledge about IT security, but a broad overview. By the training, management can understand changed settings better." - } - ] - } + ], + "values": [ + { + "predicate": "sector", + "entry": [ + { + "value": "academic-school", + "expanded": "Academic - School", + "description": "The focus is on the principles underlying cybersecurity, ranging from theoretical to applied, at school level." + }, + { + "value": "academic-university", + "expanded": "Academic - University", + "description": "The focus is on the principles underlying cybersecurity, ranging from theoretical to applied, at university level." + }, + { + "value": "public-government", + "expanded": "Public - Government", + "description": "In public sector such as government, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." + }, + { + "value": "public-authorities", + "expanded": "Public - Authorities", + "description": "In public sector such as authorities, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." + }, + { + "value": "public-ngo", + "expanded": "Public - NGO", + "description": "In public sector such as NGO, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." + }, + { + "value": "public-military", + "expanded": "Public - Military", + "description": "In public sector such as military sector, Cybersecurity is seen as tool to protect the public interest. Hence, it emphasizes on developing policies and systems to implement laws and regulations." + }, + { + "value": "private", + "expanded": "Private", + "description": "The private sector and industry focuses more on protecting its investments. The effectiveness of security mechanisms and people are more important than principles they embody." + } + ] + }, + { + "predicate": "purpose", + "entry": [ + { + "value": "awareness", + "expanded": "Awareness", + "description": "This training should be used to raise the awareness in multiple and different security threats." + }, + { + "value": "skills", + "expanded": "Skills", + "description": "This training should be used to recognize the different skill levels of the participants so that can they be improved in a targeted manner." + }, + { + "value": "collaboration", + "expanded": "Collaboration", + "description": "This training should be used to improve the cooperation within a team or beyond." + }, + { + "value": "communication", + "expanded": "Communication", + "description": "This training should be used to increase the efficiency of internal and external communication in case of an incident." + }, + { + "value": "leadership", + "expanded": "Leadership", + "description": "This training should be used to improve the management and coordination of the responsible entities." + } + ] + }, + { + "predicate": "proficiency-level", + "entry": [ + { + "value": "beginner", + "expanded": "Beginner", + "description": "The lowest level. Beginner are limited in abilities and knowledge. They have the possibility to use foundational conceptual and procedural knowledge in a controlled and limited environment. Beginners cannot solve critical tasks and need significant supervision. They are able to perform daily processing tasks. The focus is on learning." + }, + { + "value": "professional", + "expanded": "Professional", + "description": "The mid level. Professionals have deeper knowledge and understanding in specific sectors. For these sectors they are able to complete tasks as requested. Sometimes supervision is needed but usually they perform independently. The focus is on enhancing and applying existing knowledge." + }, + { + "value": "expert", + "expanded": "Expert", + "description": "The highest level. Experts have deeper knowledge and understanding in different sectors. They complete tasks self-dependent and have the possibilities to achieve goals in the most effective and efficient way. Experts have comprehensive understanding and abilities to lead and train others. The focus is on strategic action." + } + ] + }, + { + "predicate": "target-audience", + "entry": [ + { + "value": "student-trainee", + "expanded": "Student/Trainee", + "description": "Student and trainees have little to none practical knowledge. Training can be used for students and trainees, to enhance their knowledge and to practice theoretical courses." + }, + { + "value": "it-user", + "expanded": "IT User", + "description": "IT users use the IT but have little to none knowledge about IT security. Users can get trained to understand principles of IT security and to grow awareness." + }, + { + "value": "it-professional", + "expanded": "IT Professional", + "description": "Professionals have little to medium knowledge about IT security. Their professional focus is in specific sectors, therefore, they receive IT security knowledge for their sectors." + }, + { + "value": "it-specialist", + "expanded": "IT Specialist", + "description": "Specialists already have a comprehensive knowledge in IT security. Therefore, the training is focussed on specific aspects." + }, + { + "value": "management", + "expanded": "Management", + "description": "Management has little knowledge about IT security, but a broad overview. By the training, management can understand changed settings better." + } + ] + } ] } diff --git a/interactive-cyber-training-technical-setup/machinetag.json b/interactive-cyber-training-technical-setup/machinetag.json index 58174cd..7826b7d 100644 --- a/interactive-cyber-training-technical-setup/machinetag.json +++ b/interactive-cyber-training-technical-setup/machinetag.json @@ -2,130 +2,132 @@ "namespace": "interactive-cyber-training-technical-setup", "description": "The technical setup consists of environment structure, deployment, and orchestration.", "version": 1, - "refs": ["https://arxiv.org/abs/2101.05538"], + "refs": [ + "https://arxiv.org/abs/2101.05538" + ], "expanded": "Interactive Cyber Training - Technical Setup", "predicates": [ - { - "value": "environment-structure", - "expanded": "Environment Structure", - "description": "The environment structure refers to the basic characteristic of the event." - }, - { - "value": "deployment", - "expanded": "Deployment", - "description": "The environment of cyber training can either be deployed on premise or on cloud infrastructures" - }, - { - "value": "orchestration", - "expanded": "Orchestration", - "description": "The composition of parts and components of a pool of tasks. The goal is to setup a holistic scenario and integrate cyber training session. Furthermore, it includes a declarative description of the overall process in the form of a composite and harmonic collaboration." - } - ], - "values": [ - { - "predicate": "environment-structure", - "entry": [ - { - "value": "tabletop-style", - "expanded": "Tabletop Style", - "description": "A session that involves the movement of counters or other objects round a board or on a flat surface" - }, - { - "value": "online-collaboration-platform", - "expanded": "Online Platform - Collaboration Platform", - "description": "The environment allows organizations to incorporate real-time communication capabilities and providing remote access to other systems. This includes the exchange of files and messages in text, audio, and video formats between different computers or users." - }, - { - "value": "online-e-learning-platform", - "expanded": "Online Platform - E-Learning Platform", - "description": "A software application for the administration, documentation, tracking, reporting, and delivery of educational courses, training programs, or learning and development programs." - }, - { - "value": "hosting", - "expanded": "Hosting", - "description": "A cyber training based on single hosts uses primarily a personal computer to providing tasks and challenges for a user. It allows a direct interaction with the systems." - }, - { - "value": "simulated-network-infrastructure", - "expanded": "Network Infrastruture - Simulated", - "description": "Dependent of the realization type, a network-based environment consists of servers and clients, which are connected to each other in a local area network (LAN) or wide area network (WAN). A simulation copies the network components from the real world into a virtual environment. It provides an idea about how something works. It simulates the basic behavior but does not necessarily abide to all the rules of the real systems." - }, - { - "value": "emulated-network-infrastructure", - "expanded": "Network Infrastruture - Emulated", - "description": "Dependent of the realization type, a network-based environment consists of servers and clients, which are connected to each other in a local area network (LAN) or wide area network (WAN). An emulator duplicates things exactly as they exist in real life. The emulation is effectively a complete imitation of the real thing. It operates in a virtual environment instead of the real world." - }, - { - "value": "real-network-infrastructure", - "expanded": "Network Infrastruture - Real", - "description": "Dependent of the realization type, a network-based environment consists of servers and clients, which are connected to each other in a local area network (LAN) or wide area network (WAN). In a real network infrastructure, physical components are used to connect the systems and to setup a scenario." - } - ] - }, - { - "predicate": "deployment", - "entry": [ - { - "value": "physical-on-premise", - "expanded": "On Premise - Physical", - "description": "The environment for the training run on physical machines. The data is stored locally and not on cloud; nor is a third party involved. The advantages of on premise solutions are the physical accessibility, which makes it possible to use the complete range of cyber challenges." - }, - { - "value": "virtual-on-premise", - "expanded": "On Premise - Virtual", - "description": "The environment for the training run virtual machines. The data is stored locally and not on cloud; nor is a third party involved. The benefit of virtual machines is the maximum of configurability. The advantages of on premise solutions are the physical accessibility, which makes it possible to use the complete range of cyber challenges." - }, - { - "value": "cloud", - "expanded": "Cloud", - "description": "Training setup deployed in the cloud has on-demand availability of computer system resources, especially data storage and computing power, without direct active management by the user. In contrast to on premise setups, cloud solutions are rapid elastic on request. So the training can be adapted flexible on a large amount of users and is easily usable world wide." - } - ] - }, - { - "predicate": "orchestration", - "entry": [ - { - "value": "none-automation", - "expanded": "None Automation", - "description": "Specifies the automation of processes and the amount of human interaction with the system to maintain and administrate, especially for repetitive exercise; Here none automation is present." - }, - { - "value": "partially-automation", - "expanded": "Partially Automation", - "description": "Specifies the automation of processes and the amount of human interaction with the system to maintain and administrate, especially for repetitive exercise; Here partially automated." - }, - { - "value": "complete-automation", - "expanded": "Complete Automation", - "description": "Specifies the automation of processes and the amount of human interaction with the system to maintain and administrate, especially for repetitive exercise; Here full-automated." - }, - { - "value": "portability-miscellaneous", - "expanded": "Portability - Miscellaneous", - "description": "Miscellaneous approaches are used to ensure the possibility to exchange data, challenges, or entire scenarios to other environments or locations." - }, - { - "value": "portability-exchangenable-format", - "expanded": "Portability - Exchangenable Format", - "description": "Common data format (YALM, XML, JSON, ...) is used to ensure the possibility to exchange data, challenges, or entire scenarios to other environments or locations." - }, - { - "value": "maintainability-modifiability", - "expanded": "Maintability - Modifiability", - "description": "Maintainability represents effectiveness and efficiency with which a session can be modified or adapted to changes." - }, - { - "value": "maintainability-modularity", - "expanded": "Maintability - Modularity", - "description": "A modular concept has advantages in reusability and combinability." - }, - { - "value": "compatibility", - "expanded": "Compatibility", - "description": "The Compatibility deals with the technical interaction possibilities via interfaces to other applications, data, and protocols." - } - ] - } + { + "value": "environment-structure", + "expanded": "Environment Structure", + "description": "The environment structure refers to the basic characteristic of the event." + }, + { + "value": "deployment", + "expanded": "Deployment", + "description": "The environment of cyber training can either be deployed on premise or on cloud infrastructures" + }, + { + "value": "orchestration", + "expanded": "Orchestration", + "description": "The composition of parts and components of a pool of tasks. The goal is to setup a holistic scenario and integrate cyber training session. Furthermore, it includes a declarative description of the overall process in the form of a composite and harmonic collaboration." + } + ], + "values": [ + { + "predicate": "environment-structure", + "entry": [ + { + "value": "tabletop-style", + "expanded": "Tabletop Style", + "description": "A session that involves the movement of counters or other objects round a board or on a flat surface" + }, + { + "value": "online-collaboration-platform", + "expanded": "Online Platform - Collaboration Platform", + "description": "The environment allows organizations to incorporate real-time communication capabilities and providing remote access to other systems. This includes the exchange of files and messages in text, audio, and video formats between different computers or users." + }, + { + "value": "online-e-learning-platform", + "expanded": "Online Platform - E-Learning Platform", + "description": "A software application for the administration, documentation, tracking, reporting, and delivery of educational courses, training programs, or learning and development programs." + }, + { + "value": "hosting", + "expanded": "Hosting", + "description": "A cyber training based on single hosts uses primarily a personal computer to providing tasks and challenges for a user. It allows a direct interaction with the systems." + }, + { + "value": "simulated-network-infrastructure", + "expanded": "Network Infrastruture - Simulated", + "description": "Dependent of the realization type, a network-based environment consists of servers and clients, which are connected to each other in a local area network (LAN) or wide area network (WAN). A simulation copies the network components from the real world into a virtual environment. It provides an idea about how something works. It simulates the basic behavior but does not necessarily abide to all the rules of the real systems." + }, + { + "value": "emulated-network-infrastructure", + "expanded": "Network Infrastruture - Emulated", + "description": "Dependent of the realization type, a network-based environment consists of servers and clients, which are connected to each other in a local area network (LAN) or wide area network (WAN). An emulator duplicates things exactly as they exist in real life. The emulation is effectively a complete imitation of the real thing. It operates in a virtual environment instead of the real world." + }, + { + "value": "real-network-infrastructure", + "expanded": "Network Infrastruture - Real", + "description": "Dependent of the realization type, a network-based environment consists of servers and clients, which are connected to each other in a local area network (LAN) or wide area network (WAN). In a real network infrastructure, physical components are used to connect the systems and to setup a scenario." + } + ] + }, + { + "predicate": "deployment", + "entry": [ + { + "value": "physical-on-premise", + "expanded": "On Premise - Physical", + "description": "The environment for the training run on physical machines. The data is stored locally and not on cloud; nor is a third party involved. The advantages of on premise solutions are the physical accessibility, which makes it possible to use the complete range of cyber challenges." + }, + { + "value": "virtual-on-premise", + "expanded": "On Premise - Virtual", + "description": "The environment for the training run virtual machines. The data is stored locally and not on cloud; nor is a third party involved. The benefit of virtual machines is the maximum of configurability. The advantages of on premise solutions are the physical accessibility, which makes it possible to use the complete range of cyber challenges." + }, + { + "value": "cloud", + "expanded": "Cloud", + "description": "Training setup deployed in the cloud has on-demand availability of computer system resources, especially data storage and computing power, without direct active management by the user. In contrast to on premise setups, cloud solutions are rapid elastic on request. So the training can be adapted flexible on a large amount of users and is easily usable world wide." + } + ] + }, + { + "predicate": "orchestration", + "entry": [ + { + "value": "none-automation", + "expanded": "None Automation", + "description": "Specifies the automation of processes and the amount of human interaction with the system to maintain and administrate, especially for repetitive exercise; Here none automation is present." + }, + { + "value": "partially-automation", + "expanded": "Partially Automation", + "description": "Specifies the automation of processes and the amount of human interaction with the system to maintain and administrate, especially for repetitive exercise; Here partially automated." + }, + { + "value": "complete-automation", + "expanded": "Complete Automation", + "description": "Specifies the automation of processes and the amount of human interaction with the system to maintain and administrate, especially for repetitive exercise; Here full-automated." + }, + { + "value": "portability-miscellaneous", + "expanded": "Portability - Miscellaneous", + "description": "Miscellaneous approaches are used to ensure the possibility to exchange data, challenges, or entire scenarios to other environments or locations." + }, + { + "value": "portability-exchangenable-format", + "expanded": "Portability - Exchangenable Format", + "description": "Common data format (YALM, XML, JSON, ...) is used to ensure the possibility to exchange data, challenges, or entire scenarios to other environments or locations." + }, + { + "value": "maintainability-modifiability", + "expanded": "Maintability - Modifiability", + "description": "Maintainability represents effectiveness and efficiency with which a session can be modified or adapted to changes." + }, + { + "value": "maintainability-modularity", + "expanded": "Maintability - Modularity", + "description": "A modular concept has advantages in reusability and combinability." + }, + { + "value": "compatibility", + "expanded": "Compatibility", + "description": "The Compatibility deals with the technical interaction possibilities via interfaces to other applications, data, and protocols." + } + ] + } ] } diff --git a/interactive-cyber-training-training-environment/machinetag.json b/interactive-cyber-training-training-environment/machinetag.json index 68ce0cb..cb55577 100644 --- a/interactive-cyber-training-training-environment/machinetag.json +++ b/interactive-cyber-training-training-environment/machinetag.json @@ -2,7 +2,9 @@ "namespace": "interactive-cyber-training-training-environment", "description": "The training environment details the environment around the training, consisting of training type and scenario.", "version": 1, - "refs": ["https://arxiv.org/abs/2101.05538"], + "refs": [ + "https://arxiv.org/abs/2101.05538" + ], "expanded": "Interactive Cyber Training - Training Environment", "predicates": [ { @@ -14,179 +16,178 @@ "value": "scenario", "expanded": "Scenario", "description": "The scenario is a main component of cybersecurity training. Scenarios are needed to reach the goal of the training." - }x - ], - "values": [ - { - "predicate": "training-type", - "entry": [ - { - "value": "tabletop-game-speech", - "expanded": "Tabletop Game - Speech", - "description": "Table Top training -here based on speech-only- are a lightweight, but intellectually intense exercise. In this setting, the involved teams or participants focus on opposing missions. On a theoretical basis, the teams develop different strategies and countermeasures to explore the offensive cyber effects on operations." - }, - { - "value": "tabletop-game-text", - "expanded": "Tabletop Game - text", - "description": "Table Top training -here based on text-only- are a lightweight, but intellectually intense exercise. In this setting, the involved teams or participants focus on opposing missions. On a theoretical basis, the teams develop different strategies and countermeasures to explore the offensive cyber effects on operations." - }, - { - "value": "tabletop-game-multimedia", - "expanded": "Tabletop Game - Multimedia", - "description": "Table Top training -here based on multimedia- are a lightweight, but intellectually intense exercise. In this setting, the involved teams or participants focus on opposing missions. On a theoretical basis, the teams develop different strategies and countermeasures to explore the offensive cyber effects on operations." - }, - { - "value": "capture-the-flag-quiz", - "expanded": "Capture the Flag - Quiz", - "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as a quiz." - }, - { - "value": "capture-the-flag-jeopardy", - "expanded": "Capture the Flag - Jeopardy", - "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as jeopardy." - }, - { - "value": "capture-the-flag-attack", - "expanded": "Capture the Flag - Attack", - "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as an attack-only scenario." - }, - { - "value": "capture-the-flag-defence", - "expanded": "Capture the Flag - Defence", - "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as an defence-only scenario." - }, - { - "value": "capture-the-flag-attack-defence", - "expanded": "Capture the Flag - Attack-Defence", - "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as an attack-defence scenario." - }, - { - "value": "cyber-training-range-classroom-practice", - "expanded": "Cyber Training Range - Classroom Practice", - "description": "A cyber range provides an environment to practice network operation skills. It should represent real-world scenarios and offer isolation from other networks to contain malicious activity. In this training type, complex attacks take place in a simulated environment. The participants perform divers educational hands-on activities according to their role. In these trainings the roles that are not covered by participants are simulated or covered by the instructors. Trainings can be classroom practice." - }, - { - "value": "cyber-training-range-single-team-training", - "expanded": "Cyber Training Range - Single Team Training", - "description": "A cyber range provides an environment to practice network operation skills. It should represent real-world scenarios and offer isolation from other networks to contain malicious activity. In this training type, complex attacks take place in a simulated environment. The participants perform divers educational hands-on activities according to their role. In these trainings the roles that are not covered by participants are simulated or covered by the instructors. Trainings can be single team trainings." - }, - { - "value": "cyber-training-range-multiple-team-training", - "expanded": "Cyber Training Range - Multiple Team Training", - "description": "A cyber range provides an environment to practice network operation skills. It should represent real-world scenarios and offer isolation from other networks to contain malicious activity. In this training type, complex attacks take place in a simulated environment. The participants perform divers educational hands-on activities according to their role. In these trainings the roles that are not covered by participants are simulated or covered by the instructors. Trainings can be multiple team trainings." - }, - { - "value": "project-approach", - "expanded": "Project Approach", - "description": "In this type of training, hands-on projects are to be completed during the training. Thereby, the participants learn and understand the basic concepts of security. During the projects, the teachers can intervene and control the learning process." - } - ] - }, - { - "predicate": "scenario", - "entry": [ - { - "value": "supervised", - "expanded": "Supervision: Supervised", - "description": "Describes if the training is supervised. For instance, cyber range trainings are typically supervised." - }, - { - "value": "unsupervised", - "expanded": "Supervision: Unsupervised", - "description": "Describes if the training is unsupervised. For instance, jeopardy CTF are usually unsupervised." - }, - { - "value": "free-multiple-choice", - "expanded": "Style: Free-/Multiple Choice", - "description": "Decribes the challenges within the training as Free-/Multi Choice. (can be the case with CTFs)" - }, - { - "value": "problem-driven", - "expanded": "Style: Problem-Driven", - "description": "Describes the challenge within the training as Problem-driven. -" - }, - { - "value": "storyline-driven", - "expanded": "Style: Storyline-Driven", - "description": "Describes the challenge within the training as Storyline-driven." - }, - { - "value": "challenges-target-network", - "expended": "Challenges: Network Target", - "description": "The target in this challenge is network." - }, - { - "value": "challenges-target-host", - "expended": "Challenges: Host Target", - "description": "The target in this challenge is host." - }, - { - "value": "challenges-target-application", - "expended": "Challenges: Application Target", - "description": "The target in this challenge is application." - }, - { - "value": "challenges-target-protocol", - "expended": "Challenges: Protocol Target", - "description": "The target in this challenge is protocol." - }, - { - "value": "challenges-target-data", - "expended": "Challenges: Data Target", - "description": "The target in this challenge is data." - }, - { - "value": "challenges-target-person", - "expended": "Challenges: Person Target", - "description": "The target in this challenge is person." - }, - { - "value": "challenges-target-physical", - "expended": "Challenges: Physical Target", - "description": "The target in this challenge is physical." - }, - { - "value": "challenges-type-foot-printing", - "expended": "Challenges: Foot-printing Type", - "description": "Foot-printing is needed to solve this challenge." - }, - { - "value": "challenges-type-scanning", - "expended": "Challenges: Scanning Type", - "description": "Scanning is needed to solve this challenge." - }, - { - "value": "challenges-type-enumeration", - "expended": "Challenges: Enumeration Type", - "description": "Enumeration is needed to solve this challenge." - }, - { - "value": "challenges-type-pivoting", - "expended": "Challenges: Pivoting Type", - "description": "Pivoting is needed to solve this challenge." - }, - { - "value": "challenges-type-exploitation", - "expended": "Challenges: Exploitation Type", - "description": "Exploitation is needed to solve this challenge." - }, - { - "value": "challenges-type-privilege-escalation", - "expended": "Challenges: Privilege escalation Type", - "description": "Privilege escalation is needed to solve this challenge." - }, - { - "value": "challenges-type-covering-tracks", - "expended": "Challenges: Covering tracks Type", - "description": "Covering tracks is needed to solve this challenge." - }, - { - "value": "challenges-type-maintaining", - "expended": "Challenges: maintaining Type", - "description": "Maintaining access is needed to solve this challenge." - } - ] - } + } + ], + "values": [ + { + "predicate": "training-type", + "entry": [ + { + "value": "tabletop-game-speech", + "expanded": "Tabletop Game - Speech", + "description": "Table Top training -here based on speech-only- are a lightweight, but intellectually intense exercise. In this setting, the involved teams or participants focus on opposing missions. On a theoretical basis, the teams develop different strategies and countermeasures to explore the offensive cyber effects on operations." + }, + { + "value": "tabletop-game-text", + "expanded": "Tabletop Game - text", + "description": "Table Top training -here based on text-only- are a lightweight, but intellectually intense exercise. In this setting, the involved teams or participants focus on opposing missions. On a theoretical basis, the teams develop different strategies and countermeasures to explore the offensive cyber effects on operations." + }, + { + "value": "tabletop-game-multimedia", + "expanded": "Tabletop Game - Multimedia", + "description": "Table Top training -here based on multimedia- are a lightweight, but intellectually intense exercise. In this setting, the involved teams or participants focus on opposing missions. On a theoretical basis, the teams develop different strategies and countermeasures to explore the offensive cyber effects on operations." + }, + { + "value": "capture-the-flag-quiz", + "expanded": "Capture the Flag - Quiz", + "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as a quiz." + }, + { + "value": "capture-the-flag-jeopardy", + "expanded": "Capture the Flag - Jeopardy", + "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as jeopardy." + }, + { + "value": "capture-the-flag-attack", + "expanded": "Capture the Flag - Attack", + "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as an attack-only scenario." + }, + { + "value": "capture-the-flag-defence", + "expanded": "Capture the Flag - Defence", + "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as an defence-only scenario." + }, + { + "value": "capture-the-flag-attack-defence", + "expanded": "Capture the Flag - Attack-Defence", + "description": "Capture the Flag (CTF) is a well-known cybersecurity contest in which participants compete in real-time, which can exists as an attack-defence scenario." + }, + { + "value": "cyber-training-range-classroom-practice", + "expanded": "Cyber Training Range - Classroom Practice", + "description": "A cyber range provides an environment to practice network operation skills. It should represent real-world scenarios and offer isolation from other networks to contain malicious activity. In this training type, complex attacks take place in a simulated environment. The participants perform divers educational hands-on activities according to their role. In these trainings the roles that are not covered by participants are simulated or covered by the instructors. Trainings can be classroom practice." + }, + { + "value": "cyber-training-range-single-team-training", + "expanded": "Cyber Training Range - Single Team Training", + "description": "A cyber range provides an environment to practice network operation skills. It should represent real-world scenarios and offer isolation from other networks to contain malicious activity. In this training type, complex attacks take place in a simulated environment. The participants perform divers educational hands-on activities according to their role. In these trainings the roles that are not covered by participants are simulated or covered by the instructors. Trainings can be single team trainings." + }, + { + "value": "cyber-training-range-multiple-team-training", + "expanded": "Cyber Training Range - Multiple Team Training", + "description": "A cyber range provides an environment to practice network operation skills. It should represent real-world scenarios and offer isolation from other networks to contain malicious activity. In this training type, complex attacks take place in a simulated environment. The participants perform divers educational hands-on activities according to their role. In these trainings the roles that are not covered by participants are simulated or covered by the instructors. Trainings can be multiple team trainings." + }, + { + "value": "project-approach", + "expanded": "Project Approach", + "description": "In this type of training, hands-on projects are to be completed during the training. Thereby, the participants learn and understand the basic concepts of security. During the projects, the teachers can intervene and control the learning process." + } + ] + }, + { + "predicate": "scenario", + "entry": [ + { + "value": "supervised", + "expanded": "Supervision: Supervised", + "description": "Describes if the training is supervised. For instance, cyber range trainings are typically supervised." + }, + { + "value": "unsupervised", + "expanded": "Supervision: Unsupervised", + "description": "Describes if the training is unsupervised. For instance, jeopardy CTF are usually unsupervised." + }, + { + "value": "free-multiple-choice", + "expanded": "Style: Free-/Multiple Choice", + "description": "Decribes the challenges within the training as Free-/Multi Choice. (can be the case with CTFs)" + }, + { + "value": "problem-driven", + "expanded": "Style: Problem-Driven", + "description": "Describes the challenge within the training as Problem-driven." + }, + { + "value": "storyline-driven", + "expanded": "Style: Storyline-Driven", + "description": "Describes the challenge within the training as Storyline-driven." + }, + { + "value": "challenges-target-network", + "expanded": "Challenges: Network Target", + "description": "The target in this challenge is network." + }, + { + "value": "challenges-target-host", + "expanded": "Challenges: Host Target", + "description": "The target in this challenge is host." + }, + { + "value": "challenges-target-application", + "expanded": "Challenges: Application Target", + "description": "The target in this challenge is application." + }, + { + "value": "challenges-target-protocol", + "expanded": "Challenges: Protocol Target", + "description": "The target in this challenge is protocol." + }, + { + "value": "challenges-target-data", + "expanded": "Challenges: Data Target", + "description": "The target in this challenge is data." + }, + { + "value": "challenges-target-person", + "expanded": "Challenges: Person Target", + "description": "The target in this challenge is person." + }, + { + "value": "challenges-target-physical", + "expanded": "Challenges: Physical Target", + "description": "The target in this challenge is physical." + }, + { + "value": "challenges-type-foot-printing", + "expanded": "Challenges: Foot-printing Type", + "description": "Foot-printing is needed to solve this challenge." + }, + { + "value": "challenges-type-scanning", + "expanded": "Challenges: Scanning Type", + "description": "Scanning is needed to solve this challenge." + }, + { + "value": "challenges-type-enumeration", + "expanded": "Challenges: Enumeration Type", + "description": "Enumeration is needed to solve this challenge." + }, + { + "value": "challenges-type-pivoting", + "expanded": "Challenges: Pivoting Type", + "description": "Pivoting is needed to solve this challenge." + }, + { + "value": "challenges-type-exploitation", + "expanded": "Challenges: Exploitation Type", + "description": "Exploitation is needed to solve this challenge." + }, + { + "value": "challenges-type-privilege-escalation", + "expanded": "Challenges: Privilege escalation Type", + "description": "Privilege escalation is needed to solve this challenge." + }, + { + "value": "challenges-type-covering-tracks", + "expanded": "Challenges: Covering tracks Type", + "description": "Covering tracks is needed to solve this challenge." + }, + { + "value": "challenges-type-maintaining", + "expanded": "Challenges: maintaining Type", + "description": "Maintaining access is needed to solve this challenge." + } + ] + } ] } diff --git a/interactive-cyber-training-training-setup/machinetag.json b/interactive-cyber-training-training-setup/machinetag.json index 920b5ca..ef27e56 100644 --- a/interactive-cyber-training-training-setup/machinetag.json +++ b/interactive-cyber-training-training-setup/machinetag.json @@ -1,157 +1,158 @@ { "namespace": "interactive-cyber-training-training-setup", - "description": "The training setup further describes the training itself with the scoring, roles, -the training mode as well as the customization level.", + "description": "The training setup further describes the training itself with the scoring, roles, the training mode as well as the customization level.", "version": 1, - "refs": ["https://arxiv.org/abs/2101.05538"], + "refs": [ + "https://arxiv.org/abs/2101.05538" + ], "expanded": "Interactive Cyber Training - Training Setup", "predicates": [ - { - "value": "scoring", - "expanded": "Scoring", - "description": "Scoring is not only used in competition-oriented training like CTF but also to motivate participants, give feedback, track the progress. The scoring can be based, but is not limited to monitoring systems, defined objectives, or over-the-shoulder evaluation mechanisms." - }, - { - "value": "roles", - "expanded": "Roles", - "description": "Participants in a training are split in different teams, according to their skills, role and tasks." - }, - { - "value": "training-mode", - "expanded": "Training Mode", - "description": "Defines whether the training opposes singles persons, teams or groups." - }, - { - "value": "customization-level", - "expanded": "Customization Level", - "description": "Defines the level of customization of the training." - } - ], - "values": [ - { - "predicate": "scoring", - "entry": [ - { - "value": "no-scoring", - "expanded": "No Scoring", - "description": "The training have no type of scoring." - }, - { - "value": "assessment-static", - "expanded": "Assessment: Static", - "description": "The scoring in this variant relies on the static setting of different scores for tasks and objectives, possibly incluing a degree of difficulty as well." - }, - { - "value": "assessment-dynamic", - "expanded": "Assessment: Dynamic", - "description": "The scoring in this variant is set dynamically using mathematical functions or dynamic methods such as teh Elo Rating System." - }, - { - "value": "awarding-manual", - "expanded": "Awarding: Manual", - "description": "Awards are given manually." - }, - { - "value": "awarding-automatic", - "expanded": "Awarding: Automatic", - "description": "Awards are given automatically." - }, - { - "value": "awarding-mixed", - "expanded": "Awarding: Mixed", - "description": "Awards are given manually and/or automatically." - } - ] - }, - { - "predicate": "roles", - "entry": [ - { - "value": "no-specific-role", - "expanded": "No specific Role", - "description": "Individuals who do not fit into the defined teams can be assigned to this role." - }, - { - "value": "transparent-team-observer-watcher", - "expanded": "Transparent Team - Observer/Watcher", - "description": "Members of this team observe the training. Usually, these people have a defined purpose, but have no influence on the training itself. Possible purposes are learning about the training topic and roles, studying strategies of participants, or supervising employees." - }, - { - "value": "white-team-trainer-instructor", - "expanded": "White Team - Trainer/Instructor", - "description": "This team consists of instructors, referees, organizers, and training managers. They design the training scenario including objectives, rules, background story, and tasks. During the training, this team controls the progress and assigns tasks to the teams. These so-called injects also include simulated media, operation coordination, or law enforcement agencies. Giving hints for the training teams could also be part of this team." - }, - { - "value": "green-team-organizer-admin", - "expanded": "Green Team - Organizer/Admin", - "description": "The operators that are responsible for the exercise infrastructure build this team. Before a training, this team sets up and configures the environment and takes it down afterwards. During a training, it also monitors the environments health and handles problems that may arise." - }, - { - "value": "red-team-attacker", - "expanded": "Red Team - Attacker", - "description": "This team consists of people authorized and organized to model security adversaries. They are responsible to identify and exploit potential vulnerabilities present in the training environment. Depending on the training environment, the tasks can follow a predefined attack path." - }, - { - "value": "blue-team-defender", - "expanded": "Blue Team - Defender", - "description": "The group of individuals that is responsible for defending the training environment. They deal with the red team’s attacks and secure the compromised networks. Guidelines for that team are the training rules and local cyber law." - }, - { - "value": "gray-team-bystander", - "expanded": "Gray Team - Bystander", - "description": "Bystanders of a training form this team. They do not necessarily have a specific intention or purpose, but an interest in the training event itself. It is also possible that this team interacts with participants and thereby unintentionally influences the training." - }, - { - "value": "yellow-team-insider", - "expanded": "Yellow Team - Insider", - "description": "Members of this team perform not only tasks like generating legitimate network traffic and user behavior but also perform erroneous actions that lead to vulnerabilities and attacks. This team can also include the regular system builders, like programmers, developers, and software engineers and architects." - }, - { - "value": "purple-team-bridge", - "expanded": "Purple Team - Bridge", - "description": "In a training, this team is a bridge between red and blue teams that helps to improve the performance of both. Through joint red-blue activities it improves the scope of the training participants. Goals are to maximize the Blue Teams capability and the effectiveness of Red Teams activities." - } - ] - }, - { - "predicate": "training-mode", - "entry": [ - { - "value": "single", - "expanded": "Single", - "description": "A single player plays against others. Others can be real persons, butalso scripted opponents." - }, - { - "value": "team", - "expanded": "Team", - "description": "A team plays against others. In this alignments, each player can bring its expertise into the training, focussing on different aspects. Examples are Blue and Red Teams." - }, - { - "value": "cross-group", - "expanded": "Cross-Group", - "description": "A group plays against others. In this setting, the group members might not know each other. Example are CTF competitions and training for the entire organization in a breach scenario." - } - ] - }, - { - "predicate": "customization-level", - "entry": [ - { - "value": "general", - "expanded": "General", - "description": "A general purpose training setup is not, or only little customized. This variant is suited for an entry level training or to learn about general processes without regard to the underlying setup." - }, - { - "value": "specific", - "expanded": "Specific", - "description": "The training setup can be customized for a specific training goal or target audience. Examples for this variant are specific trainings within the High School education or for the health sector." - }, - { - "value": "individual", - "expanded": "Individual", - "description": "The most tailored variant is an individual customization. Hereby, the training setup corresponds to a real environment in the best possible way. Exemplary uses of this variant are the training of teams in their environment or the training of new expert-level employees." - } - ] - } + { + "value": "scoring", + "expanded": "Scoring", + "description": "Scoring is not only used in competition-oriented training like CTF but also to motivate participants, give feedback, track the progress. The scoring can be based, but is not limited to monitoring systems, defined objectives, or over-the-shoulder evaluation mechanisms." + }, + { + "value": "roles", + "expanded": "Roles", + "description": "Participants in a training are split in different teams, according to their skills, role and tasks." + }, + { + "value": "training-mode", + "expanded": "Training Mode", + "description": "Defines whether the training opposes singles persons, teams or groups." + }, + { + "value": "customization-level", + "expanded": "Customization Level", + "description": "Defines the level of customization of the training." + } + ], + "values": [ + { + "predicate": "scoring", + "entry": [ + { + "value": "no-scoring", + "expanded": "No Scoring", + "description": "The training have no type of scoring." + }, + { + "value": "assessment-static", + "expanded": "Assessment: Static", + "description": "The scoring in this variant relies on the static setting of different scores for tasks and objectives, possibly incluing a degree of difficulty as well." + }, + { + "value": "assessment-dynamic", + "expanded": "Assessment: Dynamic", + "description": "The scoring in this variant is set dynamically using mathematical functions or dynamic methods such as teh Elo Rating System." + }, + { + "value": "awarding-manual", + "expanded": "Awarding: Manual", + "description": "Awards are given manually." + }, + { + "value": "awarding-automatic", + "expanded": "Awarding: Automatic", + "description": "Awards are given automatically." + }, + { + "value": "awarding-mixed", + "expanded": "Awarding: Mixed", + "description": "Awards are given manually and/or automatically." + } + ] + }, + { + "predicate": "roles", + "entry": [ + { + "value": "no-specific-role", + "expanded": "No specific Role", + "description": "Individuals who do not fit into the defined teams can be assigned to this role." + }, + { + "value": "transparent-team-observer-watcher", + "expanded": "Transparent Team - Observer/Watcher", + "description": "Members of this team observe the training. Usually, these people have a defined purpose, but have no influence on the training itself. Possible purposes are learning about the training topic and roles, studying strategies of participants, or supervising employees." + }, + { + "value": "white-team-trainer-instructor", + "expanded": "White Team - Trainer/Instructor", + "description": "This team consists of instructors, referees, organizers, and training managers. They design the training scenario including objectives, rules, background story, and tasks. During the training, this team controls the progress and assigns tasks to the teams. These so-called injects also include simulated media, operation coordination, or law enforcement agencies. Giving hints for the training teams could also be part of this team." + }, + { + "value": "green-team-organizer-admin", + "expanded": "Green Team - Organizer/Admin", + "description": "The operators that are responsible for the exercise infrastructure build this team. Before a training, this team sets up and configures the environment and takes it down afterwards. During a training, it also monitors the environments health and handles problems that may arise." + }, + { + "value": "red-team-attacker", + "expanded": "Red Team - Attacker", + "description": "This team consists of people authorized and organized to model security adversaries. They are responsible to identify and exploit potential vulnerabilities present in the training environment. Depending on the training environment, the tasks can follow a predefined attack path." + }, + { + "value": "blue-team-defender", + "expanded": "Blue Team - Defender", + "description": "The group of individuals that is responsible for defending the training environment. They deal with the red team’s attacks and secure the compromised networks. Guidelines for that team are the training rules and local cyber law." + }, + { + "value": "gray-team-bystander", + "expanded": "Gray Team - Bystander", + "description": "Bystanders of a training form this team. They do not necessarily have a specific intention or purpose, but an interest in the training event itself. It is also possible that this team interacts with participants and thereby unintentionally influences the training." + }, + { + "value": "yellow-team-insider", + "expanded": "Yellow Team - Insider", + "description": "Members of this team perform not only tasks like generating legitimate network traffic and user behavior but also perform erroneous actions that lead to vulnerabilities and attacks. This team can also include the regular system builders, like programmers, developers, and software engineers and architects." + }, + { + "value": "purple-team-bridge", + "expanded": "Purple Team - Bridge", + "description": "In a training, this team is a bridge between red and blue teams that helps to improve the performance of both. Through joint red-blue activities it improves the scope of the training participants. Goals are to maximize the Blue Teams capability and the effectiveness of Red Teams activities." + } + ] + }, + { + "predicate": "training-mode", + "entry": [ + { + "value": "single", + "expanded": "Single", + "description": "A single player plays against others. Others can be real persons, butalso scripted opponents." + }, + { + "value": "team", + "expanded": "Team", + "description": "A team plays against others. In this alignments, each player can bring its expertise into the training, focussing on different aspects. Examples are Blue and Red Teams." + }, + { + "value": "cross-group", + "expanded": "Cross-Group", + "description": "A group plays against others. In this setting, the group members might not know each other. Example are CTF competitions and training for the entire organization in a breach scenario." + } + ] + }, + { + "predicate": "customization-level", + "entry": [ + { + "value": "general", + "expanded": "General", + "description": "A general purpose training setup is not, or only little customized. This variant is suited for an entry level training or to learn about general processes without regard to the underlying setup." + }, + { + "value": "specific", + "expanded": "Specific", + "description": "The training setup can be customized for a specific training goal or target audience. Examples for this variant are specific trainings within the High School education or for the health sector." + }, + { + "value": "individual", + "expanded": "Individual", + "description": "The most tailored variant is an individual customization. Hereby, the training setup corresponds to a real environment in the best possible way. Exemplary uses of this variant are the training of teams in their environment or the training of new expert-level employees." + } + ] + } ] } diff --git a/malware_classification/machinetag.json b/malware_classification/machinetag.json index 3699ad8..5853130 100644 --- a/malware_classification/machinetag.json +++ b/malware_classification/machinetag.json @@ -1,7 +1,7 @@ { "namespace": "malware_classification", "description": "Classification based on different categories. Based on https://www.sans.org/reading-room/whitepapers/incident/malware-101-viruses-32848", - "version": 2, + "version": 3, "predicates": [ { "value": "malware-category", diff --git a/misp-workflow/machinetag.json b/misp-workflow/machinetag.json new file mode 100644 index 0000000..a33c5af --- /dev/null +++ b/misp-workflow/machinetag.json @@ -0,0 +1,94 @@ +{ + "namespace": "misp-workflow", + "expanded": "MISP workflow", + "description": "MISP workflow taxonomy to support result of workflow execution.", + "version": 3, + "predicates": [ + { + "value": "action-taken", + "expanded": "Action taken", + "description": "Action taken during the workflow execution" + }, + { + "value": "analysis", + "expanded": "Analysis", + "description": "Result of the analysis executed during the workflow execution" + }, + { + "value": "mutability", + "expanded": "Mutability", + "description": "Describe if the workflow is allowed to modify data" + }, + { + "value": "run", + "expanded": "Run", + "description": "Describe if the workflow is allowed to run on the data being passed" + } + ], + "values": [ + { + "predicate": "action-taken", + "entry": [ + { + "value": "ids-flag-removed", + "expanded": "IDS flag removed" + }, + { + "value": "ids-flag-added", + "expanded": "IDS flag added" + }, + { + "value": "pushed-to-zmq", + "expanded": "Pushed to ZMQ" + }, + { + "value": "email-sent", + "expanded": "Email sent" + }, + { + "value": "webhook-triggered", + "expanded": "Webhook triggered" + }, + { + "value": "execution-stopped", + "expanded": "Execution stopped" + } + ] + }, + { + "predicate": "analysis", + "entry": [ + { + "value": "false-positive", + "expanded": "False positive" + }, + { + "value": "highly-likely-positive", + "expanded": "Highly Likely Positive" + }, + { + "value": "known-file-hash", + "expanded": "Known file hash" + } + ] + }, + { + "predicate": "mutability", + "entry": [ + { + "value": "allowed", + "expanded": "Allowed" + } + ] + }, + { + "predicate": "run", + "entry": [ + { + "value": "allowed", + "expanded": "Allowed" + } + ] + } + ] +} diff --git a/nis2/machinetag.json b/nis2/machinetag.json new file mode 100644 index 0000000..49bdc1f --- /dev/null +++ b/nis2/machinetag.json @@ -0,0 +1,384 @@ +{ + "namespace": "nis2", + "description": "The taxonomy is meant for large scale cybersecurity incidents, as mentioned in the Commission Recommendation of 13 May 2022, also known as the provisional agreement. It has two core parts: The nature of the incident, i.e. the underlying cause, that triggered the incident, and the impact of the incident, i.e. the impact on services, in which sector(s) of economy and society.", + "version": 3, + "predicates": [ + { + "value": "impact-sectors-impacted", + "expanded": "Sectors impacted", + "description": "The impact on services, in the real world, indicating the sectors of the society and economy, where there is an impact on the services." + }, + { + "value": "impact-subsectors-impacted", + "expanded": "Impact subsectors impacted", + "description": "Impact subsectors impacted" + }, + { + "value": "important-entities", + "expanded": "Important entities", + "description": "Important entities" + }, + { + "value": "impact-subsectors-important-entities", + "expanded": "Impact subsectors important entities", + "description": "Impact subsectors important entities" + }, + { + "value": "impact-severity", + "expanded": "Severity of the impact", + "description": "The severity of the impact, nationally, in the real world, for society and/or the economy, i.e. the level of disruption for the country or a large region of the country, the level of risks for health and/or safety, the level of physical damages and/or financial costs.", + "exclusive": true + }, + { + "value": "impact-outlook", + "expanded": "Outlook", + "description": "The outlook for the incident, the prognosis, for the coming hours, considering the impact in the real world, the impact on services, for the society and/or the economy", + "exclusive": true + }, + { + "value": "nature-root-cause", + "expanded": "Root cause category", + "description": "The Root cause category is used to indicate what type event or threat triggered the incident.", + "exclusive": true + }, + { + "value": "nature-severity", + "expanded": "Severity of the threat", + "description": "The severity of the threat is used to indicate, from a technical perspective, the potential impact, the risk associated with the threat. For example, the severity is high if an upcoming storm is exceptionally strong, if an observed DDoS attack is exceptionally powerful, or if a software vulnerability is easily exploited and present in many different systems. For example, in certain situations a critical software vulnerability would require concerted and urgent work by different organizations.", + "exclusive": true + }, + { + "value": "test", + "expanded": "Test", + "description": "A test predicate meant to test interoperability between tools. Tags contained within this predicate are to be ignored." + } + ], + "values": [ + { + "predicate": "impact-sectors-impacted", + "entry": [ + { + "value": "energy", + "expanded": "Energy", + "description": "The impact is in the Energy sector and its subsectors such as electricity, oil, or gas, for example, impacting electricity suppliers, power plants, distribution system operators, transmission system operators, oil transmission, natural gas distribution, etc." + }, + { + "value": "transport", + "expanded": "Transport", + "description": "The impact is in the transport sector and subsectors such as air, rail, water, road, for example, impacting air traffic control systems, railway companies, maritime port authorities, road traffic management systems, etc." + }, + { + "value": "banking", + "expanded": "Banking", + "description": "The impact is in the Banking sector, for example impacting banks, online banking, credit services, payment services, etc." + }, + { + "value": "financial", + "expanded": "Financial market infrastructures", + "description": "The impact is in the Financial market infrastructure sector, for example, impacting traders, trading platforms, clearing services, etc." + }, + { + "value": "health", + "expanded": "Health", + "description": "The impact is in the Health sector, for example, impacting hospitals, medical devices, medicine supply, pharmacies, etc." + }, + { + "value": "drinking-water", + "expanded": "Drinking water", + "description": "The impact is in the Drinking water supply and distribution sector, for example impacting drinking water supply, drinking water distribution systems, etc." + }, + { + "value": "waste-water", + "expanded": "Waste water", + "description": "The impact is in the Waste water supply and distribution sector, excluding distributors for whom distribution of water for human consumption" + }, + { + "value": "digital-infrastructure", + "expanded": "Digital infrastructure", + "description": "The impact is in the Digital infrastructure sector, for example impacting internet exchange points, domain name systems, top level domain registries, etc." + }, + { + "value": "public-administration", + "expanded": "Public administartion", + "description": "The impact is in the government sector, for example, impacting the functioning of public administrations, elections, or emergency services" + }, + { + "value": "space", + "expanded": "Space", + "description": "The impact is in the space-based services" + } + ] + }, + { + "predicate": "impact-subsectors-impacted", + "entry": [ + { + "value": "electricity", + "expanded": "Electricity undertaking", + "description": "Electricity undertaking means a natural or legal person who carries out at least one of the following functions: generation, transmission, distribution, aggregation, demand response, energy storage, supply or purchase of electricity" + }, + { + "value": "district-heating-and-cooling", + "expanded": "The use of energy from renewable sources", + "description": "District heating’ or ‘district cooling’ means the distribution of thermal energy in the form of steam, hot water or chilled liquids, from central or decentralised sources" + }, + { + "value": "oil", + "expanded": "Operators of oil energy", + "description": "Operators transmission pipelines oil production, refining and treatment facilities, storage and transmission, central oil stockholding entities" + }, + { + "value": "gas", + "expanded": "Operators of gas energy", + "description": "operators of distribution, transmission, storage of gas and LNG system operators" + }, + { + "value": "hydrogen", + "expanded": "Operators of hydrogen energy", + "description": "Operators of hydrogen production, storage and transmission" + }, + { + "value": "air", + "expanded": "Air trasportation", + "description": "Air carriers, airport managing bodies, airports, core airports and entities operating ancillary installations contained within airports, traffic management control operators providing air traffic control (ATC) services" + }, + { + "value": "rail", + "expanded": "Rail transportation", + "description": "Infrastructure managers, railway undertakings including operators of service facilities" + }, + { + "value": "water", + "expanded": "Water transportation", + "description": "Inland, sea and coastal passenger and freight water transport companies, managing bodies of ports including their port facilities, and entities operating works and equipment contained within ports, operators of vessel traffic services (VTS)" + }, + { + "value": "road", + "expanded": "Road transportation", + "description": "Road authorities responsible for traffic management control, operators of Intelligent Transport Systems (ITS)" + }, + { + "value": "banking-subsector", + "expanded": "Credits", + "description": "Credit institutions, i.e. an undertaking the business of which is to take deposits or other repayable funds from the public and to grant credits for its own account" + }, + { + "value": "financial-subsector", + "expanded": "Finanacial market infrastructures", + "description": "Operators of trading venues, central counterparties (CCPs), i.e. a legal person that interposes itself between the counterparties to the contracts traded on one or more financial markets, becoming the buyer to every seller and the seller to every buyer" + }, + { + "value": "health-subsector", + "expanded": "Health entities", + "description": "Healthcare providers, EU reference laboratories, entities carrying out research and development activities of medicinal products, entities manufacturing basic pharmaceutical products and pharmaceutical preparations, entities manufacturing medical devices considered as critical during a public health emergency" + }, + { + "value": "drinking-water-subsector", + "expanded": "Drinking water entities", + "description": "Suppliers and distributors of water intended for human consumption" + }, + { + "value": "waste-water-subsector", + "expanded": "Waste water entities", + "description": "Undertakings collecting, disposing or treating urban, domestic and industrial waste water" + }, + { + "value": "digital-ifrastructure-subsector", + "expanded": "Digital infrastructure entities", + "description": "Internet Exchange Point providers (IXP), DNS service providers, Top-Level Domain (TLD) name registries, cloud computing service providers, Data centre service providers, content delivery network providers, providers of public electronic communications networks or providers of electronic communications services where their services are publicly available" + }, + { + "value": "public-administration-subsector", + "expanded": "Public administration entities", + "description": "Public administration entities of central governments, Public administration entities of NUTS level 1 regions (population min. 3 million – max. 7 million) and NUTS level 2 regions (population min. 800.000 – max 3 million)" + }, + { + "value": "space-subsector", + "expanded": "Space entities", + "description": "Operators of ground-based infrastructure, owned, managed and operated by Member States or by private parties, that support the provision of space-based services, excluding providers of public electronic communications networks. ‘Public electronic communications network’ means an electronic communications network used wholly or mainly for the provision of publicly available electronic communications services which support the transfer of information between network termination points" + } + ] + }, + { + "predicate": "important-entities", + "entry": [ + { + "value": "postal", + "expanded": "Postal service providers", + "description": "i.e. services involving the clearance, sorting, transport, and delivery of postal items" + }, + { + "value": "waste", + "expanded": "Waste management", + "description": "Undertakings carrying out waste management excluding undertakings for whom waste management is not their principal economic activity. ‘Waste management’ means the collection, transport, recovery, and disposal of waste, including the supervision of such operations and the aftercare of disposal sites, and including actions taken as a dealer or broker" + }, + { + "value": "chemicals", + "expanded": "Manufacture, production and distribution of chemicals", + "description": "Undertakings carrying out the manufacture, production and distribution of chemicals. ‘Producer’ means any natural or legal person who makes or assembles an article. ‘Manufacturer’ means any natural or legal person who manufactures a substance. ‘Distributor’ means any natural or legal person, including a retailer, who only stores and places on the market a substance, on its own or in a mixture, for third parties" + }, + { + "value": "manufacturing", + "expanded": "Manufacture", + "description": "Entities manufacturing medical devices, computers, electrical equipment, machinery, motor vehicles, transport equipment " + }, + { + "value": "digital", + "expanded": "Digital providers", + "description": "Providers of online marketplaces, providers of online search engines, providers of social networks" + } + ] + }, + { + "predicate": "impact-subsectors-important-entities", + "entry": [ + { + "value": "medical-devices-manufacturing", + "expanded": "Manufacture of medical devices and in vitro diagnostic medical devices", + "description": "Entities manufacturing medical devices and entities manufacturing in vitro diagnostic medical devices" + }, + { + "value": "computer-manufacturing", + "expanded": "Manufacture of computer, electronic and optical products", + "description": "Undertakings carrying out the manufacture of computers, electronical and optical products. This includes the manufacture of computers, computer peripherals, communications equipment, and similar electronic products, as well as the manufacture of components for such products. Also included is the manufacture of consumer electronics, measuring, testing, and navigating equipment, irradiation, electromedical and electrotherapeutic equipment, optical instruments and equipment, and the manufacture of magnetic and optical media" + }, + { + "value": "electrical-equipment-manufacturing", + "expanded": "Manufacture of computer, electronic and optical products", + "description": "Undertakings carrying out the manufacture of electrical equipment. This includes the manufacture of products that generate, distribute, and use electrical power. Also included is the manufacture of electrical lighting, signalling equipment and electric household appliances" + }, + { + "value": "machinery-equipment-manufacturing", + "expanded": "Manufacture of machinery and equipment N.E.C", + "description": "Undertakings carrying out the manufacture of machinery and equipment n.e.c. This includes the manufacture of machinery and equipment that act independently on materials either mechanically or thermally or perform operations on materials (such as handling, spraying, weighing, or packing), including their mechanical components that produce and apply force, and any specially manufactured primary parts. " + }, + { + "value": "vehicles-trailers-manufacturing", + "expanded": "Manufacture of motor vehicles, trailers and semi-trailers", + "description": "Undertakings carrying out the manufacture of motor vehicles for transporting passengers or freight. The manufacture of various parts and accessories, as well as the manufacture of trailers and semi-trailers, is also included" + }, + { + "value": "other-transport-manufacturing", + "expanded": "Manufacture of other transport equipment", + "description": "Undertakings carrying out the manufacture of motor vehicles for transporting passengers or freight. The manufacture of various parts and accessories, as well as the manufacture of trailers and semi-trailers, is also included" + } + ] + }, + { + "predicate": "impact-severity", + "entry": [ + { + "value": "red", + "expanded": "Red", + "description": "Very large impact", + "colour": "#CC0033" + }, + { + "value": "yellow", + "expanded": "Yellow", + "description": "Large impact.", + "colour": "#FFC000" + }, + { + "value": "green", + "expanded": "Green", + "description": "Minor impact.", + "colour": "#339900" + }, + { + "value": "white", + "expanded": "White", + "description": "No impact.", + "colour": "#ffffff" + } + ] + }, + { + "predicate": "impact-outlook", + "entry": [ + { + "value": "improving", + "expanded": "Improving", + "description": "Severity of impact is expected to decrease in the next 6 hours.", + "colour": "#339900" + }, + { + "value": "stable", + "expanded": "Stable", + "description": "Severity of impact is expected to remain the same in the 6 hours.", + "colour": "#FFC000" + }, + { + "value": "worsening", + "expanded": "Worsening", + "description": "Severity of impact is expected to increase in the next 6 hours.", + "colour": "#CC0033" + } + ] + }, + { + "predicate": "nature-root-cause", + "entry": [ + { + "value": "system-failures", + "expanded": "System failures", + "description": "The incident is due to a failure of a system, i.e. without external causes. For example a hardware failure, software bug, a flaw in a procedure, etc. triggered the incident." + }, + { + "value": "natural-phenomena", + "expanded": "Natural phenomena", + "description": "The incident is due to a natural phenomenon. For example a storm, lightning, solar flare, flood, earthquake, wildfire, etc. triggered the incident." + }, + { + "value": "human-errors", + "expanded": "Human errors", + "description": "The incident is due to a human error, i.e. system worked correctly, but was used wrong. For example, a mistake, or carelessness triggered the incident." + }, + { + "value": "malicious-actions", + "expanded": "Malicious actions", + "description": "The incident is due to a malicious action. For example, a cyber-attack or physical attack, vandalism, sabotage, insider attack, theft, etc., triggered the incident." + }, + { + "value": "third-party-failures", + "expanded": "Third party failures", + "description": "The incident is due to a disruption of a third party service, like a utility. For example a power cut, or an internet outage, etc. triggered the incident." + } + ] + }, + { + "predicate": "nature-severity", + "entry": [ + { + "value": "high", + "expanded": "High", + "description": "High severity, potential impact is high.", + "colour": "#CC0033" + }, + { + "value": "medium", + "expanded": "Medium", + "description": "Medium severity, potential impact is medium.", + "colour": "#FFC000" + }, + { + "value": "low", + "expanded": "Low", + "description": "Low severity, potential impact is low.", + "colour": "#339900" + } + ] + }, + { + "predicate": "test", + "entry": [ + { + "value": "test", + "expanded": "Test", + "description": "Test value meant for testing interoperability. Tags with this value are to be ignored.", + "colour": "#F81894" + } + ] + } + ] +} diff --git a/poison-taxonomy/machinetag.json b/poison-taxonomy/machinetag.json new file mode 100644 index 0000000..8297a35 --- /dev/null +++ b/poison-taxonomy/machinetag.json @@ -0,0 +1,476 @@ +{ + "namespace": "poison-taxonomy", + "description": "Non-exhaustive taxonomy of natural poison", + "version": 1, + "predicates": [ + { + "value": "Poisonous plant" + }, + { + "value": "Poisonous fungus" + } + ], + "values": [ + { + "predicate": "Poisonous fungus", + "entry": [ + { + "value": "Agaricus californicus/California " + }, + { + "value": "Agaricus hondensis/Felt-ringed " + }, + { + "value": "Agaricus menieri" + }, + { + "value": "Agaricus moelleri" + }, + { + "value": "Agaricus phaeolepidotus" + }, + { + "value": "Agaricus placomyces" + }, + { + "value": "Agaricus xanthodermus/Yellow-staining mushroom" + }, + { + "value": "Amanita abrupta/American abrupt-bulbed Lepidella" + }, + { + "value": "Amanita aprica/Sunshine amanita" + }, + { + "value": "Amanita boudieri/Boudier's lepidella" + }, + { + "value": "Amanita citrina" + }, + { + "value": "Amanita cokeri/Coker's amanita" + }, + { + "value": "Amanita cothurnata/Booted amanita" + }, + { + "value": "Amanita echinocephala/European solitary amanita" + }, + { + "value": "Amanita farinosa/Powdery Amanita" + }, + { + "value": "Amanita flavorubescens" + }, + { + "value": "Amanita gemmata/Gemmed Amanita" + }, + { + "value": "Amanita gioiosa" + }, + { + "value": "Amanita gracilior" + }, + { + "value": "Amanita heterochroma/Eucalyptus fly agaric" + }, + { + "value": "Amanita hongoi/Hongo's Amanita" + }, + { + "value": "Amanita ibotengutake/Japanese ringed-bulbed Amanita" + }, + { + "value": "Amanita muscaria/Fly agaric" + }, + { + "value": "Amanita neoovoidea/East Asian egg amidella" + }, + { + "value": "Amanita pantherina/Panther cap" + }, + { + "value": "Amanita porphyria/Grey veiled Amanita" + }, + { + "value": "Amanita pseudoporphyria/Hongo's false death cap" + }, + { + "value": "Amanita pseudoregalis/False royal fly agaric" + }, + { + "value": "Amanita pseudorubescens/False blusher" + }, + { + "value": "Amanita regalis/Royal fly agaric" + }, + { + "value": "Amanita smithiana/Smith's Amanita" + }, + { + "value": "Ampulloclitocybe clavipes/Club-footed clitocybe" + }, + { + "value": "Chlorophyllum molybdites/Green-spored parasol" + }, + { + "value": "Clitocybe cerussata" + }, + { + "value": "Clitocybe dealbata" + }, + { + "value": "Coprinopsis alopecia" + }, + { + "value": "Coprinopsis atramentaria/Common ink cap" + }, + { + "value": "Coprinopsis romagnesiana/Scaly ink cap" + }, + { + "value": "Cortinarius bolaris" + }, + { + "value": "Cortinarius callisteus" + }, + { + "value": "Cortinarius cinnabarinus" + }, + { + "value": "Cortinarius cinnamomeofulvus" + }, + { + "value": "Cortinarius cinnamomeoluteus" + }, + { + "value": "Cortinarius cinnamomeus" + }, + { + "value": "Cortinarius cruentus" + }, + { + "value": "Cortinarius gentilis" + }, + { + "value": "Cortinarius limonius" + }, + { + "value": "Cortinarius malicorius" + }, + { + "value": "Cortinarius mirandus" + }, + { + "value": "Cortinarius palustris" + }, + { + "value": "Cortinarius phoeniceus" + }, + { + "value": "Cortinarius rubicundulus" + }, + { + "value": "Cortinarius smithii/Smith's Cortinarius" + }, + { + "value": "Cudonia circinans" + }, + { + "value": "Gyromitra perlata/Pig's ears" + }, + { + "value": "Echinoderma asperum/Freckled dapperling" + }, + { + "value": "Echinoderma calcicola" + }, + { + "value": "Entoloma albidum" + }, + { + "value": "Entoloma rhodopolium/Wood pinkgill" + }, + { + "value": "Entoloma sinuatum/Livid Entoloma" + }, + { + "value": "Hebeloma crustuliniforme/Poison pie" + }, + { + "value": "Hebeloma sinapizans/Rough-stalked hebeloma" + }, + { + "value": "Helvella crispa/Elfin saddle" + }, + { + "value": "Helvella dryophila/Oak-loving elfin saddle" + }, + { + "value": "Helvella lactea" + }, + { + "value": "Helvella lacunosa/Slate grey saddle" + }, + { + "value": "Helvella vespertina/Western black elfin saddle" + }, + { + "value": "Hapalopilus nidulans/Tender nesting polypore" + }, + { + "value": "Hypholoma fasciculare/Sulphur tuft" + }, + { + "value": "Hypholoma lateritium/Brick cap" + }, + { + "value": "Hypholoma marginatum" + }, + { + "value": "Hypholoma radicosum" + }, + { + "value": "Imperator rhodopurpureus" + }, + { + "value": "Imperator torosus" + }, + { + "value": "Inocybe fibrosa" + }, + { + "value": "Inocybe geophylla/Earthy inocybe" + }, + { + "value": "Inocybe hystrix" + }, + { + "value": "Inocybe lacera/Torn fibercap" + }, + { + "value": "Inocybe lilacina" + }, + { + "value": "Inocybe sublilacina" + }, + { + "value": "Inocybe rimosa" + }, + { + "value": "Inocybe sambucina" + }, + { + "value": "Lactarius torminosus/Woolly milkcap" + }, + { + "value": "Mycena diosma" + }, + { + "value": "Mycena pura/Lilac bonnet" + }, + { + "value": "Mycena rosea/Rosy bonnet" + }, + { + "value": "Neonothopanus nambi" + }, + { + "value": "Panaeolus cinctulus/banded mottlegill" + }, + { + "value": "Psilocybe semilanceata/Liberty cap" + }, + { + "value": "Omphalotus illudens/Jack-O'lantern mushroom" + }, + { + "value": "Omphalotus japonicus/Tsukiyotake" + }, + { + "value": "Omphalotus nidiformis/Ghost fungus" + }, + { + "value": "Omphalotus olearius/Jack-O'lantern mushroom" + }, + { + "value": "Omphalotus olivascens/Western jack-o'-lantern mushroom" + }, + { + "value": "Paralepistopsis acromelalga" + }, + { + "value": "Paralepistopsis amoenolens/Paralysis funnel" + }, + { + "value": "Pholiotina rugosa" + }, + { + "value": "Ramaria formosa/Beautiful clavaria" + }, + { + "value": "Ramaria neoformosa" + }, + { + "value": "Ramaria pallida" + }, + { + "value": "Rubroboletus legaliae/Le Gal's bolete" + }, + { + "value": "Rubroboletus lupinus/Wolves bolete" + }, + { + "value": "Rubroboletus pulcherrimus" + }, + { + "value": "Rubroboletus satanas/Satan's bolete" + }, + { + "value": "Russula emetica/The sickener" + }, + { + "value": "Russula subnigricans" + }, + { + "value": "Sarcosphaera coronaria/Pink crown" + }, + { + "value": "Tricholoma equestre/Yellow knight" + }, + { + "value": "Tricholoma filamentosum" + }, + { + "value": "Tricholoma pardinum/Tiger tricholoma" + }, + { + "value": "Tricholoma muscarium" + }, + { + "value": "Trogia venenata/Little white mushroom" + }, + { + "value": "Turbinellus floccosus/Woolly false chanterelle" + }, + { + "value": "Turbinellus kauffmanii" + }, + { + "value": "Agrocybe arenicola" + }, + { + "value": "Amanita albocreata/Ringless panther" + }, + { + "value": "Amanita altipes/Yellow long-stem Amanita" + }, + { + "value": "Amanita breckonii" + }, + { + "value": "Amanita ceciliae/Snakeskin grisette" + }, + { + "value": "Amanita eliae/Fries's Amanita" + }, + { + "value": "Amanita flavoconia/Yellow-dust Amanita" + }, + { + "value": "Amanita frostiana/Frost's Amanita" + }, + { + "value": "Amanita nehuta/Mahori dust Amanita" + }, + { + "value": "Amanita parcivolvata" + }, + { + "value": "Amanita parvipantherina" + }, + { + "value": "Amanita petalinivolva" + }, + { + "value": "Amanita roseotincta" + }, + { + "value": "Amanita rubrovolvata/Red volva Amanita" + }, + { + "value": "Amanita subfrostiana/False Frost's Amanita" + }, + { + "value": "Amanita velatipes" + }, + { + "value": "Amanita viscidolutea" + }, + { + "value": "Amanita wellsii/Wells's Amanita" + }, + { + "value": "Amanita xanthocephala/Vermilion grisette" + }, + { + "value": "Armillaria mellea/Honey fungus" + }, + { + "value": "Calocera viscosa/Yellow stagshorn" + }, + { + "value": "Chlorophyllum brunneum/Shaggy parasol" + }, + { + "value": "Choiromyces venosus" + }, + { + "value": "Clitocybe fragrans" + }, + { + "value": "Clitocybe nebularis/Clouded agaric" + }, + { + "value": "Conocybe subovalis" + }, + { + "value": "Coprinellus micaceus/Mica cap" + }, + { + "value": "Lactarius chrysorrheus/Yellowdrop milkcap" + }, + { + "value": "Lactarius helvus/Fenugreek milkcap" + }, + { + "value": "Lepiota cristata/Stinking dapperling" + }, + { + "value": "Marasmius collinus" + }, + { + "value": "Russula olivacea" + }, + { + "value": "Russula viscida" + }, + { + "value": "Schizophyllum commune" + }, + { + "value": "Scleroderma citrinum/common earthball" + }, + { + "value": "Stropharia aeruginosa/Verdigris agaric" + }, + { + "value": "Suillus granulatus/Weeping bolete" + }, + { + "value": "Tricholoma sulphureum/Gas agaric" + } + ] + } + ] +} diff --git a/political-spectrum/machinetag.json b/political-spectrum/machinetag.json new file mode 100644 index 0000000..811ce32 --- /dev/null +++ b/political-spectrum/machinetag.json @@ -0,0 +1,157 @@ +{ + "namespace": "political-spectrum", + "description": "A political spectrum is a system to characterize and classify different political positions in relation to one another.", + "version": 1, + "expanded": "Political Spectrum", + "predicates": [ + { + "value": "ideology", + "expanded": "Ideology", + "description": "Political ideologies are one of the major organizing features of political parties, and parties often officially align themselves with specific ideologies." + }, + { + "value": "left-right-spectrum", + "expanded": "Left-Right spectrum", + "description": "The left–right political spectrum is a system of classifying political positions characteristic of left-right politics, ideologies and parties with emphasis placed on issues of social equality and social hierarchy." + } + ], + "values": [ + { + "predicate": "ideology", + "entry": [ + { + "value": "agrarianism", + "expanded": "Agrarianism", + "colour": "#006400", + "description": "political and social philosophy that has promoted subsistence agriculture, smallholdings, egalitarianism, with agrarian political parties normally supporting the rights and sustainability of small farmers and poor peasants against the wealthy in society." + }, + { + "value": "anarchism", + "expanded": "Anarchism", + "colour": "#000000", + "description": "Anarchism is a political philosophy and movement that is sceptical of authority and rejects all involuntary, coercive forms of hierarchy." + }, + { + "value": "centrism", + "expanded": "Centrism", + "colour": "#9932CC", + "description": "Centrism is a political outlook or position that involves acceptance and/or support of a balance of social equality and a degree of social hierarchy, while opposing political changes which would result in a significant shift of society strongly to either the left or the right." + }, + { + "value": "christian-democracy", + "expanded": "Christian Democracy", + "colour": "#FF7700", + "description": "combination of modern democratic ideas and traditional Christian values, incorporating social justice as well as the social teachings espoused by the Catholic, Lutheran, Reformed, Pentecostal and other denominational traditions of Christianity in various parts of the world. After World War II, Catholic and Protestant movements of neo-scholasticism and the Social Gospel, respectively, played a role in shaping Christian democracy." + }, + { + "value": "communism", + "expanded": "Communism", + "colour": "#F50E0E", + "description": "Communism is a philosophical, social, political, and economic ideology and movement whose goal is the establishment of a communist society, namely a socioeconomic order structured upon the ideas of common ownership of the means of production and the absence of social classes, money, and the state." + }, + { + "value": "conservatism", + "expanded": "Conservatism", + "colour": "#4584F2", + "description": "Conservatism is an aesthetic, cultural, social, and political philosophy, which seeks to promote and to preserve traditional social institutions. The central tenets of conservatism may vary in relation to the traditional values or practices of the culture and civilization in which it appears. In Western culture, conservatives seek to preserve a range of institutions such as organized religion, parliamentary government, and property rights. Adherents of conservatism often oppose modernism and seek a return to traditional values." + }, + { + "value": "democratic-socialism", + "expanded": "Democratic socialism", + "colour": "#F50E0E", + "description": "Democratic socialism is a political philosophy that supports political democracy within a socially owned economy, with a particular emphasis on economic democracy, workplace democracy, and workers' self-management within a market socialist economy, or an alternative form of decentralised planned socialist economy." + }, + { + "value": "fascism", + "expanded": "Fascism", + "colour": "#964B00", + "description": "Fascism is a form of far-right, authoritarian ultranationalism characterized by dictatorial power, forcible suppression of opposition, and strong regimentation of society and of the economy, which came to prominence in early 20th-century Europe.Fascists believe that liberal democracy is obsolete. They regard the complete mobilization of society under a totalitarian one-party state as necessary to prepare a nation for armed conflict and to respond effectively to economic difficulties." + }, + { + "value": "feminism", + "expanded": "Feminism", + "colour": "#FFC0CB", + "description": "Feminism is a range of social movements and ideologies that aim to define and establish the political, economic, personal, and social equality of the sexes. Feminism incorporates the position that societies prioritize the male point of view, and that women are treated unjustly within those societies. Efforts to change that include fighting against gender stereotypes and establishing educational, professional, and interpersonal opportunities and outcomes for women that are equal to those for men." + }, + { + "value": "green-politics", + "expanded": "Green politics", + "colour": "#006400", + "description": "Green politics, or ecopolitics, is a political ideology that aims to foster an ecologically sustainable society often, but not always, rooted in environmentalism, nonviolence, social justice and grassroots democracy." + }, + { + "value": "islamism", + "expanded": "Islamism", + "colour": "#006400", + "description": "Islamism (also often called political Islam or Islamic fundamentalism) is a political ideology which posits that modern states and regions should be reconstituted in constitutional, economic and judicial terms, in accordance with what is conceived as a revival or a return to authentic Islamic practice in its totality." + }, + { + "value": "liberalism", + "expanded": "Liberalism", + "colour": "#FFFF33", + "description": "Liberalism is a political and moral philosophy based on liberty, consent of the governed and equality before the law. Liberals espouse a wide array of views depending on their understanding of these principles, but they generally support individual rights (including civil rights and human rights), democracy, secularism, freedom of speech, freedom of the press, freedom of religion and a market economy." + }, + { + "value": "libertarianism", + "expanded": "Libertarianism", + "colour": "#FFFF33", + "description": "Libertarianism is a political philosophy that upholds liberty as a core principle. Libertarians seek to maximize autonomy and political freedom, emphasizing free association, freedom of choice, individualism and voluntary association. Libertarians share a skepticism of authority and state power, but some libertarians diverge on the scope of their opposition to existing economic and political systems." + }, + { + "value": "monarchism", + "expanded": "Monarchism", + "colour": "#9932CC", + "description": "Monarchism is the advocacy of the system of monarchy or monarchical rule." + }, + { + "value": "pacifism", + "expanded": "Pacifism", + "colour": "#FFFFFF", + "description": "Pacifism covers a spectrum of views, including the belief that international disputes can and should be peacefully resolved, calls for the abolition of the institutions of the military and war, opposition to any organization of society through governmental force (anarchist or libertarian pacifism), rejection of the use of physical violence to obtain political, economic or social goals, the obliteration of force, and opposition to violence under any circumstance, even defence of self and others." + }, + { + "value": "social-democracy", + "expanded": "Social democracy", + "colour": "#F50E0E", + "description": "Social democracy is a political, social, and economic philosophy within socialism that supports political and economic democracy. As a policy regime, it is described by academics as advocating economic and social interventions to promote social justice within the framework of a liberal-democratic polity and a capitalist-oriented mixed economy." + }, + { + "value": "socialism", + "expanded": "Socialism", + "colour": "#F50E0E", + "description": "Socialism is a political, social, and economic philosophy encompassing a range of economic and social systems characterised by social ownership of the means of production. It includes the political theories and movements associated with such systems. Social ownership can be public, collective, cooperative, or of equity. While no single definition encapsulates the many types of socialism, social ownership is the one common element." + } + ] + }, + { + "predicate": "left-right-spectrum", + "entry": [ + { + "value": "far-left", + "expanded": "Far-left", + "description": "There are different definitions of the far-left. It could represent the left of social democraty, or also limited to the left of communist parties. Sometimes it is also associated with some forms of anarchism and communims, or groupsthat advocate for revolutionary anti-capitalism and anti-globalization." + }, + { + "value": "centre-left", + "expanded": "Centre-left", + "description": "Also refered as moderate-left politics. Believes in working within the established systems to improve social justice. Promotes a degree of social equality that it believes is achievable through promoting equal opportunity. Emphasizes that the achievement of equality requires personal responsibility in areas in control by the individual person through their abilities and talents as well as social responsibility in areas outside control by the person in their abilities or talents." + }, + { + "value": "radical-centre", + "expanded": "Radical centre", + "description": "The radical in the term refers to a willingness on the part of most radical centrists to call for fundamental reform of institutions.[ The centrism refers to a belief that genuine solutions require realism and pragmatism, not just idealism and emotion. Radical centrists borrow ideas from the left and the right, often melding them together." + }, + { + "value": "centre-right", + "expanded": "Centre-right", + "description": "Also referred to as moderate-right politics. Ideologies characterised as centre-right include liberal conservatism and some variants of liberalism and Christian democracy, among others." + }, + { + "value": "far-right", + "expanded": "Far-right", + "description": "Referred to as the extreme right or right-wing extremism. Are usually described as anti-communist, authoritarian, ultranationalist, and having nativist ideologies and tendencies. Today far-right politics include neo-fascism, neo-Nazism, the Third Position, the alt-right, racial supremacism, and other ideologies or organizations that feature aspects of ultranationalist, chauvinist, xenophobic, theocratic, racist, homophobic, transphobic, or reactionary views." + } + ] + } + ] +} diff --git a/pyoti/machinetag.json b/pyoti/machinetag.json new file mode 100644 index 0000000..184e44d --- /dev/null +++ b/pyoti/machinetag.json @@ -0,0 +1,395 @@ +{ + "namespace": "pyoti", + "description": "PyOTI automated enrichment schemes for point in time classification of indicators.", + "version": 3, + "expanded": "PyOTI Enrichment", + "refs": [ + "https://github.com/RH-ISAC/PyOTI", + "https://github.com/RH-ISAC/PyOTI/blob/main/examples/enrich_misp_event.py" + ], + "predicates": [ + { + "value": "checkdmarc", + "expanded": "CheckDMARC" + }, + { + "value": "disposable-email", + "expanded": "Disposable Email Domain", + "description": "The email domain is from a disposable email service." + }, + { + "value": "emailrepio", + "expanded": "EmailRepIO" + }, + { + "value": "iris-investigate", + "expanded": "Iris Investigate" + }, + { + "value": "virustotal", + "expanded": "VirusTotal" + }, + { + "value": "circl-hashlookup", + "expanded": "CIRCL Hash Lookup" + }, + { + "value": "reputation-block-list", + "expanded": "Reputation Block List" + }, + { + "value": "abuseipdb", + "expanded": "AbuseIPDB" + }, + { + "value": "greynoise-riot", + "expanded": "GreyNoise RIOT" + }, + { + "value": "googlesafebrowsing", + "expanded": "Google Safe Browsing" + } + ], + "values": [ + { + "predicate": "checkdmarc", + "entry": [ + { + "value": "spoofable", + "expanded": "Spoofable", + "description": "The email address can be spoofed (e.g. no strict SPF policy/DMARC is not enforced)." + } + ] + }, + { + "predicate": "emailrepio", + "entry": [ + { + "value": "spoofable", + "expanded": "Spoofable", + "description": "The email address can be spoofed (e.g. no strict SPF policy/DMARC is not enforced)." + }, + { + "value": "suspicious", + "expanded": "Suspicious", + "description": "The email address should be treated as suspicious or risky." + }, + { + "value": "blacklisted", + "expanded": "Blacklisted", + "description": "The email address is believed to be malicious or spammy." + }, + { + "value": "malicious-activity", + "expanded": "Malicious Activity", + "description": "The email address has exhibited malicious behavior (e.g. phishing/fraud)." + }, + { + "value": "malicious-activity-recent", + "expanded": "Malicious Activity Recent", + "description": "The email address has exhibited malicious behavior in the last 90 days (e.g. in the case of temporal account takeovers)." + }, + { + "value": "credentials-leaked", + "expanded": "Credentials Leaked", + "description": "The email address has had credentials leaked at some point in time (e.g. a data breach, pastebin, dark web, etc)." + }, + { + "value": "credentials-leaked-recent", + "expanded": "Credentials Leaked Recent", + "description": "The email address has had credentials leaked in the last 90 days." + }, + { + "value": "reputation-high", + "expanded": "Reputation High", + "description": "The email address has a high reputation." + }, + { + "value": "reputation-medium", + "expanded": "Reputation Medium", + "description": "The email address has a medium reputation." + }, + { + "value": "reputation-low", + "expanded": "Reputation Low", + "description": "The email address has a low reputation." + }, + { + "value": "suspicious-tld", + "expanded": "Suspicious TLD", + "description": "The email address top-level domain is suspicious." + }, + { + "value": "spam", + "expanded": "Spam", + "description": "The email address has exhibited spammy behavior (e.g. spam traps, login form abuse, etc)." + } + ] + }, + { + "predicate": "iris-investigate", + "entry": [ + { + "value": "high", + "expanded": "High", + "description": "The domain risk score is high (76-100)." + }, + { + "value": "medium-high", + "expanded": "Medium High", + "description": "The domain risk score is medium-high (51-75)." + }, + { + "value": "medium", + "expanded": "Medium", + "description": "The domain risk score is medium (26-50)." + }, + { + "value": "low", + "expanded": "Low", + "description": "The domain risk score is low (0-25)." + } + ] + }, + { + "predicate": "virustotal", + "entry": [ + { + "value": "known-distributor", + "expanded": "Known Distributor", + "description": "The known-distributor entry indicates a file is from a known distributor." + }, + { + "value": "valid-signature", + "expanded": "Valid Signature", + "description": "The valid-signature entry indicates a file is signed with a valid signature." + }, + { + "value": "invalid-signature", + "expanded": "Invalid Signature", + "description": "The invalid-signature entry indicates a file is signed with an invalid signature." + } + ] + }, + { + "predicate": "circl-hashlookup", + "entry": [ + { + "value": "high-trust", + "expanded": "High Trust", + "description": "The trust level is high (76-100)." + }, + { + "value": "medium-high-trust", + "expanded": "Medium High Trust", + "description": "The trust level is medium-high (51-75)." + }, + { + "value": "medium-trust", + "expanded": "Medium Trust", + "description": "The trust level is medium (26-50)." + }, + { + "value": "low-trust", + "expanded": "Low Trust", + "description": "The trust level is low (0-25)." + } + ] + }, + { + "predicate": "reputation-block-list", + "entry": [ + { + "value": "barracudacentral-brbl", + "expanded": "Barracuda Reputation Block List", + "description": "Barracuda Reputation Block List (BRBL) is a free DNSBL of IP addresses known to send spam. Barracuda Networks fights spam and created the BRBL to help stop the spread of spam." + }, + { + "value": "spamcop-scbl", + "expanded": "SpamCop Blocking List", + "description": "The SpamCop Blocking List (SCBL) lists IP addresses which have transmitted reported email to SpamCop users. SpamCop, service providers and individual users then use the SCBL to block and filter unwanted email." + }, + { + "value": "spamhaus-sbl", + "expanded": "Spamhaus Block List", + "description": "The Spamhaus Block List (SBL) Advisory is a database of IP addresses from which Spamhaus does not recommend the acceptance of electronic mail." + }, + { + "value": "spamhaus-xbl", + "expanded": "Spamhaus Exploits Block List", + "description": "The Spamhaus Exploits Block List (XBL) is a realtime database of IP addresses of hijacked PCs infected by illegal 3rd party exploits, including open proxies (HTTP, socks, AnalogX, wingate, etc), worms/viruses with built-in spam engines, and other types of trojan-horse exploits." + }, + { + "value": "spamhaus-pbl", + "expanded": "Spamhaus Policy Block List", + "description": "The Spamhaus PBL is a DNSBL database of end-user IP address ranges which should not be delivering unauthenticated SMTP email to any Internet mail server except those provided for specifically by an ISP for that customer's use." + }, + { + "value": "spamhaus-css", + "expanded": "Spamhaus CSS", + "description": "The Spamhaus CSS list is an automatically produced dataset of IP addresses that are involved in sending low-reputation email. CSS mostly targets static spam emitters that are not covered in the PBL or XBL, such as snowshoe spam operations, but may also include other senders that display a risk to our users, such as compromised hosts." + }, + { + "value": "spamhaus-drop", + "expanded": "Spamhaus Don't Route Or Peer", + "description": "Spamhaus Don't Route Or Peer (DROP) is an advisory 'drop all traffic' list. DROP is a tiny subset of the SBL which is designed for use by firewalls or routing equipment." + }, + { + "value": "spamhaus-spam", + "expanded": "Spamhaus Domain Block List Spam Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of domain names with poor reputations used for spam." + }, + { + "value": "spamhaus-phish", + "expanded": "Spamhaus Domain Block List Phish Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of domain names with poor reputations used for phishing." + }, + { + "value": "spamhaus-malware", + "expanded": "Spamhaus Domain Block List Malware Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of domain names with poor reputations used to serve malware." + }, + { + "value": "spamhaus-botnet-c2", + "expanded": "Spamhaus Domain Block List Botnet C2 Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of domain names with poor reputations used for botnet command and control." + }, + { + "value": "spamhaus-abused-legit-spam", + "expanded": "Spamhaus Domain Block List Abused Legit Spam Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of abused legitimate domain names with poor reputations used for spam." + }, + { + "value": "spamhaus-abused-spammed-redirector", + "expanded": "Spamhaus Domain Block List Abused Spammed Redirector Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of abused legitimate spammed domain names with poor reputations used as redirector domains." + }, + { + "value": "spamhaus-abused-legit-phish", + "expanded": "Spamhaus Domain Block List Abused Legit Phish Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of abused legitimate domain names with poor reputations used for phishing." + }, + { + "value": "spamhaus-abused-legit-malware", + "expanded": "Spamhaus Domain Block List Abused Legit Malware Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of abused legitimate domain names with poor reputations used to serve malware." + }, + { + "value": "spamhaus-abused-legit-botnet-c2", + "expanded": "Spamhaus Domain Block List Abused Legit Botnet C2 Domain", + "description": "Spamhaus Domain Block List (DBL) is a list of abused legitimate domain names with poor reputations used for botnet command and control." + }, + { + "value": "surbl-phish", + "expanded": "SURBL Phishing Sites", + "description": "Phishing data from multiple sources is included in this list. Data includes PhishTank, OITC, PhishLabs, Malware Domains and several other sources, including proprietary research by SURBL." + }, + { + "value": "surbl-malware", + "expanded": "SURBL Malware Sites", + "description": "This list contains data from multiple sources that cover sites hosting malware. This includes OITC, abuse.ch, The DNS blackhole malicious site data from malwaredomains.com and others. Malware data also includes significant proprietary research by SURBL." + }, + { + "value": "surbl-spam", + "expanded": "SURBL Spam Sites", + "description": "This list contains mainly general spam sites. It combines data from the formerly separate JP, WS, SC and AB lists. It also includes data from Internet security, anti-abuse, ISP, ESP and other communities, such as Telenor. Most of the data in this list comes from internal, proprietary research by SURBL." + }, + { + "value": "surbl-abused-legit", + "expanded": "SURBL Abused Legit Sites", + "description": "This list contains data from multiple sources that cover cracked sites, including SURBL internal ones. Criminals steal credentials or abuse vulnerabilities to break into websites and add malicious content. Often cracked pages will redirect to spam sites or to other cracked sites. Cracked sites usually still contain the original legitimate content and may still be mentioned in legitimate emails, besides the malicious pages referenced in spam." + }, + { + "value": "uribl-black", + "expanded": "URIBL Black", + "description": "URIBL Black list contains domain names belonging to and used by spammers, including but not restricted to those that appear in URIs found in Unsolicited Bulk and/or Commercial Email (UBE/UCE). This list has a goal of zero False Positives." + }, + { + "value": "uribl-grey", + "expanded": "URIBL Grey", + "description": "URIBL Grey list contains domains found in UBE/UCE, and possibly honour opt-out requests. It may include ESPs which allow customers to import their recipient lists and may have no control over the subscription methods. This list can and probably will cause False Positives depending on your definition of UBE/UCE." + }, + { + "value": "uribl-red", + "expanded": "URIBL Red", + "description": "URIBL Red list contains domains that actively show up in mail flow, are not listed on URIBL black, and are either: being monitored, very young (domain age via whois), or use whois privacy features to protect their identity. This list is automated in nature, so please use at your own risk." + }, + { + "value": "uribl-multi", + "expanded": "URIBL Multi", + "description": "URIBL Multi list contains all of the public URIBL lists." + } + ] + }, + { + "predicate": "abuseipdb", + "entry": [ + { + "value": "high", + "expanded": "High", + "description": "The IP abuse confidence score is high (76-100)." + }, + { + "value": "medium-high", + "expanded": "Medium High", + "description": "The IP abuse confidence score is medium-high (51-75)." + }, + { + "value": "medium", + "expanded": "Medium", + "description": "The IP abuse confidence score is medium (26-50)." + }, + { + "value": "low", + "expanded": "Low", + "description": "The IP abuse confidence score is low (0-25)." + } + ] + }, + { + "predicate": "greynoise-riot", + "entry": [ + { + "value": "trust-level-1", + "expanded": "Trust Level 1", + "description": "These IPs are trustworthy because the companies or services assigned are generally responsible for the interactions with this IP. Adding these ranges to an allow-list may make sense." + }, + { + "value": "trust-level-2", + "expanded": "Trust Level 2", + "description": "These IPs are somewhat trustworthy because they are necessary for regular and common business internet use. Companies that own these IPs typically do not claim responsibility or have accountability for interactions with these IPs. Malicious actions may be associated with these IPs but adding this entire range to a block-list does not make sense." + } + ] + }, + { + "predicate": "googlesafebrowsing", + "entry": [ + { + "value": "malware", + "expanded": "MALWARE", + "description": "Malware threat type." + }, + { + "value": "social-engineering", + "expanded": "SOCIAL_ENGINEERING", + "description": "Social engineering threat type." + }, + { + "value": "unwanted-software", + "expanded": "UNWANTED_SOFTWARE", + "description": "Unwanted software threat type." + }, + { + "value": "potentially-harmful-application", + "expanded": "POTENTIALLY_HARMFUL_APPLICATION", + "description": "Potentially harmful application threat type." + }, + { + "value": "unspecified", + "expanded": "THREAT_TYPE_UNSPECIFIED", + "description": "Unknown threat type." + } + ] + } + ] +} diff --git a/ransomware-roles/machinetag.json b/ransomware-roles/machinetag.json new file mode 100644 index 0000000..edec216 --- /dev/null +++ b/ransomware-roles/machinetag.json @@ -0,0 +1,46 @@ +{ + "namespace": "ransomware-roles", + "expanded": "Ransomware Actor Roles", + "description": "The seven roles seen in most ransomware incidents.", + "refs": [ + "https://www.northwave-security.com/" + ], + "version": 1, + "predicates": [ + { + "value": "1 - Initial Access Broker", + "expanded": "1 - Initial Access Broker", + "description": "Initial Access Brokers obtain the initial access to organizations. They monetize this access by offering it for sale to any actor." + }, + { + "value": "2 - Ransomware Affiliate", + "expanded": "2 - Ransomware Affiliate", + "description": "Ransomware affiliates are responsible for obtaining control of a victim's network and monetizing it. They perform reconnaissance of the network as well as privilege escalation, and are responsible for destroying any backup options and deployment of ransomware. Ransomware Affiliates can make use of different ransomware families in different attacks." + }, + { + "value": "3 - Data Manager", + "expanded": "3 - Data Manager", + "description": "Data managers are responsible for exfiltrating data as well as managing and leaking that exfiltrated data when necessary." + }, + { + "value": "4 - Ransomware Operator", + "expanded": "4 - Ransomware Operator", + "description": "Ransomware Operators facilitate the ransomware business model by providing ransomware and hosting the infrastructure needed to run it." + }, + { + "value": "5 - Negotiator", + "expanded": "5 - Negotiator", + "description": "Negotiators are responsible for interacting with the victim and coming to an agreement with the victim regarding the ransom payment." + }, + { + "value": "6 - Chaser", + "expanded": "6 - Chaser", + "description": "Chasers put pressure on the victim by emailing and calling key employee. Chasers threaten these employees with continued attacks or publication of confidential data if the ransom is not payed." + }, + { + "value": "7 - Accountant", + "expanded": "7 - Accountant", + "description": "Accountants launder the ransom." + } + ] +} diff --git a/runtime-packer/machinetag.json b/runtime-packer/machinetag.json index dac4ad7..4057e37 100644 --- a/runtime-packer/machinetag.json +++ b/runtime-packer/machinetag.json @@ -1,15 +1,23 @@ { "namespace": "runtime-packer", - "description": "Runtime or software packer used to combine compressed data with the decompression code. The decompression code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries.", - "version": 1, + "description": "Runtime or software packer used to combine compressed or encrypted data with the decompression or decryption code. This code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries.", + "version": 2, "predicates": [ { - "value": "portable-executable", - "expanded": "Portable Executable (PE)" + "value": "dex", + "expanded": "Dalvik Executable (DEX)" }, { "value": "elf", - "expanded": "ELF" + "expanded": "Executable Linkable Format (ELF)" + }, + { + "value": "macho", + "expanded": "Mach-object (Mach-O)" + }, + { + "value": "pe", + "expanded": "Portable Executable (PE)" }, { "value": "cli-assembly", @@ -18,12 +26,99 @@ ], "values": [ { - "predicate": "portable-executable", + "predicate": "dex", + "entry": [ + { + "value": "apk-protect", + "expanded": "APK Protect" + }, + { + "value": "dexguard", + "expanded": "DexGuard" + }, + { + "value": "dexprotector", + "expanded": "DexProtector" + } + ] + }, + { + "predicate": "elf", + "entry": [ + { + "value": "bzexe", + "expanded": "BzExe" + }, + { + "value": "ezuri", + "expanded": "Ezuri" + }, + { + "value": "gzexe", + "expanded": "GzExe" + }, + { + "value": "midgetpack", + "expanded": "MidgetPack" + }, + { + "value": "pakkero", + "expanded": "Pakkero" + }, + { + "value": "papaw", + "expanded": "Papaw" + }, + { + "value": "shiva", + "expanded": "Shiva" + }, + { + "value": "upx", + "expanded": "UPX" + } + ] + }, + { + "predicate": "macho", + "entry": [ + { + "value": "eleckey", + "expanded": "ElecKey" + }, + { + "value": "muncho", + "expanded": "Muncho" + }, + { + "value": "mpress", + "expanded": "MPRESS" + }, + { + "value": "upx", + "expanded": "UPX" + } + ] + }, + { + "predicate": "pe", "entry": [ { "value": ".netshrink", "expanded": ".netshrink" }, + { + "value": "acprotect", + "expanded": "ACProtect" + }, + { + "value": "alienyze", + "expanded": "Alienyze" + }, + { + "value": "apack", + "expanded": "aPack" + }, { "value": "armadillo", "expanded": "Armadillo" @@ -33,8 +128,20 @@ "expanded": "ASPack" }, { - "value": "aspr-asprotect", - "expanded": "ASPR (ASProtect)" + "value": "asprotect", + "expanded": "ASProtect" + }, + { + "value": "autoit", + "expanded": "AutoIT" + }, + { + "value": "axprotector", + "expanded": "AxProtector" + }, + { + "value": "bero", + "expanded": "BeRo EXE Packer" }, { "value": "boxedapp-packer", @@ -44,14 +151,34 @@ "value": "cexe", "expanded": "CExe" }, + { + "value": "code-virtualizer", + "expanded": "Code Virtualizer" + }, + { + "value": "confuserex", + "expanded": "ConfuserEx" + }, { "value": "dotbundle", "expanded": "dotBundle" }, + { + "value": "dragon-armor", + "expanded": "Dragon Armor" + }, + { + "value": "eleckey", + "expanded": "ElecKey" + }, { "value": "enigma-protector", "expanded": "Enigma Protector" }, + { + "value": "enigma-virtual-box", + "expanded": "Enigma Virtual Box" + }, { "value": "exe-bundle", "expanded": "EXE Bundle" @@ -60,6 +187,10 @@ "value": "exe-stealth", "expanded": "EXE Stealth" }, + { + "value": "exe32pack", + "expanded": "EXE32Pack" + }, { "value": "expressor", "expanded": "eXPressor" @@ -69,32 +200,84 @@ "expanded": "FSG" }, { - "value": "kkrunchy-src", - "expanded": "kkrunchy src" + "value": "hxor-packer", + "expanded": "hXOR Packer" + }, + { + "value": "jdpack", + "expanded": "JDPack" + }, + { + "value": "kkrunchy", + "expanded": "Kkrunchy" + }, + { + "value": "liapp", + "expanded": "LIAPP" }, { "value": "mew", "expanded": "MEW" }, + { + "value": "molebox", + "expanded": "MoleBox" + }, + { + "value": "morphine", + "expanded": "Morphine" + }, { "value": "mpress", "expanded": "MPRESS" }, + { + "value": "neolite", + "expanded": "Neolite" + }, + { + "value": "netcrypt", + "expanded": "NetCrypt" + }, + { + "value": "nspack", + "expanded": "NSPack" + }, { "value": "obsidium", "expanded": "Obsidium" }, + { + "value": "packman", + "expanded": "Packman" + }, + { + "value": "pecompact", + "expanded": "PECompact" + }, { "value": "pelock", "expanded": "PELock" }, + { + "value": "pepacker", + "expanded": "PE Packer" + }, + { + "value": "peshield", + "expanded": "PEShield" + }, { "value": "pespin", "expanded": "PESpin" }, { "value": "petite", - "expanded": "Petite" + "expanded": "PEtite" + }, + { + "value": "procrypt", + "expanded": "ProCrypt" }, { "value": "rlpack-basic", @@ -104,10 +287,26 @@ "value": "smart-packer-pro", "expanded": "Smart Packer Pro" }, + { + "value": "squishy", + "expanded": "Squishy" + }, + { + "value": "telock", + "expanded": "Telock" + }, { "value": "themida", "expanded": "Themida" }, + { + "value": "thinstall", + "expanded": "Thinstall" + }, + { + "value": "upack", + "expanded": "UPack" + }, { "value": "upx", "expanded": "UPX" @@ -119,6 +318,18 @@ { "value": "xcomp-xpack", "expanded": "XComp/XPack" + }, + { + "value": "yoda-crypter", + "expanded": "Yoda's Crypter" + }, + { + "value": "yoda-protector", + "expanded": "Yoda's Protector" + }, + { + "value": "zprotect", + "expanded": "ZProtect" } ] } diff --git a/sentinel-threattype/machinetag.json b/sentinel-threattype/machinetag.json new file mode 100644 index 0000000..8d5fdfa --- /dev/null +++ b/sentinel-threattype/machinetag.json @@ -0,0 +1,56 @@ +{ + "namespace": "sentinel-threattype", + "expanded": "sentinel-threattype", + "description": "Sentinel indicator threat types.", + "version": 1, + "exclusive": true, + "refs": [ + "https://learn.microsoft.com/en-us/graph/api/resources/tiindicator?view=graph-rest-beta#threattype-values" + ], + "predicates": [ + { + "value": "Botnet", + "expanded": "Indicator is detailing a botnet node/member." + }, + { + "value": "C2", + "expanded": "Indicator is detailing a Command & Control node of a botnet." + }, + { + "value": "CryptoMining", + "expanded": "Traffic involving this network address / URL is an indication of CyrptoMining / Resource abuse." + }, + { + "value": "Darknet", + "expanded": "Indicator is that of a Darknet node/network." + }, + { + "value": "DDoS", + "expanded": "Indicators relating to an active or upcoming DDoS campaign." + }, + { + "value": "MaliciousUrl", + "expanded": "URL that is serving malware." + }, + { + "value": "Malware", + "expanded": "Indicator describing a malicious file or files." + }, + { + "value": "Phishing", + "expanded": "Indicators relating to a phishing campaign." + }, + { + "value": "Proxy", + "expanded": "Indicator is that of a proxy service." + }, + { + "value": "PUA", + "expanded": "Potentially Unwanted Application." + }, + { + "value": "WatchList", + "expanded": "This is the generic bucket into which indicators are placed when it cannot be determined exactly what the threat is or will require manual interpretation. This should typically not be used by partners submitting data into the system." + } + ] +} diff --git a/social-engineering-attack-vectors/machinetag.json b/social-engineering-attack-vectors/machinetag.json new file mode 100644 index 0000000..8499a10 --- /dev/null +++ b/social-engineering-attack-vectors/machinetag.json @@ -0,0 +1,104 @@ +{ + "version": 1, + "description": "Attack vectors used in social engineering as described in 'A Taxonomy of Social Engineering Defense Mechanisms' by Dalal Alharthi and others.", + "expanded": "Social Engineering Attack Vectors", + "namespace": "social-engineering-attack-vectors", + "exclusive": false, + "predicates": [ + { + "value": "technical", + "expanded": "Technical" + }, + { + "value": "non-technical", + "expanded": "Non-technical" + } + ], + "values": [ + { + "predicate": "technical", + "entry": [ + { + "value": "vishing", + "expanded": "Vishing" + }, + { + "value": "spear-phishing", + "expanded": "Spear phishing" + }, + { + "value": "interesting-software", + "expanded": "Interesting software" + }, + { + "value": "baiting", + "expanded": "Baiting" + }, + { + "value": "waterholing", + "expanded": "Waterholing" + }, + { + "value": "phishing-and-trojan-email", + "expanded": "Phishing and Trojan email" + }, + { + "value": "spam-email", + "expanded": "Spam Email" + }, + { + "value": "popup-window", + "expanded": "Popup Window" + }, + { + "value": "tailgating", + "expanded": "Tailgating" + } + ] + }, + { + "predicate": "non-technical", + "entry": [ + { + "value": "pretexting-impersonation", + "expanded": "Pretexting/Impersonation" + }, + { + "value": "hoaxing", + "expanded": "Hoaxing" + }, + { + "value": "authoritative-voice", + "expanded": "Authoritative voice" + }, + { + "value": "technical-expert", + "expanded": "Technical expert" + }, + { + "value": "smudge-attack", + "expanded": "Smudge Attack" + }, + { + "value": "dumpser-diving", + "expanded": "Dumpster Diving" + }, + { + "value": "shoulder-surfing", + "expanded": "Shoulder surfing" + }, + { + "value": "spying", + "expanded": "Spying" + }, + { + "value": "support-staff", + "expanded": "Support staff" + } + ] + } + ], + "refs": [ + "https://www.researchgate.net/publication/339224082_A_Taxonomy_of_Social_Engineering_Defense_Mechanisms" + ] +} diff --git a/srbcert/machinetag.json b/srbcert/machinetag.json new file mode 100644 index 0000000..f0ccbb1 --- /dev/null +++ b/srbcert/machinetag.json @@ -0,0 +1,193 @@ +{ + "namespace": "srbcert", + "description": "SRB-CERT Taxonomy - Schemes of Classification in Incident Response and Detection", + "version": 3, + "predicates": [ + { + "value": "incident-type", + "expanded": "Incident Type" + }, + { + "value": "incident-criticality-level", + "expanded": "Incident Criticality Level" + } + ], + "values": [ + { + "predicate": "incident-type", + "entry": [ + { + "value": "virus", + "expanded": "virus", + "description": "Virus is a piece of malicious code that aims to spread from computer to computer by attacking executable files and documents and can cause deliberate deletion of files from the hard drive and similar damage" + }, + { + "value": "worm", + "expanded": "worm", + "description": "Worm is a program that contains malicious code that spreads over a network, in such a way that it can reproduce and transfer , which reproduces and transfers independently, i.e. it does not depend on the files of the infected person device. Worms spread to email addresses from the victim's contact list or exploit the vulnerabilities of network applications and, due to the high speed of propagation, serve for transmission of other types of malicious software " + }, + { + "value": "ransomware", + "expanded": "Ransomware" + }, + { + "value": "trojan", + "expanded": "Trojan" + }, + { + "value": "spyware", + "expanded": "Spyware" + }, + { + "value": "rootkit", + "expanded": "Rootkit" + }, + { + "value": "malware", + "expanded": "Malware is a word derived from two words - Malicious Software, and represents any software that is written for malicious purposes, i.e. that aims to cause harm computer systems or networks" + }, + { + "value": "port-scanning", + "expanded": "Port scanning" + }, + { + "value": "sniffing", + "expanded": "Sniffing" + }, + { + "value": "social-engineering", + "expanded": "Social engineering" + }, + { + "value": "data-breaches", + "expanded": "Data breaches" + }, + { + "value": "other-type-of-information-gathering", + "expanded": "Other type of information gathering" + }, + { + "value": "phishing", + "expanded": "Phishing" + }, + { + "value": "unauthorized-use-of-resources", + "expanded": "Unauthorized use of resources" + }, + { + "value": "fraud", + "expanded": "Fraud" + }, + { + "value": "exploiting-known-vulnerabilities", + "expanded": "Exploiting known vulnerabilities" + }, + { + "value": "brute-force", + "expanded": "Brute force" + }, + { + "value": "other-type-of-intrusion-attempts", + "expanded": "Other type of Intrusion Attempts" + }, + { + "value": "privilege-account-compromise", + "expanded": "Privilege account compromise" + }, + { + "value": "unprivileged-account-compromise", + "expanded": "Unprivileged account compromise" + }, + { + "value": "application-compromise", + "expanded": "Application compromise" + }, + { + "value": "botnet", + "expanded": "Botnet" + }, + { + "value": "other-type-of-intrusions", + "expanded": "Other type of intrusions" + }, + { + "value": "dos", + "expanded": "DoS" + }, + { + "value": "ddos", + "expanded": "DDoS" + }, + { + "value": "sabotage", + "expanded": "Sabotage" + }, + { + "value": "outage", + "expanded": "Outage" + }, + { + "value": "other-type-of-availability-incident", + "expanded": "Other type of Availability incident" + }, + { + "value": "unauthorized-access-to-information", + "expanded": "Unauthorized access to information" + }, + { + "value": "unauthorized-modification-of-information", + "expanded": "Unauthorized modification of information" + }, + { + "value": "cryptographic-attack", + "expanded": "Cryptographic attack" + }, + { + "value": "other-type-of-information-content-security-incident", + "expanded": "Other type of Information Content Security incident" + }, + { + "value": "hardware-errors", + "expanded": "Hardware errors" + }, + { + "value": "software-errors", + "expanded": "Software errors" + }, + { + "value": "hardware-components-theft", + "expanded": "hardware-components-theft" + }, + { + "value": "other", + "expanded": "Other" + } + ] + }, + { + "predicate": "incident-criticality-level", + "entry": [ + { + "value": "low", + "expanded": "Low", + "numerical_value": 25 + }, + { + "value": "medium", + "expanded": "Medium", + "numerical_value": 50 + }, + { + "value": "high", + "expanded": "High", + "numerical_value": 75 + }, + { + "value": "very-high", + "expanded": "Very High", + "numerical_value": 100 + } + ] + } + ] +} diff --git a/state-responsibility/README.md b/state-responsibility/README.md new file mode 100644 index 0000000..549aae7 --- /dev/null +++ b/state-responsibility/README.md @@ -0,0 +1,3 @@ +# State Responsibility + +The taxonomy is inspired on an article from Jason Healey in the Atlantic Council [Beyond Attribution: Seeking National Responsibility for Cyber Attacks](https://www.atlanticcouncil.org/wp-content/uploads/2012/02/022212_ACUS_NatlResponsibilityCyber.PDF). \ No newline at end of file diff --git a/state-responsibility/machinetag.json b/state-responsibility/machinetag.json new file mode 100644 index 0000000..884d848 --- /dev/null +++ b/state-responsibility/machinetag.json @@ -0,0 +1,61 @@ +{ + "predicates": [ + { + "description": "The national government will help stop the third-party attack, which may originate from its territory or merely be transiting through its networks. This responsibility is the most passive on the scale: though the government is cooperating, it still has some small share of responsibility for the insecure systems involved in the attack. In reality, nations cannot ensure the proper behavior of the tens or hundreds of millions of computers in their borders at all times.", + "expanded": "State-prohibited.", + "value": "state-prohibited." + }, + { + "description": "The national government is cooperative and would stop the third-party attack but is unable to do so. The country might lack the proper laws, procedures, technical tools, or political will to use them. Though the nation could itself be a victim, it bears some passive responsibility for the attack, both for being unable to stop it and for having insecure systems in the first place.", + "expanded": "State-prohibited-but-inadequate", + "value": "state-prohibited-but-inadequate." + }, + { + "description": "The national government knows about the third-party attacks but, as a matter of policy, is unwilling to take any official action. A government may even agree with the goals and results of the attackers and tip them off to avoid being detected.", + "expanded": "State-ignored", + "value": "state-ignored" + }, + { + "description": "Third parties control and conduct the attack, but the national government encourages them to continue as a matter of policy. This encouragement could include editorials in state-run press or leadership publicly agreeing with the goals of the attacks; members of government cyber offensive or intelligence organizations may be encouraged to undertake supportive recreational hacking while off duty. The nation is unlikely to be cooperative in any investigation and is likely to tip off the attackers", + "expanded": "State-encouraged", + "value": "state-encouraged" + }, + { + "description": "Third parties control and conduct the attack, but the state provides some support, such as informal coordination between like-minded individuals in the government and the attacking group. To further their policy while retaining plausible deniability, the government may encourage members of their cyber forces to undertake 'recreational hacking' while off duty.", + "expanded": "State-shaped", + "value": "state-shaped" + }, + { + "description": "The national government coordinates the third-party attackers—usually out of public view—by 'suggesting' targets, timing, or other operational details. The government may also provide technical or tactical assistance. Similar to state-shaped attacks, the government may encourage its cyber forces to engage in recreational hacking during off hours", + "expanded": "State-coordinated", + "value": "state-coordinated" + }, + { + "description": "The national government, as a matter of policy, directs third-party proxies to conduct the attack on its behalf. This is as “state-sponsored” as an attack can be, without direct attack from government cyber forces. Any attackers that are under state control could be considered to be de facto agents of the state under international law.", + "expanded": "State-ordered", + "value": "state-ordered" + }, + { + "description": "Elements of cyber forces of the national government conduct the attack. In this case, however, they carry out attacks without the knowledge, or approval, of the national leadership, which may act to stop the attacks should they learn of them. For example, local units or junior officers could be taking the initiative to counterattack out of the senior officers sight. More worrisome, this category could include sophisticated and persistent attacks from large bureaucracies conducting attacks that are at odds with the national leadership. Based on current precedence, a state could likely be held responsible by international courts for such rogue attacks.", + "expanded": "State-rogue-conducted.", + "value": "state-rogue-conducted" + }, + { + "description": "The national government, as a matter of policy, directly controls and conducts the attack using its own cyber forces", + "expanded": "State-executed", + "value": "state-executed" + }, + { + "description": "The national government integrates third-party attackers and government cyber forces, with common command and control. Orders and coordination may be formal or informal, but the government is in control of selecting targets, timing, and tempo. The attackers are de facto agents of the state", + "expanded": "State-integrated", + "value": "state-integrated" + } + ], + "refs": [ + "https://www.atlanticcouncil.org/wp-content/uploads/2012/02/022212_ACUS_NatlResponsibilityCyber.PDF" + ], + "version": 1, + "description": "A spectrum of state responsibility to more directly tie the goals of attribution to the needs of policymakers.", + "expanded": "The Spectrum of State Responsibility", + "namespace": "state-responsibility" +} diff --git a/summary.md b/summary.md index 2c7ce10..998bad3 100644 --- a/summary.md +++ b/summary.md @@ -1,5 +1,5 @@ # Taxonomies -- Generation date: 2021-04-13 +- Generation date: 2023-12-31 - license: CC-0 - description: Manifest file of MISP taxonomies available. @@ -55,13 +55,29 @@ - 2 - 1 - 0 +### GrayZone +- description: Gray Zone of Active defense includes all elements which lay between reactive defense elements and offensive operations. It does fill the gray spot between them. Taxo may be used for active defense planning or modeling. +- version: 3 +- Predicates + - Adversary Emulation + - Beacons + - Deterrence + - Deception + - Tarpits, Sandboxes and Honeypots + - Threat Intelligence + - Threat Hunting + - Adversary Takedowns + - Ransomware + - Rescue Missions + - Sanctions, Indictments & Trade Remedies ### PAP - description: The Permissible Actions Protocol - or short: PAP - was designed to indicate how the received information can be used. -- version: 2 +- version: 3 - Predicates - RED - AMBER - GREEN + - CLEAR - WHITE ### access-method - description: The access method used to remotely access a system. @@ -154,6 +170,33 @@ - cat4 - cat5 - cat6 +### artificial-satellites +- description: This taxonomy was designed to describe artificial satellites +- version: 1 +- Predicates + - Meteorological and Earth observation + - Indian Space Research + - GEO + - Tracking + - Search & Rescue + - Earth Ressources + - Disaster Monitoring + - GNSS + - Space & Earth Science + - Geodetic + - Engineering + - Education +### aviation +- description: A taxonomy describing security threats or incidents against the aviation sector. +- version: 1 +- Predicates + - target + - target-systems + - target-sub-systems + - impact + - likelihood + - criticality + - certainty ### binary-class - description: Custom taxonomy for types of binary file. - version: 2 @@ -179,11 +222,25 @@ - severity - threat-vector ### circl -- description: CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection -- version: 5 +- description: CIRCL Taxonomy - Schemes of Classification in Incident Response and Detection. +- version: 6 - Predicates - incident-classification - topic + - significant +### cnsd +- description: La presente taxonomia es la primera versión disponible para el Centro Nacional de Seguridad Digital del Perú. +- version: 20220513 +- Predicates + - Contenido abusivo + - Disponibilidad + - Fraude + - Fuga de información + - Intentos de intrusión + - Intrusión + - Malware + - Recopilación de información + - Otros ### coa - description: Course of action taken within organization to discover, detect, deny, disrupt, degrade, deceive and/or destroy an attack. - version: 2 @@ -229,10 +286,17 @@ - level-1 ### course-of-action - description: A Course Of Action analysis considers six potential courses of action for the development of a cyber security capability. -- version: 1 +- version: 2 - Predicates - passive - active +### crowdsec +- description: Crowdsec IP address classifications and behaviors taxonomy. +- version: 1 +- Predicates + - behavior + - false-positive + - classification ### cryptocurrency-threat - description: Threats targetting cryptocurrency, based on CipherTrace report. - version: 1 @@ -247,6 +311,7 @@ - Decentralized Stable Coins - Email Extortion and Bomb Threats - Crypto Robbing Ransomware + - Pig Butchering Scam ### csirt-americas - description: Taxonomía CSIRT Américas. - version: 1 @@ -316,12 +381,14 @@ - Predicates - action ### dark-web -- description: Criminal motivation on the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project -- version: 3 +- description: Criminal motivation and content detection the dark web: A categorisation model for law enforcement. ref: Janis Dalins, Campbell Wilson, Mark Carman. Taxonomy updated by MISP Project and extended by the JRC (Joint Research Centre) of the European Commission. +- version: 5 - Predicates - topic - motivation - structure + - service + - content ### data-classification - description: Data classification for data potentially at risk of exfiltration based on table 2.1 of Solving Cyber Risk book. - version: 1 @@ -347,6 +414,160 @@ - Predicates - Einstufung - Schutzwort +### death-possibilities +- description: Taxonomy of Death Possibilities +- version: 1 +- Predicates + - (001-009) Intestinal infectious diseases + - (010-018) Tuberculosis + - (020-027) Zoonotic bacterial diseases + - (030-041) Other bacterial diseases + - (042-042) Human immunodeficiency virus [HIV] infection + - (045-049) Poliomyelitis and other non-arthropod-borne viral diseases of central nervous system + - (050-057) Viral diseases accompanied by exanthem + - (060-066) Arthropod-borne viral diseases + - (070-079) Other diseases due to viruses and Chlamydiae + - (080-088) Rickettsioses and other arthropod-borne diseases + - (090-099) Syphilis and other venereal diseases + - (100-104) Other spirochaetal diseases + - (110-118) Mycoses + - (120-129) Helminthiases + - (130-136) Other infectious and parasitic diseases + - (137-139) Late effects of infectious and parasitic diseases + - (140-149) Malignant neoplasm of lip, oral cavity and pharynx + - (150-159) Malignant neoplasm of digestive organs and peritoneum + - (160-165) Malignant neoplasm of respiratory and intrathoracic organs + - (170-176) Malignant neoplasm of bone, connective tissue, skin and breast + - (179-189) Malignant neoplasm of genito-urinary organs + - (190-199) Malignant neoplasm of other and unspecified sites + - (200-208) Malignant neoplasm of lymphatic and haematopoietic tissue + - (210-229) Benign neoplasms + - (230-234) Carcinoma in situ + - (235-238) Neoplasms of uncertain behaviour + - (239-239) Neoplasms of unspecified nature + - (240-246) Disorders of thyroid gland + - (250-259) Diseases of other endocrine glands + - (260-269) Nutritional deficiencies + - (270-279) Other metabolic disorders and immunity disorders + - (280-289) Diseases of blood and blood-forming organs + - (290-294) Organic psychotic conditions + - (295-299) Other psychoses + - (300-316) Neurotic disorders, personality disorders and other nonpsychotic mental disorders + - (317-319) Mental retardation + - (320-326) Inflammatory diseases of the central nervous system + - (330-337) Hereditary and degenerative diseases of the central nervous system + - (340-349) Other disorders of the central nervous system + - (350-359) Disorders of the peripheral nervous system + - (360-379) Disorders of the eye and adnexa + - (380-389) Diseases of the ear and mastoid process + - (390-392) Acute rheumatic fever + - (393-398) Chronic rheumatic heart disease + - (401-405) Hypertensive disease + - (410-414) Ischaemic heart disease + - (415-417) Diseases of pulmonary circulation + - (420-429) Other forms of heart disease + - (430-438) Cerebrovascular disease + - (440-448) Diseases of arteries, arterioles and capillaries + - (451-459) Diseases of veins and lymphatics, and other diseases of circulatory system + - (460-466) Acute respiratory infections + - (470-478) Other diseases of upper respiratory tract + - (480-487) Pneumonia and influenza + - (490-496) Chronic obstructive pulmonary disease and allied conditions + - (500-508) Pneumoconioses and other lung diseases due to external agents + - (510-519) Other diseases of respiratory system + - (520-529) Diseases of oral cavity, salivary glands and jaws + - (530-537) Diseases of oesophagus, stomach and duodenum + - (540-543) Appendicitis + - (550-553) Hernia of abdominal cavity + - (555-558) Non-infective enteritis and colitis + - (560-569) Other diseases of intestines and peritoneum + - (570-579) Other diseases of digestive system + - (580-589) Nephritis, nephrotic syndrome and nephrosis + - (590-599) Other diseases of urinary system + - (600-608) Diseases of male genital organs + - (610-611) Disorders of breast + - (614-616) Inflammatory disease of female pelvic organs + - (617-629) Other disorders of female genital tract + - (630-633) Ectopic and molar pregnancy + - (634-639) Other pregnancy with abortive outcome + - (640-648) Complications mainly related to pregnancy + - (650-659) Normal delivery and other indications for care in pregnancy, labour and delivery + - (660-669) Complications occurring mainly in the course of labour and delivery + - (670-677) Complications of the puerperium + - (680-686) Infections of skin and subcutaneous tissue + - (690-698) Other inflammatory conditions of skin and subcutaneous tissue + - (700-709) Other diseases of skin and subcutaneous tissue + - (710-719) Arthropathies and related disorders + - (720-724) Dorsopathies + - (725-729) Rheumatism, excluding the back + - (730-739) Osteopathies, chondropathies and acquired musculoskeletal deformities + - (740-759) Congenital anomalies + - (760-763) Maternal causes of perinatal morbidity and mortality + - (764-779) Other conditions originating in the perinatal period + - (780-789) Symptoms + - (790-796) Nonspecific abnormal findings + - (797-799) Ill-defined and unknown causes of morbidity and mortality + - (800-804) Fracture of skull + - (805-809) Fracture of neck and trunk + - (810-819) Fracture of upper limb + - (820-829) Fracture of lower limb + - (830-839) Dislocation + - (840-848) Sprains and strains of joints and adjacent muscles + - (850-854) Intracranial injury, excluding those with skull fracture + - (860-869) Internal injury of chest, abdomen and pelvis + - (870-879) Open wound of head, neck and trunk + - (880-887) Open wound of upper limb + - (890-897) Open wound of lower limb + - (900-904) Injury to blood vessels + - (905-909) Late effects of injuries, poisonings, toxic effects and other external causes + - (910-919) Superficial injury + - (920-924) Contusion with intact skin surface + - (925-929) Crushing injury + - (930-939) Effects of foreign body entering through orifice + - (940-949) Burns + - (950-957) Injury to nerves and spinal cord + - (958-959) Certain traumatic complications and unspecified injuries + - (960-979) Poisoning by drugs, medicaments and biological substances + - (980-989) Toxic effects of substances chiefly nonmedicinal as to source + - (990-995) Other and unspecified effects of external causes + - (996-999) Complications of surgical and medical care, not elsewhere classified + - (E800-E807) Railway accidents + - (E810-E819) Motor vehicle traffic accidents + - (E820-E825) Motor vehicle nontraffic accidents + - (E826-E829) Other road vehicle accidents + - (E830-E838) Water transport accidents + - (E840-E845) Air and space transport accidents + - (E846-E848) Vehicle accidents not elsewhere classifiable + - (E849-E858) Accidental poisoning by drugs, medicaments and biologicals + - (E860-E869) Accidental poisoning by other solid and liquid substances, gases and vapours + - (E870-E876) Misadventures to patients during surgical and medical care + - (E878-E879) Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure + - (E880-E888) Accidental falls + - (E890-E899) Accidents caused by fire and flames + - (E900-E909) Accidents due to natural and environmental factors + - (E910-E915) Accidents caused by submersion, suffocation and foreign bodies + - (E916-E928) Other accidents + - (E929-E929) Late effects of accidental injury + - (E930-E949) Drugs, medicaments and biological substances causing adverse effects in therapeutic use + - (E950-E959) Suicide and self-inflicted injury + - (E960-E969) Homicide and injury purposely inflicted by other persons +### deception +- description: Deception is an important component of information operations, valuable for both offense and defense. +- version: 1 +- Predicates + - space + - time + - participant + - causality + - quality + - essence + - speech-act-theory +### dga +- description: A taxonomy to describe domain-generation algorithms often called DGA. Ref: A Comprehensive Measurement Study of Domain Generating Malware Daniel Plohmann and others. +- version: 2 +- Predicates + - generation-scheme + - seeding ### dhs-ciip-sectors - description: DHS critical sectors as in https://www.dhs.gov/critical-infrastructure-sectors - version: 2 @@ -361,6 +582,15 @@ - Capability - Infrastructure - Victim +### diamond-model-for-influence-operations +- description: The diamond model for influence operations analysis is a framework that leads analysts and researchers toward a comprehensive understanding of a malign influence campaign by addressing the socio-political, technical, and psychological aspects of the campaign. The diamond model for influence operations analysis consists of 5 components: 4 corners and a core element. The 4 corners are divided into 2 axes: influencer and audience on the socio-political axis, capabilities and infrastructure on the technical axis. Narrative makes up the core of the diamond. +- version: 1 +- Predicates + - Influencer + - Capabilities + - Infrastructure + - Audience + - Narrative ### dni-ism - description: A subset of Information Security Marking Metadata ISM as required by Executive Order (EO) 13526. As described by DNI.gov as Data Encoding Specifications for Information Security Marking Metadata in Controlled Vocabulary Enumeration Values for ISM - version: 3 @@ -375,11 +605,28 @@ - nonuscontrols - dissem ### domain-abuse -- description: Domain Name Abuse - taxonomy to tag domain names used for cybercrime. Use europol-incident to tag abuse-activity -- version: 1 +- description: Domain Name Abuse - taxonomy to tag domain names used for cybercrime. +- version: 2 - Predicates - domain-status - domain-access-method +### doping-substances +- description: This taxonomy aims to list doping substances +- version: 2 +- Predicates + - anabolic agents + - peptide hormones, growth factors, related substances and mimetics + - beta-2 agonists + - hormone and metabolic modulators + - diuretics and masking agents + - manipulation of blood and blood components + - chemical and physical manipulation + - gene and cell doping + - stimulants + - narcotics + - cannabinoids + - glucocorticoids + - beta-blockers ### drugs - description: A taxonomy based on the superclass and class of drugs. Based on https://www.drugbank.ca/releases/latest - version: 2 @@ -549,7 +796,7 @@ - event-class ### exercise - description: Exercise is a taxonomy to describe if the information is part of one or more cyber or crisis exercise. -- version: 8 +- version: 10 - Predicates - cyber-europe - cyber-storm @@ -560,14 +807,15 @@ - cyber-sopex - generic ### extended-event -- description: Reasons why an event has been extended. -- version: 1 +- description: Reasons why an event has been extended. This taxonomy must be used on the extended event. The competitive analysis aspect is from Psychology of Intelligence Analysis by Richard J. Heuer, Jr. ref:http://www.foo.be/docs/intelligence/PsychofIntelNew.pdf +- version: 2 - Predicates - competitive-analysis - extended-analysis - human-readable - chunked-event - update + - counter-analysis ### failure-mode-in-machine-learning - description: The purpose of this taxonomy is to jointly tabulate both the of these failure modes in a single place. Intentional failures wherein the failure is caused by an active adversary attempting to subvert the system to attain her goals – either to misclassify the result, infer private training data, or to steal the underlying algorithm. Unintentional failures wherein the failure is because an ML system produces a formally correct but completely unsafe outcome. - version: 1 @@ -576,7 +824,7 @@ - unintended-failures-summary ### false-positive - description: This taxonomy aims to ballpark the expected amount of false positives. -- version: 5 +- version: 7 - Predicates - risk - confirmed @@ -585,6 +833,15 @@ - version: 1 - Predicates - type +### financial +- description: Financial taxonomy to describe financial services, infrastructure and financial scope. +- version: 7 +- Predicates + - categories-and-types-of-services + - geographical-footprint + - online-exposition + - physical-presence + - services ### flesch-reading-ease - description: Flesch Reading Ease is a revised system for determining the comprehension difficulty of written material. The scoring of the flesh score can have a maximum of 121.22 and there is no limit on how low a score can be (negative score are valid). - version: 2 @@ -600,11 +857,11 @@ - anonymous-data ### fr-classif - description: French gov information classification system -- version: 3 +- version: 6 - Predicates - - classifiees-defense - - non-classifiees-defense + - classifiees - non-classifiees + - special-france ### gdpr - description: Taxonomy related to the REGULATION (EU) 2016/679 OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (General Data Protection Regulation) - version: 0 @@ -809,6 +1066,13 @@ - submission - output-format - certainty +### information-origin +- description: Taxonomy for tagging information by its origin: human-generated or AI-generated. +- version: 2 +- Predicates + - human-generated + - AI-generated + - uncertain-origin ### information-security-data-source - description: Taxonomy to classify the information security data sources. - version: 1 @@ -836,6 +1100,35 @@ - VTC - VOR - IMP +### interactive-cyber-training-audience +- description: Describes the target of cyber training and education. +- version: 1 +- Predicates + - sector + - purpose + - proficiency-level + - target-audience +### interactive-cyber-training-technical-setup +- description: The technical setup consists of environment structure, deployment, and orchestration. +- version: 1 +- Predicates + - environment-structure + - deployment + - orchestration +### interactive-cyber-training-training-environment +- description: The training environment details the environment around the training, consisting of training type and scenario. +- version: 1 +- Predicates + - training-type + - scenario +### interactive-cyber-training-training-setup +- description: The training setup further describes the training itself with the scoring, roles, the training mode as well as the customization level. +- version: 1 +- Predicates + - scoring + - roles + - training-mode + - customization-level ### interception-method - description: The interception method used to intercept traffic. - version: 1 @@ -929,8 +1222,16 @@ - should-not-sync - tool - misp2yara - - ids - event-type + - ids +### misp-workflow +- description: MISP workflow taxonomy to support result of workflow execution. +- version: 3 +- Predicates + - action-taken + - analysis + - mutability + - run ### monarc-threat - description: MONARC Threats Taxonomy - version: 1 @@ -975,6 +1276,19 @@ - nature-root-cause - nature-severity - test +### nis2 +- description: The taxonomy is meant for large scale cybersecurity incidents, as mentioned in the Commission Recommendation of 13 May 2022, also known as the provisional agreement. It has two core parts: The nature of the incident, i.e. the underlying cause, that triggered the incident, and the impact of the incident, i.e. the impact on services, in which sector(s) of economy and society. +- version: 3 +- Predicates + - impact-sectors-impacted + - impact-subsectors-impacted + - important-entities + - impact-subsectors-important-entities + - impact-severity + - impact-outlook + - nature-root-cause + - nature-severity + - test ### open_threat - description: Open Threat Taxonomy v1.1 base on James Tarala of SANS http://www.auditscripts.com/resources/open_threat_taxonomy_v1.1a.pdf, https://files.sans.org/summit/Threat_Hunting_Incident_Response_Summit_2016/PDFs/Using-Open-Tools-to-Convert-Threat-Intelligence-into-Practical-Defenses-James-Tarala-SANS-Institute.pdf, https://www.youtube.com/watch?v=5rdGOOFC_yE, and https://www.rsaconference.com/writable/presentations/file_upload/str-r04_using-an-open-source-threat-model-for-prioritized-defense-final.pdf - version: 1 @@ -1015,7 +1329,7 @@ - vulnerability ### phishing - description: Taxonomy to classify phishing attacks including techniques, collection mechanisms and analysis status. -- version: 4 +- version: 5 - Predicates - techniques - distribution @@ -1025,6 +1339,18 @@ - state - psychological-acceptability - principle-of-persuasion +### poison-taxonomy +- description: Non-exhaustive taxonomy of natural poison +- version: 1 +- Predicates + - Poisonous plant + - Poisonous fungus +### political-spectrum +- description: A political spectrum is a system to characterize and classify different political positions in relation to one another. +- version: 1 +- Predicates + - ideology + - left-right-spectrum ### priority-level - description: After an incident is scored, it is assigned a priority level. The six levels listed below are aligned with NCCIC, DHS, and the CISS to help provide a common lexicon when discussing incidents. This priority assignment drives NCCIC urgency, pre-approved incident response offerings, reporting requirements, and recommendations for leadership escalation. Generally, incident priority distribution should follow a similar pattern to the graph below. Based on https://www.us-cert.gov/NCCIC-Cyber-Incident-Scoring-System. - version: 2 @@ -1036,6 +1362,20 @@ - low - baseline-minor - baseline-negligible +### pyoti +- description: PyOTI automated enrichment schemes for point in time classification of indicators. +- version: 3 +- Predicates + - checkdmarc + - disposable-email + - emailrepio + - iris-investigate + - virustotal + - circl-hashlookup + - reputation-block-list + - abuseipdb + - greynoise-riot + - googlesafebrowsing ### ransomware - description: Ransomware is used to define ransomware types and the elements that compose them. - version: 6 @@ -1048,6 +1388,17 @@ - infection - communication - malicious-action +### ransomware-roles +- description: The seven roles seen in most ransomware incidents. +- version: 1 +- Predicates + - 1 - Initial Access Broker + - 2 - Ransomware Affiliate + - 3 - Data Manager + - 4 - Ransomware Operator + - 5 - Negotiator + - 6 - Chaser + - 7 - Accountant ### retention - description: Add a retenion time to events to automatically remove the IDS-flag on ip-dst or ip-src attributes. We calculate the time elapsed based on the date of the event. Supported time units are: d(ays), w(eeks), m(onths), y(ears). The numerical_value is just for sorting in the web-interface and is not used for calculations. - version: 3 @@ -1065,7 +1416,7 @@ - 10y ### rsit - description: Reference Security Incident Classification Taxonomy -- version: 1002 +- version: 1003 - Predicates - abusive-content - malicious-code @@ -1084,11 +1435,13 @@ - Predicates - event-status ### runtime-packer -- description: Runtime or software packer used to combine compressed data with the decompression code. The decompression code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries. -- version: 1 +- description: Runtime or software packer used to combine compressed or encrypted data with the decompression or decryption code. This code can add additional obfuscations mechanisms including polymorphic-packer or other obfuscation techniques. This taxonomy lists all the known or official packer used for legitimate use or for packing malicious binaries. +- version: 2 - Predicates - - portable-executable + - dex - elf + - macho + - pe - cli-assembly ### scrippsco2-fgc - description: Flags describing the sample @@ -1134,6 +1487,21 @@ - NZD - PSA - SPO +### sentinel-threattype +- description: Sentinel indicator threat types. +- version: 1 +- Predicates + - Botnet + - C2 + - CryptoMining + - Darknet + - DDoS + - MaliciousUrl + - Malware + - Phishing + - Proxy + - PUA + - WatchList ### smart-airports-threats - description: Threat taxonomy in the scope of securing smart airports by ENISA. https://www.enisa.europa.eu/publications/securing-smart-airports - version: 1 @@ -1143,6 +1511,32 @@ - natural-and-social-phenomena - third-party-failures - malicious-actions +### social-engineering-attack-vectors +- description: Attack vectors used in social engineering as described in 'A Taxonomy of Social Engineering Defense Mechanisms' by Dalal Alharthi and others. +- version: 1 +- Predicates + - technical + - non-technical +### srbcert +- description: SRB-CERT Taxonomy - Schemes of Classification in Incident Response and Detection +- version: 3 +- Predicates + - incident-type + - incident-criticality-level +### state-responsibility +- description: A spectrum of state responsibility to more directly tie the goals of attribution to the needs of policymakers. +- version: 1 +- Predicates + - state-prohibited. + - state-prohibited-but-inadequate. + - state-ignored + - state-encouraged + - state-shaped + - state-coordinated + - state-ordered + - state-rogue-conducted + - state-executed + - state-integrated ### stealth_malware - description: Classification based on malware stealth techniques. Described in https://vxheaven.org/lib/pdf/Introducing%20Stealth%20Malware%20Taxonomy.pdf - version: 1 @@ -1159,9 +1553,23 @@ - Predicates - targeting-sophistication-base-value - technical-sophistication-multiplier -### ThreatMatch +### thales_group +- description: Thales Group Taxonomy - was designed with the aim of enabling desired sharing and preventing unwanted sharing between Thales Group security communities. +- version: 4 +- Predicates + - distribution + - to_block + - minarm + - acn + - sigpart + - a_isac + - intercert_france + - ioc_confidence + - tlp:black + - Watcher +### threatmatch - description: The ThreatMatch Sectors, Incident types, Malware types and Alert types are applicable for any ThreatMatch instances and should be used for all CIISI and TIBER Projects. -- version: 1 +- version: 3 - Predicates - sector - incident-type @@ -1175,14 +1583,17 @@ - dns-server-attacks - dns-abuse-or-misuse ### tlp -- description: The Traffic Light Protocol - or short: TLP - was designed with the objective to create a favorable classification scheme for sharing sensitive information while keeping the control over its distribution at the same time. -- version: 5 +- description: The Traffic Light Protocol (TLP) (v2.0) was created to facilitate greater sharing of potentially sensitive information and more effective collaboration. Information sharing happens from an information source, towards one or more recipients. TLP is a set of four standard labels (a fifth label is included in amber to limit the diffusion) used to indicate the sharing boundaries to be applied by the recipients. Only labels listed in this standard are considered valid by FIRST. This taxonomy includes additional labels for backward compatibility which are no more validated by FIRST SIG. +- version: 10 - Predicates - red - amber + - amber+strict - green - white + - clear - ex:chr + - unclear ### tor - description: Taxonomy to describe Tor network infrastructure - version: 1 @@ -1210,6 +1621,13 @@ - IMINT - MASINT - FININT +### unified-kill-chain +- description: The Unified Kill Chain is a refinement to the Kill Chain. +- version: 1 +- Predicates + - Initial Foothold + - Network Propagation + - Action on Objectives ### use-case-applicability - description: The Use Case Applicability categories reflect standard resolution categories, to clearly display alerting rule configuration problems. - version: 1 @@ -1289,9 +1707,9 @@ - description: VMRay taxonomies to map VMRay Thread Identifier scores and artifacts. - version: 1 - Predicates - - artifact - verdict - vti_analysis_score + - artifact ### vocabulaire-des-probabilites-estimatives - description: Ce vocabulaire attribue des valeurs en pourcentage à certains énoncés de probabilité - version: 3 @@ -1299,7 +1717,7 @@ - degré-de-probabilité ### workflow - description: Workflow support language is a common language to support intelligence analysts to perform their analysis on data and information. -- version: 10 +- version: 12 - Predicates - todo - state \ No newline at end of file diff --git a/thales_group/machinetag.json b/thales_group/machinetag.json index 3cf5706..34a5817 100644 --- a/thales_group/machinetag.json +++ b/thales_group/machinetag.json @@ -32,6 +32,20 @@ "value": "sigpart", "numerical_value": 7 }, + { + "colour": "#043C86", + "description": "This TAG will insure you to share ONLY to the Thales Group ISAC alliance. Distribution: All communities", + "expanded": "Use it when you want to share to the Thales Group ISAC alliance ONLY. Distribution: All communities", + "value": "a_isac", + "numerical_value": 8 + }, + { + "colour": "#12294D", + "description": "This TAG will insure you to share ONLY to the Thales Group InterCERT France alliance. Distribution: All communities", + "expanded": "Use it when you want to share to the Thales Group InterCERT France alliance ONLY. Distribution: All communities", + "value": "intercert_france", + "numerical_value": 9 + }, { "colour": "#75646A", "description": "Distribution: All communities", @@ -44,14 +58,14 @@ "description": "Distribution: Restricted Sharing Group", "expanded": "(TLP:BLACK) Information cannot be effectively acted outside of strict and reduced circle of a trust. Distribution: Restricted Sharing Group", "value": "tlp:black", - "numerical_value": 11 + "numerical_value": 13 }, { "colour": "#375a7f", "description": "Distribution: All communities", "expanded": "Use it when this came from Watcher Platform. Distribution: All communities", "value": "Watcher", - "numerical_value": 12 + "numerical_value": 14 } ], "values": [ @@ -94,17 +108,17 @@ { "value": "high", "expanded": "High", - "numerical_value": 8 + "numerical_value": 10 }, { "value": "medium", "expanded": "Medium", - "numerical_value": 9 + "numerical_value": 11 }, { "value": "low", "expanded": "Low", - "numerical_value": 10 + "numerical_value": 12 } ] } @@ -112,7 +126,7 @@ "refs": [ "https://www.thalesgroup.com/en/cert" ], - "version": 2, + "version": 4, "description": "Thales Group Taxonomy - was designed with the aim of enabling desired sharing and preventing unwanted sharing between Thales Group security communities.", "expanded": "Thales Group Taxonomy", "namespace": "thales_group" diff --git a/threatmatch/machinetag.json b/threatmatch/machinetag.json index 703bfdb..01068f0 100644 --- a/threatmatch/machinetag.json +++ b/threatmatch/machinetag.json @@ -437,8 +437,8 @@ "expanded": "Actor Campaigns" }, { - "value": "Credential Breaches", - "expanded": "Credential Breaches" + "value": "Credential Breach", + "expanded": "Credential Breach" }, { "value": "DDoS", @@ -453,41 +453,29 @@ "expanded": "General Notification" }, { - "value": "High Impact Vulnerabilities", - "expanded": "High Impact Vulnerabilities" + "value": "Vulnerability", + "expanded": "Vulnerability" }, { "value": "Information Leakages", "expanded": "Information Leakages" }, { - "value": "Malware Analysis", - "expanded": "Malware Analysis" + "value": "Malware", + "expanded": "Malware" }, { - "value": "Nefarious Domains", - "expanded": "Nefarious Domains" + "value": "Suspicious Domain", + "expanded": "Suspicious Domain" }, { - "value": "Nefarious Forum Mention", - "expanded": "Nefarious Forum Mention" - }, - { - "value": "Pastebin Dumps", - "expanded": "Pastebin Dumps" + "value": "Forum Mention", + "expanded": "Forum Mention" }, { "value": "Phishing Attempts", "expanded": "Phishing Attempts" }, - { - "value": "PII Exposure", - "expanded": "PII Exposure" - }, - { - "value": "Sensitive Information Disclosures", - "expanded": "Sensitive Information Disclosures" - }, { "value": "Social Media Alerts", "expanded": "Social Media Alerts" @@ -501,12 +489,28 @@ "expanded": "Technical Exposure" }, { - "value": "Threat Actor Updates", - "expanded": "Threat Actor Updates" + "value": "Threat Actor Update", + "expanded": "Threat Actor Update" }, { - "value": "Trigger Events", - "expanded": "Trigger Events" + "value": "Direct Targeting ", + "expanded": "Direct Targeting " + }, + { + "value": "Protest Activity", + "expanded": "Protest Activity" + }, + { + "value": "Violent Event", + "expanded": "Violent Event" + }, + { + "value": "Strategic Event", + "expanded": "Strategic Event" + }, + { + "value": "Insider Threat", + "expanded": "Insider Threat" } ] } diff --git a/tlp/machinetag.json b/tlp/machinetag.json index 11726fc..0861232 100755 --- a/tlp/machinetag.json +++ b/tlp/machinetag.json @@ -1,41 +1,58 @@ { "predicates": [ { - "colour": "#CC0033", - "description": "Not for disclosure, restricted to participants only. Sources may use TLP:RED when information cannot be effectively acted upon by additional parties, and could lead to impacts on a party's privacy, reputation, or operations if misused. Recipients may not share TLP:RED information with any parties outside of the specific exchange, meeting, or conversation in which it was originally disclosed. In the context of a meeting, for example, TLP:RED information is limited to those present at the meeting. In most circumstances, TLP:RED should be exchanged verbally or in person.", - "expanded": "(TLP:RED) Information exclusively and directly given to (a group of) individual recipients. Sharing outside is not legitimate.", + "colour": "#FF2B2B", + "description": "For the eyes and ears of individual recipients only, no further disclosure. Sources may use TLP:RED when information cannot be effectively acted upon without significant risk for the privacy, reputation, or operations of the organizations involved. Recipients may therefore not share TLP:RED information with anyone else. In the context of a meeting, for example, TLP:RED information is limited to those present at the meeting.", + "expanded": "(TLP:RED) For the eyes and ears of individual recipients only, no further disclosure.", "value": "red" }, { "colour": "#FFC000", - "description": "Limited disclosure, restricted to participants’ organizations. Sources may use TLP:AMBER when information requires support to be effectively acted upon, yet carries risks to privacy, reputation, or operations if shared outside of the organizations involved. Recipients may only share TLP:AMBER information with members of their own organization, and with clients or customers who need to know the information to protect themselves or prevent further harm. Sources are at liberty to specify additional intended limits of the sharing: these must be adhered to.", - "expanded": "(TLP:AMBER) Information exclusively given to an organization; sharing limited within the organization to be effectively acted upon.", + "description": "Limited disclosure, recipients can only spread this on a need-to-know basis within their organization and its clients. Sources may use TLP:AMBER when information requires support to be effectively acted upon, yet carries risk to privacy, reputation, or operations if shared outside of the organizations involved. Recipients may share TLP:AMBER information with members of their own organization and its clients, but only on a need-to-know basis to protect their organization and its clients and prevent further harm. Note that TLP:AMBER+STRICT restricts sharing to the organization only.", + "expanded": "(TLP:AMBER) Limited disclosure, recipients can only spread this on a need-to-know basis within their organization and its clients.", "value": "amber" }, { - "colour": "#339900", - "description": "Limited disclosure, restricted to the community. Sources may use TLP:GREEN when information is useful for the awareness of all participating organizations as well as with peers within the broader community or sector. Recipients may share TLP:GREEN information with peers and partner organizations within their sector or community, but not via publicly accessible channels. Information in this category can be circulated widely within a particular community. TLP:GREEN information may not be released outside of the community.", - "expanded": "(TLP:GREEN) Information given to a community or a group of organizations at large. The information cannot be publicly released.", + "colour": "#FFC000", + "description": "Limited disclosure, recipients can only spread this on a need-to-know basis within their organization. Sources may use TLP:AMBER+STRICT when information requires support to be effectively acted upon, yet carries risk to privacy, reputation, or operations if shared outside of the organizations involved. Recipients may share TLP:AMBER+STRICT information with members of their own organization.", + "expanded": "(TLP:AMBER+STRICT) Limited disclosure, recipients can only spread this on a need-to-know basis within their organization.", + "value": "amber+strict" + }, + { + "colour": "#33FF00", + "description": "Limited disclosure, recipients can spread this within their community. Sources may use TLP:GREEN when information is useful to increase awareness within their wider community. Recipients may share TLP:GREEN information with peers and partner organizations within their community, but not via publicly accessible channels. TLP:GREEN information may not be shared outside of the community. Note: when “community” is not defined, assume the cybersecurity/defense community.", + "expanded": "(TLP:GREEN) Limited disclosure, recipients can spread this within their community.", "value": "green" }, { "colour": "#ffffff", - "description": "Disclosure is not limited. Sources may use TLP:WHITE when information carries minimal or no foreseeable risk of misuse, in accordance with applicable rules and procedures for public release. Subject to standard copyright rules, TLP:WHITE information may be distributed without restriction.", + "description": "Disclosure is not limited. Sources may use TLP:WHITE when information carries minimal or no foreseeable risk of misuse, in accordance with applicable rules and procedures for public release. Subject to standard copyright rules, TLP:WHITE information may be distributed without restriction. The version 2.0 of TLP doesn't mention anymore this tag which is most probably compatible with new TLP:CLEAR tag.", "expanded": "(TLP:WHITE) Information can be shared publicly in accordance with the law.", "value": "white" }, + { + "colour": "#ffffff", + "description": "Recipients can spread this to the world, there is no limit on disclosure. Sources may use TLP:CLEAR when information carries minimal or no foreseeable risk of misuse, in accordance with applicable rules and procedures for public release. Subject to standard copyright rules, TLP:CLEAR information may be shared without restriction.", + "expanded": "(TLP:CLEAR) Recipients can spread this to the world, there is no limit on disclosure.", + "value": "clear" + }, { "colour": "#d208f4", "expanded": "(TLP:EX:CHR) Information extended with a specific tag called Chatham House Rule (CHR). When this specific CHR tag is mentioned, the attribution (the source of information) must not be disclosed. This additional rule is at the discretion of the initial sender who can decide to apply or not the CHR tag.", "value": "ex:chr" + }, + { + "colour": "#7e7eae", + "expanded": "(TLP:UNCLEAR) Community, Organization, Clients, and Recipients are all so confused what the appropriate disclosure level is, and if this or that indicator can or cannot be shared. Assumptions are rampant and the confusion is so high that a chi-square test might in fact be required to ensure the randomness of the mess before labelling this case TLP:UNCLEAR.", + "value": "unclear" } ], "refs": [ "https://www.first.org/tlp" ], - "version": 5, - "description": "The Traffic Light Protocol - or short: TLP - was designed with the objective to create a favorable classification scheme for sharing sensitive information while keeping the control over its distribution at the same time.", + "version": 10, + "description": "The Traffic Light Protocol (TLP) (v2.0) was created to facilitate greater sharing of potentially sensitive information and more effective collaboration. Information sharing happens from an information source, towards one or more recipients. TLP is a set of four standard labels (a fifth label is included in amber to limit the diffusion) used to indicate the sharing boundaries to be applied by the recipients. Only labels listed in this standard are considered valid by FIRST. This taxonomy includes additional labels for backward compatibility which are no more validated by FIRST SIG.", "expanded": "Traffic Light Protocol", - "namespace": "tlp", - "exclusive": true + "exclusive": true, + "namespace": "tlp" } diff --git a/tools/gen.sh b/tools/gen.sh index f10b3d5..f2586a2 100644 --- a/tools/gen.sh +++ b/tools/gen.sh @@ -1,7 +1,7 @@ python3 machinetag.py -a >a.txt asciidoctor a.txt asciidoctor-pdf -a allow-uri-read a.txt -cp a.html ../../misp-website/taxonomies.html -cp a.pdf ../../misp-website/taxonomies.pdf +cp a.html ../../misp-website-new/static/taxonomies.html +cp a.pdf ../../misp-website-new/static/taxonomies.pdf scp a.html circl@cpab.circl.lu:/var/www/nwww.circl.lu/doc/misp-taxonomies/index.html scp a.pdf circl@cpab.circl.lu://var/www/nwww.circl.lu/doc/misp-taxonomies/taxonomies.pdf diff --git a/tools/gen_markdown.py b/tools/gen_markdown.py index 2f2544c..fdb10f1 100755 --- a/tools/gen_markdown.py +++ b/tools/gen_markdown.py @@ -26,7 +26,7 @@ def generateMarkdown(taxonomies): markdown_line_array.append("- license: %s" % 'CC-0') markdown_line_array.append("- description: %s" % 'Manifest file of MISP taxonomies available.') markdown_line_array.append("") - + markdown_line_array.append("## Taxonomies") markdown_line_array.append("") for taxonomy in taxonomies: diff --git a/tools/machinetag.py b/tools/machinetag.py index 31eed16..4cd42b8 100755 --- a/tools/machinetag.py +++ b/tools/machinetag.py @@ -4,7 +4,7 @@ # Python script parsing the MISP taxonomies expressed in Machine Tags (Triple # Tags) to list all valid tags from a specific taxonomy. # -# Copyright (c) 2015-2017 Alexandre Dulaunoy - a@foo.be +# Copyright (c) 2015-2022 Alexandre Dulaunoy - a@foo.be # # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: @@ -30,42 +30,73 @@ import json import os.path import argparse import os +import sys +skip_list = ["death-possibilities", "poison-taxonomy", "doping-substances"] taxonomies = [] # Get our current directory from file location thisDir = os.path.dirname(__file__) -for folder in os.listdir(os.path.join(thisDir, '../')): - if os.path.isfile(os.path.join(thisDir, '../', folder, 'machinetag.json')): +argParser = argparse.ArgumentParser( + description="Dump Machine Tags (Triple Tags) from MISP taxonomies", + epilog="Available taxonomies are {0}".format(taxonomies), +) +argParser.add_argument("-e", action="store_true", help="Include expanded tags") +argParser.add_argument( + "-a", action="store_true", help="Generate asciidoctor document from MISP taxonomies" +) +argParser.add_argument("-v", action="store_true", help="Include descriptions") +argParser.add_argument("-n", default=False, help="Show only the specified namespace") +argParser.add_argument( + "--disable-skip-list", + default=False, + action="store_true", + help="disable default skip list", +) +args = argParser.parse_args() + +if args.disable_skip_list: + skip_list = "" + +for folder in os.listdir(os.path.join(thisDir, "../")): + if os.path.isfile(os.path.join(thisDir, "../", folder, "machinetag.json")): + if folder in skip_list: + continue taxonomies.append(folder) taxonomies.sort() -argParser = argparse.ArgumentParser(description='Dump Machine Tags (Triple Tags) from MISP taxonomies', epilog='Available taxonomies are {0}'.format(taxonomies)) -argParser.add_argument('-e', action='store_true', help='Include expanded tags') -argParser.add_argument('-a', action='store_true', help='Generate asciidoctor document from MISP taxonomies') -argParser.add_argument('-v', action='store_true', help='Include descriptions') -argParser.add_argument('-n', default=False, help='Show only the specified namespace') -args = argParser.parse_args() -doc = '' +doc = "" if args.a: dedication = "\n[dedication]\n== Funding and Support\nThe MISP project is financially and resource supported by https://www.circl.lu/[CIRCL Computer Incident Response Center Luxembourg ].\n\nimage:{images-misp}logo.png[CIRCL logo]\n\nA CEF (Connecting Europe Facility) funding under CEF-TC-2016-3 - Cyber Security has been granted from 1st September 2017 until 31th August 2019 as ***Improving MISP as building blocks for next-generation information sharing***.\n\nimage:{images-misp}en_cef.png[CEF funding]\n\nIf you are interested to co-fund projects around MISP, feel free to get in touch with us.\n\n" doc = doc + ":toc: right\n" doc = doc + ":toclevels: 1\n" doc = doc + ":icons: font\n" - doc = doc + ":images-cdn: https://raw.githubusercontent.com/MISP/MISP/2.4/INSTALL/logos/\n" + doc = ( + doc + + ":images-cdn: https://raw.githubusercontent.com/MISP/MISP/2.4/INSTALL/logos/\n" + ) doc = doc + ":images-misp: https://www.misp-project.org/assets/images/\n" doc = doc + "= MISP taxonomies and classification as machine tags\n\n" doc = doc + "= Introduction\n" doc = doc + "\nimage::{images-cdn}misp-logo.png[MISP logo]\n" - doc = doc + "The MISP threat sharing platform is a free and open source software helping information sharing of threat intelligence including cyber security indicators, financial fraud or counter-terrorism information. The MISP project includes multiple sub-projects to support the operational requirements of analysts and improve the overall quality of information shared.\n\n" + doc = ( + doc + + "The MISP threat sharing platform is a free and open source software helping information sharing of threat intelligence including cyber security indicators, financial fraud or counter-terrorism information. The MISP project includes multiple sub-projects to support the operational requirements of analysts and improve the overall quality of information shared.\n\n" + ) doc = doc + "" - doc = "{} {} {} {}".format(doc, "\nTaxonomies that can be used in MISP (2.4) and other information sharing tool and expressed in Machine Tags (Triple Tags).", - "A machine tag is composed of a namespace (MUST), a predicate (MUST) and an (OPTIONAL) value.", - "Machine tags are often called triple tag due to their format.\n") - doc = doc + "The following document is generated from the machine-readable JSON describing the https://github.com/MISP/misp-taxonomies[MISP taxonomies]." + doc = "{} {} {} {}".format( + doc, + "\nTaxonomies that can be used in MISP (2.4) and other information sharing tool and expressed in Machine Tags (Triple Tags).", + "A machine tag is composed of a namespace (MUST), a predicate (MUST) and an (OPTIONAL) value.", + "Machine tags are often called triple tag due to their format.\n", + ) + doc = ( + doc + + "The following document is generated from the machine-readable JSON describing the https://github.com/MISP/misp-taxonomies[MISP taxonomies]." + ) doc = doc + "\n\n" doc = doc + "<<<\n" doc = doc + dedication @@ -78,31 +109,37 @@ if args.n: taxonomies.append(args.n) -def asciidoc(content=False, adoc=doc, t='title', toplevel=False): +def asciidoc(content=False, adoc=doc, t="title", toplevel=False): if not args.a: return False adoc = adoc + "\n" - if t == 'title': - content = '==== ' + content - elif t == 'predicate': - content = '=== ' + content - elif t == 'namespace': - content = '== ' + content + '\n' - content = "{}\n{}{} {}{}{} {}".format(content, 'NOTE: ', namespace, 'namespace available in JSON format at https://github.com/MISP/misp-taxonomies/blob/main/', - namespace, '/machinetag.json[*this location*]. The JSON format can be freely reused in your application', - 'or automatically enabled in https://www.github.com/MISP/MISP[MISP] taxonomy.') - elif t == 'description' and toplevel is True: + if t == "title": + content = "==== " + content + elif t == "predicate": + content = "=== " + content + elif t == "namespace": + content = "== " + content + "\n" + content = "{}\n{}{} {}{}{} {}".format( + content, + "NOTE: ", + namespace, + "namespace available in JSON format at https://github.com/MISP/misp-taxonomies/blob/main/", + namespace, + "/machinetag.json[*this location*]. The JSON format can be freely reused in your application", + "or automatically enabled in https://www.github.com/MISP/MISP[MISP] taxonomy.", + ) + elif t == "description" and toplevel is True: content = "\n{} \n".format(content) - elif t == 'description' and toplevel is False: + elif t == "description" and toplevel is False: try: (n, value) = content.split(":", 1) content = "\n{} \n".format(value) except: content = "\n{} \n".format(content) - elif t == 'numerical_value': + elif t == "numerical_value": (n, value) = content.split(":", 1) - content = "\nAssociated numerical value=\"{}\" \n".format(value) - elif t == 'exclusive': + content = '\nAssociated numerical value="{}" \n'.format(value) + elif t == "exclusive": (n, value) = content.split(":", 1) if n: content = "\nIMPORTANT: Exclusive flag set which means the values or predicate below must be set exclusively.\n" @@ -115,79 +152,178 @@ def machineTag(namespace=False, predicate=False, value=None): if namespace is False or predicate is False: return None if value is None: - return (u'{0}:{1}'.format(namespace, predicate)) + return "{0}:{1}".format(namespace, predicate) else: - return (u'{0}:{1}=\"{2}\"'.format(namespace, predicate, value)) + return '{0}:{1}="{2}"'.format(namespace, predicate, value) for taxonomy in taxonomies: + if taxonomy in skip_list: + sys.stderr.write(f"Skip {taxonomy}") + continue filename = os.path.join(thisDir, "../", taxonomy, "machinetag.json") with open(filename) as fp: t = json.load(fp) - namespace = t['namespace'] - if t.get('expanded'): - expanded_namespace = t['expanded'] + namespace = t["namespace"] + if t.get("expanded"): + expanded_namespace = t["expanded"] else: expanded_namespace = namespace if args.a: - doc = asciidoc(content=t['namespace'], adoc=doc, t='namespace') - doc = asciidoc(content=t['description'], adoc=doc, t='description', toplevel = True) - if t.get('exclusive'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=t['exclusive']), adoc=doc, t='exclusive') + doc = asciidoc(content=t["namespace"], adoc=doc, t="namespace") + doc = asciidoc( + content=t["description"], adoc=doc, t="description", toplevel=True + ) + if t.get("exclusive"): + doc = asciidoc( + content=machineTag(namespace=namespace, predicate=t["exclusive"]), + adoc=doc, + t="exclusive", + ) if args.v: - print('{0}'.format(t['description'])) - for predicate in t['predicates']: + print("{0}".format(t["description"])) + for predicate in t["predicates"]: if args.a: - doc = asciidoc(content=predicate['value'], adoc=doc, t='predicate') - if predicate.get('description'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['description']), adoc=doc, t='description') - if predicate.get('exclusive'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['exclusive']), adoc=doc, t='exclusive') + doc = asciidoc(content=predicate["value"], adoc=doc, t="predicate") + if predicate.get("description"): + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=predicate["description"] + ), + adoc=doc, + t="description", + ) + if predicate.get("exclusive"): + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=predicate["exclusive"] + ), + adoc=doc, + t="exclusive", + ) - if t.get('values') is None: + if t.get("values") is None: if args.a: - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['value']), adoc=doc) - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['expanded']), adoc=doc, t='description') - if predicate.get('description'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['description']), adoc=doc, t='description') - if predicate.get('numerical_value'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['numerical_value']), adoc=doc, t='description') - if predicate.get('exclusive'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['exclusive']), adoc=adoc, t='exclusive') + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=predicate["value"] + ), + adoc=doc, + ) + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=predicate["expanded"] + ), + adoc=doc, + t="description", + ) + if predicate.get("description"): + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=predicate["description"] + ), + adoc=doc, + t="description", + ) + if predicate.get("numerical_value"): + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=predicate["numerical_value"] + ), + adoc=doc, + t="description", + ) + if predicate.get("exclusive"): + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=predicate["exclusive"] + ), + adoc=doc, + t="exclusive", + ) else: - print(machineTag(namespace=namespace, predicate=predicate['value'])) + print(machineTag(namespace=namespace, predicate=predicate["value"])) if args.e: - print("--> " + machineTag(namespace=expanded_namespace, predicate=predicate['expanded'])) - if predicate.get('description'): - print("--> " + predicate['description']) + print( + "--> " + + machineTag( + namespace=expanded_namespace, predicate=predicate["expanded"] + ) + ) + if predicate.get("description"): + print("--> " + predicate["description"]) else: - for e in t['values']: - if e['predicate'] == predicate['value']: - if 'expanded' in predicate: - expanded = predicate['expanded'] - for v in e['entry']: - if args.a and 'expanded' in v: - doc = asciidoc(content=machineTag(namespace=namespace, predicate=e['predicate'], value=v['value']), adoc=doc) - doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['expanded']), adoc=doc, t='description') - if 'description' in v: - doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['description']), adoc=doc, t='description') - if v.get('numerical_value'): - doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['numerical_value']), adoc=doc, t='numerical_value') + for e in t["values"]: + if e["predicate"] == predicate["value"]: + if "expanded" in predicate: + expanded = predicate["expanded"] + for v in e["entry"]: + if args.a and "expanded" in v: + doc = asciidoc( + content=machineTag( + namespace=namespace, + predicate=e["predicate"], + value=v["value"], + ), + adoc=doc, + ) + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=v["expanded"] + ), + adoc=doc, + t="description", + ) + if "description" in v: + doc = asciidoc( + content=machineTag( + namespace=namespace, predicate=v["description"] + ), + adoc=doc, + t="description", + ) + if v.get("numerical_value"): + doc = asciidoc( + content=machineTag( + namespace=namespace, + predicate=v["numerical_value"], + ), + adoc=doc, + t="numerical_value", + ) else: - print(machineTag(namespace=namespace, predicate=e['predicate'], value=v['value'])) + print( + machineTag( + namespace=namespace, + predicate=e["predicate"], + value=v["value"], + ) + ) if args.e: - if'expanded' in v: - print("--> " + machineTag(namespace=namespace, predicate=expanded, value=v['expanded'])) + if "expanded" in v: + print( + "--> " + + machineTag( + namespace=namespace, + predicate=expanded, + value=v["expanded"], + ) + ) -with open('../mapping/mapping.json') as mapping: +with open("../mapping/mapping.json") as mapping: m = json.load(mapping) - output = '\n= Mapping of taxonomies\n' - output = '{}{}'.format(output, 'Analysts relying on taxonomies don\'t always know the appropriate namespace to use but know which value to use for classification. The MISP mapping taxonomy allows to map a single classification into a series of machine-tag synonyms.\n') + output = "\n= Mapping of taxonomies\n" + output = "{}{}".format( + output, + "Analysts relying on taxonomies don't always know the appropriate namespace to use but know which value to use for classification. The MISP mapping taxonomy allows to map a single classification into a series of machine-tag synonyms.\n", + ) for value in sorted(m.keys()): - output = '{}{} **{}**{}{}\n'.format(output,'\n.Mapping table - ',value,'\n|===\n|',value) - for mapped in m[value]['values']: - output = '{}|{}\n'.format(output,mapped) - output = '{}|===\n'.format(output) + output = "{}{} **{}**{}{}\n".format( + output, "\n.Mapping table - ", value, "\n|===\n|", value + ) + for mapped in m[value]["values"]: + output = "{}|{}\n".format(output, mapped) + output = "{}|===\n".format(output) doc = doc + output if args.a: diff --git a/tools/website-genlist.py b/tools/website-genlist.py index fa56339..2573fe3 100644 --- a/tools/website-genlist.py +++ b/tools/website-genlist.py @@ -9,4 +9,4 @@ with open(filename) as fp: for taxo in sorted(t['taxonomies'], key=lambda k: k['name']): print("### {}".format(taxo['name'])) print() - print("[{}](https://github.com/MISP/misp-taxonomies/tree/main/{}) :\n{} [Overview](https://www.misp-project.org/taxonomies.html#_{})\n".format(taxo['name'], taxo['name'], taxo['description'], re.sub(r'-', '_',taxo['name']))) + print("[{}](https://github.com/MISP/misp-taxonomies/tree/main/{}) :\n{} [Overview](https://www.misp-project.org/taxonomies.html#_{})\n".format(taxo['name'], taxo['name'], taxo['description'], re.sub(r'-', '_',taxo['name'].lower()))) diff --git a/unified-kill-chain/machinetag.json b/unified-kill-chain/machinetag.json new file mode 100644 index 0000000..2efc5a8 --- /dev/null +++ b/unified-kill-chain/machinetag.json @@ -0,0 +1,113 @@ +{ + "namespace": "unified-kill-chain", + "expanded": "Unified Kill Chain", + "description": "The Unified Kill Chain is a refinement to the Kill Chain.", + "version": 1, + "predicates": [ + { + "value": "Initial Foothold", + "expanded": "Initial Foothold" + }, + { + "value": "Network Propagation", + "expanded": "Network Propagation" + }, + { + "value": "Action on Objectives", + "expanded": "Action on Objectives" + } + ], + "values": [ + { + "predicate": "Initial Foothold", + "entry": [ + { + "expanded": "Reconnaissance", + "value": "reconnaissance" + }, + { + "expanded": "Weaponization", + "value": "weaponization" + }, + { + "expanded": "Delivery", + "value": "delivery" + }, + { + "expanded": "Social Engineering", + "value": "social-engineering" + }, + { + "expanded": "Exploitation", + "value": "exploitation" + }, + { + "expanded": "Persistence", + "value": "persistence" + }, + { + "expanded": "Defense Evasion", + "value": "defense-evasion" + }, + { + "expanded": "Command & Control", + "value": "command-control" + } + ] + }, + { + "predicate": "Network Propagation", + "entry": [ + { + "expanded": "Pivoting", + "value": "pivoting" + }, + { + "expanded": "Discovery", + "value": "discovery" + }, + { + "expanded": "Privilege Escalation", + "value": "privilege-escalation" + }, + { + "expanded": "Execution", + "value": "execution" + }, + { + "expanded": "Credential Access", + "value": "credential-access" + }, + { + "expanded": "Lateral Movement", + "value": "lateral-movement" + } + ] + }, + { + "predicate": "Action on Objectives", + "entry": [ + { + "expanded": "Access", + "value": "access" + }, + { + "expanded": "Collection", + "value": "collection" + }, + { + "expanded": "Exfiltration", + "value": "exfiltration" + }, + { + "expanded": "Impact", + "value": "impact" + }, + { + "expanded": "Objectives", + "value": "objectives" + } + ] + } + ] +} diff --git a/validate_all.py b/validate_all.py new file mode 100644 index 0000000..8d8359b --- /dev/null +++ b/validate_all.py @@ -0,0 +1,18 @@ +import sys +import glob +import json +from jsonschema import validate + +schema = json.load(open("schema.json", "r")) + +for taxonomy_file in glob.glob('./*/machinetag.json'): + print("Checking {}".format(taxonomy_file)) + taxonomy = json.load(open(taxonomy_file, "r")) + validate(instance=taxonomy, schema=schema) + + if "values" in taxonomy: + predicates = [predicate["value"] for predicate in taxonomy["predicates"]] + for value in taxonomy["values"]: + if value["predicate"] not in predicates: + print("ERROR: Predicate `{}` is missing".format(value["predicate"])) + sys.exit(1) \ No newline at end of file diff --git a/validate_all.sh b/validate_all.sh index 2f41fd6..025ccdf 100755 --- a/validate_all.sh +++ b/validate_all.sh @@ -8,7 +8,7 @@ set -x diffs=`git status --porcelain | wc -l` if ! [ $diffs -eq 0 ]; then - echo "Please make sure you run ./jq_all_the_things.sh before commiting." + echo "Please make sure you run ./jq_all_the_things.sh before committing." exit 1 fi @@ -20,11 +20,6 @@ if ! [ $((directories-2)) -eq $manifest_entries ]; then exit 1 fi -for dir in */machinetag.json -do - echo -n "${dir}: " - jsonschema -i ${dir} schema.json - echo '' -done +python3 validate_all.py jsonschema -i mapping/mapping.json schema_mapping.json diff --git a/workflow/machinetag.json b/workflow/machinetag.json index 40d5301..17872cc 100644 --- a/workflow/machinetag.json +++ b/workflow/machinetag.json @@ -2,7 +2,7 @@ "namespace": "workflow", "expanded": "workflow to support analysis", "description": "Workflow support language is a common language to support intelligence analysts to perform their analysis on data and information.", - "version": 10, + "version": 12, "predicates": [ { "value": "todo", @@ -115,19 +115,27 @@ "entry": [ { "value": "incomplete", - "expanded": "Incomplete means that the information tagged is incomplete and has potential to be completed by other analysts, technical processes or the current analysts performing the analysis" + "expanded": "Incomplete means that the information tagged is incomplete and has potential to be completed by other analysts, technical processes or the current analysts performing the analysis." }, { "value": "complete", - "expanded": "Complete means that the information tagged reach a state of completeness with the current capabilities of the analyst" + "expanded": "Complete means that the information tagged reach a state of completeness with the current capabilities of the analyst." }, { "value": "draft", - "expanded": "Draft means the information tagged can be released as a preliminary version or outline" + "expanded": "Draft means the information tagged can be released as a preliminary version or outline." }, { "value": "ongoing", "expanded": "Analyst is currently working on this analysis. To remove when there is no more work to be done by the analyst." + }, + { + "value": "rejected", + "expanded": "Analyst rejected the process. The object will not reach state of completeness." + }, + { + "value": "release", + "expanded": "Analyst approved the information to be released. Like a MISP event to be released and published." } ] }