From 2226849c5294dcfdb5b9ac6f8643bb1331b4e607 Mon Sep 17 00:00:00 2001 From: Matthew Davidson Date: Thu, 25 Apr 2024 22:54:49 +0700 Subject: [PATCH] chore: Rename iql to gensql --- README.md | 16 +- build.edn | 2 +- build/build.clj | 8 +- deps.edn | 10 +- dev/user.clj | 8 +- examples/db.edn | 2 +- examples/satellites.adoc | 16 +- js/main.js | 2 +- package.json | 2 +- pnpm-lock.yaml | 673 ++++++++++++++------------- src/inferenceql/publish.clj | 20 +- src/inferenceql/publish/asciidoc.clj | 12 +- 12 files changed, 391 insertions(+), 380 deletions(-) diff --git a/README.md b/README.md index 04edf68..419b3e1 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# inferenceql.publish -![tests](https://github.com/InferenceQL/inferenceql.publish/workflows/tests/badge.svg) -![linter](https://github.com/InferenceQL/inferenceql.publish/workflows/linter/badge.svg) +# GenSQL.publish +![tests](https://github.com/OpenGen/GenSQL.publish/workflows/tests/badge.svg) +![linter](https://github.com/OpenGen/GenSQL.publish/workflows/linter/badge.svg) ## Usage ``` shell -java -jar inferenceql.publish.jar --help +java -jar gensql.publish.jar --help ``` ## Developing @@ -37,16 +37,16 @@ clojure -M:run --help ### Including SPPL support -[inferenceql.gpm.sppl](https://github.com/inferenceql/inferenceql.gpm.sppl) is not included as a dependency by default. If you intend to use SPPL models you will want to provide the `sppl` alias when either launching the REPL or running build commands. +[gensql.gpm.sppl](https://github.com/OpenGen/GenSQL.gpm.sppl) is not included as a dependency by default. If you intend to use SPPL models you will want to provide the `sppl` alias when either launching the REPL or running build commands. -If you intend to query SPPL models you will need to have a Python environment with SPPL installed into it in such a way that [libpython-clj](https://github.com/clj-python/libpython-clj) can find it. The easiest way to use that is to start the inferenceql.gpm.sppl Nix development shell before running publish. +If you intend to query SPPL models you will need to have a Python environment with SPPL installed into it in such a way that [libpython-clj](https://github.com/clj-python/libpython-clj) can find it. The easiest way to use that is to start the gensql.gpm.sppl Nix development shell before running publish. ``` shell -nix develop github:inferenceql/inferenceql.gpm.sppl -c java -jar inferenceql.publish.jar --help +nix develop github:OpenGen/GenSQL.gpm.sppl -c java -jar gensql.publish.jar --help ``` ``` shell -nix develop github:inferenceql/inferenceql.gpm.sppl -c clj -A:dev:sppl +nix develop github:OpenGen/GenSQL.gpm.sppl -c clj -A:dev:sppl ``` ### Building a JAR file diff --git a/build.edn b/build.edn index 7ffcd2f..2f671ba 100644 --- a/build.edn +++ b/build.edn @@ -1,4 +1,4 @@ -{:main inferenceql.publish.client +{:main gensql.publish.client :output-to "resources/js/index.js" :output-dir "resources/js" :asset-path "js" diff --git a/build/build.clj b/build/build.clj index 7af225d..990b930 100644 --- a/build/build.clj +++ b/build/build.clj @@ -23,8 +23,8 @@ (not))) (def default-opts - {:lib 'inferenceql/inferenceql.publish - :main 'inferenceql.publish + {:lib 'OpenGen/gensql.publish + :main 'gensql.publish :target "target" :clojure-src-dirs ["src"] :version (current-sha :short true) @@ -57,12 +57,12 @@ bundler-input (or bundler-input "js/main.js") bundler-outfile (or bundler-outfile - (str (class-dir opts) "/js/inferenceql.publish.js"))] + (str (class-dir opts) "/js/gensql.publish.js"))] (with-reporting "Bundling JavaScript files" (let [{:keys [exit]} (build/process {:command-args ["pnpm" "esbuild" bundler-input "--bundle" "--format=iife" - "--global-name=inferenceql.publish" + "--global-name=gensql.publish" "--sourcemap" (str "--outfile=" bundler-outfile)]})] (when-not (zero? exit) diff --git a/deps.edn b/deps.edn index 11c30c4..81db8d4 100644 --- a/deps.edn +++ b/deps.edn @@ -7,9 +7,9 @@ com.cognitect/transit-cljs {:mvn/version "0.8.280"} com.stuartsierra/component {:mvn/version "1.1.0"} hiccup/hiccup {:mvn/version "1.0.5"} - io.github.inferenceql/inferenceql.gpm.sppl {:git/sha "52f8316e094b3644709dccde8f0a935f9b55f187"} - io.github.inferenceql/inferenceql.inference {:git/sha "27b1b6c34830b98c2c7258b5577f0b7611538355"} - io.github.inferenceql/inferenceql.query {:git/sha "a85bba882016a06b006abf7bf43f53b4cfa4465c"} + io.github.OpenGen/GenSQL.gpm.sppl {:git/sha "52f8316e094b3644709dccde8f0a935f9b55f187"} + io.github.OpenGen/GenSQL.inference {:git/sha "27b1b6c34830b98c2c7258b5577f0b7611538355"} + io.github.OpenGen/GenSQL.query {:git/sha "a85bba882016a06b006abf7bf43f53b4cfa4465c"} lambdaisland/fetch {:mvn/version "1.0.41"} metosin/reitit {:mvn/version "0.5.18"} org.asciidoctor/asciidoctorj {:mvn/version "2.5.3"} @@ -28,8 +28,8 @@ :ns-default build} :dev {:extra-paths ["dev"] :extra-deps {org.clojure/tools.namespace {:mvn/version "1.3.0"}}} - :run {:main-opts ["-m" "inferenceql.publish"]} - :sppl {:extra-deps {io.github.inferenceql/inferenceql.gpm.sppl {:git/sha "594d4bced407826129723e84907954ebab71b315"}}} + :run {:main-opts ["-m" "gensql.publish"]} + :sppl {:extra-deps {io.github.OpenGen/GenSQL.gpm.sppl {:git/sha "594d4bced407826129723e84907954ebab71b315"}}} :test {:extra-paths ["test"] :extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"} org.clojure/test.check {:mvn/version "0.10.0"}} diff --git a/dev/user.clj b/dev/user.clj index 4ea54c7..8929ca5 100644 --- a/dev/user.clj +++ b/dev/user.clj @@ -4,10 +4,10 @@ [clojure.java.io :as io] [clojure.tools.namespace.repl :as repl] [com.stuartsierra.component :as component] - [inferenceql.inference.gpm :as gpm] - [inferenceql.publish :as publish] - [inferenceql.query.permissive :as permissive] - #_[inferenceql.query.strict :as strict])) + [gensql.inference.gpm :as gpm] + [gensql.publish :as publish] + [gensql.query.permissive :as permissive] + #_[gensql.query.strict :as strict])) (def system nil) diff --git a/examples/db.edn b/examples/db.edn index 540fd0c..94593ea 100644 --- a/examples/db.edn +++ b/examples/db.edn @@ -1 +1 @@ -#:iql{:tables {satellites [{Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Denmark", Eccentricity 0.00119, Launch_Mass_kg 0.8, Apogee_km 787, Perigee_km 770, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 100.42, Inclination_radians 1.721418241, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "International", Eccentricity 2.0E-4, Launch_Mass_kg 2894.0, Apogee_km 35794, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "International", Eccentricity 5.0E-5, Launch_Mass_kg 1459.0, Apogee_km 35789, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.032463124, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "China (PR)", Eccentricity 1.5E-4, Launch_Mass_kg 4143.0, Apogee_km 35793, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "International", Eccentricity 1.3E-4, Launch_Mass_kg 3500.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00283, Launch_Mass_kg 115.0, Apogee_km 710, Perigee_km 670, Type_of_Orbit "Sun-Synchronous", Purpose "Solar Physics", Period_minutes 98.6, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00537, Launch_Mass_kg 4500.0, Apogee_km 36013, Perigee_km 35560, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1436.14, Inclination_radians 0.134739418, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00468, Launch_Mass_kg 4500.0, Apogee_km 35984, Perigee_km 35589, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1436.1, Inclination_radians 0.055850536, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00264, Launch_Mass_kg 5000.0, Apogee_km 35937, Perigee_km 35714, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1438.8, Inclination_radians 0.050440015, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5000.0, Apogee_km 35500, Perigee_km 35500, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes nil, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg 5000.0, Apogee_km 35805, Perigee_km 35771, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 23.94, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00273, Launch_Mass_kg 6169.0, Apogee_km 36103, Perigee_km 35872, Type_of_Orbit "", Purpose "Communications", Period_minutes 1446.36, Inclination_radians 0.076096355, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 6169.0, Apogee_km 35700, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1306.29, Inclination_radians 0.355872634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 6169.0, Apogee_km 35700, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1306.29, Inclination_radians 0.355872634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02213, Launch_Mass_kg 3.0, Apogee_km 790, Perigee_km 480, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.4, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0211, Launch_Mass_kg 4.5, Apogee_km 791, Perigee_km 495, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.5, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02088, Launch_Mass_kg 4.5, Apogee_km 792, Perigee_km 499, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.6, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 5.2E-4, Launch_Mass_kg 3460.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.002094395, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Malaysia", Eccentricity 4.0E-5, Launch_Mass_kg 1450.0, Apogee_km 35787, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.019547688, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.8E-4, Launch_Mass_kg 2704.0, Apogee_km 35802, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "International", Eccentricity 3.9E-4, Launch_Mass_kg 3775.0, Apogee_km 35802, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Italy", Eccentricity 0.00174, Launch_Mass_kg 325.0, Apogee_km 534, Perigee_km 510, Type_of_Orbit "", Purpose "Scientific Research", Period_minutes 95.1, Inclination_radians 0.043633231, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.4E-4, Launch_Mass_kg 215.0, Apogee_km 583, Perigee_km 570, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 96.2, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Norway", Eccentricity 0.00122, Launch_Mass_kg 6.0, Apogee_km 632, Perigee_km 615, Type_of_Orbit "Sun-Synchronous", Purpose "Maritime Tracking/Technology Development", Period_minutes 97.2, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00193, Launch_Mass_kg nil, Apogee_km 626, Perigee_km 599, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.438151304, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00173, Launch_Mass_kg 53.0, Apogee_km 582, Perigee_km 558, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.06, Inclination_radians 1.132369619, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Japan", Eccentricity 0.29184, Launch_Mass_kg nil, Apogee_km 5732, Perigee_km 264, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 150.4, Inclination_radians 1.310742268, Users "Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "UK/ESA", Eccentricity 1.0E-5, Launch_Mass_kg 6650.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications/Technology Development", Period_minutes 1436.09, Inclination_radians 3.49066E-4, Users "Commercial/Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Algeria", Eccentricity 1.4E-4, Launch_Mass_kg 130.0, Apogee_km 674, Perigee_km 672, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.2, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Brazil", Eccentricity 2.5E-4, Launch_Mass_kg 4545.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 4.5E-4, Launch_Mass_kg 5465.0, Apogee_km 35805, Perigee_km 35767, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 1.2E-4, Launch_Mass_kg 6265.0, Apogee_km 35791, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.3E-4, Launch_Mass_kg 2783.0, Apogee_km 35800, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 2315.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 2340.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 4200.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.5E-4, Launch_Mass_kg 4312.0, Apogee_km 35793, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 2081.0, Apogee_km 35800, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 2648.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 2500.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.052359878, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 2845.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 3909.0, Apogee_km 35791, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 1698.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 3901.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 1935.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 2015.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 4100.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 1.9E-4, Launch_Mass_kg 1400.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 8.72665E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 7.0E-5, Launch_Mass_kg nil, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 0.00194, Launch_Mass_kg nil, Apogee_km 35796, Perigee_km 35633, Type_of_Orbit "", Purpose "Communications", Period_minutes 1432.0, Inclination_radians 1.74533E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 0.00488, Launch_Mass_kg 1600.0, Apogee_km 36007, Perigee_km 35595, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001570796, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00121, Launch_Mass_kg 29.0, Apogee_km 1459, Perigee_km 1440, Type_of_Orbit "Sun-Synchronous", Purpose "Amateur Radio", Period_minutes 114.9, Inclination_radians 1.769763862, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Canada", Eccentricity 1.8E-4, Launch_Mass_kg 4710.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 2.1E-4, Launch_Mass_kg 4500.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Canada", Eccentricity 1.1E-4, Launch_Mass_kg 5910.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.9E-4, Launch_Mass_kg 4715.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 3.1E-4, Launch_Mass_kg 4905.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.00479, Launch_Mass_kg 12.0, Apogee_km 764, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Communications (experimental)", Period_minutes 99.4, Inclination_radians 1.710422667, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.01092, Launch_Mass_kg 12.0, Apogee_km 850, Perigee_km 694, Type_of_Orbit "Sun-Synchronous", Purpose "Communications (experimental)", Period_minutes 100.3, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA/Argentina", Eccentricity 6.5E-4, Launch_Mass_kg 12.0, Apogee_km 572, Perigee_km 563, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.0, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA/Argentina", Eccentricity 0.00499, Launch_Mass_kg 12.0, Apogee_km 674, Perigee_km 604, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.5, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00598, Launch_Mass_kg 12.0, Apogee_km 694, Perigee_km 610, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.8, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00476, Launch_Mass_kg 12.0, Apogee_km 694, Perigee_km 627, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 98.0, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00422, Launch_Mass_kg 12.0, Apogee_km 653, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.17, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00536, Launch_Mass_kg 12.0, Apogee_km 669, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.99, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.5E-4, Launch_Mass_kg 1383.0, Apogee_km 35795, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.21, Inclination_radians 0.113446401, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.3E-4, Launch_Mass_kg 1383.0, Apogee_km 35790, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 0.102799893, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.9E-4, Launch_Mass_kg 4680.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.2E-4, Launch_Mass_kg 5054.0, Apogee_km 35874, Perigee_km 35864, Type_of_Orbit "", Purpose "Communications", Period_minutes 1440.31, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.6E-4, Launch_Mass_kg 4630.0, Apogee_km 35805, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.9E-4, Launch_Mass_kg 3600.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "ISS", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 1.0, Apogee_km 415, Perigee_km 410, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 92.81, Inclination_radians 0.901462559, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 3.8E-4, Launch_Mass_kg 3105.0, Apogee_km 35803, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications/Research", Period_minutes 1436.12, Inclination_radians 0.122696646, Users "Commercial/Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 1.4E-4, Launch_Mass_kg 3480.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "China (PR)", Eccentricity 6.0E-5, Launch_Mass_kg 4137.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 2.0E-4, Launch_Mass_kg 3760.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 1.3E-4, Launch_Mass_kg 3813.0, Apogee_km 35793, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.17, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.3E-4, Launch_Mass_kg 2775.0, Apogee_km 35801, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 2.3E-4, Launch_Mass_kg 2924.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.020071286, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.0E-4, Launch_Mass_kg 3014.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 2.3E-4, Launch_Mass_kg 3010.0, Apogee_km 35797, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 1.3E-4, Launch_Mass_kg 3379.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 2.1E-4, Launch_Mass_kg 3690.0, Apogee_km 35794, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Luxembourg", Eccentricity 4.9E-4, Launch_Mass_kg 4332.0, Apogee_km 35807, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.1E-4, Launch_Mass_kg 4500.0, Apogee_km 35798, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 5.7E-4, Launch_Mass_kg 5345.0, Apogee_km 35852, Perigee_km 35804, Type_of_Orbit "", Purpose "Communications", Period_minutes 1438.2, Inclination_radians 0.002443461, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 7.7E-4, Launch_Mass_kg 5350.0, Apogee_km 35780, Perigee_km 35715, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.1, Inclination_radians 0.002094395, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 2.5E-4, Launch_Mass_kg 3635.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.4E-4, Launch_Mass_kg 3315.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 4.3E-4, Launch_Mass_kg 3643.0, Apogee_km 35804, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.8E-4, Launch_Mass_kg 1420.0, Apogee_km 35802, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 1.4E-4, Launch_Mass_kg 6052.0, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001919862, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 2.1E-4, Launch_Mass_kg 6000.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 4.0E-4, Launch_Mass_kg 1500.0, Apogee_km 35804, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 4.5E-4, Launch_Mass_kg 5471.0, Apogee_km 35806, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Azerbaijan", Eccentricity 1.9E-4, Launch_Mass_kg 3250.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Pakistan", Eccentricity 0.00204, Launch_Mass_kg 70.0, Apogee_km 1014, Perigee_km 984, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Technology Development", Period_minutes 105.1, Inclination_radians 1.731366618, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.3E-4, Launch_Mass_kg 3304.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.00122173, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 5.8E-4, Launch_Mass_kg 5420.0, Apogee_km 35883, Perigee_km 35834, Type_of_Orbit "", Purpose "Communications", Period_minutes 1439.76, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.1E-4, Launch_Mass_kg 4940.0, Apogee_km 35623, Perigee_km 35605, Type_of_Orbit "", Purpose "Communications", Period_minutes 1427.27, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.4E-4, Launch_Mass_kg 3400.0, Apogee_km 35805, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Germany", Eccentricity 6.4E-4, Launch_Mass_kg 1.0, Apogee_km 718, Perigee_km 709, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.0, Inclination_radians 1.715658655, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00173, Launch_Mass_kg 1.0, Apogee_km 579, Perigee_km 555, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.01, Inclination_radians 1.130973355, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00195, Launch_Mass_kg 1.0, Apogee_km 581, Perigee_km 554, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.01, Inclination_radians 1.130973355, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 0.00156, Launch_Mass_kg 166.0, Apogee_km 703, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Germany", Eccentricity 0.00153, Launch_Mass_kg 92.0, Apogee_km 521, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Technology Development", Period_minutes 94.8, Inclination_radians 1.708677338, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Belarus", Eccentricity 2.9E-4, Launch_Mass_kg 400.0, Apogee_km 507, Perigee_km 503, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Russia", Eccentricity 2.1E-4, Launch_Mass_kg 1452.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 2.5E-4, Launch_Mass_kg 1780.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.014660766, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 4.0E-4, Launch_Mass_kg 1780.0, Apogee_km 35803, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 3.3E-4, Launch_Mass_kg 2495.0, Apogee_km 35800, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Multinational", Eccentricity 0.02053, Launch_Mass_kg 10.0, Apogee_km 886, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 99.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.9E-4, Launch_Mass_kg 1980.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 0.03261, Launch_Mass_kg 2060.0, Apogee_km 35725, Perigee_km 33066, Type_of_Orbit "", Purpose "Communications", Period_minutes 1365.61, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 4.0E-5, Launch_Mass_kg 2910.0, Apogee_km 35787, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "L-1011 Aircraft", Country_of_Operator "USA", Eccentricity 0.02938, Launch_Mass_kg 384.0, Apogee_km 813, Perigee_km 403, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.85, Inclination_radians 0.226892803, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "France/USA", Eccentricity 7.0E-5, Launch_Mass_kg 587.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.9E-4, Launch_Mass_kg 400.0, Apogee_km 505, Perigee_km 501, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Canada", Eccentricity 0.00143, Launch_Mass_kg 7.0, Apogee_km 629, Perigee_km 609, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Canada", Eccentricity 8.4E-4, Launch_Mass_kg 5.0, Apogee_km 783, Perigee_km 771, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 100.3, Inclination_radians 1.720894642, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Canada", Eccentricity 0.00143, Launch_Mass_kg 16.0, Apogee_km 631, Perigee_km 611, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.706932008, Users "Civil/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg nil, Apogee_km 506, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.67, Inclination_radians 0.70703288, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 7.0E-5, Launch_Mass_kg 1560.0, Apogee_km 619, Perigee_km 618, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.1, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 2.1E-4, Launch_Mass_kg 680.0, Apogee_km 635, Perigee_km 632, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.4, Inclination_radians 1.692969374, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00136, Launch_Mass_kg 680.0, Apogee_km 643, Perigee_km 624, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.4, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00164, Launch_Mass_kg 694.0, Apogee_km 645, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.4, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Canada", Eccentricity 0.07979, Launch_Mass_kg 490.0, Apogee_km 1486, Perigee_km 325, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 103.11, Inclination_radians 1.413716694, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.3E-4, Launch_Mass_kg 159.0, Apogee_km 544, Perigee_km 538, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.5, Inclination_radians 0.617846555, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.79737, Launch_Mass_kg 4742.0, Apogee_km 138825, Perigee_km 9999, Type_of_Orbit "Deep Highly Eccentric", Purpose "Astrophysics", Period_minutes 3808.92, Inclination_radians 0.497418837, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.4E-4, Launch_Mass_kg 4600.0, Apogee_km 35797, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial/Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00134, Launch_Mass_kg 100.0, Apogee_km 748, Perigee_km 729, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 99.6, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00133, Launch_Mass_kg 100.8, Apogee_km 804, Perigee_km 785, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.5, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0014, Launch_Mass_kg 100.0, Apogee_km 804, Perigee_km 784, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.7, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00338, Launch_Mass_kg 200.0, Apogee_km 611, Perigee_km 564, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.43, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 7.0E-5, Launch_Mass_kg 5585.0, Apogee_km 35788, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02191, Launch_Mass_kg 3.15, Apogee_km 791, Perigee_km 484, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 97.4, Inclination_radians 1.127482697, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.00974, Launch_Mass_kg 3.0, Apogee_km 731, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.01087, Launch_Mass_kg 3.0, Apogee_km 747, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 848.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.2E-4, Launch_Mass_kg 2200.0, Apogee_km 35803, Perigee_km 35768, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.05, Inclination_radians 0.031066861, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00185, Launch_Mass_kg 2300.0, Apogee_km 35864, Perigee_km 35708, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.08, Inclination_radians 0.962723615, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.7E-4, Launch_Mass_kg 2300.0, Apogee_km 35799, Perigee_km 35776, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.15, Inclination_radians 0.032637657, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.7E-4, Launch_Mass_kg 2200.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.05, Inclination_radians 0.031939525, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 5.3E-4, Launch_Mass_kg 6000.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.1, Inclination_radians 0.024958208, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00265, Launch_Mass_kg 2200.0, Apogee_km 35893, Perigee_km 35670, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1435.82, Inclination_radians 0.961501885, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.8E-4, Launch_Mass_kg 3800.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.11, Inclination_radians 0.032114058, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00119, Launch_Mass_kg 2200.0, Apogee_km 35817, Perigee_km 35717, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.12, Inclination_radians 0.963945346, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.02525, Launch_Mass_kg 2300.0, Apogee_km 37872, Perigee_km 35693, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1435.93, Inclination_radians 1.682497399, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00203, Launch_Mass_kg 2300.0, Apogee_km 35879, Perigee_km 35708, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1435.1, Inclination_radians 0.963421747, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.7E-4, Launch_Mass_kg 2200.0, Apogee_km 21545, Perigee_km 21519, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.39, Inclination_radians 0.964468945, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00242, Launch_Mass_kg 2200.0, Apogee_km 21595, Perigee_km 21460, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.19, Inclination_radians 0.962723615, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00271, Launch_Mass_kg 2200.0, Apogee_km 21603, Perigee_km 21452, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.21, Inclination_radians 0.961676418, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00231, Launch_Mass_kg 3800.0, Apogee_km 21591, Perigee_km 21462, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.1, Inclination_radians 0.959931089, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00174, Launch_Mass_kg 3800.0, Apogee_km 21574, Perigee_km 21477, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.1, Inclination_radians 0.959931089, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "South Korea", Eccentricity 9.0E-5, Launch_Mass_kg 2460.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Earth Observation/Meteorology/Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Germany", Eccentricity 3.1E-4, Launch_Mass_kg 2440.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Germany", Eccentricity 1.7E-4, Launch_Mass_kg 2440.0, Apogee_km 35794, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001396263, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00146, Launch_Mass_kg 817.0, Apogee_km 841, Perigee_km 820, Type_of_Orbit "Sun-Synchronous", Purpose "Earth/Space Science", Period_minutes 101.5, Inclination_radians 1.724385301, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00502, Launch_Mass_kg 70.0, Apogee_km 836, Perigee_km 764, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00432, Launch_Mass_kg 70.0, Apogee_km 831, Perigee_km 769, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00544, Launch_Mass_kg 70.0, Apogee_km 746, Perigee_km 669, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00683, Launch_Mass_kg 70.0, Apogee_km 849, Perigee_km 751, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00391, Launch_Mass_kg 70.0, Apogee_km 828, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Imaging", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Civil/Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military/Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military/Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military/Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 7.8E-4, Launch_Mass_kg 720.0, Apogee_km 724, Perigee_km 713, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 99.2, Inclination_radians 1.605702912, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "Argentina", Eccentricity 0.00164, Launch_Mass_kg 2.0, Apogee_km 653, Perigee_km 630, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.55, Inclination_radians 1.711295332, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Argentina", Eccentricity 0.00861, Launch_Mass_kg 2.0, Apogee_km 715, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.8, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00104, Launch_Mass_kg nil, Apogee_km 830, Perigee_km 815, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00177, Launch_Mass_kg 1.0, Apogee_km 703, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 1.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.07838, Launch_Mass_kg nil, Apogee_km 1465, Perigee_km 326, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 102.89, Inclination_radians 1.413542161, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00104, Launch_Mass_kg nil, Apogee_km 829, Perigee_km 814, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Japan", Eccentricity 0.00136, Launch_Mass_kg nil, Apogee_km 628, Perigee_km 609, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.07902, Launch_Mass_kg 50.0, Apogee_km 1475, Perigee_km 326, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 103.0, Inclination_radians 1.413716694, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Spain", Eccentricity 7.0E-5, Launch_Mass_kg 90.0, Apogee_km 662, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.0, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Netherlands", Eccentricity 0.00129, Launch_Mass_kg 6.5, Apogee_km 616, Perigee_km 598, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.8, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Netherlands", Eccentricity 0.01318, Launch_Mass_kg 4.5, Apogee_km 780, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.5, Inclination_radians 1.705186679, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 5900.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5900.0, Apogee_km 35786, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5900.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Russia", Eccentricity 2.0E-4, Launch_Mass_kg 3420.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 4300.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.1E-4, Launch_Mass_kg 4300.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 5483.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 3800.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 5500.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Germany", Eccentricity 0.00141, Launch_Mass_kg 45.0, Apogee_km 732, Perigee_km 712, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 99.2, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.9E-4, Launch_Mass_kg 1134.0, Apogee_km 855, Perigee_km 845, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.93, Inclination_radians 1.724385301, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.0E-4, Launch_Mass_kg 1134.0, Apogee_km 855, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.9, Inclination_radians 1.72613063, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.7E-4, Launch_Mass_kg 1152.0, Apogee_km 851, Perigee_km 837, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.8, Inclination_radians 1.72613063, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.2E-4, Launch_Mass_kg 1154.0, Apogee_km 852, Perigee_km 843, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.87, Inclination_radians 1.72613063, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.0E-4, Launch_Mass_kg 1154.0, Apogee_km 855, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.89, Inclination_radians 1.724210768, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00118, Launch_Mass_kg 1155.0, Apogee_km 859, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.94, Inclination_radians 1.726654229, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00166, Launch_Mass_kg 5.8, Apogee_km 582, Perigee_km 559, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.08, Inclination_radians 1.132369619, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.01562, Launch_Mass_kg 6.0, Apogee_km 815, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.8, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.01562, Launch_Mass_kg 6.0, Apogee_km 815, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.8, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.8E-4, Launch_Mass_kg 2650.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.7E-4, Launch_Mass_kg 1156.0, Apogee_km 35802, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.4E-4, Launch_Mass_kg 1156.0, Apogee_km 35814, Perigee_km 35760, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.1E-4, Launch_Mass_kg 1156.0, Apogee_km 35817, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.044331363, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00192, Launch_Mass_kg 1156.0, Apogee_km 35868, Perigee_km 35706, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 1.74533E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 1156.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 6.98132E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00162, Launch_Mass_kg 1156.0, Apogee_km 35855, Perigee_km 35718, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.2E-4, Launch_Mass_kg 1156.0, Apogee_km 35817, Perigee_km 35756, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.080110613, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 1156.0, Apogee_km 35784, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 2380.0, Apogee_km 35800, Perigee_km 35780, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.27, Inclination_radians 0.001745329, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 2380.0, Apogee_km 35909, Perigee_km 35897, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 142.08, Inclination_radians 0.071209433, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 5.3E-4, Launch_Mass_kg 2380.0, Apogee_km 35810, Perigee_km 35765, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.14, Inclination_radians 0.064228116, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00108, Launch_Mass_kg 2380.0, Apogee_km 35832, Perigee_km 35741, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.12, Inclination_radians 0.024609142, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "UAE", Eccentricity 0.00128, Launch_Mass_kg 200.0, Apogee_km 680, Perigee_km 662, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.2, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "UAE", Eccentricity 0.00129, Launch_Mass_kg 300.0, Apogee_km 603, Perigee_km 585, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 96.56, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.00308, Launch_Mass_kg 2.0, Apogee_km 639, Perigee_km 596, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Mexico", Eccentricity 2.3E-4, Launch_Mass_kg 3287.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 4333.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 5500.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.1E-4, Launch_Mass_kg 4328.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 5.0E-5, Launch_Mass_kg 6384.0, Apogee_km 35789, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.7E-4, Launch_Mass_kg 5521.0, Apogee_km 35803, Perigee_km 35789, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.57, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 6658.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.5E-4, Launch_Mass_kg 6100.0, Apogee_km 35794, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 3674.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 3700.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 4027.0, Apogee_km 35789, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 4660.0, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 4000.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.1E-4, Launch_Mass_kg 6600.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.100007366, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Italy", Eccentricity 0.00391, Launch_Mass_kg 10.0, Apogee_km 694, Perigee_km 639, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.1, Inclination_radians 1.713913325, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00509, Launch_Mass_kg 1766.0, Apogee_km 35750, Perigee_km 35323, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1423.35, Inclination_radians 0.008028515, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00121, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 675, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.43, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00106, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 677, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.46, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00121, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 675, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.43, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00106, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 677, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.45, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 8.5E-4, Launch_Mass_kg 572.0, Apogee_km 690, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Research", Period_minutes 98.4, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA/Canada/Japan", Eccentricity 7.0E-5, Launch_Mass_kg 4854.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 2967.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA/Japan/Brazil", Eccentricity 2.1E-4, Launch_Mass_kg 2934.0, Apogee_km 704, Perigee_km 701, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Svobodny Cosmodrome", Country_of_Operator "Israel", Eccentricity 0.00123, Launch_Mass_kg 240.0, Apogee_km 547, Perigee_km 530, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 95.4, Inclination_radians 1.70344135, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Svobodny Cosmodrome", Country_of_Operator "Israel", Eccentricity 4.4E-4, Launch_Mass_kg 350.0, Apogee_km 514, Perigee_km 508, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.8, Inclination_radians 1.699950691, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Italy", Eccentricity 0.07013, Launch_Mass_kg nil, Apogee_km 1313, Perigee_km 306, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 101.08, Inclination_radians 1.212654764, Users "Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "Estonia", Eccentricity 9.2E-4, Launch_Mass_kg 1.0, Apogee_km 671, Perigee_km 658, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.03, Inclination_radians 1.712691595, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Turkey/France", Eccentricity 5.8E-4, Launch_Mass_kg 3535.0, Apogee_km 35810, Perigee_km 35761, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 4167.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 4.9E-4, Launch_Mass_kg 5900.0, Apogee_km 35822, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.4E-4, Launch_Mass_kg 2700.0, Apogee_km 35805, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001919862, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Multinational", Eccentricity 1.9E-4, Launch_Mass_kg 5400.0, Apogee_km 35795, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.003490659, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 5.7E-4, Launch_Mass_kg 2885.0, Apogee_km 35810, Perigee_km 35762, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 7.5E-4, Launch_Mass_kg 2500.0, Apogee_km 35817, Perigee_km 35754, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 3.2E-4, Launch_Mass_kg 5000.0, Apogee_km 35799, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 3.8E-4, Launch_Mass_kg 2490.0, Apogee_km 35802, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 5.0E-4, Launch_Mass_kg nil, Apogee_km 35767, Perigee_km 35725, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.03, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 1.2E-4, Launch_Mass_kg 3170.0, Apogee_km 35790, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 7.0E-5, Launch_Mass_kg 2950.0, Apogee_km 35794, Perigee_km 35788, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.1E-4, Launch_Mass_kg 1525.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 4.7E-4, Launch_Mass_kg 3190.0, Apogee_km 35806, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.0E-5, Launch_Mass_kg 5600.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Multinational", Eccentricity 1.8E-4, Launch_Mass_kg 2200.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.7E-4, Launch_Mass_kg 4892.0, Apogee_km 35806, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.2E-4, Launch_Mass_kg 5404.0, Apogee_km 35794, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.21, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 6.9E-4, Launch_Mass_kg 2915.0, Apogee_km 35815, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 5102.0, Apogee_km 35797, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.3E-4, Launch_Mass_kg 4050.0, Apogee_km 35805, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Multinational", Eccentricity 3.0E-4, Launch_Mass_kg 4600.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 5250.0, Apogee_km 35800, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.28, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 3.9E-4, Launch_Mass_kg 4300.0, Apogee_km 35802, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.7E-4, Launch_Mass_kg 3150.0, Apogee_km 35806, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.8E-4, Launch_Mass_kg 4100.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 7.0E-4, Launch_Mass_kg 3800.0, Apogee_km 35815, Perigee_km 35756, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 6.3E-4, Launch_Mass_kg 4900.0, Apogee_km 35812, Perigee_km 35759, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.0E-5, Launch_Mass_kg 4880.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 0.00168, Launch_Mass_kg 6150.0, Apogee_km 35856, Perigee_km 35714, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.01, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 0.00104, Launch_Mass_kg 100.0, Apogee_km 821, Perigee_km 806, Type_of_Orbit "Sun-Synchronous", Purpose "Maritime Tracking", Period_minutes 101.2, Inclination_radians 1.727875959, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia/Multinational", Eccentricity 1.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 8.0E-5, Launch_Mass_kg 2600.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.047996554, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.8E-4, Launch_Mass_kg 2600.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 4.0E-5, Launch_Mass_kg 2542.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.0E-5, Launch_Mass_kg 2532.0, Apogee_km 35995, Perigee_km 35987, Type_of_Orbit "", Purpose "Communications", Period_minutes 1446.57, Inclination_radians 0.001919862, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00618, Launch_Mass_kg 3400.0, Apogee_km 35940, Perigee_km 35420, Type_of_Orbit "", Purpose "Communications", Period_minutes 1430.6, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 46.0, Apogee_km 540, Perigee_km 538, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.4, Inclination_radians 0.617846555, Users "Civil/Military", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.00193, Launch_Mass_kg 55.0, Apogee_km 654, Perigee_km 627, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.54, Inclination_radians 1.256113463, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.7E-4, Launch_Mass_kg nil, Apogee_km 500, Perigee_km 488, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.49, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.7E-4, Launch_Mass_kg nil, Apogee_km 500, Perigee_km 488, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.49, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.7E-4, Launch_Mass_kg 1390.0, Apogee_km 35791, Perigee_km 35777, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 1436.0, Inclination_radians 0.013439035, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.3E-4, Launch_Mass_kg 1390.0, Apogee_km 35803, Perigee_km 35767, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 1436.04, Inclination_radians 0.045553093, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.6E-4, Launch_Mass_kg 1390.0, Apogee_km 35816, Perigee_km 35760, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 1436.19, Inclination_radians 0.038222711, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00104, Launch_Mass_kg 2300.0, Apogee_km 835, Perigee_km 820, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 101.5, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 2300.0, Apogee_km 828, Perigee_km 827, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 101.5, Inclination_radians 1.724385301, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 2300.0, Apogee_km 828, Perigee_km 827, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 101.45, Inclination_radians 1.724559834, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00137, Launch_Mass_kg 4303.0, Apogee_km 556, Perigee_km 537, Type_of_Orbit "", Purpose "Astrophysics", Period_minutes 95.6, Inclination_radians 0.446804289, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg nil, Apogee_km 1107, Perigee_km 1101, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 107.35, Inclination_radians 2.146580447, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00261, Launch_Mass_kg nil, Apogee_km 1107, Perigee_km 1068, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 107.0, Inclination_radians 2.14675498, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00101, Launch_Mass_kg nil, Apogee_km 1081, Perigee_km 1066, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 106.7, Inclination_radians 2.14675498, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 2.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 2.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 3.0, Apogee_km 506, Perigee_km 500, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.001, Launch_Mass_kg 2310.0, Apogee_km 35829, Perigee_km 35745, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.156556034, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan", Eccentricity 2.1E-4, Launch_Mass_kg 764.0, Apogee_km 893, Perigee_km 890, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 102.8, Inclination_radians 1.727875959, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0023, Launch_Mass_kg 215.0, Apogee_km 823, Perigee_km 790, Type_of_Orbit "Intermediate", Purpose "Earth Observation", Period_minutes 101.0, Inclination_radians 1.221730476, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Netherlands", Eccentricity 0.00635, Launch_Mass_kg 1.0, Apogee_km 683, Perigee_km 594, Type_of_Orbit "", Purpose "Communications", Period_minutes 97.4, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 4488.0, Apogee_km 35795, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.5E-4, Launch_Mass_kg 1760.0, Apogee_km 35796, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA/Japan", Eccentricity 1.1E-4, Launch_Mass_kg 4060.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 2086.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 2033.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 4640.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 4100.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 4642.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 4690.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 3515.0, Apogee_km 35801, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 3765.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 3790.0, Apogee_km 35794, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 5493.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 5.0E-5, Launch_Mass_kg 4860.0, Apogee_km 35788, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 0.0011, Launch_Mass_kg 700.0, Apogee_km 23307, Perigee_km 23242, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 846.98, Inclination_radians 0.954171502, Users "Commerical", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 0.00111, Launch_Mass_kg 700.0, Apogee_km 23306, Perigee_km 23240, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 846.88, Inclination_radians 0.954346035, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 3.2E-4, Launch_Mass_kg 700.0, Apogee_km 23233, Perigee_km 23214, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 844.76, Inclination_radians 0.965865208, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 1.7E-4, Launch_Mass_kg 700.0, Apogee_km 23227, Perigee_km 23217, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 844.69, Inclination_radians 0.965167076, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00171, Launch_Mass_kg 1000.0, Apogee_km 654, Perigee_km 630, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 97.56, Inclination_radians 1.711644397, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.0E-5, Launch_Mass_kg 5000.0, Apogee_km 35790, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001570796, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Indonesia/Philippines/Thailand", Eccentricity 3.2E-4, Launch_Mass_kg 4291.0, Apogee_km 35801, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 0.021293017, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Denmark", Eccentricity 0.01597, Launch_Mass_kg 3.0, Apogee_km 819, Perigee_km 593, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.9, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.0034, Launch_Mass_kg 1360.0, Apogee_km 569, Perigee_km 522, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.6, Inclination_radians 1.125737368, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Yasny Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00564, Launch_Mass_kg 1360.0, Apogee_km 586, Perigee_km 508, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.6, Inclination_radians 1.125737368, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00106, Launch_Mass_kg 1955.0, Apogee_km 686, Perigee_km 671, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.3, Inclination_radians 1.712167996, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.83044, Launch_Mass_kg 980.0, Apogee_km 104552, Perigee_km 3905, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 2474.83, Inclination_radians 0.389208423, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "USA/Japan", Eccentricity 2.1E-4, Launch_Mass_kg 1900.0, Apogee_km 704, Perigee_km 701, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1412, Perigee_km 1407, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00103, Launch_Mass_kg 450.0, Apogee_km 1422, Perigee_km 1406, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.03408, Launch_Mass_kg 450.0, Apogee_km 1413, Perigee_km 900, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1478, Perigee_km 1477, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 450.0, Apogee_km 1417, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1415, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.08, Inclination_radians 0.907396678, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.01757, Launch_Mass_kg 700.0, Apogee_km 1739, Perigee_km 1459, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 118.2, Inclination_radians 1.291543646, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00258, Launch_Mass_kg 700.0, Apogee_km 1400, Perigee_km 1360, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 113.35, Inclination_radians 0.907222145, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 8.2E-4, Launch_Mass_kg 700.0, Apogee_km 927, Perigee_km 915, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 103.44, Inclination_radians 0.907745744, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 5.8E-4, Launch_Mass_kg 700.0, Apogee_km 1418, Perigee_km 1409, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.08, Inclination_radians 0.907222145, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.9E-4, Launch_Mass_kg 700.0, Apogee_km 928, Perigee_km 918, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 103.48, Inclination_radians 0.907745744, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00135, Launch_Mass_kg 700.0, Apogee_km 1391, Perigee_km 1370, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 113.96, Inclination_radians 0.907745744, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.9E-4, Launch_Mass_kg 935.0, Apogee_km 19146, Perigee_km 19116, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.78, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 1480.0, Apogee_km 19141, Perigee_km 19134, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.1, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 1480.0, Apogee_km 19125, Perigee_km 19118, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.39, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0, Launch_Mass_kg 1480.0, Apogee_km 19130, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.75, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0, Launch_Mass_kg 1480.0, Apogee_km 19130, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.75, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0, Launch_Mass_kg 1480.0, Apogee_km 19130, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.75, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00151, Launch_Mass_kg 1480.0, Apogee_km 19171, Perigee_km 19094, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.83, Inclination_radians 1.132718685, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.8E-4, Launch_Mass_kg 1480.0, Apogee_km 19133, Perigee_km 19124, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.67, Inclination_radians 1.132718685, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0046, Launch_Mass_kg 1480.0, Apogee_km 19378, Perigee_km 19142, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 680.91, Inclination_radians 1.128529894, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00285, Launch_Mass_kg 1480.0, Apogee_km 19126, Perigee_km 18981, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 672.7, Inclination_radians 1.128355361, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00425, Launch_Mass_kg 1480.0, Apogee_km 19365, Perigee_km 19147, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 680.75, Inclination_radians 1.128704427, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.6E-4, Launch_Mass_kg 1480.0, Apogee_km 19141, Perigee_km 19092, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.2, Inclination_radians 1.130798822, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.2E-4, Launch_Mass_kg 1480.0, Apogee_km 19145, Perigee_km 19134, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.1, Inclination_radians 1.130798822, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.0E-4, Launch_Mass_kg 1480.0, Apogee_km 19141, Perigee_km 19136, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.07, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.9E-4, Launch_Mass_kg 1415.0, Apogee_km 19142, Perigee_km 19112, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.62, Inclination_radians 1.131496954, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00419, Launch_Mass_kg 1415.0, Apogee_km 19135, Perigee_km 18922, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 671.71, Inclination_radians 1.130798822, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0056, Launch_Mass_kg 1415.0, Apogee_km 19419, Perigee_km 19132, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 681.53, Inclination_radians 1.131147888, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.3E-4, Launch_Mass_kg 1415.0, Apogee_km 19146, Perigee_km 19119, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.85, Inclination_radians 1.130275224, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 4.0E-5, Launch_Mass_kg 1415.0, Apogee_km 19133, Perigee_km 19131, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.81, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00524, Launch_Mass_kg 1415.0, Apogee_km 19130, Perigee_km 18864, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 670.47, Inclination_radians 1.130624289, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.1E-4, Launch_Mass_kg 1415.0, Apogee_km 19129, Perigee_km 19098, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.08, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 1415.0, Apogee_km 19135, Perigee_km 19128, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.81, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00421, Launch_Mass_kg 1415.0, Apogee_km 19123, Perigee_km 18909, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 671.2, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00515, Launch_Mass_kg 1415.0, Apogee_km 19380, Perigee_km 19116, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 680.43, Inclination_radians 1.131671487, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00188, Launch_Mass_kg 1415.0, Apogee_km 19175, Perigee_km 19079, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.61, Inclination_radians 1.131671487, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.3E-4, Launch_Mass_kg 1415.0, Apogee_km 19158, Perigee_km 19126, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.2, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00121, Launch_Mass_kg 1415.0, Apogee_km 19204, Perigee_km 19142, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 677.46, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.6E-4, Launch_Mass_kg 1415.0, Apogee_km 19199, Perigee_km 19150, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 677.5, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00143, Launch_Mass_kg 1415.0, Apogee_km 19212, Perigee_km 19139, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 677.54, Inclination_radians 1.130624289, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.3E-4, Launch_Mass_kg 1415.0, Apogee_km 19162, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.38, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00169, Launch_Mass_kg 1415.0, Apogee_km 19173, Perigee_km 19087, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.73, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 3200.0, Apogee_km 35801, Perigee_km 35768, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.0, Inclination_radians 0.004886922, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 3200.0, Apogee_km 35170, Perigee_km 35170, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.0, Inclination_radians 0.0, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 3175.0, Apogee_km 35788, Perigee_km 35786, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.14, Inclination_radians 0.007330383, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.3E-4, Launch_Mass_kg 627.0, Apogee_km 35800, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.249582083, Users "Civil", Class_of_Orbit "GEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "Turkey", Eccentricity 0.00149, Launch_Mass_kg 409.0, Apogee_km 690, Perigee_km 669, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.35, Inclination_radians 1.713215194, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00109, Launch_Mass_kg 240.0, Apogee_km 1415, Perigee_km 1398, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 113.9, Inclination_radians 1.441641962, Users "Commercial/Government/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.4E-4, Launch_Mass_kg 240.0, Apogee_km 1415, Perigee_km 1405, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 1.441641962, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.8E-4, Launch_Mass_kg 240.0, Apogee_km 1417, Perigee_km 1408, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 1.441641962, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 8.3E-4, Launch_Mass_kg 270.0, Apogee_km 1510, Perigee_km 1497, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 116.1, Inclination_radians 1.439896633, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00203, Launch_Mass_kg 270.0, Apogee_km 1510, Perigee_km 1478, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00159, Launch_Mass_kg 270.0, Apogee_km 1507, Perigee_km 1482, Type_of_Orbit "", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.4397221, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 270.0, Apogee_km 1511, Perigee_km 1480, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.5E-4, Launch_Mass_kg 270.0, Apogee_km 1508, Perigee_km 1493, Type_of_Orbit "", Purpose "Communications", Period_minutes 116.0, Inclination_radians 1.4397221, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.5E-4, Launch_Mass_kg 270.0, Apogee_km 1509, Perigee_km 1494, Type_of_Orbit "", Purpose "Communications", Period_minutes 116.02, Inclination_radians 1.614255025, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany/USA", Eccentricity 0.0011, Launch_Mass_kg 480.0, Apogee_km 450, Perigee_km 435, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.4, Inclination_radians 1.553343034, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany/USA", Eccentricity 0.00125, Launch_Mass_kg 480.0, Apogee_km 451, Perigee_km 434, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.4, Inclination_radians 1.553343034, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 1.4E-4, Launch_Mass_kg 1750.0, Apogee_km 670, Perigee_km 668, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.1, Inclination_radians 1.712167996, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 2.1E-4, Launch_Mass_kg 3400.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 5.9E-4, Launch_Mass_kg 1410.0, Apogee_km 35811, Perigee_km 35761, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001570796, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 5.6E-4, Launch_Mass_kg 1982.0, Apogee_km 35810, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.004014257, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 2.4E-4, Launch_Mass_kg 1825.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications/Technology Development", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 6.8E-4, Launch_Mass_kg 2650.0, Apogee_km 35814, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.003316126, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 1.7E-4, Launch_Mass_kg 3093.0, Apogee_km 35796, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications/Navigation", Period_minutes 1436.23, Inclination_radians 0.001570796, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00147, Launch_Mass_kg 500.0, Apogee_km 803, Perigee_km 782, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 100.7, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.4E-4, Launch_Mass_kg 1500.0, Apogee_km 967, Perigee_km 965, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 104.4, Inclination_radians 1.734857276, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 0.0025, Launch_Mass_kg 42.5, Apogee_km 636, Perigee_km 601, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 97.1, Inclination_radians 1.70344135, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Italy/Belgium/Spain/Greece", Eccentricity 1.4E-4, Launch_Mass_kg 4200.0, Apogee_km 683, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 98.0, Inclination_radians 1.712167996, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Italy/Belgium/Spain/Greece", Eccentricity 2.1E-4, Launch_Mass_kg 4200.0, Apogee_km 682, Perigee_km 679, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 98.37, Inclination_radians 1.712167996, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Greece", Eccentricity 4.0E-4, Launch_Mass_kg 3300.0, Apogee_km 35803, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00116, Launch_Mass_kg 293.0, Apogee_km 551, Perigee_km 535, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 95.5, Inclination_radians 0.663225116, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Multinational", Eccentricity 0.00184, Launch_Mass_kg 700.0, Apogee_km 696, Perigee_km 670, Type_of_Orbit "", Purpose "Solar Physics", Period_minutes 98.4, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Japan", Eccentricity 0.01367, Launch_Mass_kg 348.0, Apogee_km 1155, Perigee_km 952, Type_of_Orbit "", Purpose "Space Science", Period_minutes 106.27, Inclination_radians 0.541052068, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "Spain", Eccentricity 5.2E-4, Launch_Mass_kg 3112.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Commercial/Gov/Mil", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Spain", Eccentricity 5.3E-4, Launch_Mass_kg 3288.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 3.49066E-4, Users "Commercial/Gov/Mil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 5.0E-5, Launch_Mass_kg 5320.0, Apogee_km 35786, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.95, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00264, Launch_Mass_kg 470.0, Apogee_km 665, Perigee_km 628, Type_of_Orbit "Polar", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00371, Launch_Mass_kg 470.0, Apogee_km 673, Perigee_km 621, Type_of_Orbit "Polar", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00102, Launch_Mass_kg 890.0, Apogee_km 503, Perigee_km 489, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.53, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 3.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "", Purpose "Radar Calibration", Period_minutes 94.65, Inclination_radians 0.70703288, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA/Japan", Eccentricity 2.3E-4, Launch_Mass_kg 2300.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.00135, Launch_Mass_kg 7.1, Apogee_km 669, Perigee_km 650, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.9, Inclination_radians 1.713913325, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "ESA/USA", Eccentricity 2.9E-4, Launch_Mass_kg 11110.0, Apogee_km 559, Perigee_km 555, Type_of_Orbit "Intermediate", Purpose "Astrophysics/Planetary Science", Period_minutes 95.8, Inclination_radians 0.497418837, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Spain", Eccentricity 0.00358, Launch_Mass_kg 1.0, Apogee_km 640, Perigee_km 590, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.9E-4, Launch_Mass_kg 2242.0, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.8E-4, Launch_Mass_kg 3311.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.14, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Pakistan", Eccentricity 0.00351, Launch_Mass_kg 1.0, Apogee_km 639, Perigee_km 590, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 4.4E-4, Launch_Mass_kg 850.0, Apogee_km 491, Perigee_km 485, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.36, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 5.8E-4, Launch_Mass_kg 850.0, Apogee_km 492, Perigee_km 484, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.37, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 5.8E-4, Launch_Mass_kg 1600.0, Apogee_km 492, Perigee_km 484, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.37, Inclination_radians 1.698379895, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.2E-4, Launch_Mass_kg 1600.0, Apogee_km 591, Perigee_km 588, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.47, Inclination_radians 1.705012146, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 1.5E-4, Launch_Mass_kg 1600.0, Apogee_km 514, Perigee_km 512, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.89, Inclination_radians 1.700997889, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 3.6E-4, Launch_Mass_kg 1600.0, Apogee_km 514, Perigee_km 509, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.85, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity nil, Launch_Mass_kg nil, Apogee_km nil, Perigee_km nil, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes nil, Inclination_radians nil, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 726.0, Apogee_km 680, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.3, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.709, Launch_Mass_kg 4000.0, Apogee_km 37564, Perigee_km 1111, Type_of_Orbit "Molniya", Purpose "Electronic Surveillance", Period_minutes 684.0, Inclination_radians 1.099557429, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.70905, Launch_Mass_kg 4200.0, Apogee_km 37580, Perigee_km 1112, Type_of_Orbit "Molniya", Purpose "Electronic Surveillance", Period_minutes 684.0, Inclination_radians 1.109331273, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00121, Launch_Mass_kg 83.0, Apogee_km 637, Perigee_km 620, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.3, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "United Kingdom", Eccentricity 5.2E-4, Launch_Mass_kg 2064.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 5.5E-4, Launch_Mass_kg 2070.0, Apogee_km 35809, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.9E-4, Launch_Mass_kg 2066.0, Apogee_km 35642, Perigee_km 35609, Type_of_Orbit "", Purpose "Communications", Period_minutes 1427.91, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 4.0E-4, Launch_Mass_kg 2000.0, Apogee_km 35803, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "United Kingdom", Eccentricity 3.2E-4, Launch_Mass_kg 5959.0, Apogee_km 35799, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.040142573, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "United Kingdom", Eccentricity 3.2E-4, Launch_Mass_kg 5458.0, Apogee_km 35800, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.040666172, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 2.7E-4, Launch_Mass_kg 5960.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.05253441, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 7.0E-5, Launch_Mass_kg 6070.0, Apogee_km 35790, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 1.5E-4, Launch_Mass_kg 2950.0, Apogee_km 35793, Perigee_km 35780, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.1, Inclination_radians 0.0, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 5.3E-4, Launch_Mass_kg 2750.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 1.1E-4, Launch_Mass_kg 2090.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.09, Inclination_radians 0.00418879, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 5.0E-4, Launch_Mass_kg 2750.0, Apogee_km 35807, Perigee_km 35765, Type_of_Orbit "", Purpose "Communications/Earth Science", Period_minutes 1436.08, Inclination_radians 0.002094395, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 2.3E-4, Launch_Mass_kg 3100.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 6.0E-4, Launch_Mass_kg 3028.0, Apogee_km 35811, Perigee_km 35760, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 1.0E-4, Launch_Mass_kg 2130.0, Apogee_km 37791, Perigee_km 37782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA/USA/Russia", Eccentricity 0.89688, Launch_Mass_kg 4000.0, Apogee_km 152812, Perigee_km 2284, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 4032.86, Inclination_radians 0.90931654, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 3739.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 5576.0, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 2491.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.4E-4, Launch_Mass_kg 5613.0, Apogee_km 35800, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 2550.0, Apogee_km 35798, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 2450.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.19, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg 5540.0, Apogee_km 35804, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3200.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 5600.0, Apogee_km 35801, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.01, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 4793.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 6094.0, Apogee_km 35790, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 5984.0, Apogee_km 35811, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.39, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 6199.0, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 3200.0, Apogee_km 35797, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.21, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 4100.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 3124.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 2730.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 4200.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.104545222, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3833.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3642.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 3642.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 3653.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 3592.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3420.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 3659.0, Apogee_km 35792, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.14, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 4723.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 4723.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 25.06467339, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 0.79307, Launch_Mass_kg 4723.0, Apogee_km 358802, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 4680.0, Apogee_km 35789, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 4723.0, Apogee_km 35805, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.5E-4, Launch_Mass_kg 4723.0, Apogee_km 35796, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 4685.0, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 2550.0, Apogee_km 35804, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.003141593, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 0.00109, Launch_Mass_kg 3000.0, Apogee_km 35892, Perigee_km 35800, Type_of_Orbit "", Purpose "Communications", Period_minutes 1439.15, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 0.00155, Launch_Mass_kg nil, Apogee_km 422, Perigee_km 401, Type_of_Orbit "Intermediate", Purpose "Scientific Research", Period_minutes 92.8, Inclination_radians 0.900589894, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Kwajalein Island", Country_of_Operator "USA", Eccentricity 0.92129, Launch_Mass_kg 462.0, Apogee_km 320000, Perigee_km 7000, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 0.22, Inclination_radians 0.191986218, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02986, Launch_Mass_kg 1.0, Apogee_km 890, Perigee_km 469, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.3, Inclination_radians 2.103121749, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 711, Perigee_km 708, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.0, Inclination_radians 1.509709803, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 775, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg nil, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.506219144, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 751, Perigee_km 747, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.509709803, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 689.0, Apogee_km 753, Perigee_km 744, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 689.0, Apogee_km 778, Perigee_km 777, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 689.0, Apogee_km 782, Perigee_km 773, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 689.0, Apogee_km 754, Perigee_km 745, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.521927108, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 689.0, Apogee_km 778, Perigee_km 777, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 689.0, Apogee_km 750, Perigee_km 748, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00314, Launch_Mass_kg 236.0, Apogee_km 664, Perigee_km 620, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 97.5, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.0019, Launch_Mass_kg 1425.0, Apogee_km 35872, Perigee_km 35712, Type_of_Orbit "", Purpose "Navigation", Period_minutes 1436.0, Inclination_radians 0.472984227, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 4.2E-4, Launch_Mass_kg 1360.0, Apogee_km 823, Perigee_km 817, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 101.3, Inclination_radians 1.724385301, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Turkey", Eccentricity 7.8E-4, Launch_Mass_kg 1.0, Apogee_km 721, Perigee_km 710, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.1, Inclination_radians 1.717403984, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA/France", Eccentricity 7.8E-4, Launch_Mass_kg 553.0, Apogee_km 1344, Perigee_km 1332, Type_of_Orbit "Intermediate", Purpose "Earth Science", Period_minutes 112.4, Inclination_radians 1.151917306, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 3.4E-4, Launch_Mass_kg 4400.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.020769418, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 6.0E-5, Launch_Mass_kg 3531.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.3E-4, Launch_Mass_kg 4500.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.9E-4, Launch_Mass_kg 2982.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 7.0E-5, Launch_Mass_kg 2500.0, Apogee_km 35794, Perigee_km 35788, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Japan", Eccentricity 0.04729, Launch_Mass_kg 2900.0, Apogee_km 37768, Perigee_km 33782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.52, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Japan", Eccentricity 2.5E-4, Launch_Mass_kg 4400.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.7E-4, Launch_Mass_kg 4000.0, Apogee_km 35794, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00187, Launch_Mass_kg 3.0, Apogee_km 866, Perigee_km 839, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 102.0, Inclination_radians 0.34906585, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 7.0E-5, Launch_Mass_kg 1060.0, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Kazakhstan", Eccentricity 2.0E-5, Launch_Mass_kg 1300.0, Apogee_km 35788, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 18000.0, Apogee_km 800, Perigee_km 800, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 100.87, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.06, Launch_Mass_kg 18000.0, Apogee_km 1041, Perigee_km 202, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.13, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.05593, Launch_Mass_kg 18000.0, Apogee_km 1050, Perigee_km 264, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.0, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.05739, Launch_Mass_kg 18000.0, Apogee_km 1000, Perigee_km 200, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.05288, Launch_Mass_kg 18000.0, Apogee_km 997, Perigee_km 257, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.25, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 1.7E-4, Launch_Mass_kg 5800.0, Apogee_km 35792, Perigee_km 35778, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 1436.04, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.4E-4, Launch_Mass_kg 4850.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.00114, Launch_Mass_kg 3.0, Apogee_km 667, Perigee_km 651, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.92, Inclination_radians 1.710946266, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "South Korea", Eccentricity 0.00156, Launch_Mass_kg 800.0, Apogee_km 698, Perigee_km 676, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 98.5, Inclination_radians 1.713913325, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "South Korea", Eccentricity 0.0012, Launch_Mass_kg 1000.0, Apogee_km 696, Perigee_km 679, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.5, Inclination_radians 1.713913325, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Yasny Cosmodrome", Country_of_Operator "South Korea", Eccentricity 0.00123, Launch_Mass_kg 1000.0, Apogee_km 552, Perigee_km 535, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 95.5, Inclination_radians 1.70344135, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.9E-4, Launch_Mass_kg 1150.0, Apogee_km 501, Perigee_km 497, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 94.6, Inclination_radians 1.30428455, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "South Korea", Eccentricity 1.4E-4, Launch_Mass_kg 4450.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "South Korea", Eccentricity 1.7E-4, Launch_Mass_kg 2850.0, Apogee_km 35794, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00195, Launch_Mass_kg nil, Apogee_km 317, Perigee_km 291, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 90.61, Inclination_radians 1.686686189, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 2.5, Apogee_km 499, Perigee_km 498, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.58, Inclination_radians 0.706858347, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 14500.0, Apogee_km 675, Perigee_km 671, Type_of_Orbit "Intermediate", Purpose "Surveillance", Period_minutes 98.2, Inclination_radians 0.994837674, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00729, Launch_Mass_kg 14500.0, Apogee_km 676, Perigee_km 574, Type_of_Orbit "Intermediate", Purpose "Surveillance", Period_minutes 97.21, Inclination_radians 1.186823891, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 14500.0, Apogee_km 716, Perigee_km 713, Type_of_Orbit "Intermediate", Purpose "Surveillance", Period_minutes 99.08, Inclination_radians 0.995012207, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 2744.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 2780.0, Apogee_km 705, Perigee_km 700, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Indonesia", Eccentricity 0.00143, Launch_Mass_kg 60.0, Apogee_km 637, Perigee_km 617, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 97.2, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.00414, Launch_Mass_kg nil, Apogee_km 668, Perigee_km 610, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 97.5, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.00811, Launch_Mass_kg nil, Apogee_km 717, Perigee_km 603, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 97.9, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Kennedy Space Center", Country_of_Operator "USA/Australia", Eccentricity 6.2E-4, Launch_Mass_kg 3400.0, Apogee_km 35812, Perigee_km 35760, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.139102741, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.6E-4, Launch_Mass_kg 5000.0, Apogee_km 911, Perigee_km 900, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 103.1, Inclination_radians 1.172861257, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.8E-4, Launch_Mass_kg 950.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.8, Inclination_radians 0.084648469, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 3.4E-4, Launch_Mass_kg 1282.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.003839724, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Morocco/Germany", Eccentricity 0.00204, Launch_Mass_kg 47.0, Apogee_km 1014, Perigee_km 984, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 105.1, Inclination_radians 1.731366618, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Hungary", Eccentricity 0.06917, Launch_Mass_kg 1.0, Apogee_km 1297, Perigee_km 305, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 100.9, Inclination_radians 1.21300383, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02562, Launch_Mass_kg 2.0, Apogee_km 816, Perigee_km 457, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.45, Inclination_radians 1.774999849, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 1.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Malaysia", Eccentricity 1.1E-4, Launch_Mass_kg 1450.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.019024089, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Malaysia", Eccentricity 1.9E-4, Launch_Mass_kg 4900.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Malaysia", Eccentricity 7.1E-4, Launch_Mass_kg 2417.0, Apogee_km 35788, Perigee_km 35728, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.6, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India/France", Eccentricity 0.00104, Launch_Mass_kg 1000.0, Apogee_km 868, Perigee_km 853, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 102.2, Inclination_radians 0.34906585, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00448, Launch_Mass_kg 8000.0, Apogee_km 35976, Perigee_km 35598, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 1436.13, Inclination_radians 0.089011792, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.05012, Launch_Mass_kg 8000.0, Apogee_km 37900, Perigee_km 33674, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 1436.12, Inclination_radians 0.127932634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.72382, Launch_Mass_kg 2500.0, Apogee_km 39388, Perigee_km 961, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 645.98, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.72377, Launch_Mass_kg 2500.0, Apogee_km 39396, Perigee_km 964, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 717.88, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.72223, Launch_Mass_kg nil, Apogee_km 39362, Perigee_km 1006, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 718.04, Inclination_radians 1.09484504, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 2700.0, Apogee_km 820, Perigee_km 818, Type_of_Orbit "Polar", Purpose "Meteorology", Period_minutes 101.3, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 8.0E-5, Launch_Mass_kg 2000.0, Apogee_km 35791, Perigee_km 35784, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.15, Inclination_radians 0.031415927, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 3.2E-4, Launch_Mass_kg 696.0, Apogee_km 35797, Perigee_km 35770, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1435.96, Inclination_radians 0.082205008, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.4E-4, Launch_Mass_kg 2000.0, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.1, Inclination_radians 0.008028515, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 2000.0, Apogee_km 35795, Perigee_km 35775, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.0, Inclination_radians 0.005061455, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 7.0E-5, Launch_Mass_kg 4193.0, Apogee_km 821, Perigee_km 820, Type_of_Orbit "Polar", Purpose "Earth Science/Meteorology", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 2.1E-4, Launch_Mass_kg 4085.0, Apogee_km 822, Perigee_km 819, Type_of_Orbit "Polar", Purpose "Earth Science/Meteorology", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 8.0E-5, Launch_Mass_kg 2900.0, Apogee_km 35791, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 0.00122173, Users "Government/Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.7E-4, Launch_Mass_kg 4536.0, Apogee_km 35819, Perigee_km 35754, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.104545222, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 5.2E-4, Launch_Mass_kg 4536.0, Apogee_km 35809, Perigee_km 35765, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.006108652, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 5.0E-5, Launch_Mass_kg 4536.0, Apogee_km 35768, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.04, Inclination_radians 0.078539816, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.9E-4, Launch_Mass_kg 4536.0, Apogee_km 35820, Perigee_km 35753, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.060213859, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.5E-4, Launch_Mass_kg 4536.0, Apogee_km 35806, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.0143117, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00184, Launch_Mass_kg 65.0, Apogee_km 1510, Perigee_km 1481, Type_of_Orbit "", Purpose "Earth Observation/Technology Development", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00111, Launch_Mass_kg 110.0, Apogee_km 821, Perigee_km 805, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Earth Science", Period_minutes 101.2, Inclination_radians 1.72613063, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Canada", Eccentricity 0.00104, Launch_Mass_kg 53.0, Apogee_km 832, Perigee_km 817, Type_of_Orbit "Sun-Synchronous", Purpose "Astrophysics", Period_minutes 101.4, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00149, Launch_Mass_kg 64.0, Apogee_km 690, Perigee_km 669, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.3, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA/Canada", Eccentricity 5.5E-4, Launch_Mass_kg 2850.0, Apogee_km 35809, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.023911011, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA/Canada", Eccentricity 2.4E-4, Launch_Mass_kg 2850.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.070162236, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00182, Launch_Mass_kg 587.0, Apogee_km 525, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.9, Inclination_radians 1.699950691, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.1E-4, Launch_Mass_kg 2900.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Meteorology/Navigation", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.5E-4, Launch_Mass_kg 2900.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 6804.0, Apogee_km 35800, Perigee_km 35800, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians nil, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00118, Launch_Mass_kg 6804.0, Apogee_km 35900, Perigee_km 35800, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians nil, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 3.6E-4, Launch_Mass_kg 20.0, Apogee_km 659, Perigee_km 654, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 97.9, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Spain", Eccentricity 0.00636, Launch_Mass_kg 20.0, Apogee_km 672, Perigee_km 583, Type_of_Orbit "Polar", Purpose "Communications/Technology Development", Period_minutes 97.3, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "United Kingdom", Eccentricity 2.4E-4, Launch_Mass_kg 1430.0, Apogee_km 35795, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.127932634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01508, Launch_Mass_kg 1816.0, Apogee_km 20582, Perigee_km 19781, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.94, Inclination_radians 0.973544657, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00836, Launch_Mass_kg 1816.0, Apogee_km 20403, Perigee_km 19959, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.93, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00234, Launch_Mass_kg 1816.0, Apogee_km 20244, Perigee_km 20120, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.954695101, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00294, Launch_Mass_kg 1816.0, Apogee_km 20260, Perigee_km 20104, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0062, Launch_Mass_kg 1816.0, Apogee_km 20315, Perigee_km 19986, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 716.69, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00384, Launch_Mass_kg 1816.0, Apogee_km 20284, Perigee_km 20080, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.954695101, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00175, Launch_Mass_kg 1816.0, Apogee_km 20227, Perigee_km 20134, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.91, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01011, Launch_Mass_kg 1816.0, Apogee_km 20449, Perigee_km 19912, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.91, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00279, Launch_Mass_kg 1816.0, Apogee_km 20257, Perigee_km 20109, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.01, Inclination_radians 0.95644043, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.8E-4, Launch_Mass_kg 1630.0, Apogee_km 20224, Perigee_km 20188, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.94, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 1630.0, Apogee_km 20464, Perigee_km 20451, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 729.18, Inclination_radians 0.960454687, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 1630.0, Apogee_km 20191, Perigee_km 20174, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.0, Inclination_radians 0.959058424, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00118, Launch_Mass_kg 1630.0, Apogee_km 20247, Perigee_km 20184, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 719.32, Inclination_radians 0.961501885, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00686, Launch_Mass_kg 2217.0, Apogee_km 20327, Perigee_km 19963, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 716.47, Inclination_radians 0.961676418, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00352, Launch_Mass_kg 2217.0, Apogee_km 20276, Perigee_km 20089, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.98, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00414, Launch_Mass_kg 2217.0, Apogee_km 20292, Perigee_km 20072, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.96, Inclination_radians 0.966388807, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00919, Launch_Mass_kg 2217.0, Apogee_km 20426, Perigee_km 19938, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.0, Inclination_radians 0.95644043, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00233, Launch_Mass_kg 2217.0, Apogee_km 20247, Perigee_km 20123, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.09, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00324, Launch_Mass_kg 2217.0, Apogee_km 20268, Perigee_km 20096, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.925024504, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0019, Launch_Mass_kg 2217.0, Apogee_km 20234, Perigee_km 20133, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.03, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00455, Launch_Mass_kg 2217.0, Apogee_km 20427, Perigee_km 20184, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 722.98, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00601, Launch_Mass_kg 2217.0, Apogee_km 20498, Perigee_km 20177, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 724.28, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00305, Launch_Mass_kg 2217.0, Apogee_km 20266, Perigee_km 20104, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.09, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00355, Launch_Mass_kg 2217.0, Apogee_km 20344, Perigee_km 20155, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 720.71, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00695, Launch_Mass_kg 2217.0, Apogee_km 20433, Perigee_km 20063, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 720.65, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00149, Launch_Mass_kg 2217.0, Apogee_km 20221, Perigee_km 20142, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.95, Inclination_radians 0.961327352, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00606, Launch_Mass_kg 2060.0, Apogee_km 20342, Perigee_km 20020, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.93, Inclination_radians 0.958883891, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.003, Launch_Mass_kg 2060.0, Apogee_km 20366, Perigee_km 20206, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 722.19, Inclination_radians 0.960280154, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00121, Launch_Mass_kg 2217.0, Apogee_km 20213, Perigee_km 20149, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.93, Inclination_radians 0.95644043, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00303, Launch_Mass_kg 2060.0, Apogee_km 20311, Perigee_km 20150, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 719.92, Inclination_radians 0.959232957, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 2217.0, Apogee_km 20152, Perigee_km 20135, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 716.4, Inclination_radians 0.961676418, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 9.2E-4, Launch_Mass_kg 2059.0, Apogee_km 20209, Perigee_km 20160, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.07, Inclination_radians 0.962025484, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Canada", Eccentricity 9.8E-4, Launch_Mass_kg 74.0, Apogee_km 786, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Space Observation", Period_minutes 100.4, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.2E-4, Launch_Mass_kg 494.0, Apogee_km 405, Perigee_km 398, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.6, Inclination_radians 0.841248699, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Nigeria", Eccentricity 2.0E-5, Launch_Mass_kg 5150.0, Apogee_km 35795, Perigee_km 35793, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.003490659, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Nigeria", Eccentricity 9.9E-4, Launch_Mass_kg 300.0, Apogee_km 705, Perigee_km 691, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Nigeria", Eccentricity 0.00248, Launch_Mass_kg 100.0, Apogee_km 696, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 98.3, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Egypt", Eccentricity 5.2E-4, Launch_Mass_kg 1825.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Egypt", Eccentricity 2.1E-4, Launch_Mass_kg 3200.0, Apogee_km 35813, Perigee_km 35795, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.23, Inclination_radians 8.72665E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.7E-4, Launch_Mass_kg 3600.0, Apogee_km 35793, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.8E-4, Launch_Mass_kg 4850.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 0.0, Launch_Mass_kg 4745.0, Apogee_km 35700, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 5.3E-4, Launch_Mass_kg 4745.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00111, Launch_Mass_kg 2223.0, Apogee_km 816, Perigee_km 800, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.0, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00104, Launch_Mass_kg 2223.0, Apogee_km 857, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.9, Inclination_radians 1.729621289, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00145, Launch_Mass_kg 2223.0, Apogee_km 864, Perigee_km 843, Type_of_Orbit "Sun-Synchronous", Purpose "Meteorology", Period_minutes 102.0, Inclination_radians 1.729621289, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00131, Launch_Mass_kg 1420.0, Apogee_km 864, Perigee_km 845, Type_of_Orbit "Sun-Synchronous", Purpose "Meteorology", Period_minutes 102.0, Inclination_radians 1.72613063, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 2128.0, Apogee_km 827, Perigee_km 827, Type_of_Orbit "Polar", Purpose "Meteorology", Period_minutes 101.4, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.2E-4, Launch_Mass_kg 1.0, Apogee_km 502, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.63, Inclination_radians 0.706858347, Users "Governmnet", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Netherlands", Eccentricity 2.0E-4, Launch_Mass_kg 5396.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Netherlands", Eccentricity 2.6E-4, Launch_Mass_kg 3582.0, Apogee_km 35798, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 1.7E-4, Launch_Mass_kg nil, Apogee_km 35793, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 2.4E-4, Launch_Mass_kg 3412.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 2.5E-4, Launch_Mass_kg 4575.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 2.7E-4, Launch_Mass_kg 4500.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 3.0E-4, Launch_Mass_kg 3642.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 1.8E-4, Launch_Mass_kg 3720.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 9.0E-5, Launch_Mass_kg 2238.0, Apogee_km 35792, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.17, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 3.2E-4, Launch_Mass_kg 1625.0, Apogee_km 35799, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Kwajalein Island", Country_of_Operator "USA", Eccentricity 0.00136, Launch_Mass_kg 360.0, Apogee_km 632, Perigee_km 613, Type_of_Orbit "", Purpose "Space Science", Period_minutes 97.2, Inclination_radians 0.104719755, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.00214, Launch_Mass_kg 5.5, Apogee_km 654, Perigee_km 624, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.48, Inclination_radians 1.256113463, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.1E-4, Launch_Mass_kg 700.0, Apogee_km 8069, Perigee_km 8063, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.93, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.4E-4, Launch_Mass_kg 700.0, Apogee_km 8069, Perigee_km 8062, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.93, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 1.4E-4, Launch_Mass_kg 700.0, Apogee_km 8068, Perigee_km 8064, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.94, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.1E-4, Launch_Mass_kg 700.0, Apogee_km 8069, Perigee_km 8063, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.93, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 1.4E-4, Launch_Mass_kg 960.0, Apogee_km 724, Perigee_km 722, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 99.2, Inclination_radians 1.715658655, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Svobodny Cosmodrome", Country_of_Operator "Sweden", Eccentricity 2.9E-4, Launch_Mass_kg 250.0, Apogee_km 573, Perigee_km 569, Type_of_Orbit "Sun-Synchronous", Purpose "Astrophysics/Earth Science", Period_minutes 96.1, Inclination_radians 1.70344135, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Palmachim Launch Complex", Country_of_Operator "Israel", Eccentricity 0.02862, Launch_Mass_kg 300.0, Apogee_km 764, Perigee_km 367, Type_of_Orbit "Retrograde", Purpose "Remote Sensing/Reconnaissance", Period_minutes 95.97, Inclination_radians 2.502802147, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Palmachim Launch Complex", Country_of_Operator "Israel", Eccentricity 0.01728, Launch_Mass_kg 300.0, Apogee_km 576, Perigee_km 340, Type_of_Orbit "", Purpose "Remote Sensing/Reconnaissance", Period_minutes 93.75, Inclination_radians 2.474178748, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Palmachim Launch Complex", Country_of_Operator "Israel", Eccentricity 0.01799, Launch_Mass_kg 300.0, Apogee_km 589, Perigee_km 343, Type_of_Orbit "", Purpose "Remote Sensing/Reconnaissance", Period_minutes 93.91, Inclination_radians 2.474527813, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Spain", Eccentricity 0.01437, Launch_Mass_kg 3.0, Apogee_km 797, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 3.1E-4, Launch_Mass_kg 4800.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Australia", Eccentricity 2.1E-4, Launch_Mass_kg 2858.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 2.7E-4, Launch_Mass_kg 2300.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 3.0E-4, Launch_Mass_kg 2400.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 2.4E-4, Launch_Mass_kg 2501.0, Apogee_km 35795, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 776, Perigee_km 770, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.6E-4, Launch_Mass_kg 45.0, Apogee_km 777, Perigee_km 769, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 776, Perigee_km 770, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 787, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 45.0, Apogee_km 792, Perigee_km 791, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 45.0, Apogee_km 793, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 45.0, Apogee_km 792, Perigee_km 790, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.6E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 786, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 787, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00488, Launch_Mass_kg 45.0, Apogee_km 838, Perigee_km 768, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.9, Inclination_radians 1.884955592, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 45.0, Apogee_km 774, Perigee_km 772, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 45.0, Apogee_km 774, Perigee_km 772, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 45.0, Apogee_km 774, Perigee_km 771, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-4, Launch_Mass_kg 45.0, Apogee_km 778, Perigee_km 768, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.6E-4, Launch_Mass_kg 45.0, Apogee_km 777, Perigee_km 769, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 4.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 4.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 0.00103, Launch_Mass_kg 434.0, Apogee_km 410, Perigee_km 396, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 92.62, Inclination_radians 0.698131701, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 4.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Denmark", Eccentricity 0.01435, Launch_Mass_kg 60.6, Apogee_km 839, Perigee_km 635, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 99.5, Inclination_radians 1.684242728, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Pakistan", Eccentricity 1.7E-4, Launch_Mass_kg 5120.0, Apogee_km 35800, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001745329, Users "Government/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Indonesia", Eccentricity 6.0E-5, Launch_Mass_kg 3014.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Indonesia", Eccentricity 1.4E-4, Launch_Mass_kg 4100.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg nil, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 1.4E-4, Launch_Mass_kg 120.0, Apogee_km 694, Perigee_km 692, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.6, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00456, Launch_Mass_kg 825.0, Apogee_km 1016, Perigee_km 949, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.74, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00319, Launch_Mass_kg 820.0, Apogee_km 1016, Perigee_km 969, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 105.0, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00313, Launch_Mass_kg 795.0, Apogee_km 1013, Perigee_km 967, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.9, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00326, Launch_Mass_kg 795.0, Apogee_km 1008, Perigee_km 960, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.8, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0034, Launch_Mass_kg 825.0, Apogee_km 1011, Perigee_km 961, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.8, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00401, Launch_Mass_kg 825.0, Apogee_km 1008, Perigee_km 949, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.7, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00417, Launch_Mass_kg 825.0, Apogee_km 968, Perigee_km 907, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 103.8, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00388, Launch_Mass_kg 810.0, Apogee_km 1011, Perigee_km 954, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.8, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00199, Launch_Mass_kg 810.0, Apogee_km 945, Perigee_km 916, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 103.6, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00367, Launch_Mass_kg 820.0, Apogee_km 1022, Perigee_km 968, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 105.0, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 10.0, Apogee_km 796, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Technology Development/Communications", Period_minutes 100.7, Inclination_radians 1.169370599, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00134, Launch_Mass_kg 7000.0, Apogee_km 733, Perigee_km 714, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 99.2, Inclination_radians 1.715658655, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.8E-4, Launch_Mass_kg 1.0, Apogee_km 507, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "France", Eccentricity 2.8E-4, Launch_Mass_kg 150.0, Apogee_km 729, Perigee_km 725, Type_of_Orbit "Sun-Synchronous", Purpose "Solar Physics", Period_minutes 99.3, Inclination_radians 1.715658655, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "ISS", Country_of_Operator "Vietnam", Eccentricity 2.9E-4, Launch_Mass_kg 1.0, Apogee_km 414, Perigee_km 410, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 92.81, Inclination_radians 0.901462559, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Italy", Eccentricity 1.4E-4, Launch_Mass_kg 1000.0, Apogee_km 699, Perigee_km 697, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 9.2E-4, Launch_Mass_kg 970.0, Apogee_km 691, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.45, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.00193, Launch_Mass_kg 5.0, Apogee_km 627, Perigee_km 600, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.0, Inclination_radians 1.713913325, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "ESA", Eccentricity 0.00881, Launch_Mass_kg 100.0, Apogee_km 676, Perigee_km 553, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Demonstration", Period_minutes 96.98, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.00141, Launch_Mass_kg 130.0, Apogee_km 728, Perigee_km 708, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Demonstration", Period_minutes 99.2, Inclination_radians 1.715658655, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 4.9E-4, Launch_Mass_kg 140.0, Apogee_km 820, Perigee_km 813, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.21, Inclination_radians 1.72316357, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg nil, Apogee_km 506, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Peru", Eccentricity 0.00365, Launch_Mass_kg 1.0, Apogee_km 640, Perigee_km 589, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 5514.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 1.5E-4, Launch_Mass_kg nil, Apogee_km 450, Perigee_km 448, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 93.6, Inclination_radians 1.696460033, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.07511, Launch_Mass_kg 4000.0, Apogee_km 38950, Perigee_km 32618, Type_of_Orbit "", Purpose "Navigation", Period_minutes 1436.0, Inclination_radians 0.698131701, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.4E-4, Launch_Mass_kg 2924.0, Apogee_km 793, Perigee_km 791, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.7, Inclination_radians 1.720894642, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.01668, Launch_Mass_kg nil, Apogee_km 2165, Perigee_km 1885, Type_of_Orbit "", Purpose "Amateur Radio", Period_minutes 127.45, Inclination_radians 1.127308164, Users "Civil", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.004, Launch_Mass_kg 2400.0, Apogee_km 35949, Perigee_km 35612, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.79, Inclination_radians 0.025132741, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.0E-5, Launch_Mass_kg 2500.0, Apogee_km 35788, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 1.74533E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.4E-4, Launch_Mass_kg 2400.0, Apogee_km 35797, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.001745329, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 350.0, Apogee_km 1202, Perigee_km 1199, Type_of_Orbit "Polar", Purpose "Technology Development", Period_minutes 109.42, Inclination_radians 1.570796327, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00236, Launch_Mass_kg 175.0, Apogee_km 646, Perigee_km 613, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00121, Launch_Mass_kg 175.0, Apogee_km 638, Perigee_km 621, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00114, Launch_Mass_kg 175.0, Apogee_km 637, Perigee_km 621, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00121, Launch_Mass_kg 175.0, Apogee_km 638, Perigee_km 621, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00179, Launch_Mass_kg 175.0, Apogee_km 642, Perigee_km 617, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Turkey", Eccentricity 0.00213, Launch_Mass_kg 113.0, Apogee_km 697, Perigee_km 667, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.4, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.0E-5, Launch_Mass_kg 3050.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Kwajalein Island", Country_of_Operator "Malaysia", Eccentricity 0.00177, Launch_Mass_kg 180.0, Apogee_km 688, Perigee_km 663, Type_of_Orbit "Intermediate", Purpose "Remote Sensing", Period_minutes 98.3, Inclination_radians 0.157079633, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00308, Launch_Mass_kg 70.0, Apogee_km 638, Perigee_km 595, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.0, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 4.2E-4, Launch_Mass_kg 1206.0, Apogee_km 823, Perigee_km 817, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.0E-4, Launch_Mass_kg 6650.0, Apogee_km 571, Perigee_km 564, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 96.0, Inclination_radians 1.219985147, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.5E-4, Launch_Mass_kg 5900.0, Apogee_km 472, Perigee_km 459, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 93.9, Inclination_radians 1.696460033, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 2.2E-4, Launch_Mass_kg 1858.0, Apogee_km 541, Perigee_km 538, Type_of_Orbit "Sun-Synchronous", Purpose "Surveillance", Period_minutes 95.4, Inclination_radians 1.70344135, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 8.8E-4, Launch_Mass_kg 93.0, Apogee_km 427, Perigee_km 415, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 41.2, Inclination_radians 0.719424718, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.7E-4, Launch_Mass_kg 225.0, Apogee_km 1448, Perigee_km 1436, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.7, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 280.0, Apogee_km 1511, Perigee_km 1480, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00203, Launch_Mass_kg 280.0, Apogee_km 1509, Perigee_km 1477, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00203, Launch_Mass_kg 280.0, Apogee_km 1510, Perigee_km 1478, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.0E-4, Launch_Mass_kg 280.0, Apogee_km 1509, Perigee_km 1498, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 116.0, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00159, Launch_Mass_kg 280.0, Apogee_km 1507, Perigee_km 1482, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.0E-4, Launch_Mass_kg 280.0, Apogee_km 1506, Perigee_km 1495, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 116.0, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.9E-4, Launch_Mass_kg 225.0, Apogee_km 1496, Perigee_km 1493, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00134, Launch_Mass_kg 225.0, Apogee_km 1505, Perigee_km 1484, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 280.0, Apogee_km 1512, Perigee_km 1481, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00273, Launch_Mass_kg 250.0, Apogee_km 1516, Perigee_km 1473, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00273, Launch_Mass_kg 250.0, Apogee_km 1516, Perigee_km 1473, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00248, Launch_Mass_kg 250.0, Apogee_km 1514, Perigee_km 1475, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 280.0, Apogee_km 1509, Perigee_km 1478, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00191, Launch_Mass_kg 280.0, Apogee_km 1507, Perigee_km 1477, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00184, Launch_Mass_kg 280.0, Apogee_km 1511, Perigee_km 1482, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.68665, Launch_Mass_kg 1200.0, Apogee_km 120715, Perigee_km 17240, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3431.1, Inclination_radians 1.584758961, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Multinational", Eccentricity 1.4E-4, Launch_Mass_kg 485.0, Apogee_km 704, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Research", Period_minutes 98.8, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Argentina/USA", Eccentricity 1.4E-4, Launch_Mass_kg 1600.0, Apogee_km 655, Perigee_km 653, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.8, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.6916, Launch_Mass_kg 1200.0, Apogee_km 120768, Perigee_km 16809, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3418.2, Inclination_radians 1.583013632, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.68969, Launch_Mass_kg 1200.0, Apogee_km 120923, Perigee_km 17007, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3430.28, Inclination_radians 1.579522973, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Canada", Eccentricity 0.00105, Launch_Mass_kg 148.0, Apogee_km 787, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Space Observation", Period_minutes 100.4, Inclination_radians 1.720894642, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India/France", Eccentricity 2.1E-4, Launch_Mass_kg 407.0, Apogee_km 785, Perigee_km 782, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 100.53, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.0027, Launch_Mass_kg 770.0, Apogee_km 505, Perigee_km 468, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.3, Inclination_radians 1.713913325, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00241, Launch_Mass_kg 770.0, Apogee_km 503, Perigee_km 470, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.34, Inclination_radians 1.713738793, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00168, Launch_Mass_kg 770.0, Apogee_km 496, Perigee_km 473, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.3, Inclination_radians 1.713389727, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00278, Launch_Mass_kg 770.0, Apogee_km 486, Perigee_km 448, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.4, Inclination_radians 1.713215194, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00204, Launch_Mass_kg 770.0, Apogee_km 502, Perigee_km 474, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.37, Inclination_radians 1.713215194, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 2.0E-4, Launch_Mass_kg 2276.0, Apogee_km 35794, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.012915436, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 1.5E-4, Launch_Mass_kg 3542.0, Apogee_km 35792, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 2.4E-4, Launch_Mass_kg 5456.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Mexico", Eccentricity 1.9E-4, Launch_Mass_kg 5474.0, Apogee_km 35795, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commecial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00353, Launch_Mass_kg 12.0, Apogee_km 747, Perigee_km 697, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.2, Inclination_radians 1.710422667, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00591, Launch_Mass_kg 12.0, Apogee_km 780, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.6, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.0044, Launch_Mass_kg 12.0, Apogee_km 714, Perigee_km 652, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.4, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00686, Launch_Mass_kg 12.0, Apogee_km 746, Perigee_km 649, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.7, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00524, Launch_Mass_kg 12.0, Apogee_km 725, Perigee_km 651, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.5, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00778, Launch_Mass_kg 12.0, Apogee_km 758, Perigee_km 648, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.8, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00609, Launch_Mass_kg 12.0, Apogee_km 736, Perigee_km 650, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.6, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00705, Launch_Mass_kg 10.0, Apogee_km 702, Perigee_km 603, Type_of_Orbit "Intermediate", Purpose "Scientific Research", Period_minutes 97.8, Inclination_radians 1.127482697, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00268, Launch_Mass_kg 35.0, Apogee_km 734, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Research", Period_minutes 99.1, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00149, Launch_Mass_kg 200.0, Apogee_km 677, Perigee_km 656, Type_of_Orbit "", Purpose "Earth Observation/Research", Period_minutes 98.1, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 4500.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.11, Inclination_radians 0.112573737, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 4500.0, Apogee_km 35790, Perigee_km 35770, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.11, Inclination_radians 0.112573737, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.2E-4, Launch_Mass_kg 1031.0, Apogee_km 541, Perigee_km 538, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 95.43, Inclination_radians 1.710248134, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5000.0, Apogee_km 1100, Perigee_km 1100, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.26, Inclination_radians 1.099557429, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5000.0, Apogee_km 1100, Perigee_km 1100, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.26, Inclination_radians 1.099557429, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01251, Launch_Mass_kg 5000.0, Apogee_km 1200, Perigee_km 1013, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01277, Launch_Mass_kg 5000.0, Apogee_km 1202, Perigee_km 1011, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0125, Launch_Mass_kg 5000.0, Apogee_km 1203, Perigee_km 1016, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01243, Launch_Mass_kg 5000.0, Apogee_km 1203, Perigee_km 1017, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01237, Launch_Mass_kg 5000.0, Apogee_km 1200, Perigee_km 1015, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01237, Launch_Mass_kg 5000.0, Apogee_km 1201, Perigee_km 1016, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0125, Launch_Mass_kg 5000.0, Apogee_km 1201, Perigee_km 1014, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01243, Launch_Mass_kg nil, Apogee_km 1205, Perigee_km 1019, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.5, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01277, Launch_Mass_kg 6500.0, Apogee_km 1203, Perigee_km 1012, Type_of_Orbit "", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01277, Launch_Mass_kg 6500.0, Apogee_km 1203, Perigee_km 1012, Type_of_Orbit "", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Brazil", Eccentricity 0.00422, Launch_Mass_kg 110.0, Apogee_km 776, Perigee_km 716, Type_of_Orbit "Intermediate", Purpose "Meteorology/Earth Observation", Period_minutes 99.7, Inclination_radians 0.436332313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Brazil", Eccentricity 0.00176, Launch_Mass_kg 110.0, Apogee_km 760, Perigee_km 735, Type_of_Orbit "Intermediate", Purpose "Meteorology/Earth Observation", Period_minutes 99.8, Inclination_radians 0.436332313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Canada", Eccentricity 7.8E-4, Launch_Mass_kg 150.0, Apogee_km 649, Perigee_km 638, Type_of_Orbit "Intermediate", Purpose "Space Science", Period_minutes 97.6, Inclination_radians 1.289798317, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 3100.0, Apogee_km 35791, Perigee_km 35779, Type_of_Orbit "", Purpose "Space Science", Period_minutes 1436.03, Inclination_radians 0.488692191, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.8E-4, Launch_Mass_kg nil, Apogee_km 35815, Perigee_km 35758, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1436.13, Inclination_radians 0.044854962, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.0E-4, Launch_Mass_kg nil, Apogee_km 35812, Perigee_km 35761, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.043807764, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.74119, Launch_Mass_kg nil, Apogee_km 39850, Perigee_km 500, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 717.7, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.74504, Launch_Mass_kg nil, Apogee_km 39966, Perigee_km 400, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 718.0, Inclination_radians 1.047197551, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg nil, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 14.36, Inclination_radians 0.085870199, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg nil, Apogee_km 35805, Perigee_km 35771, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 23.94, Inclination_radians 0.085695666, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 8.5E-4, Launch_Mass_kg 50.0, Apogee_km 673, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.1, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Japan", Eccentricity 0.00143, Launch_Mass_kg 3.0, Apogee_km 627, Perigee_km 607, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg nil, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 3200.0, Apogee_km 35798, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.19, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 3112.0, Apogee_km 35852, Perigee_km 35850, Type_of_Orbit "", Purpose "Communications", Period_minutes 1439.41, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg nil, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 6007.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-4, Launch_Mass_kg 6140.0, Apogee_km 35816, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 4007.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 3138.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0012, Launch_Mass_kg nil, Apogee_km 703, Perigee_km 686, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 98.7, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00127, Launch_Mass_kg nil, Apogee_km 704, Perigee_km 686, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00106, Launch_Mass_kg nil, Apogee_km 703, Perigee_km 688, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00106, Launch_Mass_kg nil, Apogee_km 704, Perigee_km 689, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00129, Launch_Mass_kg nil, Apogee_km 601, Perigee_km 583, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.5, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.5E-4, Launch_Mass_kg nil, Apogee_km 673, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.08, Inclination_radians 1.711469865, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00122, Launch_Mass_kg nil, Apogee_km 616, Perigee_km 599, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.85, Inclination_radians 1.308647873, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00194, Launch_Mass_kg nil, Apogee_km 606, Perigee_km 579, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.9E-4, Launch_Mass_kg nil, Apogee_km 598, Perigee_km 587, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.2E-4, Launch_Mass_kg nil, Apogee_km 594, Perigee_km 591, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg nil, Apogee_km 595, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00187, Launch_Mass_kg nil, Apogee_km 607, Perigee_km 581, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.6, Inclination_radians 1.70344135, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0018, Launch_Mass_kg nil, Apogee_km 603, Perigee_km 578, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.70344135, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00136, Launch_Mass_kg nil, Apogee_km 603, Perigee_km 584, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00115, Launch_Mass_kg nil, Apogee_km 602, Perigee_km 586, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00411, Launch_Mass_kg nil, Apogee_km 591, Perigee_km 534, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 95.9, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00193, Launch_Mass_kg nil, Apogee_km 650, Perigee_km 623, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.44, Inclination_radians 1.710248134, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00193, Launch_Mass_kg nil, Apogee_km 651, Perigee_km 624, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.46, Inclination_radians 1.710248134, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00108, Launch_Mass_kg 204.0, Apogee_km 601, Perigee_km 586, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 96.6, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00126, Launch_Mass_kg 300.0, Apogee_km 803, Perigee_km 785, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Research", Period_minutes 100.8, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00126, Launch_Mass_kg 300.0, Apogee_km 802, Perigee_km 784, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Research", Period_minutes 100.7, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00112, Launch_Mass_kg 204.0, Apogee_km 755, Perigee_km 739, Type_of_Orbit "", Purpose "Remote Sensing/Research", Period_minutes 99.7, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.8E-4, Launch_Mass_kg nil, Apogee_km 672, Perigee_km 668, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.15, Inclination_radians 1.711469865, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Ukraine", Eccentricity 0.0012, Launch_Mass_kg 169.0, Apogee_km 701, Perigee_km 684, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.6, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Italy", Eccentricity 3.9E-4, Launch_Mass_kg 2596.0, Apogee_km 35802, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.017627825, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Italy", Eccentricity 1.7E-4, Launch_Mass_kg 3038.0, Apogee_km 35802, Perigee_km 35788, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.52, Inclination_radians 6.98132E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Iran", Eccentricity 0.00156, Launch_Mass_kg 170.0, Apogee_km 703, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Research", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.0E-5, Launch_Mass_kg 5000.0, Apogee_km 35796, Perigee_km 35794, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.005235988, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.27883, Launch_Mass_kg 3727.0, Apogee_km 47100, Perigee_km 23783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1418.5, Inclination_radians 1.104793417, Users "Commercial", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.47082, Launch_Mass_kg 3792.0, Apogee_km 47048, Perigee_km 12849, Type_of_Orbit "", Purpose "Communications", Period_minutes 1148.43, Inclination_radians 1.104793417, Users "Commercial", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.61976, Launch_Mass_kg 3727.0, Apogee_km 47086, Perigee_km 6179, Type_of_Orbit "", Purpose "Communications", Period_minutes 994.83, Inclination_radians 1.106538746, Users "Commercial", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Sweden", Eccentricity 2.3E-4, Launch_Mass_kg 4400.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 5800.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 6020.0, Apogee_km 35791, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 5983.0, Apogee_km 35795, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.6E-4, Launch_Mass_kg 1474.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.164584548, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.7E-4, Launch_Mass_kg 1510.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.08709193, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.3E-4, Launch_Mass_kg 1510.0, Apogee_km 35801, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 0.056374135, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.7E-4, Launch_Mass_kg 4700.0, Apogee_km 35802, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 0.00122, Launch_Mass_kg 4635.0, Apogee_km 35803, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.9E-4, Launch_Mass_kg 4600.0, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.009250245, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 8.0E-5, Launch_Mass_kg 4638.0, Apogee_km 35793, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.24, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.0023, Launch_Mass_kg nil, Apogee_km 599, Perigee_km 567, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 96.34, Inclination_radians 1.707106541, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.1E-4, Launch_Mass_kg 5360.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.105766953, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.4072, Launch_Mass_kg nil, Apogee_km 11600, Perigee_km 1200, Type_of_Orbit "", Purpose "Communications", Period_minutes 240.0, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0211, Launch_Mass_kg 4.5, Apogee_km 791, Perigee_km 495, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.5, Inclination_radians 1.127482697, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02184, Launch_Mass_kg 3.0, Apogee_km 789, Perigee_km 483, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.4, Inclination_radians 1.127482697, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 7.0E-5, Launch_Mass_kg 658.0, Apogee_km 760, Perigee_km 759, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.0, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg nil, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Communications", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 5.7E-4, Launch_Mass_kg 50.0, Apogee_km 665, Perigee_km 657, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 1.712167996, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00236, Launch_Mass_kg 315.0, Apogee_km 633, Perigee_km 600, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 97.0, Inclination_radians 0.698131701, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 6100.0, Apogee_km 35787, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 5993.0, Apogee_km 35787, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 5993.0, Apogee_km 35787, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 9.6E-4, Launch_Mass_kg 3680.0, Apogee_km 35826, Perigee_km 35745, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 0.95712, Launch_Mass_kg 3660.0, Apogee_km 330000, Perigee_km 1000, Type_of_Orbit "", Purpose "Astrophysics", Period_minutes 0.22, Inclination_radians 0.898146433, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.71556, Launch_Mass_kg 117.0, Apogee_km 35717, Perigee_km 608, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 637.65, Inclination_radians 0.033859387, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.71478, Launch_Mass_kg 117.0, Apogee_km 35697, Perigee_km 627, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 637.64, Inclination_radians 0.033510322, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Belgium/Sweden", Eccentricity 1.4E-4, Launch_Mass_kg 3030.0, Apogee_km 826, Perigee_km 824, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.4, Inclination_radians 1.720894642, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "France/Belgium/Sweden", Eccentricity 2.1E-4, Launch_Mass_kg 720.0, Apogee_km 699, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.73, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00124, Launch_Mass_kg 10.9, Apogee_km 868, Perigee_km 850, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 102.1, Inclination_radians 0.34906585, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Chile", Eccentricity 1.4E-4, Launch_Mass_kg 117.0, Apogee_km 624, Perigee_km 622, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.710422667, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Singapore/Taiwan", Eccentricity 9.0E-5, Launch_Mass_kg 5090.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 8.9E-4, Launch_Mass_kg 4100.0, Apogee_km 35778, Perigee_km 35703, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 2.4E-4, Launch_Mass_kg 4100.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 6.8E-4, Launch_Mass_kg 3225.0, Apogee_km 35848, Perigee_km 35791, Type_of_Orbit "", Purpose "Communications", Period_minutes 1437.78, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 3.0, Apogee_km 506, Perigee_km 500, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 180.0, Apogee_km 650, Perigee_km 650, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.73, Inclination_radians 1.256637061, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.3E-4, Launch_Mass_kg 137.0, Apogee_km 507, Perigee_km 497, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.66, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "United Kingdom", Eccentricity 7.7E-4, Launch_Mass_kg 4.3, Apogee_km 783, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 100.4, Inclination_radians 1.720894642, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.0E-4, Launch_Mass_kg 225.0, Apogee_km 1431, Perigee_km 1417, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.3, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.1E-4, Launch_Mass_kg 225.0, Apogee_km 1425, Perigee_km 1417, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.2, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.6E-4, Launch_Mass_kg 225.0, Apogee_km 1419, Perigee_km 1415, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.2, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00242, Launch_Mass_kg 225.0, Apogee_km 1506, Perigee_km 1468, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.7, Inclination_radians 0.148352986, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00255, Launch_Mass_kg 225.0, Apogee_km 1506, Perigee_km 1466, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.7, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00229, Launch_Mass_kg 225.0, Apogee_km 1503, Perigee_km 1467, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.7, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00236, Launch_Mass_kg 225.0, Apogee_km 1502, Perigee_km 1465, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.6, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00153, Launch_Mass_kg 225.0, Apogee_km 1495, Perigee_km 1471, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.5, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00134, Launch_Mass_kg 225.0, Apogee_km 1495, Perigee_km 1474, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.6, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Naro Space Center", Country_of_Operator "South Korea", Eccentricity 0.08154, Launch_Mass_kg 93.0, Apogee_km 1482, Perigee_km 298, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 102.77, Inclination_radians 1.401150324, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "South Korea", Eccentricity 0.00236, Launch_Mass_kg 150.0, Apogee_km 626, Perigee_km 593, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.88, Inclination_radians 1.707106541, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 8.3E-4, Launch_Mass_kg nil, Apogee_km 879, Perigee_km 867, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 102.41, Inclination_radians 1.726654229, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 2240.0, Apogee_km 1352, Perigee_km 1347, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 112.68, Inclination_radians 1.012290966, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.8E-4, Launch_Mass_kg 2240.0, Apogee_km 1351, Perigee_km 1339, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 112.58, Inclination_radians 1.012290966, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00143, Launch_Mass_kg 0.85, Apogee_km 634, Perigee_km 614, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.2, Inclination_radians 1.710422667, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.9E-4, Launch_Mass_kg 5000.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.002094395, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.7E-4, Launch_Mass_kg 4051.0, Apogee_km 35793, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Japan", Eccentricity 1.3E-4, Launch_Mass_kg 3130.0, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Japan/USA", Eccentricity 7.2E-4, Launch_Mass_kg 1600.0, Apogee_km 558, Perigee_km 548, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 95.7, Inclination_radians 0.548033385, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 2.2E-4, Launch_Mass_kg 468.0, Apogee_km 476, Perigee_km 473, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.9, Inclination_radians 1.523672437, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 2.2E-4, Launch_Mass_kg 468.0, Apogee_km 476, Perigee_km 473, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.9, Inclination_radians 1.523672437, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 7.3E-4, Launch_Mass_kg 468.0, Apogee_km 496, Perigee_km 486, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 94.0, Inclination_radians 1.527163095, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA/United Kingdom/Italy", Eccentricity 0.00137, Launch_Mass_kg 1463.0, Apogee_km 590, Perigee_km 571, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 96.3, Inclination_radians 0.359537826, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Switzerland", Eccentricity 7.1E-4, Launch_Mass_kg 1.0, Apogee_km 720, Perigee_km 710, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.1, Inclination_radians 1.715658655, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 1.7E-4, Launch_Mass_kg 3725.0, Apogee_km 35792, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 3.4E-4, Launch_Mass_kg 3750.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.44297, Launch_Mass_kg 450.0, Apogee_km 11836, Perigee_km 658, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 235.16, Inclination_radians 1.110727536, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg nil, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 2.2E-4, Launch_Mass_kg 1350.0, Apogee_km 510, Perigee_km 507, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 94.8, Inclination_radians 1.699950691, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.68635, Launch_Mass_kg 1200.0, Apogee_km 120961, Perigee_km 17313, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3442.0, Inclination_radians 1.583013632, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg 3180.0, Apogee_km 35802, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.0286234, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00133, Launch_Mass_kg 3454.0, Apogee_km 35844, Perigee_km 35732, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.18, Inclination_radians 0.122173048, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 3454.0, Apogee_km 35785, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.88, Inclination_radians 0.121998515, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00219, Launch_Mass_kg 3180.0, Apogee_km 35878, Perigee_km 35693, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.201236463, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 3180.0, Apogee_km 35796, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.99, Inclination_radians 0.16406095, Users "Government/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.7E-4, Launch_Mass_kg 3180.0, Apogee_km 35787, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.7, Inclination_radians 0.152541777, Users "Government/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.3E-4, Launch_Mass_kg 3180.0, Apogee_km 35803, Perigee_km 35767, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.185004901, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.7E-4, Launch_Mass_kg 3180.0, Apogee_km 35808, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.2, Inclination_radians 0.015707963, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 3180.0, Apogee_km 35809, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Israel", Eccentricity 0.01275, Launch_Mass_kg 300.0, Apogee_km 580, Perigee_km 405, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 94.5, Inclination_radians 0.716108592, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Indonesia", Eccentricity 2.1E-4, Launch_Mass_kg 2763.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Indonesia", Eccentricity 1.4E-4, Launch_Mass_kg 1930.0, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Canada", Eccentricity 3.2E-4, Launch_Mass_kg 4010.0, Apogee_km 35801, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 3.1E-4, Launch_Mass_kg 3878.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 9.0E-5, Launch_Mass_kg 4970.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Multinational", Eccentricity 2.0E-4, Launch_Mass_kg 4640.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 1.5E-4, Launch_Mass_kg 1230.0, Apogee_km 509, Perigee_km 507, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.8, Inclination_radians 1.701696021, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 6910.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.103672558, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00498, Launch_Mass_kg 1108.0, Apogee_km 598, Perigee_km 529, Type_of_Orbit "", Purpose "Remote Sensing/Reconnaissance", Period_minutes 95.9, Inclination_radians 1.706932008, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 2.9E-4, Launch_Mass_kg 120.0, Apogee_km 505, Perigee_km 501, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Thailand", Eccentricity 2.7E-4, Launch_Mass_kg 6505.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Thailand", Eccentricity 2.3E-4, Launch_Mass_kg 2800.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Thailand", Eccentricity 1.2E-4, Launch_Mass_kg 3325.0, Apogee_km 35796, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.3, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.86407, Launch_Mass_kg 126.0, Apogee_km 87304, Perigee_km 461, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 1868.98, Inclination_radians 0.274016693, Users "Government/Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.8639, Launch_Mass_kg 126.0, Apogee_km 87260, Perigee_km 467, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 1867.91, Inclination_radians 0.274016693, Users "Government/Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.86413, Launch_Mass_kg 126.0, Apogee_km 87526, Perigee_km 474, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 1875.53, Inclination_radians 0.274016693, Users "Government/Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Thailand", Eccentricity 1.4E-4, Launch_Mass_kg 750.0, Apogee_km 826, Perigee_km 824, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.4, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Norway", Eccentricity 2.1E-4, Launch_Mass_kg 1400.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Norway", Eccentricity 3.0E-4, Launch_Mass_kg 2024.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Norway", Eccentricity 1.8E-4, Launch_Mass_kg 3050.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "United Arab Emirates", Eccentricity 5.1E-4, Launch_Mass_kg 5250.0, Apogee_km 35807, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.052185345, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "United Arab Emirates", Eccentricity 4.9E-4, Launch_Mass_kg 5180.0, Apogee_km 35807, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.101927228, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.0E-4, Launch_Mass_kg 35.0, Apogee_km 475, Perigee_km 464, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.0, Inclination_radians 1.699950691, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 8506.0, Apogee_km 361, Perigee_km 360, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 91.8, Inclination_radians 0.74700092, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00117, Launch_Mass_kg 2500.0, Apogee_km 504, Perigee_km 488, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 94.5, Inclination_radians 1.699950691, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00146, Launch_Mass_kg 2500.0, Apogee_km 505, Perigee_km 485, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 94.5, Inclination_radians 1.699950691, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 5.2E-4, Launch_Mass_kg 3750.0, Apogee_km 35813, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.8E-4, Launch_Mass_kg 2250.0, Apogee_km 37794, Perigee_km 37778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.017453293, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.0E-4, Launch_Mass_kg 2200.0, Apogee_km 35802, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.035604717, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.2E-4, Launch_Mass_kg 9.3, Apogee_km 459, Perigee_km 456, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 93.7, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 587.0, Apogee_km 613, Perigee_km 612, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 97.0, Inclination_radians 1.293288976, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Switzerland", Eccentricity 0.00143, Launch_Mass_kg 1.0, Apogee_km 631, Perigee_km 611, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.710422667, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Bolivia", Eccentricity 3.1E-4, Launch_Mass_kg 5000.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.004712389, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 0.00163, Launch_Mass_kg 120.0, Apogee_km 704, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Netherlands", Eccentricity 0.01206, Launch_Mass_kg 2.5, Apogee_km 764, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.1, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan/USA", Eccentricity 0.0, Launch_Mass_kg 3820.0, Apogee_km 400, Perigee_km 400, Type_of_Orbit "Intermediate", Purpose "Earth Observation", Period_minutes 92.6, Inclination_radians 0.610865238, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.71228, Launch_Mass_kg 8000.0, Apogee_km 38740, Perigee_km 1210, Type_of_Orbit "Molniya", Purpose "Electronic Surveillance", Period_minutes 709.61, Inclination_radians 1.129228026, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.7E-4, Launch_Mass_kg 3200.0, Apogee_km 858, Perigee_km 844, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance", Period_minutes 102.0, Inclination_radians 1.239183769, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Austria", Eccentricity 9.8E-4, Launch_Mass_kg 14.0, Apogee_km 784, Perigee_km 770, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 100.3, Inclination_radians 1.720894642, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Turkey", Eccentricity 1.8E-4, Launch_Mass_kg 3100.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00114, Launch_Mass_kg 3200.0, Apogee_km 35834, Perigee_km 35738, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.034382986, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 3200.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.037699112, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 3200.0, Apogee_km 35807, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.144338729, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 3200.0, Apogee_km 35775, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.22, Inclination_radians 0.058293997, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00101, Launch_Mass_kg 3200.0, Apogee_km 35829, Perigee_km 35744, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.071733032, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00115, Launch_Mass_kg 3200.0, Apogee_km 35835, Perigee_km 35738, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.066147979, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3206.0, Apogee_km 35794, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.94, Inclination_radians 0.091455253, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 1.4E-4, Launch_Mass_kg 96.5, Apogee_km 662, Perigee_km 660, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.0, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Italy", Eccentricity 0.00696, Launch_Mass_kg 12.0, Apogee_km 795, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 99.7, Inclination_radians 1.712167996, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Italy", Eccentricity 0.0098, Launch_Mass_kg 12.0, Apogee_km 640, Perigee_km 504, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00247, Launch_Mass_kg 2400.0, Apogee_km 35904, Perigee_km 35696, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.39, Inclination_radians 0.039444441, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.73961, Launch_Mass_kg 2400.0, Apogee_km 39807, Perigee_km 542, Type_of_Orbit "Molniya", Purpose "Early Warning", Period_minutes 717.66, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.73497, Launch_Mass_kg 2400.0, Apogee_km 39697, Perigee_km 667, Type_of_Orbit "Molniya", Purpose "Early Warning", Period_minutes 717.9, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.73554, Launch_Mass_kg 2400.0, Apogee_km 39128, Perigee_km 563, Type_of_Orbit "Molniya", Purpose "Early Warning", Period_minutes 704.3, Inclination_radians 1.095892237, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Germany", Eccentricity 0.00762, Launch_Mass_kg 1.0, Apogee_km 700, Perigee_km 593, Type_of_Orbit "", Purpose "Communications", Period_minutes 97.6, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.68262, Launch_Mass_kg 647.6, Apogee_km 30534, Perigee_km 591, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 539.06, Inclination_radians 0.175056524, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.68335, Launch_Mass_kg 666.0, Apogee_km 30657, Perigee_km 595, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 541.4, Inclination_radians 0.175231057, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Singapore", Eccentricity 0.00748, Launch_Mass_kg 1.0, Apogee_km 699, Perigee_km 594, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.6, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Venezuela", Eccentricity 2.3E-4, Launch_Mass_kg 5100.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.003665191, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.3E-4, Launch_Mass_kg 1.0, Apogee_km 504, Perigee_km 494, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "USA", Eccentricity 0.00138, Launch_Mass_kg 28.7, Apogee_km 867, Perigee_km 847, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 102.1, Inclination_radians 0.34906585, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 8.0E-4, Launch_Mass_kg 29.0, Apogee_km 490, Perigee_km 479, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 94.3, Inclination_radians 1.701696021, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.5E-4, Launch_Mass_kg 6740.0, Apogee_km 35796, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Vietnam", Eccentricity 1.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Vietnam", Eccentricity 4.0E-4, Launch_Mass_kg 2970.0, Apogee_km 35776, Perigee_km 35742, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.69, Inclination_radians 0.001396263, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Vietnam", Eccentricity 2.1E-4, Launch_Mass_kg 115.0, Apogee_km 685, Perigee_km 682, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 98.43, Inclination_radians 1.712691595, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "Venezuela", Eccentricity 0.00228, Launch_Mass_kg 880.0, Apogee_km 654, Perigee_km 622, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 97.48, Inclination_radians 1.710946266, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 5900.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5987.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 4735.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.97287, Launch_Mass_kg 1200.0, Apogee_km 470310, Perigee_km 186, Type_of_Orbit "Cislunar", Purpose "Astrophysics", Period_minutes 19700.45, Inclination_radians 0.500909495, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Japan", Eccentricity 0.01798, Launch_Mass_kg 10.0, Apogee_km 849, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 99.2, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.2E-4, Launch_Mass_kg 4500.0, Apogee_km 494, Perigee_km 491, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 94.5, Inclination_radians 1.698205362, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 2800.0, Apogee_km 767, Perigee_km 765, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.2, Inclination_radians 1.719149313, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Germany", Eccentricity 0.00336, Launch_Mass_kg 2.5, Apogee_km 640, Perigee_km 593, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.3, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00119, Launch_Mass_kg 4990.0, Apogee_km 358, Perigee_km 342, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 91.54, Inclination_radians 0.759218225, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 0.06675, Launch_Mass_kg 1.0, Apogee_km 1261, Perigee_km 306, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 100.5, Inclination_radians 1.21300383, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.7E-4, Launch_Mass_kg nil, Apogee_km 501, Perigee_km 489, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.51, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 4703.0, Apogee_km 35790, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 5193.0, Apogee_km 35787, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 4682.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 4667.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 0.79904, Launch_Mass_kg 3764.0, Apogee_km 114027, Perigee_km 7079, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 2872.15, Inclination_radians 0.670206433, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Singapore", Eccentricity 0.00153, Launch_Mass_kg 91.0, Apogee_km 823, Perigee_km 801, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.1, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 1.7E-4, Launch_Mass_kg 3631.0, Apogee_km 35792, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.001745329, Users "Military/Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.9E-4, Launch_Mass_kg 60.0, Apogee_km 1205, Perigee_km 1193, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 109.4, Inclination_radians 1.75056524, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Arab Emirates", Eccentricity 9.5E-4, Launch_Mass_kg 5953.0, Apogee_km 35823, Perigee_km 35743, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.92, Inclination_radians 6.98132E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Arab Emirates", Eccentricity 1.3E-4, Launch_Mass_kg 6000.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.0, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 3.2E-4, Launch_Mass_kg 1360.0, Apogee_km 35800, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.6E-4, Launch_Mass_kg 1320.0, Apogee_km 35796, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00204, Launch_Mass_kg 1640.0, Apogee_km 35866, Perigee_km 35694, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.76, Inclination_radians 0.002443461, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.0E-5, Launch_Mass_kg 4463.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.1E-4, Launch_Mass_kg nil, Apogee_km 628, Perigee_km 625, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.2, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00299, Launch_Mass_kg nil, Apogee_km 668, Perigee_km 626, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.6E-4, Launch_Mass_kg nil, Apogee_km 496, Perigee_km 487, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.4, Inclination_radians 1.699950691, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg nil, Apogee_km 507, Perigee_km 506, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.8, Inclination_radians 1.699950691, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.8E-4, Launch_Mass_kg nil, Apogee_km 481, Perigee_km 469, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.1, Inclination_radians 1.698205362, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.0E-4, Launch_Mass_kg 1040.0, Apogee_km 1207, Perigee_km 1201, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 109.5, Inclination_radians 1.74881991, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.0E-4, Launch_Mass_kg nil, Apogee_km 1089, Perigee_km 1080, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 106.93, Inclination_radians 1.10618968, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.4E-4, Launch_Mass_kg nil, Apogee_km 1090, Perigee_km 1079, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 106.93, Inclination_radians 1.10618968, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0033, Launch_Mass_kg nil, Apogee_km 1081, Perigee_km 1032, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 106.33, Inclination_radians 1.10618968, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00234, Launch_Mass_kg nil, Apogee_km 1111, Perigee_km 1076, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.12, Inclination_radians 1.106713279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00208, Launch_Mass_kg nil, Apogee_km 1111, Perigee_km 1080, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.13, Inclination_radians 1.106887812, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.01506, Launch_Mass_kg nil, Apogee_km 1112, Perigee_km 890, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 105.14, Inclination_radians 1.107760476, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 513, Perigee_km 509, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.84, Inclination_radians 1.702394152, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.0E-4, Launch_Mass_kg nil, Apogee_km 1207, Perigee_km 1201, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 109.51, Inclination_radians 1.753706832, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.002, Launch_Mass_kg 1200.0, Apogee_km 661, Perigee_km 633, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.710422667, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.4E-4, Launch_Mass_kg 2700.0, Apogee_km 627, Perigee_km 625, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00164, Launch_Mass_kg 2700.0, Apogee_km 658, Perigee_km 635, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.3E-4, Launch_Mass_kg 2700.0, Apogee_km 450, Perigee_km 440, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 93.5, Inclination_radians 1.696460033, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 1800.0, Apogee_km 512, Perigee_km 511, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.9, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00264, Launch_Mass_kg 2700.0, Apogee_km 665, Perigee_km 628, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.6E-4, Launch_Mass_kg nil, Apogee_km 1205, Perigee_km 1192, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 109.4, Inclination_radians 1.75056524, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00985, Launch_Mass_kg nil, Apogee_km 1164, Perigee_km 1017, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.1, Inclination_radians 1.106538746, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00985, Launch_Mass_kg nil, Apogee_km 1164, Perigee_km 1017, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.1, Inclination_radians 1.106538746, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00985, Launch_Mass_kg nil, Apogee_km 1164, Perigee_km 1017, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.1, Inclination_radians 1.106538746, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00153, Launch_Mass_kg 92.0, Apogee_km 824, Perigee_km 802, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 101.2, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00184, Launch_Mass_kg 45.0, Apogee_km 1508, Perigee_km 1479, Type_of_Orbit "Intermediate", Purpose "Technology Development", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "South Africa", Eccentricity 0.00635, Launch_Mass_kg 1.0, Apogee_km 683, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.4, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.3E-4, Launch_Mass_kg 1500.0, Apogee_km 454, Perigee_km 444, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 93.6, Inclination_radians 1.694714704, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00367, Launch_Mass_kg nil, Apogee_km 606, Perigee_km 555, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.3, Inclination_radians 1.696460033, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00243, Launch_Mass_kg 3.5, Apogee_km 653, Perigee_km 619, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.4, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00235, Launch_Mass_kg 3.5, Apogee_km 653, Perigee_km 620, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.5, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.6E-4, Launch_Mass_kg 5000.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 0.00296706, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 3.3E-4, Launch_Mass_kg 5100.0, Apogee_km 35803, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.24, Inclination_radians 0.01134464, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 5.7E-4, Launch_Mass_kg 5500.0, Apogee_km 35807, Perigee_km 35759, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.92, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.1E-4, Launch_Mass_kg 5200.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.005235988, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 3.1E-4, Launch_Mass_kg 2300.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 0.009599311, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.7E-4, Launch_Mass_kg 2300.0, Apogee_km 35807, Perigee_km 35767, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.3E-4, Launch_Mass_kg 5200.0, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.003316126, Users "Military/Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.3E-4, Launch_Mass_kg nil, Apogee_km 35812, Perigee_km 35759, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-4, Launch_Mass_kg 1500.0, Apogee_km 773, Perigee_km 763, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.2, Inclination_radians 1.720196511, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.9E-4, Launch_Mass_kg 2650.0, Apogee_km 504, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"}]}, :models {satellites_model #inferenceql.inference.gpm.crosscat.XCat{:views {:view_1 #inferenceql.inference.gpm.view.View{:columns {:Country_of_Operator #inferenceql.inference.gpm.column.Column{:var-name :Country_of_Operator, :stattype :categorical, :categories {:cluster_0 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Country_of_Operator, :suff-stats {:n 1167, :counts {"USA/France" 1, "Pakistan" 3, "Belarus" 1, "Australia" 5, "Argentina" 6, "Hungary" 1, "Japan/USA" 2, "ESA" 18, "Germany/USA" 2, "France/USA" 1, "United Kingdom" 25, "France/Italy/Belgium/Spain/Greece" 2, "Argentina/USA" 1, "Morocco/Germany" 1, "Malaysia" 5, "Chile" 1, "ESA/USA/Russia" 1, "Brazil" 9, "USA/Canada/Japan" 1, "Kazakhstan" 1, "Indonesia/Philippines/Thailand" 1, "Bolivia" 1, "UAE" 2, "Russia/Multinational" 1, "Sweden" 2, "Ukraine" 1, "Canada" 22, "South Africa" 1, "Mexico" 6, "Multinational" 55, "Taiwan/USA" 5, "Azerbaijan" 1, "Egypt" 2, "Estonia" 1, "Vietnam" 4, "Japan" 43, "Nigeria" 3, "Indonesia" 5, "India/France" 2, "Singapore/Taiwan" 1, "Greece" 1, "Russia" 117, "Italy" 11, "France" 11, "Turkey/France" 1, "Iran" 1, "Venezuela" 2, "China (PR)" 117, "Norway" 4, "Algeria" 1, "South Korea" 8, "France/Italy" 1, "Taiwan" 1, "USA/Japan" 3, "Denmark" 3, "Peru" 1, "Luxembourg" 17, "Switzerland" 2, "Netherlands" 13, "Thailand" 4, "Spain" 13, "Germany" 22, "Turkey" 4, "USA" 486, "Singapore" 2, "United Arab Emirates" 4, "UK/ESA" 1, "USA/United Kingdom/Italy" 1, "International" 4, "USA/Australia" 1, "India" 31, "Austria" 1, "France/Belgium/Sweden" 2, "ESA/USA" 1, "USA/Canada" 2, "USA/Japan/Brazil" 1, "USA/Argentina" 6, "Saudi Arabia" 10, "Israel" 10}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Country_of_Operator "Singapore"} {:cluster_0 2}, {:Country_of_Operator "Chile"} {:cluster_0 1}, {:Country_of_Operator "Brazil"} {:cluster_0 9}, {:Country_of_Operator "Peru"} {:cluster_0 1}, {:Country_of_Operator "Germany/USA"} {:cluster_0 2}, {:Country_of_Operator "Greece"} {:cluster_0 1}, {:Country_of_Operator "USA/Canada/Japan"} {:cluster_0 1}, {:Country_of_Operator "United Arab Emirates"} {:cluster_0 4}, {:Country_of_Operator "Mexico"} {:cluster_0 6}, {:Country_of_Operator "Canada"} {:cluster_0 22}, {:Country_of_Operator "Switzerland"} {:cluster_0 2}, {:Country_of_Operator "Venezuela"} {:cluster_0 2}, {:Country_of_Operator "ESA/USA"} {:cluster_0 1}, {:Country_of_Operator "Indonesia/Philippines/Thailand"} {:cluster_0 1}, {:Country_of_Operator "USA/Australia"} {:cluster_0 1}, {:Country_of_Operator "Egypt"} {:cluster_0 2}, {:Country_of_Operator "Kazakhstan"} {:cluster_0 1}, {:Country_of_Operator "Saudi Arabia"} {:cluster_0 10}, {:Country_of_Operator "USA/Japan/Brazil"} {:cluster_0 1}, {:Country_of_Operator "Russia"} {:cluster_0 117}, {:Country_of_Operator "Argentina"} {:cluster_0 6}, {:Country_of_Operator "Denmark"} {:cluster_0 3}, {:Country_of_Operator "France/Italy/Belgium/Spain/Greece"} {:cluster_0 2}, {:Country_of_Operator "International"} {:cluster_0 4}, {:Country_of_Operator "ESA/USA/Russia"} {:cluster_0 1}, {:Country_of_Operator "Thailand"} {:cluster_0 4}, {:Country_of_Operator "USA/United Kingdom/Italy"} {:cluster_0 1}, {:Country_of_Operator "Singapore/Taiwan"} {:cluster_0 1}, {:Country_of_Operator "Argentina/USA"} {:cluster_0 1}, {:Country_of_Operator "Morocco/Germany"} {:cluster_0 1}, {:Country_of_Operator "Estonia"} {:cluster_0 1}, {:Country_of_Operator "Vietnam"} {:cluster_0 4}, {:Country_of_Operator "Japan"} {:cluster_0 43}, {:Country_of_Operator "Netherlands"} {:cluster_0 13}, {:Country_of_Operator "Japan/USA"} {:cluster_0 2}, {:Country_of_Operator "Norway"} {:cluster_0 4}, {:Country_of_Operator "Israel"} {:cluster_0 10}, {:Country_of_Operator "France/Italy"} {:cluster_0 1}, {:Country_of_Operator "USA/Japan"} {:cluster_0 3}, {:Country_of_Operator "Indonesia"} {:cluster_0 5}, {:Country_of_Operator "Iran"} {:cluster_0 1}, {:Country_of_Operator "USA"} {:cluster_0 486}, {:Country_of_Operator "Turkey/France"} {:cluster_0 1}, {:Country_of_Operator "India"} {:cluster_0 31}, {:Country_of_Operator "Germany"} {:cluster_0 22}, {:Country_of_Operator "Spain"} {:cluster_0 13}, {:Country_of_Operator "Russia/Multinational"} {:cluster_0 1}, {:Country_of_Operator "Nigeria"} {:cluster_0 3}, {:Country_of_Operator "Hungary"} {:cluster_0 1}, {:Country_of_Operator "Sweden"} {:cluster_0 2}, {:Country_of_Operator "USA/Argentina"} {:cluster_0 6}, {:Country_of_Operator "UAE"} {:cluster_0 2}, {:Country_of_Operator "Italy"} {:cluster_0 11}, {:Country_of_Operator "ESA"} {:cluster_0 18}, {:Country_of_Operator "France/Belgium/Sweden"} {:cluster_0 2}, {:Country_of_Operator "France/USA"} {:cluster_0 1}, {:Country_of_Operator "Turkey"} {:cluster_0 4}, {:Country_of_Operator "China (PR)"} {:cluster_0 117}, {:Country_of_Operator "South Korea"} {:cluster_0 8}, {:Country_of_Operator "Taiwan/USA"} {:cluster_0 5}, {:Country_of_Operator "Belarus"} {:cluster_0 1}, {:Country_of_Operator "Ukraine"} {:cluster_0 1}, {:Country_of_Operator "Multinational"} {:cluster_0 55}, {:Country_of_Operator "Australia"} {:cluster_0 5}, {:Country_of_Operator "Pakistan"} {:cluster_0 3}, {:Country_of_Operator "France"} {:cluster_0 11}, {:Country_of_Operator "Malaysia"} {:cluster_0 5}, {:Country_of_Operator "USA/Canada"} {:cluster_0 2}, {:Country_of_Operator "UK/ESA"} {:cluster_0 1}, {:Country_of_Operator "Bolivia"} {:cluster_0 1}, {:Country_of_Operator "Austria"} {:cluster_0 1}, {:Country_of_Operator "Algeria"} {:cluster_0 1}, {:Country_of_Operator "Azerbaijan"} {:cluster_0 1}, {:Country_of_Operator "USA/France"} {:cluster_0 1}, {:Country_of_Operator "South Africa"} {:cluster_0 1}, {:Country_of_Operator "Taiwan"} {:cluster_0 1}, {:Country_of_Operator "Luxembourg"} {:cluster_0 17}, {:Country_of_Operator "United Kingdom"} {:cluster_0 25}, {:Country_of_Operator "India/France"} {:cluster_0 2}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Denmark" "International" "China (PR)" "USA" "Multinational" "Malaysia" "Italy" "Norway" "Russia" "Japan" "UK/ESA" "Algeria" "Brazil" "Spain" "Israel" "Canada" "Argentina" "USA/Argentina" "ESA" "Luxembourg" "Azerbaijan" "Pakistan" "Germany" "Belarus" "France/USA" "India" "South Korea" "Taiwan/USA" "Netherlands" "UAE" "Mexico" "France" "USA/Canada/Japan" "USA/Japan/Brazil" "Estonia" "Turkey/France" "Russia/Multinational" "Taiwan" "USA/Japan" "Indonesia/Philippines/Thailand" "Turkey" "Germany/USA" "France/Italy/Belgium/Spain/Greece" "Greece" "ESA/USA" "United Kingdom" "ESA/USA/Russia" "USA/France" "Kazakhstan" "Indonesia" "USA/Australia" "Morocco/Germany" "Hungary" "India/France" "USA/Canada" "Nigeria" "Egypt" "Sweden" "Australia" "Vietnam" "France/Italy" "Peru" "Argentina/USA" "Saudi Arabia" "Ukraine" "Iran" "France/Belgium/Sweden" "Chile" "Singapore/Taiwan" "Japan/USA" "USA/United Kingdom/Italy" "Switzerland" "Thailand" "United Arab Emirates" "Bolivia" "Austria" "Singapore" "Venezuela" "South Africa"], :data {0 "Denmark", 893 "USA", 920 "China (PR)", 558 "USA", 453 "Spain", 584 "USA", 487 "USA", 637 "Hungary", 972 "USA", 519 "USA", 1097 "USA", 357 "USA", 716 "Canada", 950 "USA", 275 "Multinational", 530 "USA", 929 "China (PR)", 789 "Russia", 389 "Russia", 586 "USA", 410 "Russia", 433 "India", 765 "USA", 521 "USA", 451 "Japan", 291 "China (PR)", 443 "Spain", 798 "USA", 779 "USA", 970 "USA", 249 "Multinational", 638 "USA", 299 "USA", 1101 "USA", 121 "Canada", 734 "Japan", 287 "China (PR)", 65 "USA/Argentina", 1086 "USA", 702 "USA", 70 "China (PR)", 949 "Sweden", 218 "Mexico", 648 "Russia", 1070 "USA", 812 "USA", 62 "USA/Argentina", 74 "USA", 774 "USA", 475 "United Kingdom", 497 "USA", 1009 "ESA", 580 "USA", 1138 "China (PR)", 891 "USA", 164 "Taiwan/USA", 1040 "Thailand", 282 "Russia", 769 "USA", 799 "Russia", 273 "Multinational", 1147 "China (PR)", 186 "Russia", 430 "India", 641 "Malaysia", 529 "USA", 898 "Brazil", 370 "USA", 834 "Malaysia", 233 "Russia", 298 "USA", 188 "USA", 240 "USA", 110 "Russia", 130 "USA", 982 "Singapore/Taiwan", 620 "South Korea", 311 "USA", 931 "China (PR)", 882 "Saudi Arabia", 128 "India", 399 "Russia", 989 "United Kingdom", 377 "USA", 468 "United Kingdom", 259 "Multinational", 210 "USA", 229 "USA", 153 "China (PR)", 621 "South Korea", 213 "USA", 670 "Japan", 977 "France", 343 "USA", 958 "United Kingdom", 887 "USA", 472 "United Kingdom", 7 "USA", 894 "USA", 59 "Canada", 934 "China (PR)", 473 "United Kingdom", 1010 "ESA", 86 "Luxembourg", 756 "USA", 830 "Germany", 613 "Japan", 491 "USA", 154 "China (PR)", 20 "Malaysia", 224 "USA", 355 "USA", 592 "USA", 1146 "China (PR)", 610 "USA", 806 "ESA", 571 "USA", 466 "USA", 72 "Multinational", 454 "United Kingdom", 888 "USA", 463 "Japan", 851 "Russia", 770 "USA", 814 "USA", 859 "Argentina/USA", 58 "Canada", 964 "USA", 980 "India", 1001 "USA", 205 "USA", 555 "USA", 552 "USA", 60 "Argentina", 1102 "USA", 835 "Japan", 459 "Japan", 175 "USA", 322 "ESA", 510 "USA", 1052 "China (PR)", 1121 "United Arab Emirates", 662 "Russia", 27 "Russia", 352 "USA", 493 "USA", 899 "Brazil", 416 "Russia", 777 "USA", 694 "USA", 1 "International", 631 "Argentina", 854 "Russia", 69 "China (PR)", 101 "Multinational", 24 "USA", 901 "USA", 547 "USA", 102 "Multinational", 788 "Russia", 1106 "USA", 713 "Egypt", 1110 "Spain", 385 "Russia", 988 "USA", 135 "China (PR)", 1065 "Japan/USA", 397 "Russia", 1011 "ESA", 1006 "Japan", 773 "USA", 490 "USA", 752 "USA", 354 "USA", 884 "USA", 360 "USA", 998 "Russia", 961 "USA", 55 "Canada", 568 "USA", 797 "Russia", 688 "USA", 763 "USA", 269 "Multinational", 676 "USA", 448 "China (PR)", 527 "USA", 206 "USA", 1075 "USA", 966 "USA", 165 "Taiwan/USA", 715 "Canada", 387 "Russia", 652 "Multinational", 683 "USA", 85 "Luxembourg", 721 "USA", 862 "Canada", 615 "Japan", 681 "USA", 225 "USA", 865 "Germany", 297 "USA", 39 "USA", 805 "Japan", 274 "Multinational", 88 "Luxembourg", 217 "USA", 1128 "China (PR)", 46 "USA", 682 "USA", 508 "USA", 1157 "China (PR)", 149 "China (PR)", 415 "Turkey", 239 "USA/Canada/Japan", 478 "India", 878 "Saudi Arabia", 157 "South Korea", 345 "USA", 300 "USA", 743 "Israel", 921 "China (PR)", 1039 "Germany", 4 "International", 550 "USA", 1115 "USA", 204 "USA", 470 "United Kingdom", 1164 "China (PR)", 646 "Russia", 77 "China (PR)", 106 "Germany", 197 "USA", 405 "Russia", 897 "USA", 726 "Netherlands", 776 "USA", 940 "China (PR)", 755 "USA", 902 "USA", 518 "Multinational", 232 "Italy", 260 "Multinational", 823 "Russia", 1125 "Russia", 267 "Multinational", 119 "France/USA", 319 "USA", 534 "USA", 222 "USA", 603 "Japan", 293 "China (PR)", 95 "Luxembourg", 450 "USA/Japan", 329 "USA", 144 "China (PR)", 1087 "Singapore", 504 "USA", 819 "USA", 818 "USA", 505 "USA", 723 "USA", 1071 "USA", 1008 "Japan/USA", 992 "Russia", 176 "USA", 863 "India/France", 471 "United Kingdom", 349 "USA", 512 "USA", 710 "Nigeria", 1058 "China (PR)", 192 "Germany", 54 "USA", 92 "Luxembourg", 221 "USA", 141 "USA", 502 "USA", 871 "Mexico", 464 "USA", 801 "France", 307 "USA", 935 "China (PR)", 758 "USA", 290 "China (PR)", 1156 "China (PR)", 1144 "China (PR)", 627 "USA", 517 "USA", 1122 "Russia", 361 "USA", 264 "Multinational", 137 "Canada", 356 "USA", 728 "Netherlands", 976 "France", 678 "USA", 327 "Denmark", 234 "France", 856 "Russia", 817 "Peru", 1017 "USA", 104 "Germany", 353 "USA", 1145 "China (PR)", 15 "USA", 48 "USA", 945 "China (PR)", 759 "USA", 1066 "USA", 242 "Israel", 832 "Turkey", 969 "Japan", 50 "Israel", 956 "United Kingdom", 917 "USA", 1030 "Indonesia", 557 "USA", 251 "Multinational", 394 "Russia", 116 "Japan", 585 "USA", 583 "USA", 75 "ESA", 437 "France/Italy/Belgium/Spain/Greece", 516 "USA", 1062 "Bolivia", 994 "Russia", 930 "China (PR)", 967 "ESA", 687 "USA", 159 "Germany", 848 "Russia", 995 "Russia", 1096 "Venezuela", 1159 "China (PR)", 709 "USA", 99 "Pakistan", 540 "USA", 645 "USA", 749 "Australia", 479 "India", 1081 "Russia", 890 "USA", 1046 "Thailand", 630 "Argentina", 916 "USA", 815 "USA", 1080 "Russia", 281 "Russia", 402 "Russia", 669 "Japan", 781 "USA", 740 "United Kingdom", 1012 "USA/United Kingdom/Italy", 975 "Multinational", 429 "India", 309 "USA", 458 "Japan", 21 "USA", 388 "Russia", 495 "USA", 952 "USA", 626 "USA", 875 "Saudi Arabia", 31 "Algeria", 113 "Brazil", 32 "Brazil", 811 "USA", 827 "Germany", 407 "Russia", 398 "Russia", 136 "China (PR)", 691 "USA", 847 "Russia", 825 "Russia", 139 "USA", 506 "USA", 396 "Russia", 460 "Japan", 483 "ESA/USA/Russia", 589 "USA", 581 "USA", 932 "China (PR)", 174 "Japan", 578 "USA", 855 "Russia", 331 "Multinational", 363 "USA", 1038 "India", 284 "Russia", 208 "USA", 305 "Netherlands", 1019 "ESA", 955 "United Kingdom", 796 "Russia", 708 "Canada", 182 "Netherlands", 256 "Multinational", 1107 "USA", 1109 "USA", 657 "USA", 514 "USA", 1103 "USA", 731 "Netherlands", 619 "Russia", 985 "Brazil", 485 "USA", 214 "USA", 193 "USA", 685 "USA", 804 "France", 869 "Mexico", 1002 "USA", 1104 "Multinational", 836 "India", 1131 "China (PR)", 785 "Indonesia", 635 "Russia", 442 "Japan", 1073 "USA", 561 "USA", 954 "United Kingdom", 656 "Mexico", 607 "Kazakhstan", 241 "USA/Japan/Brazil", 314 "USA", 782 "Denmark", 226 "USA", 235 "France", 672 "USA", 420 "Russia", 418 "Russia", 262 "Multinational", 1016 "USA", 263 "Multinational", 304 "USA", 401 "Russia", 673 "Spain", 40 "USA", 129 "Canada", 600 "Japan", 729 "Netherlands", 1042 "Thailand", 467 "India", 1033 "Multinational", 1149 "China (PR)", 445 "Spain", 317 "USA", 1091 "USA", 1028 "USA", 294 "China (PR)", 91 "Luxembourg", 1044 "Multinational", 810 "USA", 1137 "China (PR)", 364 "USA", 987 "USA", 880 "Saudi Arabia", 515 "USA", 412 "USA", 553 "USA", 974 "Spain", 341 "USA", 117 "Japan", 1000 "South Korea", 1095 "Vietnam", 665 "Russia", 523 "USA", 172 "Argentina", 601 "Japan", 108 "Germany", 156 "China (PR)", 358 "USA", 308 "USA/Japan", 908 "Japan", 649 "Russia", 531 "USA", 1085 "USA", 923 "China (PR)", 1111 "China (PR)", 223 "USA", 419 "Russia", 365 "USA", 944 "Iran", 181 "Netherlands", 417 "Russia", 1082 "Russia", 979 "France/Belgium/Sweden", 278 "Russia", 56 "Canada", 942 "Italy", 33 "Spain", 13 "USA", 1043 "Multinational", 867 "Germany", 22 "International", 618 "South Korea", 1141 "China (PR)", 1093 "Vietnam", 380 "Russia", 257 "Multinational", 1061 "Switzerland", 338 "USA", 1024 "USA", 500 "USA", 909 "Japan", 1018 "Germany", 993 "Russia", 1089 "USA", 168 "Italy", 833 "Multinational", 496 "USA", 1056 "China (PR)", 1129 "China (PR)", 947 "USA", 347 "USA", 501 "USA", 1007 "Japan", 1077 "United Kingdom", 596 "USA/France", 872 "Mexico", 792 "Russia", 90 "Luxembourg", 237 "France", 826 "USA", 292 "China (PR)", 109 "Belarus", 216 "UAE", 191 "USA", 498 "USA", 829 "Germany", 761 "USA", 1072 "USA", 375 "USA", 525 "USA", 367 "USA", 143 "China (PR)", 742 "Sweden", 178 "Japan", 640 "Malaysia", 247 "Multinational", 328 "USA", 391 "Russia", 990 "Russia", 167 "Italy", 707 "USA", 36 "USA", 41 "USA", 474 "United Kingdom", 187 "USA", 551 "USA", 1118 "Spain", 996 "Russia", 528 "USA", 971 "USA", 599 "Japan", 376 "USA", 195 "USA", 889 "USA", 316 "USA", 668 "USA", 428 "India", 303 "Taiwan", 671 "USA", 794 "Russia", 905 "USA", 368 "USA", 560 "USA", 565 "USA", 310 "USA", 366 "USA", 118 "USA", 522 "USA", 150 "China (PR)", 886 "USA", 313 "USA", 384 "Russia", 567 "USA", 238 "USA", 846 "Russia", 962 "USA", 1127 "China (PR)", 845 "Russia", 196 "USA", 162 "Taiwan/USA", 393 "Russia", 184 "USA", 219 "USA", 999 "South Korea", 461 "Japan", 1032 "Canada", 89 "Luxembourg", 100 "Multinational", 426 "Germany/USA", 604 "Japan", 477 "India", 844 "Russia", 541 "USA", 351 "USA", 243 "Israel", 131 "USA", 790 "Russia", 963 "USA", 1053 "China (PR)", 629 "Indonesia", 873 "Saudi Arabia", 122 "Canada", 933 "China (PR)", 43 "USA", 1067 "Russia", 231 "USA", 61 "Argentina", 654 "Multinational", 883 "USA", 1003 "USA", 598 "Japan", 413 "USA", 29 "USA", 784 "Indonesia", 800 "USA", 151 "China (PR)", 369 "USA", 348 "USA", 1124 "Russia", 575 "USA", 693 "USA", 44 "USA", 739 "United Kingdom", 258 "Multinational", 250 "Multinational", 674 "Spain", 539 "USA", 301 "USA", 838 "Russia", 424 "Russia", 93 "Luxembourg", 6 "USA", 684 "USA", 1026 "USA", 951 "USA", 573 "USA", 408 "Russia", 563 "USA", 850 "Russia", 616 "South Korea", 866 "Germany", 111 "Brazil", 997 "Russia", 689 "USA", 28 "Japan", 456 "Pakistan", 374 "USA", 608 "USA", 737 "United Kingdom", 1155 "China (PR)", 548 "USA", 538 "USA", 1034 "Canada", 895 "USA", 411 "USA", 957 "United Kingdom", 134 "China (PR)", 943 "Italy", 64 "USA/Argentina", 623 "USA", 1135 "China (PR)", 1133 "China (PR)", 465 "USA", 816 "USA", 334 "USA", 1150 "India", 323 "ESA", 189 "USA", 280 "Russia", 198 "USA", 155 "China (PR)", 295 "USA", 808 "ESA", 248 "Multinational", 587 "USA", 285 "USA", 507 "USA", 227 "USA", 724 "USA", 476 "India", 941 "Ukraine", 911 "USA", 853 "Russia", 494 "USA", 220 "USA", 842 "Russia", 103 "Multinational", 697 "USA", 611 "USA", 1105 "Japan", 170 "ESA", 1154 "China (PR)", 51 "Israel", 25 "Norway", 261 "Multinational", 768 "USA", 822 "Russia", 201 "USA", 904 "USA", 590 "USA", 489 "USA", 778 "USA", 166 "Italy", 447 "China (PR)", 34 "Spain", 252 "Multinational", 978 "France/Belgium/Sweden", 775 "USA", 325 "Russia", 1005 "Japan", 594 "India", 436 "India", 828 "Germany", 535 "USA", 813 "USA", 146 "China (PR)", 741 "India", 1060 "USA", 876 "Saudi Arabia", 1064 "Netherlands", 228 "USA", 907 "USA", 306 "USA", 125 "India", 276 "Canada", 340 "USA", 148 "China (PR)", 1143 "China (PR)", 482 "India", 1049 "Norway", 622 "China (PR)", 588 "USA", 17 "USA", 312 "USA", 606 "India", 3 "China (PR)", 1148 "China (PR)", 520 "USA", 1088 "Venezuela", 760 "USA", 720 "USA", 1126 "China (PR)", 286 "USA", 279 "Russia", 879 "Saudi Arabia", 1020 "USA", 536 "USA", 1023 "USA", 663 "Russia", 12 "USA", 440 "USA", 332 "USA/Japan", 330 "USA", 1162 "China (PR)", 382 "Russia", 152 "China (PR)", 1112 "USA", 1140 "China (PR)", 544 "USA", 803 "France/Italy", 642 "Malaysia", 435 "China (PR)", 342 "USA", 703 "USA", 783 "Pakistan", 695 "USA", 973 "USA", 2 "International", 948 "USA", 66 "USA/Argentina", 484 "USA", 439 "Greece", 236 "France", 556 "USA", 373 "USA", 1083 "Russia", 142 "China (PR)", 359 "USA", 727 "Netherlands", 371 "USA", 772 "USA", 444 "Spain", 1057 "China (PR)", 570 "USA", 757 "USA", 107 "China (PR)", 1094 "Vietnam", 532 "USA", 984 "Brazil", 23 "Italy", 1079 "Italy", 745 "Israel", 719 "USA", 230 "USA", 625 "USA", 47 "USA", 526 "USA", 180 "Spain", 786 "USA", 1068 "Austria", 1166 "China (PR)", 870 "Mexico", 537 "USA", 659 "USA", 158 "Germany", 991 "Russia", 350 "USA", 35 "USA", 1116 "ESA", 849 "Russia", 1120 "United Arab Emirates", 644 "USA", 1069 "Turkey", 881 "Saudi Arabia", 127 "India", 927 "China (PR)", 675 "United Kingdom", 1055 "China (PR)", 383 "Russia", 533 "USA", 1100 "USA", 910 "USA", 302 "USA", 564 "USA", 701 "USA", 1090 "USA", 566 "USA", 821 "Canada", 787 "France", 82 "Luxembourg", 76 "China (PR)", 735 "USA", 492 "USA", 718 "Canada", 771 "USA", 215 "UAE", 97 "Luxembourg", 704 "USA", 277 "Russia/Multinational", 926 "China (PR)", 751 "Australia", 1114 "USA", 19 "Multinational", 335 "USA", 597 "Japan", 938 "China (PR)", 57 "Canada", 609 "USA", 202 "Japan", 68 "China (PR)", 452 "ESA/USA", 1054 "China (PR)", 200 "USA", 1142 "China (PR)", 868 "Germany", 11 "USA", 115 "Japan", 946 "USA", 1063 "United Kingdom", 983 "Brazil", 339 "USA", 431 "India", 462 "Japan", 337 "USA", 698 "USA", 255 "Multinational", 503 "USA", 546 "USA", 9 "USA", 953 "United Kingdom", 857 "ESA", 706 "USA", 632 "USA/Australia", 457 "Japan", 427 "Japan", 145 "China (PR)", 5 "USA", 733 "Netherlands", 1163 "China (PR)", 1165 "China (PR)", 1152 "South Africa", 624 "USA", 831 "Germany", 244 "Italy", 918 "China (PR)", 824 "Russia", 289 "China (PR)", 112 "Brazil", 925 "China (PR)", 1059 "China (PR)", 730 "Netherlands", 699 "USA", 712 "Nigeria", 1076 "USA", 1113 "USA", 414 "USA", 839 "India", 802 "Vietnam", 1084 "Germany", 860 "ESA", 1117 "Singapore", 179 "USA", 344 "USA", 481 "India", 732 "Netherlands", 661 "USA", 245 "Estonia", 378 "USA", 913 "USA", 906 "USA", 658 "USA", 266 "Multinational", 324 "China (PR)", 793 "Russia", 1134 "China (PR)", 1132 "China (PR)", 1014 "France", 680 "USA", 446 "China (PR)", 524 "USA", 254 "Multinational", 404 "Russia", 1025 "USA", 617 "South Korea", 283 "Russia", 1153 "China (PR)", 513 "USA", 572 "USA", 705 "USA", 1098 "USA", 959 "United Kingdom", 1074 "USA", 83 "Luxembourg", 634 "Russia", 138 "USA", 1050 "United Arab Emirates", 346 "USA", 14 "USA", 455 "United Kingdom", 265 "Multinational", 449 "USA", 333 "USA", 650 "Multinational", 639 "USA", 569 "USA", 326 "Indonesia/Philippines/Thailand", 746 "Spain", 647 "Russia", 45 "USA", 53 "Israel", 559 "USA", 78 "China (PR)", 1037 "USA", 924 "China (PR)", 562 "USA", 1119 "China (PR)", 542 "USA", 912 "USA", 664 "Canada", 1048 "Norway", 315 "USA", 1031 "Indonesia", 914 "USA", 480 "India", 132 "China (PR)", 753 "USA", 900 "Canada", 1013 "Switzerland", 26 "Russia", 766 "USA", 123 "Canada", 203 "USA", 667 "USA/Canada", 392 "Russia", 1045 "Multinational", 577 "USA", 807 "ESA", 140 "USA", 321 "ESA", 795 "Russia", 441 "Multinational", 700 "USA", 268 "Multinational", 840 "India", 16 "USA", 320 "ESA", 133 "China (PR)", 288 "China (PR)", 381 "Russia", 605 "India", 163 "Taiwan/USA", 81 "Luxembourg", 120 "Russia", 643 "India/France", 79 "China (PR)", 211 "USA", 38 "USA", 173 "Japan", 126 "India", 981 "Chile", 1161 "China (PR)", 421 "Russia", 593 "India", 636 "Morocco/Germany", 1160 "China (PR)", 98 "Azerbaijan", 422 "Russia", 423 "Russia", 614 "Japan", 762 "USA", 582 "USA", 666 "USA/Canada", 1123 "Russia", 554 "USA", 409 "Russia", 574 "USA", 595 "Turkey", 124 "USA", 747 "Australia", 171 "Argentina", 87 "Luxembourg", 169 "Italy", 653 "Multinational", 679 "USA", 843 "Russia", 160 "USA", 30 "UK/ESA", 400 "Russia", 767 "USA", 896 "USA", 928 "China (PR)", 696 "USA", 1027 "USA", 738 "United Kingdom", 809 "USA", 509 "USA", 736 "USA", 207 "USA", 874 "Saudi Arabia", 434 "China (PR)", 1130 "China (PR)", 690 "USA", 194 "USA", 1047 "Norway", 511 "USA", 73 "Multinational", 486 "USA", 336 "USA", 96 "Luxembourg", 837 "Russia", 1136 "China (PR)", 937 "China (PR)", 10 "USA", 660 "USA", 272 "Multinational", 499 "USA", 488 "USA", 903 "USA", 386 "Russia", 270 "Multinational", 576 "USA", 717 "Canada", 543 "USA", 271 "Multinational", 18 "USA", 395 "Russia", 403 "Russia", 469 "United Kingdom", 105 "Germany", 185 "USA", 52 "Israel", 1051 "United Arab Emirates", 545 "USA", 633 "Russia", 114 "Multinational", 1099 "USA", 968 "USA", 253 "Multinational", 612 "USA", 1151 "Russia", 1015 "France", 628 "USA", 748 "Australia", 209 "USA", 147 "China (PR)", 655 "Multinational", 1022 "USA", 750 "Australia", 852 "Russia", 425 "Germany/USA", 1158 "China (PR)", 864 "Germany", 67 "USA/Argentina", 1108 "Germany", 296 "USA", 602 "Japan", 318 "USA", 161 "Taiwan/USA", 651 "Multinational", 725 "Netherlands", 372 "USA", 1092 "USA", 406 "Russia", 438 "France/Italy/Belgium/Spain/Greece", 780 "USA", 711 "Nigeria", 1041 "Thailand", 71 "China (PR)", 939 "China (PR)", 579 "USA", 877 "Saudi Arabia", 722 "USA", 42 "USA", 919 "China (PR)", 80 "USA", 885 "USA", 1078 "Italy", 986 "USA", 1035 "Multinational", 714 "Egypt", 677 "USA", 199 "USA", 841 "Russia", 754 "USA", 791 "Russia", 1029 "Israel", 861 "ESA", 591 "USA", 1021 "USA", 744 "Israel", 960 "USA", 37 "USA", 183 "USA", 1139 "China (PR)", 965 "USA", 892 "USA", 432 "India", 379 "USA", 63 "USA/Argentina", 212 "USA", 94 "Luxembourg", 362 "USA", 8 "USA", 686 "USA", 692 "USA", 764 "USA", 246 "Turkey/France", 190 "USA", 1004 "India", 1036 "Germany", 549 "USA", 922 "China (PR)", 177 "Japan", 915 "USA", 936 "China (PR)", 820 "Japan", 49 "USA", 858 "Multinational", 390 "Russia", 84 "Luxembourg"}}}, :latents {:alpha 0.006011981783176934, :counts {:cluster_0 1167}, :y {0 :cluster_0, 893 :cluster_0, 920 :cluster_0, 558 :cluster_0, 453 :cluster_0, 584 :cluster_0, 487 :cluster_0, 637 :cluster_0, 972 :cluster_0, 519 :cluster_0, 1097 :cluster_0, 357 :cluster_0, 716 :cluster_0, 950 :cluster_0, 275 :cluster_0, 530 :cluster_0, 929 :cluster_0, 789 :cluster_0, 389 :cluster_0, 586 :cluster_0, 410 :cluster_0, 433 :cluster_0, 765 :cluster_0, 521 :cluster_0, 451 :cluster_0, 291 :cluster_0, 443 :cluster_0, 798 :cluster_0, 779 :cluster_0, 970 :cluster_0, 249 :cluster_0, 638 :cluster_0, 299 :cluster_0, 1101 :cluster_0, 121 :cluster_0, 734 :cluster_0, 287 :cluster_0, 65 :cluster_0, 1086 :cluster_0, 702 :cluster_0, 70 :cluster_0, 949 :cluster_0, 218 :cluster_0, 648 :cluster_0, 1070 :cluster_0, 812 :cluster_0, 62 :cluster_0, 74 :cluster_0, 774 :cluster_0, 475 :cluster_0, 497 :cluster_0, 1009 :cluster_0, 580 :cluster_0, 1138 :cluster_0, 891 :cluster_0, 164 :cluster_0, 1040 :cluster_0, 282 :cluster_0, 769 :cluster_0, 799 :cluster_0, 273 :cluster_0, 1147 :cluster_0, 186 :cluster_0, 430 :cluster_0, 641 :cluster_0, 529 :cluster_0, 898 :cluster_0, 370 :cluster_0, 834 :cluster_0, 233 :cluster_0, 298 :cluster_0, 188 :cluster_0, 240 :cluster_0, 110 :cluster_0, 130 :cluster_0, 982 :cluster_0, 620 :cluster_0, 311 :cluster_0, 931 :cluster_0, 882 :cluster_0, 128 :cluster_0, 399 :cluster_0, 989 :cluster_0, 377 :cluster_0, 468 :cluster_0, 259 :cluster_0, 210 :cluster_0, 229 :cluster_0, 153 :cluster_0, 621 :cluster_0, 213 :cluster_0, 670 :cluster_0, 977 :cluster_0, 343 :cluster_0, 958 :cluster_0, 887 :cluster_0, 472 :cluster_0, 7 :cluster_0, 894 :cluster_0, 59 :cluster_0, 934 :cluster_0, 473 :cluster_0, 1010 :cluster_0, 86 :cluster_0, 756 :cluster_0, 830 :cluster_0, 613 :cluster_0, 491 :cluster_0, 154 :cluster_0, 20 :cluster_0, 224 :cluster_0, 355 :cluster_0, 592 :cluster_0, 1146 :cluster_0, 610 :cluster_0, 806 :cluster_0, 571 :cluster_0, 466 :cluster_0, 72 :cluster_0, 454 :cluster_0, 888 :cluster_0, 463 :cluster_0, 851 :cluster_0, 770 :cluster_0, 814 :cluster_0, 859 :cluster_0, 58 :cluster_0, 964 :cluster_0, 980 :cluster_0, 1001 :cluster_0, 205 :cluster_0, 555 :cluster_0, 552 :cluster_0, 60 :cluster_0, 1102 :cluster_0, 835 :cluster_0, 459 :cluster_0, 175 :cluster_0, 322 :cluster_0, 510 :cluster_0, 1052 :cluster_0, 1121 :cluster_0, 662 :cluster_0, 27 :cluster_0, 352 :cluster_0, 493 :cluster_0, 899 :cluster_0, 416 :cluster_0, 777 :cluster_0, 694 :cluster_0, 1 :cluster_0, 631 :cluster_0, 854 :cluster_0, 69 :cluster_0, 101 :cluster_0, 24 :cluster_0, 901 :cluster_0, 547 :cluster_0, 102 :cluster_0, 788 :cluster_0, 1106 :cluster_0, 713 :cluster_0, 1110 :cluster_0, 385 :cluster_0, 988 :cluster_0, 135 :cluster_0, 1065 :cluster_0, 397 :cluster_0, 1011 :cluster_0, 1006 :cluster_0, 773 :cluster_0, 490 :cluster_0, 752 :cluster_0, 354 :cluster_0, 884 :cluster_0, 360 :cluster_0, 998 :cluster_0, 961 :cluster_0, 55 :cluster_0, 568 :cluster_0, 797 :cluster_0, 688 :cluster_0, 763 :cluster_0, 269 :cluster_0, 676 :cluster_0, 448 :cluster_0, 527 :cluster_0, 206 :cluster_0, 1075 :cluster_0, 966 :cluster_0, 165 :cluster_0, 715 :cluster_0, 387 :cluster_0, 652 :cluster_0, 683 :cluster_0, 85 :cluster_0, 721 :cluster_0, 862 :cluster_0, 615 :cluster_0, 681 :cluster_0, 225 :cluster_0, 865 :cluster_0, 297 :cluster_0, 39 :cluster_0, 805 :cluster_0, 274 :cluster_0, 88 :cluster_0, 217 :cluster_0, 1128 :cluster_0, 46 :cluster_0, 682 :cluster_0, 508 :cluster_0, 1157 :cluster_0, 149 :cluster_0, 415 :cluster_0, 239 :cluster_0, 478 :cluster_0, 878 :cluster_0, 157 :cluster_0, 345 :cluster_0, 300 :cluster_0, 743 :cluster_0, 921 :cluster_0, 1039 :cluster_0, 4 :cluster_0, 550 :cluster_0, 1115 :cluster_0, 204 :cluster_0, 470 :cluster_0, 1164 :cluster_0, 646 :cluster_0, 77 :cluster_0, 106 :cluster_0, 197 :cluster_0, 405 :cluster_0, 897 :cluster_0, 726 :cluster_0, 776 :cluster_0, 940 :cluster_0, 755 :cluster_0, 902 :cluster_0, 518 :cluster_0, 232 :cluster_0, 260 :cluster_0, 823 :cluster_0, 1125 :cluster_0, 267 :cluster_0, 119 :cluster_0, 319 :cluster_0, 534 :cluster_0, 222 :cluster_0, 603 :cluster_0, 293 :cluster_0, 95 :cluster_0, 450 :cluster_0, 329 :cluster_0, 144 :cluster_0, 1087 :cluster_0, 504 :cluster_0, 819 :cluster_0, 818 :cluster_0, 505 :cluster_0, 723 :cluster_0, 1071 :cluster_0, 1008 :cluster_0, 992 :cluster_0, 176 :cluster_0, 863 :cluster_0, 471 :cluster_0, 349 :cluster_0, 512 :cluster_0, 710 :cluster_0, 1058 :cluster_0, 192 :cluster_0, 54 :cluster_0, 92 :cluster_0, 221 :cluster_0, 141 :cluster_0, 502 :cluster_0, 871 :cluster_0, 464 :cluster_0, 801 :cluster_0, 307 :cluster_0, 935 :cluster_0, 758 :cluster_0, 290 :cluster_0, 1156 :cluster_0, 1144 :cluster_0, 627 :cluster_0, 517 :cluster_0, 1122 :cluster_0, 361 :cluster_0, 264 :cluster_0, 137 :cluster_0, 356 :cluster_0, 728 :cluster_0, 976 :cluster_0, 678 :cluster_0, 327 :cluster_0, 234 :cluster_0, 856 :cluster_0, 817 :cluster_0, 1017 :cluster_0, 104 :cluster_0, 353 :cluster_0, 1145 :cluster_0, 15 :cluster_0, 48 :cluster_0, 945 :cluster_0, 759 :cluster_0, 1066 :cluster_0, 242 :cluster_0, 832 :cluster_0, 969 :cluster_0, 50 :cluster_0, 956 :cluster_0, 917 :cluster_0, 1030 :cluster_0, 557 :cluster_0, 251 :cluster_0, 394 :cluster_0, 116 :cluster_0, 585 :cluster_0, 583 :cluster_0, 75 :cluster_0, 437 :cluster_0, 516 :cluster_0, 1062 :cluster_0, 994 :cluster_0, 930 :cluster_0, 967 :cluster_0, 687 :cluster_0, 159 :cluster_0, 848 :cluster_0, 995 :cluster_0, 1096 :cluster_0, 1159 :cluster_0, 709 :cluster_0, 99 :cluster_0, 540 :cluster_0, 645 :cluster_0, 749 :cluster_0, 479 :cluster_0, 1081 :cluster_0, 890 :cluster_0, 1046 :cluster_0, 630 :cluster_0, 916 :cluster_0, 815 :cluster_0, 1080 :cluster_0, 281 :cluster_0, 402 :cluster_0, 669 :cluster_0, 781 :cluster_0, 740 :cluster_0, 1012 :cluster_0, 975 :cluster_0, 429 :cluster_0, 309 :cluster_0, 458 :cluster_0, 21 :cluster_0, 388 :cluster_0, 495 :cluster_0, 952 :cluster_0, 626 :cluster_0, 875 :cluster_0, 31 :cluster_0, 113 :cluster_0, 32 :cluster_0, 811 :cluster_0, 827 :cluster_0, 407 :cluster_0, 398 :cluster_0, 136 :cluster_0, 691 :cluster_0, 847 :cluster_0, 825 :cluster_0, 139 :cluster_0, 506 :cluster_0, 396 :cluster_0, 460 :cluster_0, 483 :cluster_0, 589 :cluster_0, 581 :cluster_0, 932 :cluster_0, 174 :cluster_0, 578 :cluster_0, 855 :cluster_0, 331 :cluster_0, 363 :cluster_0, 1038 :cluster_0, 284 :cluster_0, 208 :cluster_0, 305 :cluster_0, 1019 :cluster_0, 955 :cluster_0, 796 :cluster_0, 708 :cluster_0, 182 :cluster_0, 256 :cluster_0, 1107 :cluster_0, 1109 :cluster_0, 657 :cluster_0, 514 :cluster_0, 1103 :cluster_0, 731 :cluster_0, 619 :cluster_0, 985 :cluster_0, 485 :cluster_0, 214 :cluster_0, 193 :cluster_0, 685 :cluster_0, 804 :cluster_0, 869 :cluster_0, 1002 :cluster_0, 1104 :cluster_0, 836 :cluster_0, 1131 :cluster_0, 785 :cluster_0, 635 :cluster_0, 442 :cluster_0, 1073 :cluster_0, 561 :cluster_0, 954 :cluster_0, 656 :cluster_0, 607 :cluster_0, 241 :cluster_0, 314 :cluster_0, 782 :cluster_0, 226 :cluster_0, 235 :cluster_0, 672 :cluster_0, 420 :cluster_0, 418 :cluster_0, 262 :cluster_0, 1016 :cluster_0, 263 :cluster_0, 304 :cluster_0, 401 :cluster_0, 673 :cluster_0, 40 :cluster_0, 129 :cluster_0, 600 :cluster_0, 729 :cluster_0, 1042 :cluster_0, 467 :cluster_0, 1033 :cluster_0, 1149 :cluster_0, 445 :cluster_0, 317 :cluster_0, 1091 :cluster_0, 1028 :cluster_0, 294 :cluster_0, 91 :cluster_0, 1044 :cluster_0, 810 :cluster_0, 1137 :cluster_0, 364 :cluster_0, 987 :cluster_0, 880 :cluster_0, 515 :cluster_0, 412 :cluster_0, 553 :cluster_0, 974 :cluster_0, 341 :cluster_0, 117 :cluster_0, 1000 :cluster_0, 1095 :cluster_0, 665 :cluster_0, 523 :cluster_0, 172 :cluster_0, 601 :cluster_0, 108 :cluster_0, 156 :cluster_0, 358 :cluster_0, 308 :cluster_0, 908 :cluster_0, 649 :cluster_0, 531 :cluster_0, 1085 :cluster_0, 923 :cluster_0, 1111 :cluster_0, 223 :cluster_0, 419 :cluster_0, 365 :cluster_0, 944 :cluster_0, 181 :cluster_0, 417 :cluster_0, 1082 :cluster_0, 979 :cluster_0, 278 :cluster_0, 56 :cluster_0, 942 :cluster_0, 33 :cluster_0, 13 :cluster_0, 1043 :cluster_0, 867 :cluster_0, 22 :cluster_0, 618 :cluster_0, 1141 :cluster_0, 1093 :cluster_0, 380 :cluster_0, 257 :cluster_0, 1061 :cluster_0, 338 :cluster_0, 1024 :cluster_0, 500 :cluster_0, 909 :cluster_0, 1018 :cluster_0, 993 :cluster_0, 1089 :cluster_0, 168 :cluster_0, 833 :cluster_0, 496 :cluster_0, 1056 :cluster_0, 1129 :cluster_0, 947 :cluster_0, 347 :cluster_0, 501 :cluster_0, 1007 :cluster_0, 1077 :cluster_0, 596 :cluster_0, 872 :cluster_0, 792 :cluster_0, 90 :cluster_0, 237 :cluster_0, 826 :cluster_0, 292 :cluster_0, 109 :cluster_0, 216 :cluster_0, 191 :cluster_0, 498 :cluster_0, 829 :cluster_0, 761 :cluster_0, 1072 :cluster_0, 375 :cluster_0, 525 :cluster_0, 367 :cluster_0, 143 :cluster_0, 742 :cluster_0, 178 :cluster_0, 640 :cluster_0, 247 :cluster_0, 328 :cluster_0, 391 :cluster_0, 990 :cluster_0, 167 :cluster_0, 707 :cluster_0, 36 :cluster_0, 41 :cluster_0, 474 :cluster_0, 187 :cluster_0, 551 :cluster_0, 1118 :cluster_0, 996 :cluster_0, 528 :cluster_0, 971 :cluster_0, 599 :cluster_0, 376 :cluster_0, 195 :cluster_0, 889 :cluster_0, 316 :cluster_0, 668 :cluster_0, 428 :cluster_0, 303 :cluster_0, 671 :cluster_0, 794 :cluster_0, 905 :cluster_0, 368 :cluster_0, 560 :cluster_0, 565 :cluster_0, 310 :cluster_0, 366 :cluster_0, 118 :cluster_0, 522 :cluster_0, 150 :cluster_0, 886 :cluster_0, 313 :cluster_0, 384 :cluster_0, 567 :cluster_0, 238 :cluster_0, 846 :cluster_0, 962 :cluster_0, 1127 :cluster_0, 845 :cluster_0, 196 :cluster_0, 162 :cluster_0, 393 :cluster_0, 184 :cluster_0, 219 :cluster_0, 999 :cluster_0, 461 :cluster_0, 1032 :cluster_0, 89 :cluster_0, 100 :cluster_0, 426 :cluster_0, 604 :cluster_0, 477 :cluster_0, 844 :cluster_0, 541 :cluster_0, 351 :cluster_0, 243 :cluster_0, 131 :cluster_0, 790 :cluster_0, 963 :cluster_0, 1053 :cluster_0, 629 :cluster_0, 873 :cluster_0, 122 :cluster_0, 933 :cluster_0, 43 :cluster_0, 1067 :cluster_0, 231 :cluster_0, 61 :cluster_0, 654 :cluster_0, 883 :cluster_0, 1003 :cluster_0, 598 :cluster_0, 413 :cluster_0, 29 :cluster_0, 784 :cluster_0, 800 :cluster_0, 151 :cluster_0, 369 :cluster_0, 348 :cluster_0, 1124 :cluster_0, 575 :cluster_0, 693 :cluster_0, 44 :cluster_0, 739 :cluster_0, 258 :cluster_0, 250 :cluster_0, 674 :cluster_0, 539 :cluster_0, 301 :cluster_0, 838 :cluster_0, 424 :cluster_0, 93 :cluster_0, 6 :cluster_0, 684 :cluster_0, 1026 :cluster_0, 951 :cluster_0, 573 :cluster_0, 408 :cluster_0, 563 :cluster_0, 850 :cluster_0, 616 :cluster_0, 866 :cluster_0, 111 :cluster_0, 997 :cluster_0, 689 :cluster_0, 28 :cluster_0, 456 :cluster_0, 374 :cluster_0, 608 :cluster_0, 737 :cluster_0, 1155 :cluster_0, 548 :cluster_0, 538 :cluster_0, 1034 :cluster_0, 895 :cluster_0, 411 :cluster_0, 957 :cluster_0, 134 :cluster_0, 943 :cluster_0, 64 :cluster_0, 623 :cluster_0, 1135 :cluster_0, 1133 :cluster_0, 465 :cluster_0, 816 :cluster_0, 334 :cluster_0, 1150 :cluster_0, 323 :cluster_0, 189 :cluster_0, 280 :cluster_0, 198 :cluster_0, 155 :cluster_0, 295 :cluster_0, 808 :cluster_0, 248 :cluster_0, 587 :cluster_0, 285 :cluster_0, 507 :cluster_0, 227 :cluster_0, 724 :cluster_0, 476 :cluster_0, 941 :cluster_0, 911 :cluster_0, 853 :cluster_0, 494 :cluster_0, 220 :cluster_0, 842 :cluster_0, 103 :cluster_0, 697 :cluster_0, 611 :cluster_0, 1105 :cluster_0, 170 :cluster_0, 1154 :cluster_0, 51 :cluster_0, 25 :cluster_0, 261 :cluster_0, 768 :cluster_0, 822 :cluster_0, 201 :cluster_0, 904 :cluster_0, 590 :cluster_0, 489 :cluster_0, 778 :cluster_0, 166 :cluster_0, 447 :cluster_0, 34 :cluster_0, 252 :cluster_0, 978 :cluster_0, 775 :cluster_0, 325 :cluster_0, 1005 :cluster_0, 594 :cluster_0, 436 :cluster_0, 828 :cluster_0, 535 :cluster_0, 813 :cluster_0, 146 :cluster_0, 741 :cluster_0, 1060 :cluster_0, 876 :cluster_0, 1064 :cluster_0, 228 :cluster_0, 907 :cluster_0, 306 :cluster_0, 125 :cluster_0, 276 :cluster_0, 340 :cluster_0, 148 :cluster_0, 1143 :cluster_0, 482 :cluster_0, 1049 :cluster_0, 622 :cluster_0, 588 :cluster_0, 17 :cluster_0, 312 :cluster_0, 606 :cluster_0, 3 :cluster_0, 1148 :cluster_0, 520 :cluster_0, 1088 :cluster_0, 760 :cluster_0, 720 :cluster_0, 1126 :cluster_0, 286 :cluster_0, 279 :cluster_0, 879 :cluster_0, 1020 :cluster_0, 536 :cluster_0, 1023 :cluster_0, 663 :cluster_0, 12 :cluster_0, 440 :cluster_0, 332 :cluster_0, 330 :cluster_0, 1162 :cluster_0, 382 :cluster_0, 152 :cluster_0, 1112 :cluster_0, 1140 :cluster_0, 544 :cluster_0, 803 :cluster_0, 642 :cluster_0, 435 :cluster_0, 342 :cluster_0, 703 :cluster_0, 783 :cluster_0, 695 :cluster_0, 973 :cluster_0, 2 :cluster_0, 948 :cluster_0, 66 :cluster_0, 484 :cluster_0, 439 :cluster_0, 236 :cluster_0, 556 :cluster_0, 373 :cluster_0, 1083 :cluster_0, 142 :cluster_0, 359 :cluster_0, 727 :cluster_0, 371 :cluster_0, 772 :cluster_0, 444 :cluster_0, 1057 :cluster_0, 570 :cluster_0, 757 :cluster_0, 107 :cluster_0, 1094 :cluster_0, 532 :cluster_0, 984 :cluster_0, 23 :cluster_0, 1079 :cluster_0, 745 :cluster_0, 719 :cluster_0, 230 :cluster_0, 625 :cluster_0, 47 :cluster_0, 526 :cluster_0, 180 :cluster_0, 786 :cluster_0, 1068 :cluster_0, 1166 :cluster_0, 870 :cluster_0, 537 :cluster_0, 659 :cluster_0, 158 :cluster_0, 991 :cluster_0, 350 :cluster_0, 35 :cluster_0, 1116 :cluster_0, 849 :cluster_0, 1120 :cluster_0, 644 :cluster_0, 1069 :cluster_0, 881 :cluster_0, 127 :cluster_0, 927 :cluster_0, 675 :cluster_0, 1055 :cluster_0, 383 :cluster_0, 533 :cluster_0, 1100 :cluster_0, 910 :cluster_0, 302 :cluster_0, 564 :cluster_0, 701 :cluster_0, 1090 :cluster_0, 566 :cluster_0, 821 :cluster_0, 787 :cluster_0, 82 :cluster_0, 76 :cluster_0, 735 :cluster_0, 492 :cluster_0, 718 :cluster_0, 771 :cluster_0, 215 :cluster_0, 97 :cluster_0, 704 :cluster_0, 277 :cluster_0, 926 :cluster_0, 751 :cluster_0, 1114 :cluster_0, 19 :cluster_0, 335 :cluster_0, 597 :cluster_0, 938 :cluster_0, 57 :cluster_0, 609 :cluster_0, 202 :cluster_0, 68 :cluster_0, 452 :cluster_0, 1054 :cluster_0, 200 :cluster_0, 1142 :cluster_0, 868 :cluster_0, 11 :cluster_0, 115 :cluster_0, 946 :cluster_0, 1063 :cluster_0, 983 :cluster_0, 339 :cluster_0, 431 :cluster_0, 462 :cluster_0, 337 :cluster_0, 698 :cluster_0, 255 :cluster_0, 503 :cluster_0, 546 :cluster_0, 9 :cluster_0, 953 :cluster_0, 857 :cluster_0, 706 :cluster_0, 632 :cluster_0, 457 :cluster_0, 427 :cluster_0, 145 :cluster_0, 5 :cluster_0, 733 :cluster_0, 1163 :cluster_0, 1165 :cluster_0, 1152 :cluster_0, 624 :cluster_0, 831 :cluster_0, 244 :cluster_0, 918 :cluster_0, 824 :cluster_0, 289 :cluster_0, 112 :cluster_0, 925 :cluster_0, 1059 :cluster_0, 730 :cluster_0, 699 :cluster_0, 712 :cluster_0, 1076 :cluster_0, 1113 :cluster_0, 414 :cluster_0, 839 :cluster_0, 802 :cluster_0, 1084 :cluster_0, 860 :cluster_0, 1117 :cluster_0, 179 :cluster_0, 344 :cluster_0, 481 :cluster_0, 732 :cluster_0, 661 :cluster_0, 245 :cluster_0, 378 :cluster_0, 913 :cluster_0, 906 :cluster_0, 658 :cluster_0, 266 :cluster_0, 324 :cluster_0, 793 :cluster_0, 1134 :cluster_0, 1132 :cluster_0, 1014 :cluster_0, 680 :cluster_0, 446 :cluster_0, 524 :cluster_0, 254 :cluster_0, 404 :cluster_0, 1025 :cluster_0, 617 :cluster_0, 283 :cluster_0, 1153 :cluster_0, 513 :cluster_0, 572 :cluster_0, 705 :cluster_0, 1098 :cluster_0, 959 :cluster_0, 1074 :cluster_0, 83 :cluster_0, 634 :cluster_0, 138 :cluster_0, 1050 :cluster_0, 346 :cluster_0, 14 :cluster_0, 455 :cluster_0, 265 :cluster_0, 449 :cluster_0, 333 :cluster_0, 650 :cluster_0, 639 :cluster_0, 569 :cluster_0, 326 :cluster_0, 746 :cluster_0, 647 :cluster_0, 45 :cluster_0, 53 :cluster_0, 559 :cluster_0, 78 :cluster_0, 1037 :cluster_0, 924 :cluster_0, 562 :cluster_0, 1119 :cluster_0, 542 :cluster_0, 912 :cluster_0, 664 :cluster_0, 1048 :cluster_0, 315 :cluster_0, 1031 :cluster_0, 914 :cluster_0, 480 :cluster_0, 132 :cluster_0, 753 :cluster_0, 900 :cluster_0, 1013 :cluster_0, 26 :cluster_0, 766 :cluster_0, 123 :cluster_0, 203 :cluster_0, 667 :cluster_0, 392 :cluster_0, 1045 :cluster_0, 577 :cluster_0, 807 :cluster_0, 140 :cluster_0, 321 :cluster_0, 795 :cluster_0, 441 :cluster_0, 700 :cluster_0, 268 :cluster_0, 840 :cluster_0, 16 :cluster_0, 320 :cluster_0, 133 :cluster_0, 288 :cluster_0, 381 :cluster_0, 605 :cluster_0, 163 :cluster_0, 81 :cluster_0, 120 :cluster_0, 643 :cluster_0, 79 :cluster_0, 211 :cluster_0, 38 :cluster_0, 173 :cluster_0, 126 :cluster_0, 981 :cluster_0, 1161 :cluster_0, 421 :cluster_0, 593 :cluster_0, 636 :cluster_0, 1160 :cluster_0, 98 :cluster_0, 422 :cluster_0, 423 :cluster_0, 614 :cluster_0, 762 :cluster_0, 582 :cluster_0, 666 :cluster_0, 1123 :cluster_0, 554 :cluster_0, 409 :cluster_0, 574 :cluster_0, 595 :cluster_0, 124 :cluster_0, 747 :cluster_0, 171 :cluster_0, 87 :cluster_0, 169 :cluster_0, 653 :cluster_0, 679 :cluster_0, 843 :cluster_0, 160 :cluster_0, 30 :cluster_0, 400 :cluster_0, 767 :cluster_0, 896 :cluster_0, 928 :cluster_0, 696 :cluster_0, 1027 :cluster_0, 738 :cluster_0, 809 :cluster_0, 509 :cluster_0, 736 :cluster_0, 207 :cluster_0, 874 :cluster_0, 434 :cluster_0, 1130 :cluster_0, 690 :cluster_0, 194 :cluster_0, 1047 :cluster_0, 511 :cluster_0, 73 :cluster_0, 486 :cluster_0, 336 :cluster_0, 96 :cluster_0, 837 :cluster_0, 1136 :cluster_0, 937 :cluster_0, 10 :cluster_0, 660 :cluster_0, 272 :cluster_0, 499 :cluster_0, 488 :cluster_0, 903 :cluster_0, 386 :cluster_0, 270 :cluster_0, 576 :cluster_0, 717 :cluster_0, 543 :cluster_0, 271 :cluster_0, 18 :cluster_0, 395 :cluster_0, 403 :cluster_0, 469 :cluster_0, 105 :cluster_0, 185 :cluster_0, 52 :cluster_0, 1051 :cluster_0, 545 :cluster_0, 633 :cluster_0, 114 :cluster_0, 1099 :cluster_0, 968 :cluster_0, 253 :cluster_0, 612 :cluster_0, 1151 :cluster_0, 1015 :cluster_0, 628 :cluster_0, 748 :cluster_0, 209 :cluster_0, 147 :cluster_0, 655 :cluster_0, 1022 :cluster_0, 750 :cluster_0, 852 :cluster_0, 425 :cluster_0, 1158 :cluster_0, 864 :cluster_0, 67 :cluster_0, 1108 :cluster_0, 296 :cluster_0, 602 :cluster_0, 318 :cluster_0, 161 :cluster_0, 651 :cluster_0, 725 :cluster_0, 372 :cluster_0, 1092 :cluster_0, 406 :cluster_0, 438 :cluster_0, 780 :cluster_0, 711 :cluster_0, 1041 :cluster_0, 71 :cluster_0, 939 :cluster_0, 579 :cluster_0, 877 :cluster_0, 722 :cluster_0, 42 :cluster_0, 919 :cluster_0, 80 :cluster_0, 885 :cluster_0, 1078 :cluster_0, 986 :cluster_0, 1035 :cluster_0, 714 :cluster_0, 677 :cluster_0, 199 :cluster_0, 841 :cluster_0, 754 :cluster_0, 791 :cluster_0, 1029 :cluster_0, 861 :cluster_0, 591 :cluster_0, 1021 :cluster_0, 744 :cluster_0, 960 :cluster_0, 37 :cluster_0, 183 :cluster_0, 1139 :cluster_0, 965 :cluster_0, 892 :cluster_0, 432 :cluster_0, 379 :cluster_0, 63 :cluster_0, 212 :cluster_0, 94 :cluster_0, 362 :cluster_0, 8 :cluster_0, 686 :cluster_0, 692 :cluster_0, 764 :cluster_0, 246 :cluster_0, 190 :cluster_0, 1004 :cluster_0, 1036 :cluster_0, 549 :cluster_0, 922 :cluster_0, 177 :cluster_0, 915 :cluster_0, 936 :cluster_0, 820 :cluster_0, 49 :cluster_0, 858 :cluster_0, 390 :cluster_0, 84 :cluster_0}}, :assignments {{:Country_of_Operator "Singapore"} {:categories {:cluster_0 2}, :row-ids #{1087 1117}}, {:Country_of_Operator "Chile"} {:categories {:cluster_0 1}, :row-ids #{981}}, {:Country_of_Operator "Brazil"} {:categories {:cluster_0 9}, :row-ids #{898 899 113 32 985 111 984 983 112}}, {:Country_of_Operator "Peru"} {:categories {:cluster_0 1}, :row-ids #{817}}, {:Country_of_Operator "Germany/USA"} {:categories {:cluster_0 2}, :row-ids #{426 425}}, {:Country_of_Operator "Greece"} {:categories {:cluster_0 1}, :row-ids #{439}}, {:Country_of_Operator "USA/Canada/Japan"} {:categories {:cluster_0 1}, :row-ids #{239}}, {:Country_of_Operator "United Arab Emirates"} {:categories {:cluster_0 4}, :row-ids #{1121 1120 1050 1051}}, {:Country_of_Operator "Mexico"} {:categories {:cluster_0 6}, :row-ids #{218 871 869 656 872 870}}, {:Country_of_Operator "Canada"} {:categories {:cluster_0 22}, :row-ids #{716 121 59 58 55 715 862 137 708 129 56 1032 122 1034 276 821 718 57 664 900 123 717}}, {:Country_of_Operator "Switzerland"} {:categories {:cluster_0 2}, :row-ids #{1061 1013}}, {:Country_of_Operator "Venezuela"} {:categories {:cluster_0 2}, :row-ids #{1096 1088}}, {:Country_of_Operator "ESA/USA"} {:categories {:cluster_0 1}, :row-ids #{452}}, {:Country_of_Operator "Indonesia/Philippines/Thailand"} {:categories {:cluster_0 1}, :row-ids #{326}}, {:Country_of_Operator "USA/Australia"} {:categories {:cluster_0 1}, :row-ids #{632}}, {:Country_of_Operator "Egypt"} {:categories {:cluster_0 2}, :row-ids #{713 714}}, {:Country_of_Operator "Kazakhstan"} {:categories {:cluster_0 1}, :row-ids #{607}}, {:Country_of_Operator "Saudi Arabia"} {:categories {:cluster_0 10}, :row-ids #{882 878 875 880 873 876 879 881 874 877}}, {:Country_of_Operator "USA/Japan/Brazil"} {:categories {:cluster_0 1}, :row-ids #{241}}, {:Country_of_Operator "Russia"} {:categories {:cluster_0 117}, :row-ids #{789 389 410 648 282 799 186 233 110 399 851 662 27 416 854 788 385 397 998 797 387 646 405 823 1125 992 1122 856 394 994 848 995 1081 1080 281 402 388 407 398 847 825 396 855 284 796 619 635 420 418 401 665 649 419 417 1082 278 380 993 792 391 990 996 794 384 846 845 393 844 790 1067 1124 838 424 408 850 997 280 853 842 822 325 279 663 382 1083 991 849 383 824 793 404 283 634 647 26 392 795 381 120 421 422 423 1123 409 843 400 837 386 395 403 633 1151 852 406 841 791 390}}, {:Country_of_Operator "Argentina"} {:categories {:cluster_0 6}, :row-ids #{60 631 630 172 61 171}}, {:Country_of_Operator "Denmark"} {:categories {:cluster_0 3}, :row-ids #{0 327 782}}, {:Country_of_Operator "France/Italy/Belgium/Spain/Greece"} {:categories {:cluster_0 2}, :row-ids #{437 438}}, {:Country_of_Operator "International"} {:categories {:cluster_0 4}, :row-ids #{1 4 22 2}}, {:Country_of_Operator "ESA/USA/Russia"} {:categories {:cluster_0 1}, :row-ids #{483}}, {:Country_of_Operator "Thailand"} {:categories {:cluster_0 4}, :row-ids #{1040 1046 1042 1041}}, {:Country_of_Operator "USA/United Kingdom/Italy"} {:categories {:cluster_0 1}, :row-ids #{1012}}, {:Country_of_Operator "Singapore/Taiwan"} {:categories {:cluster_0 1}, :row-ids #{982}}, {:Country_of_Operator "Argentina/USA"} {:categories {:cluster_0 1}, :row-ids #{859}}, {:Country_of_Operator "Morocco/Germany"} {:categories {:cluster_0 1}, :row-ids #{636}}, {:Country_of_Operator "Estonia"} {:categories {:cluster_0 1}, :row-ids #{245}}, {:Country_of_Operator "Vietnam"} {:categories {:cluster_0 4}, :row-ids #{1095 1093 1094 802}}, {:Country_of_Operator "Japan"} {:categories {:cluster_0 43}, :row-ids #{451 734 670 613 463 835 459 1006 615 805 603 969 116 669 458 460 174 442 600 117 601 908 909 1007 178 599 461 604 598 28 1105 1005 597 202 115 462 457 427 173 614 602 177 820}}, {:Country_of_Operator "Netherlands"} {:categories {:cluster_0 13}, :row-ids #{726 728 305 182 731 729 181 1064 727 733 730 732 725}}, {:Country_of_Operator "Japan/USA"} {:categories {:cluster_0 2}, :row-ids #{1065 1008}}, {:Country_of_Operator "Norway"} {:categories {:cluster_0 4}, :row-ids #{25 1049 1048 1047}}, {:Country_of_Operator "Israel"} {:categories {:cluster_0 10}, :row-ids #{743 242 50 243 51 745 53 52 1029 744}}, {:Country_of_Operator "France/Italy"} {:categories {:cluster_0 1}, :row-ids #{803}}, {:Country_of_Operator "USA/Japan"} {:categories {:cluster_0 3}, :row-ids #{450 308 332}}, {:Country_of_Operator "Indonesia"} {:categories {:cluster_0 5}, :row-ids #{1030 785 629 784 1031}}, {:Country_of_Operator "Iran"} {:categories {:cluster_0 1}, :row-ids #{944}}, {:Country_of_Operator "USA"} {:categories {:cluster_0 486}, :row-ids #{893 558 584 487 972 519 1097 357 950 530 586 765 521 798 779 970 638 299 1101 1086 702 1070 812 74 774 497 580 891 769 529 370 298 188 240 130 311 377 210 229 213 343 887 7 894 756 491 224 355 592 610 571 466 888 770 814 964 1001 205 555 552 1102 175 510 352 493 777 694 24 901 547 1106 988 773 490 752 354 884 360 961 568 688 763 676 527 206 1075 966 683 721 681 225 297 39 217 46 682 508 345 300 550 1115 204 197 897 776 755 902 319 534 222 329 504 819 818 505 723 1071 176 349 512 54 221 141 502 464 307 758 627 517 361 356 678 1017 353 15 48 759 1066 917 557 585 583 516 687 709 540 645 890 916 815 781 309 21 495 952 626 811 691 139 506 589 581 578 363 208 1107 1109 657 514 1103 485 214 193 685 1002 1073 561 314 226 672 1016 304 40 317 1091 1028 810 364 987 515 412 553 341 523 358 531 1085 223 365 13 338 1024 500 1089 496 947 347 501 826 191 498 761 1072 375 525 367 328 707 36 41 187 551 528 971 376 195 889 316 668 671 905 368 560 565 310 366 118 522 886 313 567 238 962 196 184 219 541 351 131 963 43 231 883 1003 413 29 800 369 348 575 693 44 539 301 6 684 1026 951 573 563 689 374 608 548 538 895 411 623 465 816 334 189 198 295 587 285 507 227 724 911 494 220 697 611 768 201 904 590 489 778 775 535 813 1060 228 907 306 340 588 17 312 520 760 720 286 1020 536 1023 12 440 330 1112 544 342 703 695 973 948 484 556 373 359 371 772 570 757 532 719 230 625 47 526 786 537 659 350 35 644 533 1100 910 302 564 701 1090 566 735 492 771 704 1114 335 609 200 11 946 339 337 698 503 546 9 706 5 624 699 1076 1113 414 179 344 661 378 913 906 658 680 524 1025 513 572 705 1098 1074 138 346 14 449 333 639 569 45 559 1037 562 542 912 315 914 753 766 203 577 140 700 16 211 38 762 582 554 574 124 679 160 767 896 696 1027 809 509 736 207 690 194 511 486 336 10 660 499 488 903 576 543 18 185 545 1099 968 612 628 209 1022 296 318 372 1092 780 579 722 42 80 885 986 677 199 754 591 1021 960 37 183 965 892 379 212 362 8 686 692 764 190 549 915 49}}, {:Country_of_Operator "Turkey/France"} {:categories {:cluster_0 1}, :row-ids #{246}}, {:Country_of_Operator "India"} {:categories {:cluster_0 31}, :row-ids #{433 430 128 980 478 479 429 1038 836 467 428 477 1150 476 594 436 741 125 482 606 127 431 839 481 480 840 605 126 593 432 1004}}, {:Country_of_Operator "Germany"} {:categories {:cluster_0 22}, :row-ids #{830 865 1039 106 192 104 159 827 108 867 1018 829 866 828 158 868 831 1084 105 864 1108 1036}}, {:Country_of_Operator "Spain"} {:categories {:cluster_0 13}, :row-ids #{453 443 1110 673 445 974 33 1118 674 34 444 180 746}}, {:Country_of_Operator "Russia/Multinational"} {:categories {:cluster_0 1}, :row-ids #{277}}, {:Country_of_Operator "Nigeria"} {:categories {:cluster_0 3}, :row-ids #{710 712 711}}, {:Country_of_Operator "Hungary"} {:categories {:cluster_0 1}, :row-ids #{637}}, {:Country_of_Operator "Sweden"} {:categories {:cluster_0 2}, :row-ids #{949 742}}, {:Country_of_Operator "USA/Argentina"} {:categories {:cluster_0 6}, :row-ids #{65 62 64 66 67 63}}, {:Country_of_Operator "UAE"} {:categories {:cluster_0 2}, :row-ids #{216 215}}, {:Country_of_Operator "Italy"} {:categories {:cluster_0 11}, :row-ids #{232 942 168 167 943 166 23 1079 244 169 1078}}, {:Country_of_Operator "ESA"} {:categories {:cluster_0 18}, :row-ids #{1009 1010 806 322 1011 75 967 1019 323 808 170 1116 857 860 807 321 320 861}}, {:Country_of_Operator "France/Belgium/Sweden"} {:categories {:cluster_0 2}, :row-ids #{979 978}}, {:Country_of_Operator "France/USA"} {:categories {:cluster_0 1}, :row-ids #{119}}, {:Country_of_Operator "Turkey"} {:categories {:cluster_0 4}, :row-ids #{415 832 1069 595}}, {:Country_of_Operator "China (PR)"} {:categories {:cluster_0 117}, :row-ids #{920 929 291 287 70 1138 1147 931 153 934 154 1146 1052 69 135 448 1128 1157 149 921 1164 77 940 293 144 1058 935 290 1156 1144 1145 945 930 1159 136 932 1131 1149 294 1137 156 923 1111 1141 1056 1129 292 143 150 1127 1053 933 151 1155 134 1135 1133 155 1154 447 146 148 1143 622 3 1148 1126 1162 152 1140 435 142 1057 107 1166 927 1055 76 926 938 68 1054 1142 145 1163 1165 918 289 925 1059 324 1134 1132 446 1153 78 924 1119 132 133 288 79 1161 1160 928 434 1130 1136 937 147 1158 71 939 919 1139 922 936}}, {:Country_of_Operator "South Korea"} {:categories {:cluster_0 8}, :row-ids #{620 621 157 1000 618 999 616 617}}, {:Country_of_Operator "Taiwan/USA"} {:categories {:cluster_0 5}, :row-ids #{164 165 162 163 161}}, {:Country_of_Operator "Belarus"} {:categories {:cluster_0 1}, :row-ids #{109}}, {:Country_of_Operator "Ukraine"} {:categories {:cluster_0 1}, :row-ids #{941}}, {:Country_of_Operator "Multinational"} {:categories {:cluster_0 55}, :row-ids #{275 249 273 259 72 101 102 269 652 274 518 260 267 264 251 975 331 256 1104 262 263 1033 1044 1043 257 833 247 100 654 258 250 248 103 261 252 19 255 266 254 265 650 1045 441 268 653 73 272 270 271 114 253 655 651 1035 858}}, {:Country_of_Operator "Australia"} {:categories {:cluster_0 5}, :row-ids #{749 751 747 748 750}}, {:Country_of_Operator "Pakistan"} {:categories {:cluster_0 3}, :row-ids #{99 456 783}}, {:Country_of_Operator "France"} {:categories {:cluster_0 11}, :row-ids #{977 801 976 234 804 235 237 236 787 1014 1015}}, {:Country_of_Operator "Malaysia"} {:categories {:cluster_0 5}, :row-ids #{641 834 20 640 642}}, {:Country_of_Operator "USA/Canada"} {:categories {:cluster_0 2}, :row-ids #{667 666}}, {:Country_of_Operator "UK/ESA"} {:categories {:cluster_0 1}, :row-ids #{30}}, {:Country_of_Operator "Bolivia"} {:categories {:cluster_0 1}, :row-ids #{1062}}, {:Country_of_Operator "Austria"} {:categories {:cluster_0 1}, :row-ids #{1068}}, {:Country_of_Operator "Algeria"} {:categories {:cluster_0 1}, :row-ids #{31}}, {:Country_of_Operator "Azerbaijan"} {:categories {:cluster_0 1}, :row-ids #{98}}, {:Country_of_Operator "USA/France"} {:categories {:cluster_0 1}, :row-ids #{596}}, {:Country_of_Operator "South Africa"} {:categories {:cluster_0 1}, :row-ids #{1152}}, {:Country_of_Operator "Taiwan"} {:categories {:cluster_0 1}, :row-ids #{303}}, {:Country_of_Operator "Luxembourg"} {:categories {:cluster_0 17}, :row-ids #{86 85 88 95 92 91 90 89 93 82 97 83 81 87 96 94 84}}, {:Country_of_Operator "United Kingdom"} {:categories {:cluster_0 25}, :row-ids #{475 989 468 958 472 473 454 470 471 956 740 955 954 1077 474 739 737 957 675 1063 953 959 455 738 469}}, {:Country_of_Operator "India/France"} {:categories {:cluster_0 2}, :row-ids #{863 643}}}}, :view_0 #inferenceql.inference.gpm.view.View{:columns {:Eccentricity #inferenceql.inference.gpm.column.Column{:var-name :Eccentricity, :stattype :gaussian, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.61976, :sum-x-sq 0.38410245759999995}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 3, :sum-x 2.5921, :sum-x-sq 2.2396608317999998}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 2.6E-4, :sum-x-sq 6.759999999999998E-8}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.27883, :sum-x-sq 0.07774616890000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.89688, :sum-x-sq 0.8043937344000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.83044, :sum-x-sq 0.6896305935999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 7, :sum-x 0.5247799999999999, :sum-x-sq 0.03956106880000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.47082, :sum-x-sq 0.2216714724}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 15, :sum-x 10.79281, :sum-x-sq 7.7706942903}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 2, :sum-x 1.8784100000000001, :sum-x-sq 1.7648539585}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.29184, :sum-x-sq 0.08517058559999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 4, :sum-x 0.00133, :sum-x-sq 4.917E-7}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.97287, :sum-x-sq 0.9464760369}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.79904, :sum-x-sq 0.6384649215999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 4, :sum-x 2.75429, :sum-x-sq 1.8965474010999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 278, :sum-x 0.5878899999999998, :sum-x-sq 0.008024084299999994}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.79307, :sum-x-sq 0.6289600249000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 7, :sum-x 0.10998, :sum-x-sq 0.006298666599999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.79737, :sum-x-sq 0.6357989169}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 4, :sum-x 7.999999999999999E-4, :sum-x-sq 1.6539999999999999E-7}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 434, :sum-x 0.29901999999999995, :sum-x-sq 0.0060806646}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 29, :sum-x 0.35441, :sum-x-sq 0.014297944100000005}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 294, :sum-x 1.0222800000000007, :sum-x-sq 0.016965326599999983}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 72, :sum-x 0.18977000000000002, :sum-x-sq 0.0010554649000000002}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 2, :sum-x 0.85017, :sum-x-sq 0.3620342609}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}}, :assignments {{:Eccentricity 0.00324} {:cluster_23 1}, {:Eccentricity 0.00185} {:cluster_85 1}, {:Eccentricity 0.709} {:cluster_62 1}, {:Eccentricity 6.8E-4} {:cluster_4 3, :cluster_23 1}, {:Eccentricity 0.01597} {:cluster_2 1}, {:Eccentricity 0.05739} {:cluster_9 1}, {:Eccentricity 0.00114} {:cluster_4 1, :cluster_2 2}, {:Eccentricity 8.2E-4} {:cluster_6 1}, {:Eccentricity 0.06917} {:cluster_0 1}, {:Eccentricity 0.89688} {:cluster_81 1}, {:Eccentricity 0.00609} {:cluster_6 1}, {:Eccentricity 0.0056} {:cluster_23 1}, {:Eccentricity 0.00683} {:cluster_2 1}, {:Eccentricity 0.00176} {:cluster_6 1}, {:Eccentricity 0.0046} {:cluster_23 1}, {:Eccentricity 9.0E-5} {:cluster_4 10}, {:Eccentricity 0.00175} {:cluster_23 1}, {:Eccentricity 5.2E-4} {:cluster_4 6, :cluster_6 1}, {:Eccentricity 0.00103} {:cluster_6 2}, {:Eccentricity 9.6E-4} {:cluster_23 2, :cluster_4 1}, {:Eccentricity 6.0E-4} {:cluster_4 2, :cluster_2 1}, {:Eccentricity 0.00455} {:cluster_23 1}, {:Eccentricity 0.01318} {:cluster_2 1}, {:Eccentricity 4.4E-4} {:cluster_4 4, :cluster_2 2, :cluster_6 4}, {:Eccentricity 0.68635} {:cluster_78 1}, {:Eccentricity 0.00303} {:cluster_23 1}, {:Eccentricity 0.79904} {:cluster_94 1}, {:Eccentricity 3.3E-4} {:cluster_4 6}, {:Eccentricity 0.71228} {:cluster_62 1}, {:Eccentricity 0.06} {:cluster_9 1}, {:Eccentricity 0.00149} {:cluster_2 3, :cluster_23 1}, {:Eccentricity 8.6E-4} {:cluster_2 1}, {:Eccentricity 2.5E-4} {:cluster_4 9}, {:Eccentricity 0.00231} {:cluster_23 1}, {:Eccentricity 0.00268} {:cluster_2 1}, {:Eccentricity 4.7E-4} {:cluster_4 5, :cluster_23 1}, {:Eccentricity 8.0E-5} {:cluster_4 9}, {:Eccentricity 0.07902} {:cluster_0 1}, {:Eccentricity 1.9E-4} {:cluster_4 13, :cluster_6 13}, {:Eccentricity 2.1E-4} {:cluster_6 55, :cluster_4 17, :cluster_2 10, :cluster_59 2, :cluster_9 1}, {:Eccentricity 0.02053} {:cluster_2 1}, {:Eccentricity 0.02862} {:cluster_2 1}, {:Eccentricity 0.01243} {:cluster_9 1, :cluster_6 1}, {:Eccentricity 0.73961} {:cluster_62 1}, {:Eccentricity 0.86407} {:cluster_66 1}, {:Eccentricity 0.95712} {:cluster_92 1}, {:Eccentricity 0.00118} {:cluster_23 1, :cluster_4 1, :cluster_2 1}, {:Eccentricity 0.00279} {:cluster_23 1}, {:Eccentricity 0.004} {:cluster_4 1}, {:Eccentricity 0.00102} {:cluster_2 1}, {:Eccentricity 5.9E-4} {:cluster_23 2, :cluster_4 1}, {:Eccentricity 0.00138} {:cluster_6 1}, {:Eccentricity 0.02986} {:cluster_2 1}, {:Eccentricity 0.00116} {:cluster_6 1}, {:Eccentricity 2.7E-4} {:cluster_4 14}, {:Eccentricity 0.00355} {:cluster_23 1}, {:Eccentricity 0.00101} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 6.2E-4} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 0.07511} {:cluster_85 1}, {:Eccentricity 0.00228} {:cluster_2 1}, {:Eccentricity 2.0E-4} {:cluster_4 11, :cluster_2 1}, {:Eccentricity 2.4E-4} {:cluster_4 22, :cluster_59 1, :cluster_23 1}, {:Eccentricity 0.00618} {:cluster_4 1}, {:Eccentricity 0.00125} {:cluster_2 1}, {:Eccentricity 0.00509} {:cluster_4 1}, {:Eccentricity 0.00326} {:cluster_6 1}, {:Eccentricity 0.0034} {:cluster_6 2}, {:Eccentricity 7.8E-4} {:cluster_6 3, :cluster_2 2}, {:Eccentricity 0.001} {:cluster_4 1}, {:Eccentricity 0.02213} {:cluster_6 1}, {:Eccentricity 0.79307} {:cluster_77 1}, {:Eccentricity 0.74504} {:cluster_62 1}, {:Eccentricity 0.29184} {:cluster_82 1}, {:Eccentricity 3.5E-4} {:cluster_6 3, :cluster_2 1}, {:Eccentricity 0.002} {:cluster_2 1}, {:Eccentricity 0.86413} {:cluster_66 1}, {:Eccentricity 0.00184} {:cluster_2 2, :cluster_6 2}, {:Eccentricity 0.0062} {:cluster_23 1}, {:Eccentricity 0.00313} {:cluster_6 1}, {:Eccentricity 0.00147} {:cluster_2 1}, {:Eccentricity 0.00182} {:cluster_2 1}, {:Eccentricity 0.00365} {:cluster_2 1}, {:Eccentricity 0.00606} {:cluster_23 1}, {:Eccentricity 0.00108} {:cluster_4 1, :cluster_2 1}, {:Eccentricity 0.00336} {:cluster_2 1}, {:Eccentricity 0.0011} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.0} {:cluster_4 8, :cluster_9 4, :cluster_23 3, :cluster_2 2}, {:Eccentricity nil} {:cluster_2 1}, {:Eccentricity 0.00187} {:cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00524} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 1.0E-4} {:cluster_23 1, :cluster_4 1}, {:Eccentricity 7.4E-4} {:cluster_2 1}, {:Eccentricity 0.07838} {:cluster_0 1}, {:Eccentricity 0.92129} {:cluster_92 1}, {:Eccentricity 0.01435} {:cluster_2 1}, {:Eccentricity 0.01508} {:cluster_23 1}, {:Eccentricity 0.8639} {:cluster_66 1}, {:Eccentricity 0.00134} {:cluster_9 1, :cluster_6 2, :cluster_2 1}, {:Eccentricity 0.00131} {:cluster_2 1}, {:Eccentricity 0.00264} {:cluster_2 2, :cluster_4 1}, {:Eccentricity 0.0014} {:cluster_2 1}, {:Eccentricity 6.0E-5} {:cluster_6 15, :cluster_4 6}, {:Eccentricity 3.0E-4} {:cluster_4 10}, {:Eccentricity 2.2E-4} {:cluster_2 8, :cluster_6 2, :cluster_23 1}, {:Eccentricity 0.00421} {:cluster_23 1}, {:Eccentricity 0.00278} {:cluster_6 1}, {:Eccentricity 0.00156} {:cluster_2 3}, {:Eccentricity 0.00166} {:cluster_6 1}, {:Eccentricity 3.4E-4} {:cluster_4 5}, {:Eccentricity 0.00536} {:cluster_2 1}, {:Eccentricity 0.01092} {:cluster_6 1}, {:Eccentricity 0.00164} {:cluster_2 3}, {:Eccentricity 0.0012} {:cluster_2 3}, {:Eccentricity 0.03408} {:cluster_6 1}, {:Eccentricity 0.00299} {:cluster_2 1}, {:Eccentricity 0.00419} {:cluster_23 1}, {:Eccentricity 0.00159} {:cluster_6 2}, {:Eccentricity 0.68665} {:cluster_78 1}, {:Eccentricity 0.00748} {:cluster_2 1}, {:Eccentricity 0.73497} {:cluster_62 1}, {:Eccentricity 0.00271} {:cluster_23 1}, {:Eccentricity 0.0211} {:cluster_6 2}, {:Eccentricity 1.7E-4} {:cluster_4 15, :cluster_23 1}, {:Eccentricity 7.9E-4} {:cluster_2 2, :cluster_4 1}, {:Eccentricity 0.0019} {:cluster_23 1, :cluster_85 1}, {:Eccentricity 0.00391} {:cluster_2 2}, {:Eccentricity 0.01206} {:cluster_2 1}, {:Eccentricity 0.00537} {:cluster_4 1}, {:Eccentricity 0.00111} {:cluster_2 2, :cluster_23 1}, {:Eccentricity 8.5E-4} {:cluster_2 3}, {:Eccentricity 0.02191} {:cluster_6 1}, {:Eccentricity 0.00367} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 4.0E-5} {:cluster_4 7, :cluster_23 1}, {:Eccentricity 0.00169} {:cluster_23 1}, {:Eccentricity 0.68262} {:cluster_62 1}, {:Eccentricity 0.07013} {:cluster_0 1}, {:Eccentricity 7.0E-4} {:cluster_6 4, :cluster_2 1, :cluster_4 2}, {:Eccentricity 0.00235} {:cluster_2 1}, {:Eccentricity 0.79737} {:cluster_79 1}, {:Eccentricity 0.00247} {:cluster_4 1}, {:Eccentricity 0.04729} {:cluster_4 1}, {:Eccentricity 0.00273} {:cluster_6 2, :cluster_4 1}, {:Eccentricity 5.1E-4} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 0.00174} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.00104} {:cluster_2 6, :cluster_6 1}, {:Eccentricity 0.0044} {:cluster_6 1}, {:Eccentricity 0.00119} {:cluster_2 1, :cluster_85 1, :cluster_9 1}, {:Eccentricity 1.4E-4} {:cluster_6 5, :cluster_4 11, :cluster_2 18, :cluster_23 3, :cluster_59 1, :cluster_3 1}, {:Eccentricity 0.00236} {:cluster_6 2, :cluster_2 2}, {:Eccentricity 5.0E-4} {:cluster_4 2, :cluster_9 1}, {:Eccentricity 0.00171} {:cluster_2 1}, {:Eccentricity 9.2E-4} {:cluster_2 2, :cluster_23 1}, {:Eccentricity 0.03261} {:cluster_4 1}, {:Eccentricity 0.00696} {:cluster_2 1}, {:Eccentricity 0.00135} {:cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00411} {:cluster_2 1}, {:Eccentricity 3.2E-4} {:cluster_4 9, :cluster_23 3, :cluster_6 5}, {:Eccentricity 5.6E-4} {:cluster_4 1, :cluster_6 3}, {:Eccentricity 0.00591} {:cluster_2 1}, {:Eccentricity 0.00305} {:cluster_23 1}, {:Eccentricity 0.05288} {:cluster_9 1}, {:Eccentricity 0.00128} {:cluster_2 1}, {:Eccentricity 0.00117} {:cluster_2 1}, {:Eccentricity 0.01668} {:cluster_6 1}, {:Eccentricity 0.00255} {:cluster_6 1}, {:Eccentricity 0.01237} {:cluster_9 2}, {:Eccentricity 0.00168} {:cluster_4 1, :cluster_6 1}, {:Eccentricity 0.00229} {:cluster_6 1}, {:Eccentricity 6.5E-4} {:cluster_2 1}, {:Eccentricity 0.00179} {:cluster_6 1}, {:Eccentricity 0.00129} {:cluster_2 3}, {:Eccentricity 0.00146} {:cluster_2 2}, {:Eccentricity 7.7E-4} {:cluster_2 1, :cluster_4 2, :cluster_6 1}, {:Eccentricity 0.00261} {:cluster_2 1}, {:Eccentricity 0.00153} {:cluster_2 3, :cluster_6 1}, {:Eccentricity 0.00188} {:cluster_23 1}, {:Eccentricity 0.0018} {:cluster_2 1}, {:Eccentricity 0.72382} {:cluster_62 1}, {:Eccentricity 0.00919} {:cluster_23 1}, {:Eccentricity 0.06675} {:cluster_0 1}, {:Eccentricity 0.00422} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.00177} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 1.2E-4} {:cluster_4 9}, {:Eccentricity 6.3E-4} {:cluster_6 5, :cluster_4 2, :cluster_23 2}, {:Eccentricity 0.00636} {:cluster_6 1}, {:Eccentricity 0.01011} {:cluster_23 1}, {:Eccentricity 0.00502} {:cluster_2 1}, {:Eccentricity 0.00695} {:cluster_23 1}, {:Eccentricity 0.00197} {:cluster_6 4}, {:Eccentricity 0.0027} {:cluster_2 1}, {:Eccentricity 0.01277} {:cluster_9 3}, {:Eccentricity 1.0E-5} {:cluster_4 12}, {:Eccentricity 0.73554} {:cluster_62 1}, {:Eccentricity 0.00425} {:cluster_23 1}, {:Eccentricity 0.68335} {:cluster_62 1}, {:Eccentricity 0.00242} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.00193} {:cluster_2 4, :cluster_6 1}, {:Eccentricity 9.5E-4} {:cluster_9 1, :cluster_6 2, :cluster_4 1}, {:Eccentricity 0.00151} {:cluster_23 1}, {:Eccentricity 2.6E-4} {:cluster_4 12, :cluster_6 3, :cluster_32 1}, {:Eccentricity 0.00308} {:cluster_2 2}, {:Eccentricity 0.00338} {:cluster_2 1}, {:Eccentricity 8.9E-4} {:cluster_4 1}, {:Eccentricity 7.3E-4} {:cluster_6 2, :cluster_2 3}, {:Eccentricity 0.01562} {:cluster_2 2}, {:Eccentricity 0.00432} {:cluster_2 1}, {:Eccentricity 0.003} {:cluster_23 1}, {:Eccentricity 0.00384} {:cluster_23 1}, {:Eccentricity 0.00762} {:cluster_2 1}, {:Eccentricity 0.00194} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 0.00388} {:cluster_6 1}, {:Eccentricity 0.00861} {:cluster_2 1}, {:Eccentricity 0.02562} {:cluster_2 1}, {:Eccentricity 0.00635} {:cluster_2 2}, {:Eccentricity 0.00141} {:cluster_2 2}, {:Eccentricity 0.01798} {:cluster_2 1}, {:Eccentricity 0.00352} {:cluster_23 1}, {:Eccentricity 0.0125} {:cluster_9 2}, {:Eccentricity 3.9E-4} {:cluster_4 9, :cluster_6 1, :cluster_3 1}, {:Eccentricity 0.00248} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 7.2E-4} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 0.00283} {:cluster_2 1}, {:Eccentricity 0.68969} {:cluster_78 1}, {:Eccentricity 8.7E-4} {:cluster_2 3}, {:Eccentricity 7.6E-4} {:cluster_9 1}, {:Eccentricity 0.00353} {:cluster_2 1}, {:Eccentricity 8.4E-4} {:cluster_2 1}, {:Eccentricity 5.5E-4} {:cluster_4 2}, {:Eccentricity 0.44297} {:cluster_74 1}, {:Eccentricity 0.00155} {:cluster_6 1}, {:Eccentricity 3.7E-4} {:cluster_4 2}, {:Eccentricity 0.01087} {:cluster_2 1}, {:Eccentricity 0.00811} {:cluster_6 1}, {:Eccentricity 0.00213} {:cluster_2 1}, {:Eccentricity 0.00985} {:cluster_2 3}, {:Eccentricity 0.00258} {:cluster_6 1}, {:Eccentricity 0.01251} {:cluster_9 1}, {:Eccentricity 0.02525} {:cluster_85 1}, {:Eccentricity 8.0E-4} {:cluster_2 2}, {:Eccentricity 2.0E-5} {:cluster_4 8}, {:Eccentricity 4.5E-4} {:cluster_4 3}, {:Eccentricity 0.71556} {:cluster_62 1}, {:Eccentricity 2.3E-4} {:cluster_4 13}, {:Eccentricity 0.72223} {:cluster_62 1}, {:Eccentricity 0.03149} {:cluster_2 10, :cluster_6 1}, {:Eccentricity 0.00358} {:cluster_2 1}, {:Eccentricity 0.01757} {:cluster_6 1}, {:Eccentricity 9.9E-4} {:cluster_2 1}, {:Eccentricity 2.9E-4} {:cluster_6 9, :cluster_2 6, :cluster_9 1}, {:Eccentricity 0.00686} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.00448} {:cluster_4 1}, {:Eccentricity 0.05593} {:cluster_9 1}, {:Eccentricity 0.00498} {:cluster_2 1}, {:Eccentricity 0.61976} {:cluster_80 1}, {:Eccentricity 1.3E-4} {:cluster_6 6, :cluster_4 11}, {:Eccentricity 0.0098} {:cluster_2 1}, {:Eccentricity 4.6E-4} {:cluster_4 1}, {:Eccentricity 0.00106} {:cluster_2 5}, {:Eccentricity 0.00881} {:cluster_2 1}, {:Eccentricity 0.00204} {:cluster_2 3, :cluster_4 1}, {:Eccentricity 0.02938} {:cluster_6 1}, {:Eccentricity 0.00192} {:cluster_4 1}, {:Eccentricity 0.00208} {:cluster_6 1}, {:Eccentricity 0.00601} {:cluster_23 1}, {:Eccentricity 6.6E-4} {:cluster_4 1, :cluster_2 1}, {:Eccentricity 3.6E-4} {:cluster_6 5, :cluster_2 1, :cluster_4 1}, {:Eccentricity 0.00195} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.27883} {:cluster_75 1}, {:Eccentricity 7.0E-5} {:cluster_6 5, :cluster_4 9, :cluster_2 18, :cluster_9 1}, {:Eccentricity 0.00105} {:cluster_2 1}, {:Eccentricity 9.0E-4} {:cluster_2 2, :cluster_6 1}, {:Eccentricity 0.00115} {:cluster_4 1, :cluster_2 1}, {:Eccentricity 4.2E-4} {:cluster_6 4, :cluster_4 2, :cluster_2 2}, {:Eccentricity 0.00109} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 0.00515} {:cluster_23 1}, {:Eccentricity 0.00203} {:cluster_6 3, :cluster_85 1}, {:Eccentricity 0.00191} {:cluster_6 1}, {:Eccentricity 0.00285} {:cluster_23 1}, {:Eccentricity 3.8E-4} {:cluster_4 4}, {:Eccentricity 0.00479} {:cluster_2 1}, {:Eccentricity 0.00488} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 5.7E-4} {:cluster_4 3, :cluster_2 1}, {:Eccentricity 0.0033} {:cluster_6 1}, {:Eccentricity 0.00143} {:cluster_2 6, :cluster_23 1}, {:Eccentricity 0.00112} {:cluster_2 1}, {:Eccentricity 0.00974} {:cluster_2 1}, {:Eccentricity 1.8E-4} {:cluster_4 12, :cluster_23 1}, {:Eccentricity 0.00199} {:cluster_6 1}, {:Eccentricity 0.01275} {:cluster_6 1}, {:Eccentricity 7.1E-4} {:cluster_4 2, :cluster_2 1}, {:Eccentricity 0.00127} {:cluster_2 1}, {:Eccentricity 0.00136} {:cluster_2 3, :cluster_6 1}, {:Eccentricity 6.4E-4} {:cluster_4 1, :cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00234} {:cluster_23 1, :cluster_2 1}, {:Eccentricity 0.00499} {:cluster_2 1}, {:Eccentricity 0.01367} {:cluster_6 1}, {:Eccentricity 0.70905} {:cluster_62 1}, {:Eccentricity 0.01799} {:cluster_2 1}, {:Eccentricity 0.0025} {:cluster_2 1}, {:Eccentricity 5.8E-4} {:cluster_6 3, :cluster_2 2, :cluster_4 2}, {:Eccentricity 0.00417} {:cluster_6 1}, {:Eccentricity 0.00133} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 3.1E-4} {:cluster_4 9}, {:Eccentricity 4.0E-4} {:cluster_4 8, :cluster_2 3, :cluster_3 2}, {:Eccentricity 0.01437} {:cluster_2 1}, {:Eccentricity 0.00294} {:cluster_23 1}, {:Eccentricity 8.3E-4} {:cluster_2 1, :cluster_6 1}, {:Eccentricity 4.9E-4} {:cluster_6 7, :cluster_4 5, :cluster_2 1}, {:Eccentricity 0.47082} {:cluster_76 1}, {:Eccentricity 0.00121} {:cluster_2 4, :cluster_6 2, :cluster_23 2}, {:Eccentricity 9.8E-4} {:cluster_2 2}, {:Eccentricity 7.5E-4} {:cluster_4 1}, {:Eccentricity 0.4072} {:cluster_74 1}, {:Eccentricity 0.72377} {:cluster_62 1}, {:Eccentricity 5.0E-5} {:cluster_4 6}, {:Eccentricity 0.01506} {:cluster_6 1}, {:Eccentricity 4.3E-4} {:cluster_6 1, :cluster_4 4}, {:Eccentricity 0.00123} {:cluster_2 2}, {:Eccentricity 0.00124} {:cluster_6 1}, {:Eccentricity 0.07979} {:cluster_0 1}, {:Eccentricity 0.00456} {:cluster_6 1}, {:Eccentricity 9.7E-4} {:cluster_2 1, :cluster_9 1}, {:Eccentricity 0.00598} {:cluster_2 1}, {:Eccentricity 0.6916} {:cluster_78 1}, {:Eccentricity 0.00371} {:cluster_2 1}, {:Eccentricity 0.01728} {:cluster_2 1}, {:Eccentricity 0.00778} {:cluster_6 1}, {:Eccentricity 9.4E-4} {:cluster_2 1}, {:Eccentricity 0.97287} {:cluster_73 1}, {:Eccentricity 5.3E-4} {:cluster_4 5, :cluster_23 1}, {:Eccentricity 0.83044} {:cluster_93 1}, {:Eccentricity 0.00145} {:cluster_2 1}, {:Eccentricity 0.00351} {:cluster_2 1}, {:Eccentricity 8.8E-4} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.00243} {:cluster_2 1}, {:Eccentricity 0.00162} {:cluster_4 1}, {:Eccentricity 0.00319} {:cluster_6 1}, {:Eccentricity 0.0023} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.00233} {:cluster_23 1}, {:Eccentricity 0.02184} {:cluster_6 1}, {:Eccentricity 0.74119} {:cluster_62 1}, {:Eccentricity 0.00836} {:cluster_23 1}, {:Eccentricity 0.00705} {:cluster_6 1}, {:Eccentricity 0.00214} {:cluster_2 1}, {:Eccentricity 0.05012} {:cluster_4 1}, {:Eccentricity 6.9E-4} {:cluster_4 1, :cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00163} {:cluster_2 1}, {:Eccentricity 0.00137} {:cluster_6 1, :cluster_9 1}, {:Eccentricity 0.71478} {:cluster_62 1}, {:Eccentricity 0.00265} {:cluster_85 1}, {:Eccentricity 0.00173} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 1.1E-4} {:cluster_4 10}, {:Eccentricity 6.1E-4} {:cluster_23 1}, {:Eccentricity 0.00401} {:cluster_6 1}, {:Eccentricity 0.00468} {:cluster_4 1}, {:Eccentricity 0.00126} {:cluster_2 2}, {:Eccentricity 2.8E-4} {:cluster_6 11, :cluster_4 12, :cluster_2 2, :cluster_9 1}, {:Eccentricity 0.00564} {:cluster_6 1}, {:Eccentricity 0.00414} {:cluster_6 1, :cluster_23 1}, {:Eccentricity 0.00241} {:cluster_6 1}, {:Eccentricity 0.08154} {:cluster_0 1}, {:Eccentricity 1.5E-4} {:cluster_4 6, :cluster_2 3}, {:Eccentricity 0.00314} {:cluster_2 1}, {:Eccentricity 0.02088} {:cluster_6 1}, {:Eccentricity 0.00544} {:cluster_2 1}, {:Eccentricity 0.00476} {:cluster_2 1}, {:Eccentricity 0.00219} {:cluster_4 1}, {:Eccentricity 0.00122} {:cluster_4 1, :cluster_2 2}, {:Eccentricity 0.00729} {:cluster_9 1}}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}, :hyper-grid {:m (0.0 0.23242900000000002 0.46485800000000005 0.6972870000000001 0.9297160000000001 1.1621450000000002 1.3945740000000002 1.6270030000000002 1.8594320000000002 2.091861 2.3242900000000004 2.5567190000000006 2.789148000000001 3.021577000000001 3.2540060000000013 3.4864350000000015 3.7188640000000017 3.951293000000002 4.183722000000002 4.416151000000002 4.648580000000002 4.8810090000000015 5.113438000000001 5.345867000000001 5.578296000000001 5.810725000000001 6.043154 6.275583 6.508012 6.740441 6.9728699999999995 7.205298999999999), :r (8.56898029134533E-4 0.0013721466648667219 0.0021972118103789806 0.003518384632839378 0.00563397227619358 0.009021652525608603 0.014446328505508529 0.023132835885295813 0.03704249809160715 0.05931597283059068 0.09498238007972104 0.15209482530742383 0.24354870730634268 0.38999336572232046 0.6244944881440667 0.9999999999999986 1.601295157899462 2.564146182712267 4.105954866523549 6.574845646317901 10.528268497385229 16.858865365928438 26.996019478140187 43.2285952729055 69.22174029329925 110.84443755303434 177.49466113376343 284.2213414265016 455.12225779794744 728.785067664125), :s (0.1853161197306313 0.216062732764709 0.25191065168864374 0.29370625661438626 0.3424363543033322 0.39925147696977425 0.4654930466913777 0.5427250467865531 0.6327709479294402 0.7377567608391478 0.8601612320301474 1.0028743677605356 1.169265667946127 1.3632636810635448 1.589448758357416 1.8531611973063138 2.1606273276470906 2.519106516886438 2.9370625661438634 3.424363543033323 3.9925147696977437 4.654930466913779 5.427250467865534 6.327709479294406 7.377567608391484 8.60161232030148 10.028743677605364 11.692656679461283 13.632636810635464 15.894487583574179), :nu (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata {}, :data {0 0.00119, 893 0.01237, 920 0.00106, 558 2.1E-4, 453 0.00358, 584 2.8E-4, 487 3.4E-4, 637 0.06917, 972 2.0E-5, 519 0.92129, 1097 8.0E-5, 357 1.3E-4, 716 1.8E-4, 950 2.8E-4, 275 0.00168, 530 3.5E-4, 929 0.00187, 789 0.00319, 389 0.00285, 586 7.0E-5, 410 0.00169, 433 1.7E-4, 765 1.4E-4, 521 2.1E-4, 451 0.00135, 291 6.6E-4, 443 5.2E-4, 798 4.9E-4, 779 3.6E-4, 970 0.00236, 249 4.4E-4, 638 0.02562, 299 0.03149, 1101 1.0E-5, 121 0.00143, 734 3.2E-4, 287 8.7E-4, 65 0.00476, 1086 0.68335, 702 0.00606, 70 1.9E-4, 949 2.3E-4, 218 2.3E-4, 648 0.72223, 1070 0.00114, 812 2.9E-4, 62 6.5E-4, 74 1.9E-4, 774 1.4E-4, 475 7.0E-5, 497 1.9E-4, 1009 2.2E-4, 580 2.1E-4, 1138 2.9E-4, 891 0.01243, 164 0.00683, 1040 2.7E-4, 282 1.1E-4, 769 6.3E-4, 799 0.00134, 273 6.3E-4, 1147 0.00985, 186 2.0E-4, 430 5.6E-4, 641 1.9E-4, 529 2.1E-4, 898 0.00422, 370 1.9E-4, 834 0.00177, 233 0.00509, 298 0.00101, 188 3.1E-4, 240 7.0E-5, 110 2.1E-4, 130 4.3E-4, 982 9.0E-5, 620 1.4E-4, 311 2.7E-4, 931 0.00136, 882 0.00149, 128 0.00164, 399 0.00524, 989 7.7E-4, 377 5.8E-4, 468 5.2E-4, 259 4.7E-4, 210 0.0, 229 7.0E-5, 153 0.00242, 621 1.7E-4, 213 5.3E-4, 670 2.5E-4, 977 0.71478, 343 6.0E-5, 958 3.9E-4, 887 0.0, 472 3.2E-4, 7 0.00468, 894 0.0125, 59 3.1E-4, 934 0.00193, 473 3.2E-4, 1010 2.2E-4, 86 4.9E-4, 756 3.5E-4, 830 0.00121, 613 1.7E-4, 491 2.6E-4, 154 0.00271, 20 4.0E-5, 224 2.4E-4, 355 2.6E-4, 592 0.00314, 1146 8.6E-4, 610 0.05593, 806 0.00881, 571 2.1E-4, 466 0.70905, 72 4.6E-4, 454 3.9E-4, 888 0.01251, 463 nil, 851 0.00273, 770 4.9E-4, 814 2.9E-4, 859 1.4E-4, 58 1.9E-4, 964 0.02184, 980 0.00124, 1001 8.3E-4, 205 7.1E-4, 555 2.1E-4, 552 2.1E-4, 60 0.00479, 1102 1.0E-5, 835 0.00308, 459 5.8E-4, 175 0.03149, 322 3.2E-4, 510 2.6E-4, 1052 8.0E-4, 1121 1.3E-4, 662 0.00184, 27 0.00173, 352 3.2E-4, 493 4.0E-5, 899 0.00176, 416 0.00109, 777 5.6E-4, 694 0.00324, 1 2.0E-4, 631 0.00811, 854 0.00197, 69 1.3E-4, 101 5.8E-4, 24 9.4E-4, 901 1.4E-4, 547 2.1E-4, 102 2.1E-4, 788 0.00456, 1106 2.2E-4, 713 5.2E-4, 1110 0.06675, 385 0.0, 988 7.3E-4, 135 0.0014, 1065 0.0, 397 5.3E-4, 1011 7.3E-4, 1006 1.7E-4, 773 1.4E-4, 490 4.0E-4, 752 4.2E-4, 354 1.9E-4, 884 2.4E-4, 360 6.0E-5, 998 0.00134, 961 1.1E-4, 55 1.8E-4, 568 2.1E-4, 797 0.00367, 688 0.00118, 763 4.2E-4, 269 3.9E-4, 676 0.01508, 448 0.00102, 527 2.1E-4, 206 0.00192, 1075 0.00115, 966 0.03149, 165 0.00391, 715 1.7E-4, 387 1.8E-4, 652 1.4E-4, 683 0.01011, 85 2.1E-4, 721 0.00145, 862 0.00105, 615 0.00114, 681 0.00384, 225 1.5E-4, 865 0.00241, 297 0.00261, 39 1.5E-4, 805 0.00193, 274 1.0E-5, 88 5.7E-4, 217 0.00308, 1128 6.6E-4, 46 2.0E-4, 682 0.00175, 508 1.2E-4, 1157 2.6E-4, 149 0.00119, 415 0.00149, 239 7.0E-5, 478 1.1E-4, 878 0.00778, 157 9.0E-5, 345 6.0E-5, 300 0.03149, 743 0.02862, 921 0.00106, 1039 2.9E-4, 4 1.3E-4, 550 2.1E-4, 1115 4.0E-5, 204 6.4E-4, 470 3.9E-4, 1164 6.3E-4, 646 0.72382, 77 6.0E-5, 106 0.00195, 197 9.0E-4, 405 6.3E-4, 897 0.01277, 726 2.6E-4, 776 7.0E-4, 940 2.8E-4, 755 4.9E-4, 902 6.8E-4, 518 0.00155, 232 0.00391, 260 1.0E-5, 823 0.004, 1125 6.0E-5, 267 3.0E-4, 119 7.0E-5, 319 5.0E-5, 534 2.1E-4, 222 5.0E-5, 603 2.5E-4, 293 7.0E-5, 95 2.1E-4, 450 2.3E-4, 329 0.00564, 144 2.7E-4, 1087 0.00748, 504 2.4E-4, 819 1.5E-4, 818 2.8E-4, 505 2.3E-4, 723 0.0, 1071 1.0E-5, 1008 7.2E-4, 992 2.6E-4, 176 0.07838, 863 2.1E-4, 471 4.0E-4, 349 1.9E-4, 512 8.0E-5, 710 2.0E-5, 1058 4.0E-4, 192 0.00141, 54 0.00121, 92 4.3E-4, 221 1.1E-4, 141 7.0E-5, 502 2.6E-4, 871 2.4E-4, 464 1.4E-4, 801 2.8E-4, 307 2.5E-4, 935 0.00193, 758 3.5E-4, 290 4.3E-4, 1156 0.00235, 1144 7.0E-5, 627 7.0E-5, 517 0.00109, 1122 3.2E-4, 361 1.9E-4, 264 6.9E-4, 137 7.0E-5, 356 6.0E-5, 728 2.4E-4, 976 0.71556, 678 0.00234, 327 0.01597, 234 0.00121, 856 0.00184, 817 0.00365, 1017 0.03149, 104 6.4E-4, 353 1.9E-4, 1145 0.00264, 15 0.0211, 48 3.0E-4, 945 2.0E-5, 759 6.3E-4, 1066 0.71228, 242 0.00123, 832 0.00213, 969 5.7E-4, 50 1.9E-4, 956 3.7E-4, 917 2.1E-4, 1030 2.1E-4, 557 2.1E-4, 251 5.7E-4, 394 5.9E-4, 116 0.03261, 585 6.3E-4, 583 2.1E-4, 75 3.8E-4, 437 1.4E-4, 516 4.2E-4, 1062 3.1E-4, 994 0.00255, 930 0.0018, 967 7.0E-5, 687 3.2E-4, 159 1.7E-4, 848 1.9E-4, 995 0.00229, 1096 0.00228, 1159 5.7E-4, 709 5.2E-4, 99 0.00204, 540 2.1E-4, 645 0.05012, 749 2.7E-4, 479 5.0E-4, 1081 0.73961, 890 0.0125, 1046 1.4E-4, 630 0.00414, 916 8.0E-5, 815 2.9E-4, 1080 0.00247, 281 2.1E-4, 402 0.00421, 669 2.1E-4, 781 3.6E-4, 740 2.1E-4, 1012 0.00137, 975 0.95712, 429 5.9E-4, 309 2.3E-4, 458 5.8E-4, 21 3.8E-4, 388 0.0046, 495 4.4E-4, 952 1.9E-4, 626 2.1E-4, 875 0.0044, 31 1.4E-4, 113 3.3E-4, 32 2.5E-4, 811 2.9E-4, 827 0.00236, 407 9.6E-4, 398 4.0E-5, 136 0.00338, 691 0.00414, 847 7.0E-4, 825 2.4E-4, 139 0.00974, 506 2.8E-4, 396 0.0056, 460 2.2E-4, 483 0.89688, 589 6.3E-4, 581 2.1E-4, 932 0.00115, 174 0.00177, 578 2.1E-4, 855 0.00191, 331 0.83044, 363 6.0E-5, 1038 0.00498, 284 0.00618, 208 0.00162, 305 0.00635, 1019 0.68635, 955 3.3E-4, 796 0.00199, 708 9.8E-4, 182 0.01318, 256 1.2E-4, 1107 1.4E-4, 1109 0.00119, 657 7.7E-4, 514 2.5E-4, 1103 2.4E-4, 731 3.0E-4, 619 2.9E-4, 985 6.8E-4, 485 7.0E-5, 214 0.00108, 193 6.9E-4, 685 6.8E-4, 804 9.2E-4, 869 2.0E-4, 1002 3.2E-4, 1104 0.97287, 836 4.2E-4, 1131 4.0E-4, 785 1.4E-4, 635 3.4E-4, 442 0.01367, 1073 1.4E-4, 561 2.8E-4, 954 2.7E-4, 656 8.0E-5, 607 2.0E-5, 241 2.1E-4, 314 2.4E-4, 782 0.01435, 226 8.0E-5, 235 0.00106, 672 0.00118, 420 0.00203, 418 5.8E-4, 262 4.7E-4, 1016 0.44297, 263 1.2E-4, 304 0.0023, 401 1.4E-4, 673 3.6E-4, 40 3.2E-4, 129 0.07979, 600 1.9E-4, 729 2.5E-4, 1042 1.2E-4, 467 0.00121, 1033 3.1E-4, 1149 0.00985, 445 5.0E-5, 317 2.1E-4, 1091 8.0E-4, 1028 4.9E-4, 294 7.0E-5, 91 3.4E-4, 1044 0.8639, 810 2.9E-4, 1137 0.01506, 364 1.9E-4, 987 0.0, 880 0.00705, 515 3.9E-4, 412 0.0, 553 2.1E-4, 974 9.6E-4, 341 3.9E-4, 117 4.0E-5, 1000 0.00236, 1095 2.1E-4, 665 0.00149, 523 2.1E-4, 172 0.00861, 601 7.0E-5, 108 0.00153, 156 0.00174, 358 1.3E-4, 308 1.1E-4, 908 8.5E-4, 649 1.4E-4, 531 2.1E-4, 1085 0.68262, 923 8.5E-4, 1111 8.7E-4, 223 1.7E-4, 419 8.3E-4, 365 6.0E-5, 944 0.00156, 181 0.00129, 417 6.4E-4, 1082 0.73497, 979 2.1E-4, 278 8.0E-5, 56 2.1E-4, 942 3.9E-4, 33 4.5E-4, 13 0.0, 1043 0.86407, 867 0.00278, 22 3.9E-4, 618 0.00123, 1141 1.4E-4, 1093 1.1E-4, 380 5.9E-4, 257 7.0E-5, 1061 0.00143, 338 2.6E-4, 1024 2.7E-4, 500 2.8E-4, 909 0.00143, 1018 2.2E-4, 993 0.00242, 1089 7.3E-4, 168 7.0E-5, 833 1.0E-5, 496 1.3E-4, 1056 5.2E-4, 1129 7.0E-5, 947 0.47082, 347 6.0E-5, 501 2.0E-4, 1007 1.3E-4, 1077 1.4E-4, 596 7.8E-4, 872 1.9E-4, 792 0.0034, 90 2.5E-4, 237 0.00106, 826 2.0E-4, 292 0.00104, 109 2.9E-4, 216 0.00129, 191 2.8E-4, 498 1.8E-4, 829 0.00114, 761 7.0E-5, 1072 4.9E-4, 375 0.00258, 525 2.1E-4, 367 6.0E-5, 143 0.00185, 742 2.9E-4, 178 0.00136, 640 1.1E-4, 247 2.4E-4, 328 0.0034, 391 9.6E-4, 990 9.0E-4, 167 7.0E-5, 707 9.2E-4, 36 2.6E-4, 41 2.8E-4, 474 2.7E-4, 187 1.4E-4, 551 2.8E-4, 1118 1.7E-4, 996 0.00236, 528 2.1E-4, 971 2.0E-5, 599 1.3E-4, 376 8.2E-4, 195 9.7E-4, 889 0.01277, 316 2.0E-4, 668 0.00182, 428 2.1E-4, 303 2.1E-4, 671 0.0, 794 0.00417, 905 0.74504, 368 1.3E-4, 560 2.8E-4, 565 2.1E-4, 310 2.3E-4, 366 6.0E-5, 118 0.02938, 522 2.1E-4, 150 0.02525, 886 0.0, 313 2.8E-4, 384 0.0, 567 2.1E-4, 238 8.5E-4, 846 0.00159, 962 0.4072, 1127 0.00299, 845 7.0E-4, 196 6.2E-4, 162 0.00432, 393 1.0E-4, 184 0.0, 219 1.4E-4, 999 0.08154, 461 1.5E-4, 1032 3.2E-4, 89 7.7E-4, 100 1.3E-4, 426 0.00125, 604 1.7E-4, 477 5.3E-4, 844 0.00203, 541 2.1E-4, 351 1.9E-4, 243 4.4E-4, 131 0.79737, 790 0.00313, 963 0.0211, 1053 7.0E-5, 629 0.00143, 873 0.00353, 122 8.4E-4, 933 0.00411, 43 2.1E-4, 1067 9.7E-4, 231 3.1E-4, 61 0.01092, 654 7.0E-5, 883 2.0E-4, 1003 7.8E-4, 598 6.0E-5, 413 2.0E-5, 29 0.03149, 784 6.0E-5, 800 5.8E-4, 151 0.00203, 369 6.0E-5, 348 3.2E-4, 1124 0.00204, 575 2.1E-4, 693 0.00233, 44 1.2E-4, 739 1.4E-4, 258 1.1E-4, 250 1.9E-4, 674 0.00636, 539 2.1E-4, 301 4.4E-4, 838 9.5E-4, 424 9.5E-4, 93 3.8E-4, 6 0.00537, 684 0.00279, 1026 4.3E-4, 951 7.0E-5, 573 2.1E-4, 408 0.00143, 563 2.1E-4, 850 0.00197, 616 0.00156, 866 0.00168, 111 2.5E-4, 997 0.00153, 689 0.00686, 28 0.29184, 456 0.00351, 374 6.0E-5, 608 0.0, 737 2.1E-4, 1155 0.00243, 548 2.8E-4, 538 2.1E-4, 1034 9.0E-5, 895 0.01243, 411 3.9E-4, 957 0.00122, 134 0.00133, 943 1.7E-4, 64 0.00598, 623 7.0E-5, 1135 0.00234, 1133 7.4E-4, 465 0.709, 816 2.9E-4, 334 1.3E-4, 1150 0.00153, 323 1.7E-4, 189 2.7E-4, 280 4.0E-5, 198 0.00118, 155 0.00231, 295 0.00137, 808 4.9E-4, 248 4.9E-4, 587 6.3E-4, 285 1.4E-4, 507 2.6E-4, 227 2.7E-4, 724 2.2E-4, 476 1.5E-4, 941 0.0012, 911 2.4E-4, 853 0.00248, 494 1.2E-4, 220 1.8E-4, 842 0.00197, 103 4.4E-4, 697 0.00601, 611 0.05739, 1105 0.01798, 170 7.8E-4, 1154 0.00367, 51 7.0E-5, 25 0.00122, 261 1.8E-4, 768 7.0E-4, 822 0.01668, 201 0.01562, 904 0.74119, 590 7.0E-5, 489 9.0E-5, 778 3.6E-4, 166 7.0E-5, 447 0.00371, 34 1.2E-4, 252 7.5E-4, 978 1.4E-4, 775 2.1E-4, 325 9.0E-5, 1005 1.9E-4, 594 4.2E-4, 436 0.0025, 828 0.00121, 535 2.8E-4, 813 2.9E-4, 146 5.3E-4, 741 1.4E-4, 1060 7.0E-5, 876 0.00686, 1064 0.01206, 228 8.0E-5, 907 4.0E-4, 306 1.2E-4, 125 7.0E-5, 276 0.00104, 340 6.0E-5, 148 2.8E-4, 1143 7.3E-4, 482 1.0E-4, 1049 1.8E-4, 622 0.00195, 588 2.1E-4, 17 0.03149, 312 3.0E-4, 606 7.0E-5, 3 1.5E-4, 1148 0.00985, 520 0.02986, 1088 2.3E-4, 760 4.9E-4, 720 0.00104, 1126 2.1E-4, 286 0.00193, 279 2.8E-4, 879 0.00609, 1020 4.0E-4, 536 2.1E-4, 1023 0.00219, 663 0.00111, 12 0.0, 440 0.00116, 332 2.1E-4, 330 0.00106, 1162 4.7E-4, 382 1.4E-4, 152 4.7E-4, 1112 9.0E-5, 1140 0.002, 544 2.1E-4, 803 1.4E-4, 642 7.1E-4, 435 1.4E-4, 342 3.2E-4, 703 0.003, 783 1.7E-4, 695 0.0019, 973 2.0E-5, 2 5.0E-5, 948 0.61976, 66 0.00422, 484 2.4E-4, 439 4.0E-4, 236 0.00121, 556 2.1E-4, 373 1.3E-4, 1083 0.73554, 142 4.2E-4, 359 1.9E-4, 727 1.7E-4, 371 0.01757, 772 0.00488, 444 5.3E-4, 1057 1.8E-4, 570 2.1E-4, 757 4.9E-4, 107 0.00156, 1094 4.0E-4, 532 2.1E-4, 984 2.4E-4, 23 0.00174, 1079 0.0098, 745 0.01799, 719 0.00111, 230 2.6E-4, 625 0.00729, 47 3.0E-4, 526 2.1E-4, 180 7.0E-5, 786 1.0E-5, 1068 9.8E-4, 1166 2.9E-4, 870 1.5E-4, 537 2.1E-4, 659 5.0E-5, 158 3.1E-4, 991 5.1E-4, 350 6.0E-5, 35 3.3E-4, 1116 0.79904, 849 0.00134, 1120 9.5E-4, 644 0.00448, 1069 1.8E-4, 881 0.00268, 127 0.00136, 927 2.2E-4, 675 2.4E-4, 1055 0.00146, 383 0.0, 533 2.1E-4, 1100 1.0E-5, 910 1.4E-4, 302 0.001, 564 2.1E-4, 701 0.00149, 1090 0.00138, 566 2.1E-4, 821 1.4E-4, 787 1.4E-4, 82 3.0E-4, 76 1.4E-4, 735 0.00136, 492 3.9E-4, 718 5.3E-4, 771 4.9E-4, 215 0.00128, 97 4.5E-4, 704 0.00121, 277 1.1E-4, 926 7.9E-4, 751 2.4E-4, 1114 6.0E-5, 19 5.2E-4, 335 0.00103, 597 3.4E-4, 938 0.00126, 57 1.1E-4, 609 0.06, 202 2.8E-4, 68 1.5E-4, 452 2.9E-4, 1054 0.00117, 200 0.01562, 1142 0.00164, 868 0.00204, 11 0.00273, 115 1.9E-4, 946 0.27883, 1063 0.00163, 983 8.9E-4, 339 0.03408, 431 2.4E-4, 462 3.6E-4, 337 1.9E-4, 698 0.00305, 255 5.0E-4, 503 2.6E-4, 546 2.1E-4, 9 0.0, 953 2.6E-4, 857 0.68665, 706 3.2E-4, 632 6.2E-4, 457 4.4E-4, 427 1.4E-4, 145 2.7E-4, 5 0.00283, 733 9.0E-5, 1163 1.3E-4, 1165 7.0E-4, 1152 0.00635, 624 2.8E-4, 831 0.00179, 244 0.07013, 918 0.0012, 824 5.0E-5, 289 1.7E-4, 112 4.0E-4, 925 0.00194, 1059 2.2E-4, 730 2.7E-4, 699 0.00355, 712 0.00248, 1076 2.6E-4, 1113 4.0E-5, 414 3.3E-4, 839 2.2E-4, 802 2.9E-4, 1084 0.00762, 860 0.6916, 1117 0.00153, 179 0.07902, 344 1.9E-4, 481 6.0E-4, 732 1.8E-4, 661 4.5E-4, 245 9.2E-4, 378 6.9E-4, 913 1.3E-4, 906 3.9E-4, 658 5.2E-4, 266 4.3E-4, 324 0.00171, 793 0.00401, 1134 0.0033, 1132 6.0E-4, 1014 1.7E-4, 680 0.0062, 446 0.00264, 524 2.8E-4, 254 3.8E-4, 404 0.00188, 1025 1.7E-4, 617 0.0012, 283 9.0E-5, 1153 7.3E-4, 513 4.4E-4, 572 2.1E-4, 705 0.00303, 1098 1.0E-5, 959 8.0E-5, 1074 0.00101, 83 2.3E-4, 634 1.8E-4, 138 0.02191, 1050 5.1E-4, 346 1.3E-4, 14 0.02213, 455 2.8E-4, 265 2.4E-4, 449 3.6E-4, 333 3.2E-4, 650 8.0E-5, 639 0.03149, 569 2.1E-4, 326 3.2E-4, 746 0.01437, 647 0.72377, 45 2.3E-4, 53 0.00488, 559 2.1E-4, 78 2.0E-4, 1037 9.0E-5, 924 0.00122, 562 2.1E-4, 1119 7.9E-4, 542 2.1E-4, 912 2.0E-5, 664 0.00104, 1048 3.0E-4, 315 3.6E-4, 1031 1.4E-4, 914 9.0E-5, 480 2.3E-4, 132 2.4E-4, 753 5.6E-4, 900 7.8E-4, 1013 7.1E-4, 26 0.00193, 766 5.6E-4, 123 0.00143, 203 3.7E-4, 667 2.4E-4, 392 2.2E-4, 1045 0.86413, 577 2.8E-4, 807 0.00141, 140 0.01087, 321 0.00111, 795 0.00388, 441 0.00184, 700 0.00695, 268 2.4E-4, 840 8.8E-4, 16 0.02088, 320 0.0011, 133 0.00134, 288 8.7E-4, 381 1.4E-4, 605 0.00187, 163 0.00544, 81 2.3E-4, 120 2.9E-4, 643 0.00104, 79 1.3E-4, 211 2.4E-4, 38 2.1E-4, 173 0.00104, 126 2.1E-4, 981 1.4E-4, 1161 3.1E-4, 421 0.00159, 593 0.0019, 636 0.00204, 1160 2.1E-4, 98 1.9E-4, 422 0.00197, 423 9.5E-4, 614 2.4E-4, 762 2.8E-4, 582 2.1E-4, 666 5.5E-4, 1123 2.6E-4, 554 2.1E-4, 409 6.3E-4, 574 2.8E-4, 595 7.8E-4, 124 4.4E-4, 747 3.1E-4, 171 0.00164, 87 3.1E-4, 169 7.0E-5, 653 2.4E-4, 679 0.00294, 843 0.00203, 160 0.00146, 30 1.0E-5, 400 6.1E-4, 767 4.9E-4, 896 0.01277, 928 7.0E-5, 696 0.00455, 1027 4.7E-4, 738 2.4E-4, 809 4.4E-4, 509 2.7E-4, 736 0.00214, 207 3.0E-4, 874 0.00591, 434 0.00147, 1130 8.8E-4, 690 0.00352, 194 9.0E-4, 1047 2.1E-4, 511 0.79307, 73 1.9E-4, 486 2.0E-4, 336 1.9E-4, 96 4.0E-4, 837 5.0E-4, 1136 0.00208, 937 0.00126, 10 4.0E-4, 660 7.9E-4, 272 7.0E-4, 499 1.8E-4, 488 2.6E-4, 903 6.0E-4, 386 0.00151, 270 4.7E-4, 576 2.8E-4, 717 0.0, 543 2.1E-4, 271 2.8E-4, 18 0.03149, 395 0.00419, 403 0.00515, 469 5.5E-4, 105 0.00173, 185 1.0E-5, 52 0.00194, 1051 4.9E-4, 545 2.1E-4, 633 7.6E-4, 114 0.02053, 1099 1.0E-5, 968 0.03149, 253 3.2E-4, 612 0.05288, 1151 0.00184, 1015 3.4E-4, 628 3.5E-4, 748 2.1E-4, 209 7.2E-4, 147 0.00265, 655 2.1E-4, 1022 6.0E-5, 750 3.0E-4, 852 0.00273, 425 0.0011, 1158 3.3E-4, 864 0.0027, 67 0.00536, 1108 0.00336, 296 4.0E-4, 602 0.04729, 318 2.7E-4, 161 0.00502, 651 3.2E-4, 725 2.0E-4, 372 6.0E-5, 1092 2.5E-4, 406 0.00121, 438 2.1E-4, 780 0.00103, 711 9.9E-4, 1041 2.3E-4, 71 1.2E-4, 939 0.00112, 579 2.1E-4, 877 0.00524, 722 0.00131, 42 1.8E-4, 919 0.00127, 80 3.3E-4, 885 2.2E-4, 1078 0.00696, 986 4.4E-4, 1035 2.0E-4, 714 2.1E-4, 677 0.00836, 199 0.00166, 841 7.7E-4, 754 4.2E-4, 791 0.00326, 1029 0.01275, 861 0.68969, 591 1.4E-4, 1021 0.00133, 744 0.01728, 960 0.0023, 37 2.7E-4, 183 4.0E-5, 1139 4.0E-4, 965 0.03149, 892 0.01237, 432 6.8E-4, 379 0.00135, 63 0.00499, 212 1.4E-4, 94 1.4E-4, 362 6.0E-5, 8 0.00264, 686 2.4E-4, 692 0.00919, 764 4.2E-4, 246 5.8E-4, 190 2.3E-4, 1004 0.00143, 1036 1.5E-4, 549 2.1E-4, 922 0.00129, 177 0.00104, 915 7.0E-4, 936 0.00108, 820 0.07511, 49 3.0E-4, 858 1.4E-4, 390 0.00425, 84 1.3E-4}}, :Launch_Mass_kg #inferenceql.inference.gpm.column.Column{:var-name :Launch_Mass_kg, :stattype :gaussian, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3727.0, :sum-x-sq 1.3890529E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 3, :sum-x 378.0, :sum-x-sq 47628.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4723.0, :sum-x-sq 2.2306729E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3727.0, :sum-x-sq 1.3890529E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4000.0, :sum-x-sq 1.6E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 980.0, :sum-x-sq 960400.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 5, :sum-x 635.0, :sum-x-sq 251251.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3792.0, :sum-x-sq 1.4379264E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 12, :sum-x 29947.6, :sum-x-sq 1.2831031976E8}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 2, :sum-x 4122.0, :sum-x-sq 1.3609044E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 0, :sum-x 0, :sum-x-sq 0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 2, :sum-x 7380.0, :sum-x-sq 3.06644E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 1200.0, :sum-x-sq 1440000.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3764.0, :sum-x-sq 1.4167696E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 4, :sum-x 4800.0, :sum-x-sq 5760000.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 258, :sum-x 115356.54999999999, :sum-x-sq 8.36440570625E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4723.0, :sum-x-sq 2.2306729E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 7, :sum-x 16725.0, :sum-x-sq 4.3580625E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4742.0, :sum-x-sq 2.2486564E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 4, :sum-x 2800.0, :sum-x-sq 1960000.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 424, :sum-x 1581118.0, :sum-x-sq 6.809002118E9}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 29, :sum-x 251979.0, :sum-x-sq 2.977314945E9}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 246, :sum-x 169145.24999999997, :sum-x-sq 3.572552840025E8}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 72, :sum-x 125588.0, :sum-x-sq 2.3975217E8}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 450.0, :sum-x-sq 202500.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}}, :assignments {{:Launch_Mass_kg 18000.0} {:cluster_9 5}, {:Launch_Mass_kg 2744.0} {:cluster_2 1}, {:Launch_Mass_kg 3311.0} {:cluster_4 1}, {:Launch_Mass_kg 3727.0} {:cluster_80 1, :cluster_75 1}, {:Launch_Mass_kg 4990.0} {:cluster_9 1}, {:Launch_Mass_kg 5250.0} {:cluster_4 2}, {:Launch_Mass_kg 5345.0} {:cluster_4 1}, {:Launch_Mass_kg 5350.0} {:cluster_4 1}, {:Launch_Mass_kg 6500.0} {:cluster_9 2}, {:Launch_Mass_kg 4860.0} {:cluster_4 1}, {:Launch_Mass_kg 2783.0} {:cluster_4 1}, {:Launch_Mass_kg 726.0} {:cluster_2 1}, {:Launch_Mass_kg 3050.0} {:cluster_4 2}, {:Launch_Mass_kg 680.0} {:cluster_2 2}, {:Launch_Mass_kg 140.0} {:cluster_2 1}, {:Launch_Mass_kg 150.0} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 4193.0} {:cluster_2 1}, {:Launch_Mass_kg 4690.0} {:cluster_4 1}, {:Launch_Mass_kg 553.0} {:cluster_6 1}, {:Launch_Mass_kg 3287.0} {:cluster_4 1}, {:Launch_Mass_kg 1282.0} {:cluster_4 1}, {:Launch_Mass_kg 1640.0} {:cluster_4 1}, {:Launch_Mass_kg 764.0} {:cluster_2 1}, {:Launch_Mass_kg 148.0} {:cluster_2 1}, {:Launch_Mass_kg 5984.0} {:cluster_4 1}, {:Launch_Mass_kg 2060.0} {:cluster_23 3, :cluster_4 1}, {:Launch_Mass_kg 1420.0} {:cluster_4 1, :cluster_2 1}, {:Launch_Mass_kg 60.0} {:cluster_2 2}, {:Launch_Mass_kg 348.0} {:cluster_6 1}, {:Launch_Mass_kg 6020.0} {:cluster_4 1}, {:Launch_Mass_kg 3760.0} {:cluster_4 1}, {:Launch_Mass_kg 2033.0} {:cluster_4 1}, {:Launch_Mass_kg 2200.0} {:cluster_23 3, :cluster_85 2, :cluster_4 4}, {:Launch_Mass_kg 4200.0} {:cluster_62 1, :cluster_2 2, :cluster_4 2}, {:Launch_Mass_kg 4635.0} {:cluster_4 1}, {:Launch_Mass_kg 50.0} {:cluster_2 2, :cluster_0 1}, {:Launch_Mass_kg 3100.0} {:cluster_4 3}, {:Launch_Mass_kg 204.0} {:cluster_2 2}, {:Launch_Mass_kg 3700.0} {:cluster_4 1}, {:Launch_Mass_kg 1410.0} {:cluster_4 1}, {:Launch_Mass_kg 2450.0} {:cluster_4 1}, {:Launch_Mass_kg 2600.0} {:cluster_4 6}, {:Launch_Mass_kg 170.0} {:cluster_2 1}, {:Launch_Mass_kg 10.9} {:cluster_6 1}, {:Launch_Mass_kg 4333.0} {:cluster_4 1}, {:Launch_Mass_kg 750.0} {:cluster_2 1}, {:Launch_Mass_kg 935.0} {:cluster_23 1}, {:Launch_Mass_kg 434.0} {:cluster_6 1}, {:Launch_Mass_kg 0.8} {:cluster_2 1}, {:Launch_Mass_kg 4970.0} {:cluster_4 1}, {:Launch_Mass_kg 2532.0} {:cluster_4 1}, {:Launch_Mass_kg 3582.0} {:cluster_4 1}, {:Launch_Mass_kg 3124.0} {:cluster_4 1}, {:Launch_Mass_kg 1156.0} {:cluster_4 8}, {:Launch_Mass_kg 3150.0} {:cluster_4 1}, {:Launch_Mass_kg 5600.0} {:cluster_4 2}, {:Launch_Mass_kg 3635.0} {:cluster_4 1}, {:Launch_Mass_kg 5990.0} {:cluster_4 4}, {:Launch_Mass_kg 720.0} {:cluster_2 2}, {:Launch_Mass_kg 1206.0} {:cluster_2 1}, {:Launch_Mass_kg 7.1} {:cluster_2 1}, {:Launch_Mass_kg 2950.0} {:cluster_4 2}, {:Launch_Mass_kg 4905.0} {:cluster_4 1}, {:Launch_Mass_kg 2417.0} {:cluster_4 1}, {:Launch_Mass_kg 5576.0} {:cluster_4 1}, {:Launch_Mass_kg 3200.0} {:cluster_4 12, :cluster_9 1}, {:Launch_Mass_kg 4010.0} {:cluster_4 1}, {:Launch_Mass_kg 2400.0} {:cluster_4 4, :cluster_62 3}, {:Launch_Mass_kg 480.0} {:cluster_2 1, :cluster_6 1}, {:Launch_Mass_kg 1383.0} {:cluster_4 2}, {:Launch_Mass_kg 1300.0} {:cluster_4 1}, {:Launch_Mass_kg 117.0} {:cluster_62 2, :cluster_2 1}, {:Launch_Mass_kg 2915.0} {:cluster_4 1}, {:Launch_Mass_kg 293.0} {:cluster_6 1}, {:Launch_Mass_kg 29.0} {:cluster_2 2}, {:Launch_Mass_kg 2070.0} {:cluster_4 1}, {:Launch_Mass_kg 11110.0} {:cluster_9 1}, {:Launch_Mass_kg 4085.0} {:cluster_2 1}, {:Launch_Mass_kg 5320.0} {:cluster_4 1}, {:Launch_Mass_kg 5483.0} {:cluster_4 1}, {:Launch_Mass_kg 325.0} {:cluster_6 1}, {:Launch_Mass_kg 848.0} {:cluster_2 1}, {:Launch_Mass_kg 1000.0} {:cluster_2 4, :cluster_6 1}, {:Launch_Mass_kg 236.0} {:cluster_2 1}, {:Launch_Mass_kg 1155.0} {:cluster_2 1}, {:Launch_Mass_kg 6.0} {:cluster_2 3}, {:Launch_Mass_kg 2894.0} {:cluster_4 1}, {:Launch_Mass_kg 4300.0} {:cluster_4 3}, {:Launch_Mass_kg 3680.0} {:cluster_4 1}, {:Launch_Mass_kg 2238.0} {:cluster_4 1}, {:Launch_Mass_kg 3206.0} {:cluster_4 1}, {:Launch_Mass_kg 2242.0} {:cluster_4 1}, {:Launch_Mass_kg 880.0} {:cluster_2 1}, {:Launch_Mass_kg 110.0} {:cluster_6 2, :cluster_2 1}, {:Launch_Mass_kg 2542.0} {:cluster_4 1}, {:Launch_Mass_kg 5993.0} {:cluster_4 2}, {:Launch_Mass_kg 8000.0} {:cluster_62 1, :cluster_4 2}, {:Launch_Mass_kg 1154.0} {:cluster_2 2}, {:Launch_Mass_kg 200.0} {:cluster_2 3}, {:Launch_Mass_kg 2240.0} {:cluster_6 2}, {:Launch_Mass_kg 2550.0} {:cluster_4 2}, {:Launch_Mass_kg 647.6} {:cluster_62 1}, {:Launch_Mass_kg 113.0} {:cluster_2 1}, {:Launch_Mass_kg 2315.0} {:cluster_4 1}, {:Launch_Mass_kg 2885.0} {:cluster_4 1}, {:Launch_Mass_kg 4880.0} {:cluster_4 1}, {:Launch_Mass_kg 1350.0} {:cluster_2 1}, {:Launch_Mass_kg 5.8} {:cluster_6 1}, {:Launch_Mass_kg 115.0} {:cluster_2 2}, {:Launch_Mass_kg 2081.0} {:cluster_4 1}, {:Launch_Mass_kg 817.0} {:cluster_2 1}, {:Launch_Mass_kg 3764.0} {:cluster_94 1}, {:Launch_Mass_kg 0.85} {:cluster_2 1}, {:Launch_Mass_kg 2501.0} {:cluster_4 1}, {:Launch_Mass_kg 4143.0} {:cluster_4 1}, {:Launch_Mass_kg 2982.0} {:cluster_4 1}, {:Launch_Mass_kg 694.0} {:cluster_2 1}, {:Launch_Mass_kg 3130.0} {:cluster_4 1}, {:Launch_Mass_kg 468.0} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 1780.0} {:cluster_4 2}, {:Launch_Mass_kg 1390.0} {:cluster_4 3}, {:Launch_Mass_kg 500.0} {:cluster_2 1}, {:Launch_Mass_kg 93.0} {:cluster_0 1, :cluster_6 1}, {:Launch_Mass_kg 3180.0} {:cluster_4 7}, {:Launch_Mass_kg 3515.0} {:cluster_4 1}, {:Launch_Mass_kg 5910.0} {:cluster_4 1}, {:Launch_Mass_kg 6150.0} {:cluster_4 1}, {:Launch_Mass_kg 4745.0} {:cluster_4 2}, {:Launch_Mass_kg 5800.0} {:cluster_4 2}, {:Launch_Mass_kg 658.0} {:cluster_2 1}, {:Launch_Mass_kg 5493.0} {:cluster_4 1}, {:Launch_Mass_kg 5474.0} {:cluster_4 1}, {:Launch_Mass_kg 1760.0} {:cluster_4 1}, {:Launch_Mass_kg 3400.0} {:cluster_4 4}, {:Launch_Mass_kg 100.8} {:cluster_2 1}, {:Launch_Mass_kg 53.0} {:cluster_6 1, :cluster_2 1}, {:Launch_Mass_kg 2064.0} {:cluster_4 1}, {:Launch_Mass_kg 1800.0} {:cluster_2 1}, {:Launch_Mass_kg 4050.0} {:cluster_4 1}, {:Launch_Mass_kg 83.0} {:cluster_2 1}, {:Launch_Mass_kg 4488.0} {:cluster_4 1}, {:Launch_Mass_kg 159.0} {:cluster_6 1}, {:Launch_Mass_kg 4167.0} {:cluster_4 1}, {:Launch_Mass_kg 3659.0} {:cluster_4 1}, {:Launch_Mass_kg 810.0} {:cluster_6 2}, {:Launch_Mass_kg 92.0} {:cluster_2 2}, {:Launch_Mass_kg 1900.0} {:cluster_2 1}, {:Launch_Mass_kg 5521.0} {:cluster_4 1}, {:Launch_Mass_kg 1040.0} {:cluster_2 1}, {:Launch_Mass_kg 2024.0} {:cluster_4 1}, {:Launch_Mass_kg 450.0} {:cluster_6 23, :cluster_74 1}, {:Launch_Mass_kg 4710.0} {:cluster_4 1}, {:Launch_Mass_kg 4536.0} {:cluster_4 5}, {:Launch_Mass_kg 1360.0} {:cluster_6 2, :cluster_4 1, :cluster_2 1}, {:Launch_Mass_kg 175.0} {:cluster_2 3, :cluster_6 2}, {:Launch_Mass_kg 2090.0} {:cluster_4 1}, {:Launch_Mass_kg 1700.0} {:cluster_2 4}, {:Launch_Mass_kg 1816.0} {:cluster_23 9}, {:Launch_Mass_kg 4.5} {:cluster_6 6, :cluster_2 1}, {:Launch_Mass_kg 5150.0} {:cluster_4 1}, {:Launch_Mass_kg 350.0} {:cluster_2 2}, {:Launch_Mass_kg 485.0} {:cluster_2 1}, {:Launch_Mass_kg 1031.0} {:cluster_2 1}, {:Launch_Mass_kg 215.0} {:cluster_2 1, :cluster_6 1}, {:Launch_Mass_kg 4742.0} {:cluster_79 1}, {:Launch_Mass_kg 3460.0} {:cluster_4 1}, {:Launch_Mass_kg 3535.0} {:cluster_4 1}, {:Launch_Mass_kg 384.0} {:cluster_6 1}, {:Launch_Mass_kg 1400.0} {:cluster_4 2}, {:Launch_Mass_kg 6505.0} {:cluster_4 1}, {:Launch_Mass_kg 5987.0} {:cluster_4 1}, {:Launch_Mass_kg 3592.0} {:cluster_4 1}, {:Launch_Mass_kg 4332.0} {:cluster_4 1}, {:Launch_Mass_kg 4640.0} {:cluster_4 2}, {:Launch_Mass_kg 1600.0} {:cluster_2 5, :cluster_6 1, :cluster_4 1}, {:Launch_Mass_kg 2845.0} {:cluster_4 1}, {:Launch_Mass_kg 4900.0} {:cluster_4 2}, {:Launch_Mass_kg 3288.0} {:cluster_4 1}, {:Launch_Mass_kg 4500.0} {:cluster_4 8, :cluster_2 1}, {:Launch_Mass_kg 6140.0} {:cluster_4 1}, {:Launch_Mass_kg 3030.0} {:cluster_2 1}, {:Launch_Mass_kg 3765.0} {:cluster_4 1}, {:Launch_Mass_kg 2775.0} {:cluster_4 1}, {:Launch_Mass_kg 1152.0} {:cluster_2 1}, {:Launch_Mass_kg 4303.0} {:cluster_9 1}, {:Launch_Mass_kg 3775.0} {:cluster_4 1}, {:Launch_Mass_kg 91.0} {:cluster_2 1}, {:Launch_Mass_kg 6100.0} {:cluster_4 2}, {:Launch_Mass_kg 2850.0} {:cluster_4 3}, {:Launch_Mass_kg 2900.0} {:cluster_4 4}, {:Launch_Mass_kg 2910.0} {:cluster_4 1}, {:Launch_Mass_kg 4027.0} {:cluster_4 1}, {:Launch_Mass_kg 5900.0} {:cluster_4 5, :cluster_9 1}, {:Launch_Mass_kg 770.0} {:cluster_6 3, :cluster_2 2}, {:Launch_Mass_kg 2491.0} {:cluster_4 1}, {:Launch_Mass_kg 5400.0} {:cluster_4 1}, {:Launch_Mass_kg 1955.0} {:cluster_2 1}, {:Launch_Mass_kg 4100.0} {:cluster_4 7}, {:Launch_Mass_kg 2000.0} {:cluster_4 4}, {:Launch_Mass_kg 5.0} {:cluster_2 7}, {:Launch_Mass_kg 890.0} {:cluster_2 1}, {:Launch_Mass_kg 96.5} {:cluster_2 1}, {:Launch_Mass_kg 7.0} {:cluster_2 1}, {:Launch_Mass_kg 2300.0} {:cluster_2 3, :cluster_4 5, :cluster_85 3}, {:Launch_Mass_kg 4735.0} {:cluster_4 1}, {:Launch_Mass_kg 90.0} {:cluster_2 1}, {:Launch_Mass_kg 4940.0} {:cluster_4 1}, {:Launch_Mass_kg 1500.0} {:cluster_2 3, :cluster_4 1}, {:Launch_Mass_kg 5514.0} {:cluster_4 1}, {:Launch_Mass_kg 494.0} {:cluster_6 1}, {:Launch_Mass_kg 4600.0} {:cluster_4 3}, {:Launch_Mass_kg 3.15} {:cluster_6 1}, {:Launch_Mass_kg 100.0} {:cluster_2 5}, {:Launch_Mass_kg 6804.0} {:cluster_4 2}, {:Launch_Mass_kg 3631.0} {:cluster_4 1}, {:Launch_Mass_kg 9.3} {:cluster_2 1}, {:Launch_Mass_kg 2059.0} {:cluster_23 1}, {:Launch_Mass_kg 2250.0} {:cluster_4 1}, {:Launch_Mass_kg 4892.0} {:cluster_4 1}, {:Launch_Mass_kg 4685.0} {:cluster_4 1}, {:Launch_Mass_kg 360.0} {:cluster_6 1}, {:Launch_Mass_kg 74.0} {:cluster_2 1}, {:Launch_Mass_kg 3190.0} {:cluster_4 1}, {:Launch_Mass_kg 3112.0} {:cluster_4 2}, {:Launch_Mass_kg 3225.0} {:cluster_4 1}, {:Launch_Mass_kg 2015.0} {:cluster_4 1}, {:Launch_Mass_kg 5471.0} {:cluster_4 1}, {:Launch_Mass_kg 5458.0} {:cluster_4 1}, {:Launch_Mass_kg 3643.0} {:cluster_4 1}, {:Launch_Mass_kg 3660.0} {:cluster_92 1}, {:Launch_Mass_kg 689.0} {:cluster_6 70}, {:Launch_Mass_kg 5120.0} {:cluster_4 1}, {:Launch_Mass_kg 60.6} {:cluster_2 1}, {:Launch_Mass_kg 2800.0} {:cluster_2 1, :cluster_4 1}, {:Launch_Mass_kg 1698.0} {:cluster_4 1}, {:Launch_Mass_kg 3170.0} {:cluster_4 1}, {:Launch_Mass_kg 4680.0} {:cluster_4 2}, {:Launch_Mass_kg 12.0} {:cluster_2 11, :cluster_6 6}, {:Launch_Mass_kg 3878.0} {:cluster_4 1}, {:Launch_Mass_kg 4328.0} {:cluster_4 1}, {:Launch_Mass_kg 130.0} {:cluster_2 2}, {:Launch_Mass_kg 3820.0} {:cluster_9 1}, {:Launch_Mass_kg 2648.0} {:cluster_4 1}, {:Launch_Mass_kg 5540.0} {:cluster_4 1}, {:Launch_Mass_kg 5180.0} {:cluster_4 1}, {:Launch_Mass_kg 47.0} {:cluster_2 1}, {:Launch_Mass_kg 3304.0} {:cluster_4 1}, {:Launch_Mass_kg 2700.0} {:cluster_4 1, :cluster_2 5}, {:Launch_Mass_kg 3010.0} {:cluster_4 1}, {:Launch_Mass_kg 2340.0} {:cluster_4 1}, {:Launch_Mass_kg 4291.0} {:cluster_4 1}, {:Launch_Mass_kg 470.0} {:cluster_2 2}, {:Launch_Mass_kg 3739.0} {:cluster_4 1}, {:Launch_Mass_kg 6265.0} {:cluster_4 1}, {:Launch_Mass_kg 1525.0} {:cluster_4 1}, {:Launch_Mass_kg 35.0} {:cluster_2 2}, {:Launch_Mass_kg 5090.0} {:cluster_4 1}, {:Launch_Mass_kg 5396.0} {:cluster_4 1}, {:Launch_Mass_kg 315.0} {:cluster_6 1}, {:Launch_Mass_kg 4312.0} {:cluster_4 1}, {:Launch_Mass_kg 462.0} {:cluster_92 1}, {:Launch_Mass_kg 280.0} {:cluster_6 10}, {:Launch_Mass_kg 4723.0} {:cluster_32 1, :cluster_4 3, :cluster_77 1}, {:Launch_Mass_kg 3105.0} {:cluster_4 1}, {:Launch_Mass_kg 250.0} {:cluster_6 3, :cluster_2 1}, {:Launch_Mass_kg 2924.0} {:cluster_2 1, :cluster_4 1}, {:Launch_Mass_kg 4660.0} {:cluster_4 1}, {:Launch_Mass_kg 6094.0} {:cluster_4 1}, {:Launch_Mass_kg 2128.0} {:cluster_2 1}, {:Launch_Mass_kg 3138.0} {:cluster_4 1}, {:Launch_Mass_kg 2596.0} {:cluster_4 1}, {:Launch_Mass_kg 1825.0} {:cluster_4 2}, {:Launch_Mass_kg 3901.0} {:cluster_4 1}, {:Launch_Mass_kg 407.0} {:cluster_2 1}, {:Launch_Mass_kg 4051.0} {:cluster_4 1}, {:Launch_Mass_kg 3325.0} {:cluster_4 1}, {:Launch_Mass_kg 2.5} {:cluster_6 1, :cluster_2 2}, {:Launch_Mass_kg 3454.0} {:cluster_4 2}, {:Launch_Mass_kg 7000.0} {:cluster_9 1}, {:Launch_Mass_kg 1200.0} {:cluster_78 4, :cluster_73 1, :cluster_2 1}, {:Launch_Mass_kg 1134.0} {:cluster_2 2}, {:Launch_Mass_kg nil} {:cluster_2 49, :cluster_62 3, :cluster_6 20, :cluster_4 10, :cluster_0 2, :cluster_74 1, :cluster_82 1, :cluster_3 2}, {:Launch_Mass_kg 1930.0} {:cluster_4 1}, {:Launch_Mass_kg 6052.0} {:cluster_4 1}, {:Launch_Mass_kg 960.0} {:cluster_2 1}, {:Launch_Mass_kg 3750.0} {:cluster_4 2}, {:Launch_Mass_kg 3038.0} {:cluster_4 1}, {:Launch_Mass_kg 950.0} {:cluster_4 1}, {:Launch_Mass_kg 1858.0} {:cluster_2 1}, {:Launch_Mass_kg 2704.0} {:cluster_4 1}, {:Launch_Mass_kg 3792.0} {:cluster_76 1}, {:Launch_Mass_kg 700.0} {:cluster_6 24, :cluster_23 4, :cluster_59 4, :cluster_2 1}, {:Launch_Mass_kg 3720.0} {:cluster_4 1}, {:Launch_Mass_kg 5456.0} {:cluster_4 1}, {:Launch_Mass_kg 1150.0} {:cluster_6 1}, {:Launch_Mass_kg 4450.0} {:cluster_4 1}, {:Launch_Mass_kg 3800.0} {:cluster_23 2, :cluster_4 3}, {:Launch_Mass_kg 2858.0} {:cluster_4 1}, {:Launch_Mass_kg 2495.0} {:cluster_4 1}, {:Launch_Mass_kg 3315.0} {:cluster_4 1}, {:Launch_Mass_kg 1982.0} {:cluster_4 1}, {:Launch_Mass_kg 4703.0} {:cluster_4 1}, {:Launch_Mass_kg 6199.0} {:cluster_4 1}, {:Launch_Mass_kg 28.7} {:cluster_6 1}, {:Launch_Mass_kg 1480.0} {:cluster_23 13}, {:Launch_Mass_kg 1430.0} {:cluster_4 1}, {:Launch_Mass_kg 3093.0} {:cluster_4 1}, {:Launch_Mass_kg 3531.0} {:cluster_4 1}, {:Launch_Mass_kg 4000.0} {:cluster_81 1, :cluster_4 2, :cluster_62 1, :cluster_85 1}, {:Launch_Mass_kg 3813.0} {:cluster_4 1}, {:Launch_Mass_kg 3653.0} {:cluster_4 1}, {:Launch_Mass_kg 825.0} {:cluster_6 4}, {:Launch_Mass_kg 240.0} {:cluster_6 3, :cluster_2 1}, {:Launch_Mass_kg 3175.0} {:cluster_4 1}, {:Launch_Mass_kg 5613.0} {:cluster_4 1}, {:Launch_Mass_kg 5.5} {:cluster_2 1}, {:Launch_Mass_kg 5054.0} {:cluster_4 1}, {:Launch_Mass_kg 6070.0} {:cluster_4 1}, {:Launch_Mass_kg 3500.0} {:cluster_4 1}, {:Launch_Mass_kg 3600.0} {:cluster_4 2}, {:Launch_Mass_kg 4137.0} {:cluster_4 1}, {:Launch_Mass_kg 6007.0} {:cluster_4 1}, {:Launch_Mass_kg 3642.0} {:cluster_4 3}, {:Launch_Mass_kg 3542.0} {:cluster_4 1}, {:Launch_Mass_kg 3412.0} {:cluster_4 1}, {:Launch_Mass_kg 1230.0} {:cluster_2 1}, {:Launch_Mass_kg 627.0} {:cluster_4 1}, {:Launch_Mass_kg 1452.0} {:cluster_4 1}, {:Launch_Mass_kg 2276.0} {:cluster_4 1}, {:Launch_Mass_kg 2380.0} {:cluster_4 3, :cluster_3 1}, {:Launch_Mass_kg 1935.0} {:cluster_4 1}, {:Launch_Mass_kg 14.0} {:cluster_2 1}, {:Launch_Mass_kg 1474.0} {:cluster_4 1}, {:Launch_Mass_kg 970.0} {:cluster_2 1}, {:Launch_Mass_kg 1766.0} {:cluster_4 1}, {:Launch_Mass_kg 1980.0} {:cluster_4 1}, {:Launch_Mass_kg 3833.0} {:cluster_4 1}, {:Launch_Mass_kg 4575.0} {:cluster_4 1}, {:Launch_Mass_kg 1108.0} {:cluster_2 1}, {:Launch_Mass_kg 4682.0} {:cluster_4 1}, {:Launch_Mass_kg 3690.0} {:cluster_4 1}, {:Launch_Mass_kg 137.0} {:cluster_6 1}, {:Launch_Mass_kg 14500.0} {:cluster_9 3}, {:Launch_Mass_kg 4850.0} {:cluster_4 2}, {:Launch_Mass_kg 3674.0} {:cluster_4 1}, {:Launch_Mass_kg 5102.0} {:cluster_4 1}, {:Launch_Mass_kg 2217.0} {:cluster_23 15}, {:Launch_Mass_kg 4642.0} {:cluster_4 1}, {:Launch_Mass_kg 1630.0} {:cluster_23 4}, {:Launch_Mass_kg 3790.0} {:cluster_4 1}, {:Launch_Mass_kg 2763.0} {:cluster_4 1}, {:Launch_Mass_kg 6384.0} {:cluster_4 1}, {:Launch_Mass_kg 126.0} {:cluster_66 3}, {:Launch_Mass_kg 1510.0} {:cluster_4 2}, {:Launch_Mass_kg 696.0} {:cluster_4 1}, {:Launch_Mass_kg 4700.0} {:cluster_4 1}, {:Launch_Mass_kg 3.5} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 5983.0} {:cluster_4 1}, {:Launch_Mass_kg 4667.0} {:cluster_4 1}, {:Launch_Mass_kg 20.0} {:cluster_6 2}, {:Launch_Mass_kg 5420.0} {:cluster_4 1}, {:Launch_Mass_kg 800.0} {:cluster_2 1}, {:Launch_Mass_kg 1450.0} {:cluster_4 2}, {:Launch_Mass_kg 5404.0} {:cluster_4 1}, {:Launch_Mass_kg 409.0} {:cluster_2 1}, {:Launch_Mass_kg 5953.0} {:cluster_4 1}, {:Launch_Mass_kg 55.0} {:cluster_2 1}, {:Launch_Mass_kg 4545.0} {:cluster_4 1}, {:Launch_Mass_kg 4638.0} {:cluster_4 1}, {:Launch_Mass_kg 2490.0} {:cluster_4 1}, {:Launch_Mass_kg 587.0} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 16.0} {:cluster_2 1}, {:Launch_Mass_kg 1.0} {:cluster_2 17, :cluster_0 2, :cluster_6 6}, {:Launch_Mass_kg 2650.0} {:cluster_2 1, :cluster_4 2}, {:Launch_Mass_kg 2730.0} {:cluster_4 1}, {:Launch_Mass_kg 1463.0} {:cluster_6 1}, {:Launch_Mass_kg 3480.0} {:cluster_4 1}, {:Launch_Mass_kg 2310.0} {:cluster_4 1}, {:Launch_Mass_kg 4463.0} {:cluster_4 1}, {:Launch_Mass_kg 2967.0} {:cluster_2 1}, {:Launch_Mass_kg 850.0} {:cluster_2 2}, {:Launch_Mass_kg 5465.0} {:cluster_4 1}, {:Launch_Mass_kg 3300.0} {:cluster_4 1}, {:Launch_Mass_kg 5200.0} {:cluster_4 2}, {:Launch_Mass_kg 6.5} {:cluster_2 1}, {:Launch_Mass_kg 64.0} {:cluster_2 1}, {:Launch_Mass_kg 2130.0} {:cluster_4 1}, {:Launch_Mass_kg 4715.0} {:cluster_4 1}, {:Launch_Mass_kg 1060.0} {:cluster_4 1}, {:Launch_Mass_kg 4007.0} {:cluster_4 1}, {:Launch_Mass_kg 4400.0} {:cluster_4 3}, {:Launch_Mass_kg 4793.0} {:cluster_4 1}, {:Launch_Mass_kg 3909.0} {:cluster_4 1}, {:Launch_Mass_kg 2780.0} {:cluster_2 1}, {:Launch_Mass_kg 4854.0} {:cluster_2 1}, {:Launch_Mass_kg 1425.0} {:cluster_85 1}, {:Launch_Mass_kg 1560.0} {:cluster_2 1}, {:Launch_Mass_kg 45.0} {:cluster_6 27, :cluster_2 1}, {:Launch_Mass_kg 3725.0} {:cluster_4 1}, {:Launch_Mass_kg 2440.0} {:cluster_4 2}, {:Launch_Mass_kg 666.0} {:cluster_62 1}, {:Launch_Mass_kg 5960.0} {:cluster_4 1}, {:Launch_Mass_kg 10.0} {:cluster_6 2, :cluster_2 3}, {:Launch_Mass_kg 6169.0} {:cluster_4 3}, {:Launch_Mass_kg 2066.0} {:cluster_4 1}, {:Launch_Mass_kg 5360.0} {:cluster_4 1}, {:Launch_Mass_kg 3250.0} {:cluster_4 1}, {:Launch_Mass_kg 2750.0} {:cluster_4 2}, {:Launch_Mass_kg 180.0} {:cluster_6 1, :cluster_2 1}, {:Launch_Mass_kg 4.3} {:cluster_2 1}, {:Launch_Mass_kg 2934.0} {:cluster_2 1}, {:Launch_Mass_kg 300.0} {:cluster_2 7, :cluster_6 1}, {:Launch_Mass_kg 6000.0} {:cluster_4 3}, {:Launch_Mass_kg 42.5} {:cluster_2 1}, {:Launch_Mass_kg 1459.0} {:cluster_4 1}, {:Launch_Mass_kg 8506.0} {:cluster_9 1}, {:Launch_Mass_kg 3028.0} {:cluster_4 1}, {:Launch_Mass_kg 6910.0} {:cluster_4 1}, {:Launch_Mass_kg 169.0} {:cluster_2 1}, {:Launch_Mass_kg 2.0} {:cluster_2 6}, {:Launch_Mass_kg 166.0} {:cluster_2 1}, {:Launch_Mass_kg 980.0} {:cluster_93 1}, {:Launch_Mass_kg 2223.0} {:cluster_2 3}, {:Launch_Mass_kg 1625.0} {:cluster_4 1}, {:Launch_Mass_kg 6600.0} {:cluster_4 1}, {:Launch_Mass_kg 65.0} {:cluster_2 1}, {:Launch_Mass_kg 5500.0} {:cluster_4 3}, {:Launch_Mass_kg 4630.0} {:cluster_4 1}, {:Launch_Mass_kg 5193.0} {:cluster_4 1}, {:Launch_Mass_kg 5000.0} {:cluster_9 10, :cluster_4 8, :cluster_3 1}, {:Launch_Mass_kg 270.0} {:cluster_6 6}, {:Launch_Mass_kg 4060.0} {:cluster_4 1}, {:Launch_Mass_kg 1750.0} {:cluster_2 1}, {:Launch_Mass_kg 3000.0} {:cluster_4 1}, {:Launch_Mass_kg 5585.0} {:cluster_4 1}, {:Launch_Mass_kg 120.0} {:cluster_2 6, :cluster_6 1}, {:Launch_Mass_kg 820.0} {:cluster_6 2}, {:Launch_Mass_kg 6650.0} {:cluster_4 1, :cluster_9 1}, {:Launch_Mass_kg 2086.0} {:cluster_4 1}, {:Launch_Mass_kg 5100.0} {:cluster_4 2}, {:Launch_Mass_kg 225.0} {:cluster_6 12}, {:Launch_Mass_kg 6740.0} {:cluster_4 1}, {:Launch_Mass_kg 6658.0} {:cluster_4 1}, {:Launch_Mass_kg 70.0} {:cluster_2 7}, {:Launch_Mass_kg 1415.0} {:cluster_23 17}, {:Launch_Mass_kg 572.0} {:cluster_2 1}, {:Launch_Mass_kg 2970.0} {:cluster_4 1}, {:Launch_Mass_kg 3420.0} {:cluster_4 2}, {:Launch_Mass_kg 46.0} {:cluster_6 1}, {:Launch_Mass_kg 3.0} {:cluster_6 5, :cluster_2 6}, {:Launch_Mass_kg 4800.0} {:cluster_4 1}, {:Launch_Mass_kg 490.0} {:cluster_0 1}, {:Launch_Mass_kg 1320.0} {:cluster_4 1}, {:Launch_Mass_kg 400.0} {:cluster_2 2}, {:Launch_Mass_kg 3014.0} {:cluster_4 2}, {:Launch_Mass_kg 2500.0} {:cluster_62 2, :cluster_4 4, :cluster_2 2}, {:Launch_Mass_kg 3379.0} {:cluster_4 1}, {:Launch_Mass_kg 795.0} {:cluster_6 2}, {:Launch_Mass_kg 5959.0} {:cluster_4 1}, {:Launch_Mass_kg 2460.0} {:cluster_4 1}}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}, :hyper-grid {:m (0.8 600.9733333333334 1201.1466666666668 1801.3200000000002 2401.493333333334 3001.666666666667 3601.84 4202.013333333333 4802.1866666666665 5402.36 6002.533333333333 6602.706666666666 7202.879999999999 7803.053333333332 8403.226666666666 9003.4 9603.573333333334 10203.746666666668 10803.920000000002 11404.093333333336 12004.26666666667 12604.440000000004 13204.613333333338 13804.786666666672 14404.960000000006 15005.13333333334 15605.306666666675 16205.480000000009 16805.653333333343 17405.826666666675 18006.000000000007), :r (9.259259259259255E-4 0.0014750423681347755 0.0023498099868160594 0.0037433548306295 0.005963335532071731 0.009499866370426088 0.015133721819036995 0.024108711340296886 0.03840628032151479 0.061182961930830844 0.09746725794042879 0.1552698017654974 0.24735189898367627 0.3940428933066771 0.6277283594889407 0.9999999999999992 1.5930457575855572 2.5377947857613434 4.042823217079859 6.440402374637468 10.259855680060175 16.344419564559956 26.037408247520634 41.478782747235975 66.07759888529735 105.26463857566314 167.69138590673728 267.1400509023705 425.5663247712114 677.9466282480562), :s (5.733285747676927E7 6.684520419295612E7 7.793578621837404E7 9.086645551927501E7 1.0594250907408941E8 1.235198970266059E8 1.4401362677556977E8 1.679075614237743E8 1.9576584393096575E8 2.2824621669823647E8 2.661155510632866E8 3.1026795336259294E8 3.6174587505003965E8 4.2176472528824145E8 4.9174156712321657E8 5.733285747676973E8 6.684520419295666E8 7.793578621837469E8 9.086645551927576E8 1.0594250907409027E9 1.2351989702660692E9 1.4401362677557096E9 1.679075614237757E9 1.9576584393096735E9 2.2824621669823833E9 2.661155510632888E9 3.1026795336259546E9 3.6174587505004263E9 4.217647252882449E9 4.917415671232206E9), :nu (1.0 1.2621591649176258 1.5930457575855583 2.010677303069755 2.5377947857613457 3.203100947528845 4.042823217079863 5.1026863755791085 6.440402374637474 8.12881288290593 10.259855680060184 12.949570877320122 16.34441956455997 20.629258948668316 26.03740824752066 32.86335345030997 41.47878274723601 52.35282579405102 66.0775988852974 83.40044702882881 105.26463857566324 132.8607283200148 167.69138590673742 211.653219599927 267.1400509023707 337.17326356298827 425.5663247712118 537.1324370902958 677.9466282480568 855.6765501682873)}, :metadata {}, :data {0 0.8, 893 5000.0, 920 nil, 558 689.0, 453 1.0, 584 689.0, 487 5613.0, 637 1.0, 972 5993.0, 519 462.0, 1097 5900.0, 357 700.0, 716 4850.0, 950 5800.0, 275 6150.0, 530 689.0, 929 nil, 789 820.0, 389 1480.0, 586 689.0, 410 1415.0, 433 3093.0, 765 45.0, 521 689.0, 451 7.1, 291 1390.0, 443 3112.0, 798 10.0, 779 4.5, 970 315.0, 249 2700.0, 638 2.0, 299 2.0, 1101 5990.0, 121 7.0, 734 1625.0, 287 nil, 65 12.0, 1086 666.0, 702 2060.0, 70 4680.0, 949 4400.0, 218 3287.0, 648 nil, 1070 3200.0, 812 nil, 62 12.0, 74 1.0, 774 45.0, 475 6070.0, 497 3200.0, 1009 468.0, 580 689.0, 1138 nil, 891 5000.0, 164 70.0, 1040 6505.0, 282 2600.0, 769 45.0, 799 7000.0, 273 4900.0, 1147 nil, 186 3420.0, 430 1982.0, 641 4900.0, 529 689.0, 898 110.0, 370 700.0, 834 180.0, 233 1766.0, 298 nil, 188 4300.0, 240 2967.0, 110 1452.0, 130 159.0, 982 5090.0, 620 4450.0, 311 4640.0, 931 nil, 882 200.0, 128 694.0, 399 1415.0, 989 4.3, 377 700.0, 468 2064.0, 259 3190.0, 210 1156.0, 229 4660.0, 153 2200.0, 621 2850.0, 213 2380.0, 670 2900.0, 977 117.0, 343 450.0, 958 4600.0, 887 5000.0, 472 5959.0, 7 4500.0, 894 5000.0, 59 4905.0, 934 nil, 473 5458.0, 1010 468.0, 86 4332.0, 756 45.0, 830 175.0, 613 5800.0, 491 3200.0, 154 2200.0, 20 1450.0, 224 6658.0, 355 450.0, 592 236.0, 1146 nil, 610 18000.0, 806 100.0, 571 689.0, 466 4200.0, 72 4630.0, 454 2242.0, 888 5000.0, 463 nil, 851 250.0, 770 45.0, 814 nil, 859 1600.0, 58 4715.0, 964 3.0, 980 10.9, 1001 nil, 205 1156.0, 555 nil, 552 689.0, 60 12.0, 1102 5990.0, 835 70.0, 459 1600.0, 175 1.0, 322 700.0, 510 4723.0, 1052 35.0, 1121 6000.0, 662 65.0, 27 53.0, 352 450.0, 493 4793.0, 899 110.0, 416 240.0, 777 45.0, 694 2217.0, 1 2894.0, 631 nil, 854 280.0, 69 1383.0, 101 5420.0, 24 215.0, 901 3100.0, 547 689.0, 102 4940.0, 788 825.0, 1106 4500.0, 713 1825.0, 1110 1.0, 385 1480.0, 988 137.0, 135 100.0, 1065 3820.0, 397 1415.0, 1011 468.0, 1006 4051.0, 773 45.0, 490 5540.0, 752 45.0, 354 450.0, 884 4500.0, 360 700.0, 998 225.0, 961 5360.0, 55 4710.0, 568 689.0, 797 820.0, 688 1630.0, 763 45.0, 269 4300.0, 676 1816.0, 448 890.0, 527 689.0, 206 1156.0, 1075 3200.0, 966 5.0, 165 70.0, 715 3600.0, 387 1480.0, 652 2000.0, 683 1816.0, 85 3690.0, 721 2223.0, 862 148.0, 615 3.0, 681 1816.0, 225 6100.0, 865 770.0, 297 nil, 39 4312.0, 805 5.0, 274 4880.0, 88 5345.0, 217 2.0, 1128 nil, 46 3901.0, 682 1816.0, 508 3659.0, 1157 5000.0, 149 2200.0, 415 409.0, 239 4854.0, 478 2090.0, 878 12.0, 157 2460.0, 345 450.0, 300 2.0, 743 300.0, 921 nil, 1039 120.0, 4 3500.0, 550 689.0, 1115 4667.0, 204 1156.0, 470 2066.0, 1164 nil, 646 2500.0, 77 4137.0, 106 1.0, 197 1154.0, 405 1415.0, 897 6500.0, 726 3582.0, 776 45.0, 940 nil, 755 45.0, 902 nil, 518 nil, 232 10.0, 260 5600.0, 823 2400.0, 1125 4463.0, 267 4600.0, 119 587.0, 319 4860.0, 534 689.0, 222 6384.0, 603 4400.0, 293 2300.0, 95 6000.0, 450 2300.0, 329 1360.0, 144 2300.0, 1087 1.0, 504 3642.0, 819 nil, 818 5514.0, 505 3653.0, 723 2128.0, 1071 3200.0, 1008 1600.0, 992 225.0, 176 nil, 863 407.0, 471 2000.0, 349 450.0, 512 4680.0, 710 5150.0, 1058 2200.0, 192 45.0, 54 29.0, 92 3643.0, 221 4328.0, 141 848.0, 502 3833.0, 871 5456.0, 464 726.0, 801 150.0, 307 1760.0, 935 nil, 758 45.0, 290 1390.0, 1156 3.5, 1144 1800.0, 627 2744.0, 517 3000.0, 1122 1360.0, 361 700.0, 264 2915.0, 137 5585.0, 356 700.0, 728 3412.0, 976 117.0, 678 1816.0, 327 3.0, 234 120.0, 856 280.0, 817 1.0, 1017 nil, 104 1.0, 353 450.0, 1145 2700.0, 15 4.5, 48 2015.0, 945 5000.0, 759 45.0, 1066 8000.0, 242 240.0, 832 113.0, 969 50.0, 50 1400.0, 956 4700.0, 917 3138.0, 1030 2763.0, 557 689.0, 251 2885.0, 394 1415.0, 116 2060.0, 585 689.0, 583 689.0, 75 3105.0, 437 4200.0, 516 2550.0, 1062 5000.0, 994 225.0, 930 nil, 967 658.0, 687 1630.0, 159 2440.0, 848 225.0, 995 225.0, 1096 880.0, 1159 5500.0, 709 494.0, 99 70.0, 540 689.0, 645 8000.0, 749 2300.0, 479 2750.0, 1081 2400.0, 890 5000.0, 1046 750.0, 630 nil, 916 4007.0, 815 nil, 1080 2400.0, 281 2600.0, 402 1415.0, 669 2900.0, 781 4.5, 740 700.0, 1012 1463.0, 975 3660.0, 429 1410.0, 309 2086.0, 458 850.0, 21 2704.0, 388 1480.0, 495 5984.0, 952 5983.0, 626 14500.0, 875 12.0, 31 130.0, 113 2495.0, 32 4545.0, 811 nil, 827 175.0, 407 1415.0, 398 1415.0, 136 200.0, 691 2217.0, 847 280.0, 825 2400.0, 139 3.0, 506 3592.0, 396 1415.0, 460 1600.0, 483 4000.0, 589 689.0, 581 689.0, 932 nil, 174 1.0, 578 689.0, 855 280.0, 331 980.0, 363 700.0, 1038 1108.0, 284 3400.0, 208 1156.0, 305 1.0, 1019 1200.0, 955 1510.0, 796 810.0, 708 74.0, 182 4.5, 256 3170.0, 1107 2800.0, 1109 4990.0, 657 4536.0, 514 4723.0, 1103 4735.0, 731 3642.0, 619 1150.0, 985 3225.0, 485 5576.0, 214 2380.0, 193 1134.0, 685 1630.0, 804 970.0, 869 2276.0, 1002 2240.0, 1104 1200.0, 836 1206.0, 1131 1040.0, 785 4100.0, 635 1282.0, 442 348.0, 1073 3200.0, 561 689.0, 954 1510.0, 656 2900.0, 607 1300.0, 241 2934.0, 314 4690.0, 782 60.6, 226 3674.0, 235 120.0, 672 6804.0, 420 270.0, 418 240.0, 262 4892.0, 1016 450.0, 263 5404.0, 304 215.0, 401 1415.0, 673 20.0, 40 2081.0, 129 490.0, 600 2982.0, 729 4575.0, 1042 3325.0, 467 83.0, 1033 3878.0, 1149 nil, 445 5320.0, 317 3790.0, 1091 29.0, 1028 3180.0, 294 2300.0, 91 3315.0, 1044 126.0, 810 nil, 1137 nil, 364 700.0, 987 180.0, 880 10.0, 515 4685.0, 412 3200.0, 553 689.0, 974 3680.0, 341 450.0, 117 2910.0, 1000 150.0, 1095 115.0, 665 64.0, 523 689.0, 172 2.0, 601 2500.0, 108 92.0, 156 3800.0, 358 700.0, 308 4060.0, 908 50.0, 649 2700.0, 531 689.0, 1085 647.6, 923 nil, 1111 nil, 223 5521.0, 419 270.0, 365 700.0, 944 170.0, 181 6.5, 417 240.0, 1082 2400.0, 979 720.0, 278 2600.0, 56 4500.0, 942 2596.0, 33 5465.0, 13 6169.0, 1043 126.0, 867 770.0, 22 3775.0, 618 1000.0, 1141 2700.0, 1093 2600.0, 380 935.0, 257 2950.0, 1061 1.0, 338 450.0, 1024 3180.0, 500 2730.0, 909 3.0, 1018 1350.0, 993 225.0, 1089 1.0, 168 1700.0, 833 3050.0, 496 6199.0, 1056 3750.0, 1129 nil, 947 3792.0, 347 450.0, 501 4200.0, 1007 3130.0, 1077 96.5, 596 553.0, 872 5474.0, 792 825.0, 90 3635.0, 237 120.0, 826 350.0, 292 2300.0, 109 400.0, 216 300.0, 191 5500.0, 498 4100.0, 829 175.0, 761 45.0, 1072 3200.0, 375 700.0, 525 689.0, 367 700.0, 143 2300.0, 742 250.0, 178 nil, 640 1450.0, 247 4167.0, 328 1360.0, 391 1480.0, 990 225.0, 167 1700.0, 707 2059.0, 36 2315.0, 41 2648.0, 474 5960.0, 187 4300.0, 551 689.0, 1118 3631.0, 996 225.0, 528 689.0, 971 6100.0, 599 4500.0, 376 700.0, 195 1152.0, 889 5000.0, 316 3765.0, 668 587.0, 428 3400.0, 303 764.0, 671 6804.0, 794 825.0, 905 nil, 368 700.0, 560 689.0, 565 689.0, 310 2033.0, 366 700.0, 118 384.0, 522 689.0, 150 2300.0, 886 5000.0, 313 4642.0, 384 1480.0, 567 689.0, 238 572.0, 846 280.0, 962 nil, 1127 nil, 845 280.0, 196 1154.0, 162 70.0, 393 1480.0, 184 5900.0, 219 4333.0, 999 93.0, 461 1600.0, 1032 4010.0, 89 5350.0, 100 3304.0, 426 480.0, 604 4000.0, 477 2750.0, 844 280.0, 541 689.0, 351 450.0, 243 350.0, 131 4742.0, 790 795.0, 963 4.5, 1053 8506.0, 629 60.0, 873 12.0, 122 5.0, 933 nil, 43 2845.0, 1067 3200.0, 231 6600.0, 61 12.0, 654 4193.0, 883 4500.0, 1003 2240.0, 598 3531.0, 413 3175.0, 29 5.0, 784 3014.0, 800 1.0, 151 2300.0, 369 700.0, 348 450.0, 1124 1640.0, 575 689.0, 693 2217.0, 44 3909.0, 739 700.0, 258 1525.0, 250 5400.0, 674 20.0, 539 689.0, 301 3.0, 838 5900.0, 424 270.0, 93 1420.0, 6 4500.0, 684 1816.0, 1026 3180.0, 951 6020.0, 573 689.0, 408 1415.0, 563 689.0, 850 280.0, 616 800.0, 866 770.0, 111 1780.0, 997 225.0, 689 2217.0, 28 nil, 456 1.0, 374 700.0, 608 18000.0, 737 700.0, 1155 3.5, 548 689.0, 538 689.0, 1034 4970.0, 895 nil, 411 3200.0, 957 4635.0, 134 100.8, 943 3038.0, 64 12.0, 623 2.5, 1135 nil, 1133 nil, 465 4000.0, 816 nil, 334 450.0, 1150 92.0, 323 700.0, 189 5483.0, 280 2542.0, 198 1155.0, 155 3800.0, 295 4303.0, 808 140.0, 248 5900.0, 587 689.0, 285 46.0, 507 3420.0, 227 3700.0, 724 1.0, 476 2950.0, 941 169.0, 911 3200.0, 853 250.0, 494 6094.0, 220 5500.0, 842 280.0, 103 3400.0, 697 2217.0, 611 18000.0, 1105 10.0, 170 720.0, 1154 nil, 51 nil, 25 6.0, 261 2200.0, 768 45.0, 822 nil, 201 6.0, 904 nil, 590 689.0, 489 2450.0, 778 4.5, 166 1700.0, 447 470.0, 34 6265.0, 252 2500.0, 978 3030.0, 775 45.0, 325 5000.0, 1005 5000.0, 594 1360.0, 436 42.5, 828 175.0, 535 689.0, 813 nil, 146 6000.0, 741 960.0, 1060 587.0, 876 12.0, 1064 2.5, 228 4027.0, 907 nil, 306 4488.0, 125 1560.0, 276 100.0, 340 450.0, 148 3800.0, 1143 2700.0, 482 2130.0, 1049 3050.0, 622 nil, 588 689.0, 17 5.0, 312 4100.0, 606 1060.0, 3 4143.0, 1148 nil, 520 1.0, 1088 5100.0, 760 45.0, 720 2223.0, 1126 nil, 286 55.0, 279 2600.0, 879 12.0, 1020 3180.0, 536 689.0, 1023 3180.0, 663 110.0, 12 6169.0, 440 293.0, 332 1900.0, 330 1955.0, 1162 2300.0, 382 1480.0, 152 2200.0, 1112 4703.0, 1140 1200.0, 544 689.0, 803 1000.0, 642 2417.0, 435 1500.0, 342 450.0, 703 2060.0, 783 5120.0, 695 2217.0, 973 5993.0, 2 1459.0, 948 3727.0, 66 12.0, 484 3739.0, 439 3300.0, 236 120.0, 556 689.0, 373 700.0, 1083 2400.0, 142 2200.0, 359 700.0, 727 nil, 371 700.0, 772 45.0, 444 3288.0, 1057 2250.0, 570 689.0, 757 45.0, 107 166.0, 1094 2970.0, 532 689.0, 984 4100.0, 23 325.0, 1079 12.0, 745 300.0, 719 2223.0, 230 4000.0, 625 14500.0, 47 1935.0, 526 689.0, 180 90.0, 786 nil, 1068 14.0, 1166 2650.0, 870 3542.0, 537 689.0, 659 4536.0, 158 2440.0, 991 225.0, 350 450.0, 35 2783.0, 1116 3764.0, 849 225.0, 1120 5953.0, 644 8000.0, 1069 3100.0, 881 35.0, 127 680.0, 927 nil, 675 1430.0, 1055 2500.0, 383 1480.0, 533 689.0, 1100 5990.0, 910 nil, 302 2310.0, 564 689.0, 701 2217.0, 1090 28.7, 566 689.0, 821 2924.0, 787 120.0, 82 3014.0, 76 3480.0, 735 360.0, 492 5600.0, 718 4745.0, 771 45.0, 215 200.0, 97 5471.0, 704 2217.0, 277 2600.0, 926 nil, 751 2501.0, 1114 4682.0, 19 3460.0, 335 450.0, 597 4400.0, 938 300.0, 57 5910.0, 609 18000.0, 202 2650.0, 68 1383.0, 452 11110.0, 1054 2500.0, 200 6.0, 1142 2700.0, 868 770.0, 11 6169.0, 115 1980.0, 946 3727.0, 1063 120.0, 983 4100.0, 339 450.0, 431 1825.0, 462 1600.0, 337 450.0, 698 2217.0, 255 nil, 503 3642.0, 546 689.0, 9 5000.0, 953 1474.0, 857 1200.0, 706 2217.0, 632 3400.0, 457 850.0, 427 1750.0, 145 2200.0, 5 115.0, 733 2238.0, 1163 5200.0, 1165 1500.0, 1152 1.0, 624 14500.0, 831 175.0, 244 nil, 918 nil, 824 2500.0, 289 1390.0, 112 1780.0, 925 nil, 1059 9.3, 730 4500.0, 699 2217.0, 712 100.0, 1076 3206.0, 1113 5193.0, 414 627.0, 839 1858.0, 802 1.0, 1084 1.0, 860 1200.0, 1117 91.0, 179 50.0, 344 450.0, 481 3028.0, 732 3720.0, 661 4536.0, 245 1.0, 378 700.0, 913 nil, 906 nil, 658 4536.0, 266 4050.0, 324 1000.0, 793 825.0, 1134 nil, 1132 nil, 1014 3725.0, 680 1816.0, 446 470.0, 524 689.0, 254 2490.0, 404 1415.0, 1025 3180.0, 617 1000.0, 283 2532.0, 1153 1500.0, 513 4723.0, 572 689.0, 705 2060.0, 1098 5987.0, 959 4638.0, 1074 3200.0, 83 3010.0, 634 950.0, 138 3.15, 1050 5250.0, 346 450.0, 14 3.0, 455 3311.0, 265 5102.0, 449 3.5, 333 450.0, 650 2000.0, 639 1.0, 569 689.0, 326 4291.0, 746 3.0, 647 2500.0, 45 1698.0, 53 1600.0, 559 689.0, 78 3760.0, 1037 6910.0, 924 nil, 562 689.0, 1119 60.0, 542 689.0, 912 3112.0, 664 53.0, 1048 2024.0, 315 3515.0, 1031 1930.0, 914 6007.0, 480 3100.0, 132 4600.0, 753 45.0, 900 150.0, 1013 1.0, 26 nil, 766 45.0, 123 16.0, 203 1156.0, 667 2850.0, 392 1480.0, 1045 126.0, 577 689.0, 807 130.0, 140 3.0, 321 700.0, 795 810.0, 441 700.0, 700 2217.0, 268 5250.0, 840 93.0, 16 4.5, 320 700.0, 133 100.0, 288 nil, 381 1480.0, 605 3.0, 163 70.0, 81 2924.0, 120 400.0, 643 1000.0, 79 3813.0, 211 2380.0, 38 4200.0, 173 nil, 126 680.0, 981 117.0, 1161 2300.0, 421 270.0, 593 1425.0, 636 47.0, 1160 5200.0, 98 3250.0, 422 270.0, 423 270.0, 614 4850.0, 762 45.0, 582 689.0, 666 2850.0, 1123 1320.0, 554 689.0, 409 1415.0, 574 689.0, 595 1.0, 124 nil, 747 4800.0, 171 2.0, 87 4500.0, 169 1700.0, 653 2000.0, 679 1816.0, 843 280.0, 160 817.0, 30 6650.0, 400 1415.0, 767 45.0, 896 6500.0, 928 nil, 696 2217.0, 1027 3180.0, 738 700.0, 809 nil, 509 4723.0, 736 5.5, 207 1156.0, 874 12.0, 434 500.0, 1130 nil, 690 2217.0, 194 1134.0, 1047 1400.0, 511 4723.0, 73 3600.0, 486 2491.0, 336 450.0, 96 1500.0, 837 6650.0, 1136 nil, 937 300.0, 10 5000.0, 660 4536.0, 272 3800.0, 499 3124.0, 488 2550.0, 903 nil, 386 1480.0, 270 3150.0, 576 689.0, 717 4745.0, 543 689.0, 271 4100.0, 18 5.0, 395 1415.0, 403 1415.0, 469 2070.0, 105 1.0, 185 5900.0, 52 nil, 1051 5180.0, 545 689.0, 633 5000.0, 114 10.0, 1099 5990.0, 968 nil, 253 5000.0, 612 18000.0, 1151 45.0, 1015 3750.0, 628 2780.0, 748 2858.0, 209 1156.0, 147 2200.0, 655 4085.0, 1022 3454.0, 750 2400.0, 852 250.0, 425 480.0, 1158 5100.0, 864 770.0, 67 12.0, 1108 2.5, 296 nil, 602 2900.0, 318 5493.0, 161 70.0, 651 696.0, 725 5396.0, 372 700.0, 1092 6740.0, 406 1415.0, 438 4200.0, 780 434.0, 711 300.0, 1041 2800.0, 71 5054.0, 939 204.0, 579 689.0, 877 12.0, 722 1420.0, 42 2500.0, 919 nil, 80 2775.0, 885 1031.0, 1078 12.0, 986 3.0, 1035 4640.0, 714 3200.0, 677 1816.0, 199 5.8, 841 225.0, 754 45.0, 791 795.0, 1029 300.0, 861 1200.0, 591 689.0, 1021 3454.0, 744 300.0, 960 nil, 37 2340.0, 183 5900.0, 1139 nil, 965 5.0, 892 5000.0, 432 2650.0, 379 700.0, 63 12.0, 212 2380.0, 94 6052.0, 362 700.0, 8 5000.0, 686 1630.0, 692 2217.0, 764 45.0, 246 3535.0, 190 3800.0, 1004 0.85, 1036 1230.0, 549 689.0, 922 nil, 177 nil, 915 6140.0, 936 204.0, 820 4000.0, 49 4100.0, 858 485.0, 390 1480.0, 84 3379.0}}, :Apogee_km #inferenceql.inference.gpm.column.Column{:var-name :Apogee_km, :stattype :gaussian, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 47086.0, :sum-x-sq 2.217091396E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 3, :sum-x 262090.0, :sum-x-sq 2.2897096692E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 35797.0, :sum-x-sq 1.281425209E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 47100.0, :sum-x-sq 2.21841E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 152812.0, :sum-x-sq 2.3351507344E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 104552.0, :sum-x-sq 1.0931120704E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 7, :sum-x 9779.0, :sum-x-sq 1.3722669E7}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 47048.0, :sum-x-sq 2.213514304E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 15, :sum-x 563083.0, :sum-x-sq 2.1275834301E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 2, :sum-x 650000.0, :sum-x-sq 2.113E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 5732.0, :sum-x-sq 3.2855824E7}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 4, :sum-x 143322.0, :sum-x-sq 5.13530714E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 470310.0, :sum-x-sq 2.211914961E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 114027.0, :sum-x-sq 1.3002156729E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 4, :sum-x 483367.0, :sum-x-sq 5.8410956499E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 278, :sum-x 264746.0, :sum-x-sq 2.8804334E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 358802.0, :sum-x-sq 1.28738875204E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 7, :sum-x 256147.0, :sum-x-sq 9.382885343E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 138825.0, :sum-x-sq 1.9272380625E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 4, :sum-x 32275.0, :sum-x-sq 2.60418907E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 434, :sum-x 1.5545188E7, :sum-x-sq 5.56820954096E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 29, :sum-x 25750.0, :sum-x-sq 2.535619E7}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 294, :sum-x 210182.0, :sum-x-sq 1.58245566E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 72, :sum-x 1445537.0, :sum-x-sq 2.9101259791E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 2, :sum-x 23436.0, :sum-x-sq 2.74650896E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}}, :assignments {{:Apogee_km 1008.0} {:cluster_6 2}, {:Apogee_km 1419.0} {:cluster_6 1}, {:Apogee_km 789.0} {:cluster_6 1}, {:Apogee_km 1203.0} {:cluster_9 4}, {:Apogee_km 414.0} {:cluster_6 1}, {:Apogee_km 1502.0} {:cluster_6 1}, {:Apogee_km 714.0} {:cluster_6 1}, {:Apogee_km 544.0} {:cluster_6 1}, {:Apogee_km 35796.0} {:cluster_4 31}, {:Apogee_km 35623.0} {:cluster_4 1}, {:Apogee_km 1475.0} {:cluster_0 1}, {:Apogee_km 35801.0} {:cluster_4 11}, {:Apogee_km 23227.0} {:cluster_23 1}, {:Apogee_km 586.0} {:cluster_6 1}, {:Apogee_km 831.0} {:cluster_2 1}, {:Apogee_km 676.0} {:cluster_2 1, :cluster_9 1}, {:Apogee_km 21603.0} {:cluster_23 1}, {:Apogee_km 1313.0} {:cluster_0 1}, {:Apogee_km 35819.0} {:cluster_4 1}, {:Apogee_km 1414.0} {:cluster_6 14}, {:Apogee_km 35750.0} {:cluster_4 1}, {:Apogee_km 1448.0} {:cluster_6 1}, {:Apogee_km 120768.0} {:cluster_78 1}, {:Apogee_km 37900.0} {:cluster_4 1}, {:Apogee_km 753.0} {:cluster_6 1}, {:Apogee_km 606.0} {:cluster_2 2}, {:Apogee_km 787.0} {:cluster_2 2}, {:Apogee_km 20498.0} {:cluster_23 1}, {:Apogee_km 819.0} {:cluster_2 1}, {:Apogee_km 674.0} {:cluster_2 2}, {:Apogee_km 35788.0} {:cluster_4 10}, {:Apogee_km 35813.0} {:cluster_4 2}, {:Apogee_km 20403.0} {:cluster_23 1}, {:Apogee_km 152812.0} {:cluster_81 1}, {:Apogee_km 502.0} {:cluster_6 8, :cluster_2 1}, {:Apogee_km 36007.0} {:cluster_4 1}, {:Apogee_km 35864.0} {:cluster_85 1}, {:Apogee_km 39850.0} {:cluster_62 1}, {:Apogee_km 35940.0} {:cluster_4 1}, {:Apogee_km 472.0} {:cluster_9 1}, {:Apogee_km 47048.0} {:cluster_76 1}, {:Apogee_km 20234.0} {:cluster_23 1}, {:Apogee_km 632.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 616.0} {:cluster_2 2}, {:Apogee_km 750.0} {:cluster_6 1}, {:Apogee_km 1107.0} {:cluster_2 2}, {:Apogee_km 20464.0} {:cluster_23 1}, {:Apogee_km 591.0} {:cluster_2 2}, {:Apogee_km 20268.0} {:cluster_23 1}, {:Apogee_km 11836.0} {:cluster_74 1}, {:Apogee_km 658.0} {:cluster_2 1}, {:Apogee_km 838.0} {:cluster_6 1}, {:Apogee_km 20260.0} {:cluster_23 1}, {:Apogee_km 481.0} {:cluster_2 1}, {:Apogee_km 626.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 505.0} {:cluster_2 4}, {:Apogee_km 1391.0} {:cluster_6 1}, {:Apogee_km 1164.0} {:cluster_2 3}, {:Apogee_km 703.0} {:cluster_2 10}, {:Apogee_km 1431.0} {:cluster_6 1}, {:Apogee_km 836.0} {:cluster_2 1}, {:Apogee_km 36103.0} {:cluster_4 1}, {:Apogee_km 19378.0} {:cluster_23 1}, {:Apogee_km 813.0} {:cluster_6 1}, {:Apogee_km 795.0} {:cluster_6 6, :cluster_2 1}, {:Apogee_km 39362.0} {:cluster_62 1}, {:Apogee_km 1478.0} {:cluster_6 1}, {:Apogee_km 450.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 20244.0} {:cluster_23 1}, {:Apogee_km 1506.0} {:cluster_6 3}, {:Apogee_km 20449.0} {:cluster_23 1}, {:Apogee_km 35804.0} {:cluster_4 4}, {:Apogee_km 35866.0} {:cluster_4 1}, {:Apogee_km 1014.0} {:cluster_2 2}, {:Apogee_km 1415.0} {:cluster_6 18}, {:Apogee_km 928.0} {:cluster_6 1}, {:Apogee_km 35798.0} {:cluster_4 24}, {:Apogee_km 1507.0} {:cluster_6 3}, {:Apogee_km 35799.0} {:cluster_4 21}, {:Apogee_km 746.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 87260.0} {:cluster_66 1}, {:Apogee_km 35500.0} {:cluster_4 1}, {:Apogee_km 35937.0} {:cluster_4 1}, {:Apogee_km 634.0} {:cluster_2 1}, {:Apogee_km 783.0} {:cluster_2 2}, {:Apogee_km 642.0} {:cluster_6 1}, {:Apogee_km 35806.0} {:cluster_4 5}, {:Apogee_km 47100.0} {:cluster_75 1}, {:Apogee_km 594.0} {:cluster_2 1}, {:Apogee_km 590.0} {:cluster_6 1}, {:Apogee_km 968.0} {:cluster_6 1}, {:Apogee_km 20426.0} {:cluster_23 1}, {:Apogee_km 716.0} {:cluster_9 1}, {:Apogee_km 829.0} {:cluster_2 1}, {:Apogee_km 680.0} {:cluster_2 2}, {:Apogee_km 624.0} {:cluster_2 1}, {:Apogee_km 470310.0} {:cluster_73 1}, {:Apogee_km 1011.0} {:cluster_6 2}, {:Apogee_km 667.0} {:cluster_2 1}, {:Apogee_km 35790.0} {:cluster_4 15}, {:Apogee_km 552.0} {:cluster_2 1}, {:Apogee_km 37872.0} {:cluster_85 1}, {:Apogee_km 945.0} {:cluster_6 1}, {:Apogee_km 5732.0} {:cluster_82 1}, {:Apogee_km 1207.0} {:cluster_2 2}, {:Apogee_km 35802.0} {:cluster_4 11}, {:Apogee_km 715.0} {:cluster_2 1}, {:Apogee_km 661.0} {:cluster_2 1}, {:Apogee_km 454.0} {:cluster_2 1}, {:Apogee_km 20366.0} {:cluster_23 1}, {:Apogee_km 556.0} {:cluster_9 1}, {:Apogee_km 35807.0} {:cluster_4 7}, {:Apogee_km 521.0} {:cluster_2 1}, {:Apogee_km 35814.0} {:cluster_4 2}, {:Apogee_km 828.0} {:cluster_2 3}, {:Apogee_km 19145.0} {:cluster_23 1}, {:Apogee_km 582.0} {:cluster_6 2}, {:Apogee_km 890.0} {:cluster_2 1}, {:Apogee_km 1351.0} {:cluster_6 1}, {:Apogee_km 1514.0} {:cluster_6 1}, {:Apogee_km 1511.0} {:cluster_6 3}, {:Apogee_km 19141.0} {:cluster_23 3}, {:Apogee_km 725.0} {:cluster_6 1}, {:Apogee_km 1459.0} {:cluster_2 1}, {:Apogee_km 682.0} {:cluster_2 1}, {:Apogee_km 640.0} {:cluster_2 4}, {:Apogee_km 686.0} {:cluster_2 1}, {:Apogee_km 20342.0} {:cluster_23 1}, {:Apogee_km 754.0} {:cluster_6 1}, {:Apogee_km 503.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 20221.0} {:cluster_23 1}, {:Apogee_km 20276.0} {:cluster_23 1}, {:Apogee_km 37794.0} {:cluster_4 1}, {:Apogee_km 35822.0} {:cluster_4 1}, {:Apogee_km 400.0} {:cluster_9 1}, {:Apogee_km 711.0} {:cluster_6 1}, {:Apogee_km 20327.0} {:cluster_23 1}, {:Apogee_km 19380.0} {:cluster_23 1}, {:Apogee_km 35823.0} {:cluster_4 1}, {:Apogee_km 967.0} {:cluster_2 1}, {:Apogee_km 496.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 486.0} {:cluster_6 1}, {:Apogee_km 35803.0} {:cluster_4 13, :cluster_3 1}, {:Apogee_km 655.0} {:cluster_2 1}, {:Apogee_km 512.0} {:cluster_2 1}, {:Apogee_km 21545.0} {:cluster_23 1}, {:Apogee_km 602.0} {:cluster_2 1}, {:Apogee_km 736.0} {:cluster_6 1}, {:Apogee_km 669.0} {:cluster_2 2}, {:Apogee_km 1516.0} {:cluster_6 2}, {:Apogee_km 534.0} {:cluster_6 1}, {:Apogee_km 30534.0} {:cluster_62 1}, {:Apogee_km 699.0} {:cluster_2 3}, {:Apogee_km 633.0} {:cluster_6 1}, {:Apogee_km 38950.0} {:cluster_85 1}, {:Apogee_km 646.0} {:cluster_2 1}, {:Apogee_km 21595.0} {:cluster_23 1}, {:Apogee_km 793.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 21574.0} {:cluster_23 1}, {:Apogee_km 35697.0} {:cluster_62 1}, {:Apogee_km 1100.0} {:cluster_9 2}, {:Apogee_km 20315.0} {:cluster_23 1}, {:Apogee_km 724.0} {:cluster_2 2}, {:Apogee_km 705.0} {:cluster_2 2}, {:Apogee_km 20191.0} {:cluster_23 1}, {:Apogee_km 804.0} {:cluster_2 2}, {:Apogee_km 631.0} {:cluster_2 2}, {:Apogee_km 35872.0} {:cluster_85 1}, {:Apogee_km 1496.0} {:cluster_6 1}, {:Apogee_km 20311.0} {:cluster_23 1}, {:Apogee_km 559.0} {:cluster_9 1}, {:Apogee_km 20284.0} {:cluster_23 1}, {:Apogee_km 613.0} {:cluster_6 1}, {:Apogee_km 491.0} {:cluster_2 1}, {:Apogee_km 35892.0} {:cluster_4 1}, {:Apogee_km 8068.0} {:cluster_59 1}, {:Apogee_km 35868.0} {:cluster_4 1}, {:Apogee_km 330000.0} {:cluster_92 1}, {:Apogee_km 662.0} {:cluster_2 2}, {:Apogee_km 37768.0} {:cluster_4 1}, {:Apogee_km 636.0} {:cluster_2 1}, {:Apogee_km 796.0} {:cluster_6 5}, {:Apogee_km 358.0} {:cluster_9 1}, {:Apogee_km 748.0} {:cluster_2 1}, {:Apogee_km 1486.0} {:cluster_0 1}, {:Apogee_km 571.0} {:cluster_9 1}, {:Apogee_km 19173.0} {:cluster_23 1}, {:Apogee_km 1081.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 20427.0} {:cluster_23 1}, {:Apogee_km 721.0} {:cluster_2 1}, {:Apogee_km 747.0} {:cluster_2 2}, {:Apogee_km 827.0} {:cluster_2 1}, {:Apogee_km 35700.0} {:cluster_4 3}, {:Apogee_km 1112.0} {:cluster_6 1}, {:Apogee_km 35874.0} {:cluster_4 1}, {:Apogee_km 704.0} {:cluster_2 6}, {:Apogee_km 778.0} {:cluster_6 3}, {:Apogee_km 35794.0} {:cluster_4 25}, {:Apogee_km 643.0} {:cluster_2 1}, {:Apogee_km 558.0} {:cluster_6 1}, {:Apogee_km 611.0} {:cluster_2 1}, {:Apogee_km 777.0} {:cluster_6 2}, {:Apogee_km 19199.0} {:cluster_23 1}, {:Apogee_km 20247.0} {:cluster_23 2}, {:Apogee_km 2165.0} {:cluster_6 1}, {:Apogee_km 138825.0} {:cluster_79 1}, {:Apogee_km 627.0} {:cluster_2 3}, {:Apogee_km 569.0} {:cluster_6 1}, {:Apogee_km 864.0} {:cluster_2 2}, {:Apogee_km 1050.0} {:cluster_9 1}, {:Apogee_km 668.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 19135.0} {:cluster_23 2}, {:Apogee_km 638.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 579.0} {:cluster_2 1}, {:Apogee_km 997.0} {:cluster_9 1}, {:Apogee_km 35909.0} {:cluster_3 1}, {:Apogee_km 410.0} {:cluster_6 1}, {:Apogee_km 664.0} {:cluster_2 1}, {:Apogee_km 19212.0} {:cluster_23 1}, {:Apogee_km 659.0} {:cluster_6 1}, {:Apogee_km 8069.0} {:cluster_59 3}, {:Apogee_km 653.0} {:cluster_2 4}, {:Apogee_km 87526.0} {:cluster_66 1}, {:Apogee_km 786.0} {:cluster_2 1}, {:Apogee_km 37791.0} {:cluster_4 1}, {:Apogee_km 35900.0} {:cluster_4 1}, {:Apogee_km 866.0} {:cluster_6 1}, {:Apogee_km 816.0} {:cluster_2 2}, {:Apogee_km 855.0} {:cluster_2 3}, {:Apogee_km 784.0} {:cluster_2 1}, {:Apogee_km 717.0} {:cluster_6 1}, {:Apogee_km 791.0} {:cluster_6 3}, {:Apogee_km 673.0} {:cluster_2 3}, {:Apogee_km 729.0} {:cluster_2 1}, {:Apogee_km 35775.0} {:cluster_4 1}, {:Apogee_km 35856.0} {:cluster_4 1}, {:Apogee_km 551.0} {:cluster_6 1}, {:Apogee_km 651.0} {:cluster_2 1}, {:Apogee_km 841.0} {:cluster_2 1}, {:Apogee_km 927.0} {:cluster_6 1}, {:Apogee_km 822.0} {:cluster_2 1}, {:Apogee_km 607.0} {:cluster_2 1}, {:Apogee_km 35776.0} {:cluster_4 1}, {:Apogee_km 35817.0} {:cluster_4 3, :cluster_85 1}, {:Apogee_km 868.0} {:cluster_6 2}, {:Apogee_km 540.0} {:cluster_6 1}, {:Apogee_km 797.0} {:cluster_2 1}, {:Apogee_km 1512.0} {:cluster_6 1}, {:Apogee_km 120923.0} {:cluster_78 1}, {:Apogee_km 835.0} {:cluster_2 1}, {:Apogee_km 697.0} {:cluster_2 1}, {:Apogee_km 39396.0} {:cluster_62 1}, {:Apogee_km 114027.0} {:cluster_94 1}, {:Apogee_km 803.0} {:cluster_2 2}, {:Apogee_km 665.0} {:cluster_2 3}, {:Apogee_km 654.0} {:cluster_2 4}, {:Apogee_km 37564.0} {:cluster_62 1}, {:Apogee_km 35984.0} {:cluster_4 1}, {:Apogee_km 802.0} {:cluster_2 1}, {:Apogee_km 507.0} {:cluster_6 2, :cluster_2 2}, {:Apogee_km 773.0} {:cluster_2 1}, {:Apogee_km 1297.0} {:cluster_0 1}, {:Apogee_km 19175.0} {:cluster_23 1}, {:Apogee_km 35878.0} {:cluster_4 1}, {:Apogee_km 1041.0} {:cluster_9 1}, {:Apogee_km 35820.0} {:cluster_4 1}, {:Apogee_km 35789.0} {:cluster_4 13}, {:Apogee_km 20344.0} {:cluster_23 1}, {:Apogee_km 19129.0} {:cluster_23 1}, {:Apogee_km 701.0} {:cluster_2 1}, {:Apogee_km 670.0} {:cluster_2 1}, {:Apogee_km 35778.0} {:cluster_4 1}, {:Apogee_km 1155.0} {:cluster_6 1}, {:Apogee_km 700.0} {:cluster_2 1}, {:Apogee_km 35785.0} {:cluster_4 1}, {:Apogee_km 1016.0} {:cluster_6 2}, {:Apogee_km 1425.0} {:cluster_6 1}, {:Apogee_km 35725.0} {:cluster_4 1}, {:Apogee_km 501.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 35805.0} {:cluster_4 6, :cluster_3 2}, {:Apogee_km 500.0} {:cluster_2 2}, {:Apogee_km 1352.0} {:cluster_6 1}, {:Apogee_km 764.0} {:cluster_2 3}, {:Apogee_km 525.0} {:cluster_2 1}, {:Apogee_km 20152.0} {:cluster_23 1}, {:Apogee_km 104552.0} {:cluster_93 1}, {:Apogee_km 476.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 87304.0} {:cluster_66 1}, {:Apogee_km 779.0} {:cluster_6 53}, {:Apogee_km 415.0} {:cluster_6 1}, {:Apogee_km 733.0} {:cluster_9 1}, {:Apogee_km 603.0} {:cluster_2 3}, {:Apogee_km 1201.0} {:cluster_9 2}, {:Apogee_km 628.0} {:cluster_2 2}, {:Apogee_km 510.0} {:cluster_2 1}, {:Apogee_km 39807.0} {:cluster_62 1}, {:Apogee_km 35800.0} {:cluster_4 11}, {:Apogee_km 35815.0} {:cluster_4 3}, {:Apogee_km 39128.0} {:cluster_62 1}, {:Apogee_km 35767.0} {:cluster_4 1}, {:Apogee_km 19126.0} {:cluster_23 1}, {:Apogee_km 850.0} {:cluster_6 1}, {:Apogee_km 20292.0} {:cluster_23 1}, {:Apogee_km 573.0} {:cluster_2 1}, {:Apogee_km 35826.0} {:cluster_4 1}, {:Apogee_km 35808.0} {:cluster_4 5}, {:Apogee_km 19419.0} {:cluster_23 1}, {:Apogee_km 794.0} {:cluster_6 4}, {:Apogee_km 35795.0} {:cluster_4 33}, {:Apogee_km 760.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 598.0} {:cluster_2 2}, {:Apogee_km 645.0} {:cluster_2 1}, {:Apogee_km 35834.0} {:cluster_4 1}, {:Apogee_km 859.0} {:cluster_2 1}, {:Apogee_km 572.0} {:cluster_2 1}, {:Apogee_km 39697.0} {:cluster_62 1}, {:Apogee_km 1013.0} {:cluster_6 1}, {:Apogee_km 867.0} {:cluster_6 1}, {:Apogee_km 35784.0} {:cluster_4 1}, {:Apogee_km 35768.0} {:cluster_4 1}, {:Apogee_km 35786.0} {:cluster_4 7}, {:Apogee_km 35816.0} {:cluster_4 2}, {:Apogee_km 785.0} {:cluster_2 1}, {:Apogee_km 35170.0} {:cluster_4 1}, {:Apogee_km 35848.0} {:cluster_4 1}, {:Apogee_km 1417.0} {:cluster_6 2}, {:Apogee_km 639.0} {:cluster_2 2}, {:Apogee_km 35809.0} {:cluster_4 8}, {:Apogee_km 830.0} {:cluster_2 1}, {:Apogee_km 11600.0} {:cluster_74 1}, {:Apogee_km 405.0} {:cluster_6 1}, {:Apogee_km 1418.0} {:cluster_6 1}, {:Apogee_km 35829.0} {:cluster_4 2}, {:Apogee_km 38740.0} {:cluster_62 1}, {:Apogee_km 1739.0} {:cluster_6 1}, {:Apogee_km 35995.0} {:cluster_4 1}, {:Apogee_km 671.0} {:cluster_2 1}, {:Apogee_km 832.0} {:cluster_2 1}, {:Apogee_km 692.0} {:cluster_2 3, :cluster_6 1}, {:Apogee_km 685.0} {:cluster_2 1}, {:Apogee_km 820.0} {:cluster_2 2}, {:Apogee_km 601.0} {:cluster_2 2}, {:Apogee_km 800.0} {:cluster_9 1}, {:Apogee_km 858.0} {:cluster_9 1}, {:Apogee_km 1205.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 1510.0} {:cluster_2 1, :cluster_6 3}, {:Apogee_km 19158.0} {:cluster_23 1}, {:Apogee_km 635.0} {:cluster_2 1}, {:Apogee_km 623.0} {:cluster_2 4}, {:Apogee_km 718.0} {:cluster_2 1}, {:Apogee_km 599.0} {:cluster_2 1}, {:Apogee_km 1089.0} {:cluster_2 1}, {:Apogee_km 506.0} {:cluster_6 4}, {:Apogee_km 547.0} {:cluster_2 1}, {:Apogee_km 675.0} {:cluster_9 1}, {:Apogee_km 35852.0} {:cluster_4 2}, {:Apogee_km 886.0} {:cluster_2 11, :cluster_6 1}, {:Apogee_km 23306.0} {:cluster_23 1}, {:Apogee_km 39966.0} {:cluster_62 1}, {:Apogee_km 576.0} {:cluster_2 1}, {:Apogee_km 1200.0} {:cluster_9 2}, {:Apogee_km 422.0} {:cluster_6 1}, {:Apogee_km 20433.0} {:cluster_23 1}, {:Apogee_km 581.0} {:cluster_6 1}, {:Apogee_km 790.0} {:cluster_6 1}, {:Apogee_km 35949.0} {:cluster_4 1}, {:Apogee_km 826.0} {:cluster_2 2}, {:Apogee_km 19204.0} {:cluster_23 1}, {:Apogee_km 1503.0} {:cluster_6 1}, {:Apogee_km 815.0} {:cluster_2 2}, {:Apogee_km 35791.0} {:cluster_4 24}, {:Apogee_km 35792.0} {:cluster_4 15}, {:Apogee_km 20257.0} {:cluster_23 1}, {:Apogee_km 23233.0} {:cluster_23 1}, {:Apogee_km 758.0} {:cluster_6 1}, {:Apogee_km 35904.0} {:cluster_4 1}, {:Apogee_km 1202.0} {:cluster_2 1, :cluster_9 1}, {:Apogee_km 629.0} {:cluster_2 1}, {:Apogee_km 755.0} {:cluster_2 1}, {:Apogee_km 849.0} {:cluster_2 2}, {:Apogee_km 541.0} {:cluster_2 2}, {:Apogee_km 893.0} {:cluster_2 1}, {:Apogee_km 35793.0} {:cluster_4 19}, {:Apogee_km 459.0} {:cluster_2 1}, {:Apogee_km 37580.0} {:cluster_62 1}, {:Apogee_km 732.0} {:cluster_2 1}, {:Apogee_km 514.0} {:cluster_2 3}, {:Apogee_km 1422.0} {:cluster_6 1}, {:Apogee_km 35787.0} {:cluster_4 14}, {:Apogee_km 35642.0} {:cluster_4 1}, {:Apogee_km 1495.0} {:cluster_6 2}, {:Apogee_km 911.0} {:cluster_9 1}, {:Apogee_km 20582.0} {:cluster_23 1}, {:Apogee_km 1508.0} {:cluster_6 2}, {:Apogee_km 1505.0} {:cluster_6 1}, {:Apogee_km 19146.0} {:cluster_23 2}, {:Apogee_km 20213.0} {:cluster_23 1}, {:Apogee_km 36013.0} {:cluster_4 1}, {:Apogee_km 20209.0} {:cluster_23 1}, {:Apogee_km 677.0} {:cluster_2 1}, {:Apogee_km 451.0} {:cluster_2 1}, {:Apogee_km 767.0} {:cluster_2 1}, {:Apogee_km 696.0} {:cluster_2 3}, {:Apogee_km 823.0} {:cluster_2 3, :cluster_6 1}, {:Apogee_km 589.0} {:cluster_2 1}, {:Apogee_km 320000.0} {:cluster_92 1}, {:Apogee_km 580.0} {:cluster_6 1}, {:Apogee_km 19171.0} {:cluster_23 1}, {:Apogee_km 23307.0} {:cluster_23 1}, {:Apogee_km 35835.0} {:cluster_4 1}, {:Apogee_km 1482.0} {:cluster_0 1}, {:Apogee_km 490.0} {:cluster_2 1}, {:Apogee_km 19142.0} {:cluster_23 1}, {:Apogee_km 19130.0} {:cluster_23 4}, {:Apogee_km 694.0} {:cluster_2 4}, {:Apogee_km 851.0} {:cluster_2 1}, {:Apogee_km 1111.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 857.0} {:cluster_2 1}, {:Apogee_km 361.0} {:cluster_9 1}, {:Apogee_km 499.0} {:cluster_6 1}, {:Apogee_km 637.0} {:cluster_2 3}, {:Apogee_km 1509.0} {:cluster_6 4}, {:Apogee_km 690.0} {:cluster_2 3}, {:Apogee_km 852.0} {:cluster_2 1}, {:Apogee_km 734.0} {:cluster_2 1}, {:Apogee_km 19365.0} {:cluster_23 1}, {:Apogee_km 782.0} {:cluster_6 1}, {:Apogee_km 35855.0} {:cluster_4 1}, {:Apogee_km 698.0} {:cluster_2 1}, {:Apogee_km 1090.0} {:cluster_2 1}, {:Apogee_km 879.0} {:cluster_2 1}, {:Apogee_km 1400.0} {:cluster_6 1}, {:Apogee_km 720.0} {:cluster_2 1}, {:Apogee_km 776.0} {:cluster_6 3}, {:Apogee_km 35717.0} {:cluster_62 1}, {:Apogee_km 35883.0} {:cluster_4 1}, {:Apogee_km 672.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 19162.0} {:cluster_23 1}, {:Apogee_km 35811.0} {:cluster_4 3}, {:Apogee_km 35812.0} {:cluster_4 4}, {:Apogee_km 317.0} {:cluster_2 1}, {:Apogee_km 650.0} {:cluster_2 2}, {:Apogee_km 35893.0} {:cluster_85 1}, {:Apogee_km 494.0} {:cluster_2 1}, {:Apogee_km 1413.0} {:cluster_6 1}, {:Apogee_km 35797.0} {:cluster_4 25, :cluster_32 1}, {:Apogee_km 35780.0} {:cluster_4 1}, {:Apogee_km 120715.0} {:cluster_78 1}, {:Apogee_km 35976.0} {:cluster_4 1}, {:Apogee_km 39388.0} {:cluster_62 1}, {:Apogee_km 839.0} {:cluster_2 1}, {:Apogee_km 20224.0} {:cluster_23 1}, {:Apogee_km 751.0} {:cluster_6 1}, {:Apogee_km 619.0} {:cluster_2 1}, {:Apogee_km 792.0} {:cluster_6 3}, {:Apogee_km 731.0} {:cluster_2 1}, {:Apogee_km 1416.0} {:cluster_6 6}, {:Apogee_km 780.0} {:cluster_6 10, :cluster_2 2}, {:Apogee_km 35844.0} {:cluster_4 1}, {:Apogee_km 702.0} {:cluster_6 1}, {:Apogee_km 824.0} {:cluster_2 1}, {:Apogee_km 691.0} {:cluster_2 1}, {:Apogee_km 1022.0} {:cluster_6 1}, {:Apogee_km 120961.0} {:cluster_78 1}, {:Apogee_km 513.0} {:cluster_2 1}, {:Apogee_km 475.0} {:cluster_2 1}, {:Apogee_km 595.0} {:cluster_2 1}, {:Apogee_km 509.0} {:cluster_2 1}, {:Apogee_km 492.0} {:cluster_2 2}, {:Apogee_km 35879.0} {:cluster_85 1}, {:Apogee_km 1412.0} {:cluster_6 1}, {:Apogee_km 1465.0} {:cluster_0 1}, {:Apogee_km 20266.0} {:cluster_23 1}, {:Apogee_km 688.0} {:cluster_6 1}, {:Apogee_km 427.0} {:cluster_6 1}, {:Apogee_km 504.0} {:cluster_6 5, :cluster_2 2}, {:Apogee_km 19123.0} {:cluster_23 1}, {:Apogee_km 35810.0} {:cluster_4 4}, {:Apogee_km 30657.0} {:cluster_62 1}, {:Apogee_km 683.0} {:cluster_2 3}, {:Apogee_km 710.0} {:cluster_2 1}, {:Apogee_km 21591.0} {:cluster_23 1}, {:Apogee_km 1344.0} {:cluster_6 1}, {:Apogee_km 19125.0} {:cluster_23 1}, {:Apogee_km 1000.0} {:cluster_9 1}, {:Apogee_km 821.0} {:cluster_2 3}, {:Apogee_km 1261.0} {:cluster_0 1}, {:Apogee_km 20227.0} {:cluster_23 1}, {:Apogee_km 774.0} {:cluster_6 3}, {:Apogee_km nil} {:cluster_2 1}, {:Apogee_km 649.0} {:cluster_6 1}, {:Apogee_km 583.0} {:cluster_2 1}, {:Apogee_km 35832.0} {:cluster_4 1}, {:Apogee_km 728.0} {:cluster_2 1}, {:Apogee_km 19133.0} {:cluster_23 2}, {:Apogee_km 358802.0} {:cluster_77 1}, {:Apogee_km 47086.0} {:cluster_80 1}}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}, :hyper-grid {:m (317.0 15983.633333333333 31650.266666666666 47316.9 62983.53333333333 78650.16666666667 94316.8 109983.43333333333 125650.06666666667 141316.7 156983.33333333334 172649.96666666667 188316.6 203983.23333333334 219649.86666666667 235316.5 250983.13333333333 266649.76666666666 282316.4 297983.0333333334 313649.66666666674 329316.3000000001 344982.93333333347 360649.5666666668 376316.2000000002 391982.83333333355 407649.4666666669 423316.10000000027 438982.7333333336 454649.366666667 470316.00000000035), :r (8.56898029134533E-4 0.0013721466648667219 0.0021972118103789806 0.003518384632839378 0.00563397227619358 0.009021652525608603 0.014446328505508529 0.023132835885295813 0.03704249809160715 0.05931597283059068 0.09498238007972104 0.15209482530742383 0.24354870730634268 0.38999336572232046 0.6244944881440667 0.9999999999999986 1.601295157899462 2.564146182712267 4.105954866523549 6.574845646317901 10.528268497385229 16.858865365928438 26.996019478140187 43.2285952729055 69.22174029329925 110.84443755303434 177.49466113376343 284.2213414265016 455.12225779794744 728.785067664125), :s (9.456749226030914E9 1.1025760110975676E10 1.2855092497340687E10 1.4987937471148323E10 1.747465214159467E10 2.037394858749322E10 2.375428006705585E10 2.7695457219839455E10 3.229053241987078E10 3.7647996770091606E10 4.389434160982162E10 5.117704501319817E10 5.966805379071627E10 6.9567843204969E10 8.11101502516939E10 9.45674922603099E10 1.1025760110975766E11 1.2855092497340793E11 1.4987937471148447E11 1.7474652141594812E11 2.037394858749339E11 2.375428006705605E11 2.769545721983968E11 3.2290532419871045E11 3.764799677009191E11 4.389434160982198E11 5.117704501319859E11 5.966805379071676E11 6.956784320496956E11 8.111015025169456E11), :nu (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata {}, :data {0 787.0, 893 1201.0, 920 703.0, 558 779.0, 453 640.0, 584 780.0, 487 35800.0, 637 1297.0, 972 35787.0, 519 320000.0, 1097 35790.0, 357 1415.0, 716 35794.0, 950 35798.0, 275 35856.0, 530 780.0, 929 607.0, 789 1016.0, 389 19126.0, 586 778.0, 410 19173.0, 433 35796.0, 765 792.0, 521 779.0, 451 669.0, 291 35816.0, 443 35808.0, 798 796.0, 779 504.0, 970 633.0, 249 35805.0, 638 816.0, 299 886.0, 1101 35786.0, 121 629.0, 734 35799.0, 287 500.0, 65 694.0, 1086 30657.0, 702 20342.0, 70 35794.0, 949 35795.0, 218 35795.0, 648 39362.0, 1070 35834.0, 812 502.0, 62 572.0, 74 415.0, 774 774.0, 475 35790.0, 497 35797.0, 1009 476.0, 580 779.0, 1138 513.0, 891 1203.0, 164 849.0, 1040 35798.0, 282 35791.0, 769 796.0, 799 733.0, 273 35812.0, 1147 1164.0, 186 35795.0, 430 35810.0, 641 35794.0, 529 779.0, 898 776.0, 370 1415.0, 834 688.0, 233 35750.0, 298 1081.0, 188 35799.0, 240 703.0, 110 35795.0, 130 544.0, 982 35791.0, 620 35792.0, 311 35798.0, 931 603.0, 882 677.0, 128 645.0, 399 19130.0, 989 783.0, 377 1418.0, 468 35808.0, 259 35806.0, 210 35784.0, 229 35789.0, 153 21595.0, 621 35794.0, 213 35810.0, 670 35797.0, 977 35697.0, 343 1416.0, 958 35803.0, 887 1100.0, 472 35799.0, 7 35984.0, 894 1201.0, 59 35799.0, 934 650.0, 473 35800.0, 1010 476.0, 86 35807.0, 756 794.0, 830 638.0, 613 35792.0, 491 35797.0, 154 21603.0, 20 35787.0, 224 35796.0, 355 1416.0, 592 664.0, 1146 1205.0, 610 1050.0, 806 676.0, 571 779.0, 466 37580.0, 72 35805.0, 454 35803.0, 888 1200.0, 463 nil, 851 1516.0, 770 795.0, 814 502.0, 859 655.0, 58 35794.0, 964 789.0, 980 868.0, 1001 879.0, 205 35817.0, 555 779.0, 552 779.0, 60 764.0, 1102 35786.0, 835 638.0, 459 492.0, 175 886.0, 322 23233.0, 510 35797.0, 1052 475.0, 1121 35791.0, 662 1510.0, 27 582.0, 352 1416.0, 493 35788.0, 899 760.0, 416 1415.0, 777 777.0, 694 20268.0, 1 35794.0, 631 717.0, 854 1509.0, 69 35790.0, 101 35883.0, 24 583.0, 901 35791.0, 547 779.0, 102 35623.0, 788 1016.0, 1106 494.0, 713 35808.0, 1110 1261.0, 385 19130.0, 988 507.0, 135 804.0, 1065 400.0, 397 19146.0, 1011 496.0, 1006 35793.0, 773 774.0, 490 35804.0, 752 776.0, 354 1415.0, 884 35790.0, 360 1414.0, 998 1495.0, 961 35791.0, 55 35793.0, 568 779.0, 797 1022.0, 688 20247.0, 763 794.0, 269 35802.0, 676 20582.0, 448 503.0, 527 779.0, 206 35868.0, 1075 35835.0, 966 886.0, 165 828.0, 715 35793.0, 387 19133.0, 652 35793.0, 683 20449.0, 85 35794.0, 721 864.0, 862 787.0, 615 667.0, 681 20284.0, 225 35794.0, 865 503.0, 297 1107.0, 39 35793.0, 805 627.0, 274 35787.0, 88 35852.0, 217 639.0, 1128 496.0, 46 35795.0, 682 20227.0, 508 35792.0, 1157 35797.0, 149 35817.0, 415 690.0, 239 703.0, 478 35791.0, 878 758.0, 157 35791.0, 345 1414.0, 300 886.0, 743 764.0, 921 704.0, 1039 505.0, 4 35791.0, 550 779.0, 1115 35788.0, 204 35814.0, 470 35642.0, 1164 35812.0, 646 39388.0, 77 35789.0, 106 581.0, 197 855.0, 405 19158.0, 897 1203.0, 726 35798.0, 776 778.0, 940 672.0, 755 795.0, 902 35815.0, 518 422.0, 232 694.0, 260 35787.0, 823 35949.0, 1125 35789.0, 267 35799.0, 119 703.0, 319 35788.0, 534 779.0, 222 35789.0, 603 35797.0, 293 828.0, 95 35795.0, 450 35796.0, 329 586.0, 144 35799.0, 1087 699.0, 504 35796.0, 819 450.0, 818 35798.0, 505 35795.0, 723 827.0, 1071 35787.0, 1008 558.0, 992 1419.0, 176 1465.0, 863 785.0, 471 35803.0, 349 1415.0, 512 35789.0, 710 35795.0, 1058 35802.0, 192 732.0, 54 1459.0, 92 35804.0, 221 35791.0, 141 703.0, 502 35797.0, 871 35796.0, 464 680.0, 801 729.0, 307 35796.0, 935 651.0, 758 794.0, 290 35803.0, 1156 653.0, 1144 512.0, 627 703.0, 517 35892.0, 1122 35800.0, 361 1415.0, 264 35815.0, 137 35788.0, 356 1414.0, 728 35796.0, 976 35717.0, 678 20244.0, 327 819.0, 234 692.0, 856 1511.0, 817 640.0, 1017 886.0, 104 718.0, 353 1415.0, 1145 665.0, 15 791.0, 48 35798.0, 945 35796.0, 759 796.0, 1066 38740.0, 242 547.0, 832 697.0, 969 665.0, 50 35794.0, 956 35802.0, 917 35795.0, 1030 35796.0, 557 779.0, 251 35810.0, 394 19142.0, 116 35725.0, 585 753.0, 583 779.0, 75 35803.0, 437 683.0, 516 35804.0, 1062 35799.0, 994 1506.0, 930 603.0, 967 760.0, 687 20191.0, 159 35794.0, 848 1496.0, 995 1503.0, 1096 654.0, 1159 35807.0, 709 405.0, 99 1014.0, 540 779.0, 645 37900.0, 749 35797.0, 479 35807.0, 1081 39807.0, 890 1203.0, 1046 826.0, 630 668.0, 916 35790.0, 815 502.0, 1080 35904.0, 281 35795.0, 402 19123.0, 669 35796.0, 781 504.0, 740 8069.0, 1012 590.0, 975 330000.0, 429 35811.0, 309 35795.0, 458 492.0, 21 35802.0, 388 19378.0, 495 35811.0, 952 35795.0, 626 716.0, 875 714.0, 31 674.0, 113 35800.0, 32 35797.0, 811 502.0, 827 646.0, 407 19199.0, 398 19133.0, 136 611.0, 691 20292.0, 847 1506.0, 825 35797.0, 139 731.0, 506 35798.0, 396 19419.0, 460 591.0, 483 152812.0, 589 754.0, 581 779.0, 932 602.0, 174 703.0, 578 779.0, 855 1507.0, 331 104552.0, 363 1414.0, 1038 598.0, 284 35940.0, 208 35855.0, 305 683.0, 1019 120961.0, 955 35801.0, 796 945.0, 708 786.0, 182 780.0, 256 35790.0, 1107 767.0, 1109 358.0, 657 35819.0, 514 35796.0, 1103 35796.0, 731 35798.0, 619 501.0, 985 35848.0, 485 35789.0, 214 35832.0, 193 855.0, 685 20224.0, 804 691.0, 869 35794.0, 1002 1352.0, 1104 470310.0, 836 823.0, 1131 1207.0, 785 35792.0, 635 35801.0, 442 1155.0, 1073 35775.0, 561 780.0, 954 35797.0, 656 35791.0, 607 35788.0, 241 704.0, 314 35796.0, 782 839.0, 226 35790.0, 235 692.0, 672 35900.0, 420 1510.0, 418 1417.0, 262 35806.0, 1016 11836.0, 263 35794.0, 304 823.0, 401 19135.0, 673 659.0, 40 35800.0, 129 1486.0, 600 35794.0, 729 35797.0, 1042 35796.0, 467 637.0, 1033 35799.0, 1149 1164.0, 445 35786.0, 317 35794.0, 1091 490.0, 1028 35809.0, 294 828.0, 91 35801.0, 1044 87260.0, 810 502.0, 1137 1112.0, 364 1415.0, 987 650.0, 880 702.0, 515 35803.0, 412 35170.0, 553 779.0, 974 35826.0, 341 1417.0, 117 35787.0, 1000 626.0, 1095 685.0, 665 690.0, 523 779.0, 172 715.0, 601 35794.0, 108 521.0, 156 21574.0, 358 1415.0, 308 35790.0, 908 673.0, 649 820.0, 531 779.0, 1085 30534.0, 923 673.0, 1111 501.0, 223 35803.0, 419 1510.0, 365 1414.0, 944 703.0, 181 616.0, 417 1415.0, 1082 39697.0, 979 699.0, 278 35790.0, 56 35795.0, 942 35802.0, 33 35805.0, 13 35700.0, 1043 87304.0, 867 486.0, 22 35802.0, 618 552.0, 1141 627.0, 1093 35791.0, 380 19146.0, 257 35794.0, 1061 631.0, 338 1416.0, 1024 35796.0, 500 35798.0, 909 627.0, 1018 510.0, 993 1506.0, 1089 504.0, 168 623.0, 833 35787.0, 496 35792.0, 1056 35813.0, 1129 507.0, 947 47048.0, 347 1414.0, 501 35795.0, 1007 35792.0, 1077 662.0, 596 1344.0, 872 35795.0, 792 1011.0, 90 35797.0, 237 692.0, 826 1202.0, 292 835.0, 109 507.0, 216 603.0, 191 35798.0, 498 35793.0, 829 637.0, 761 792.0, 1072 35807.0, 375 1400.0, 525 711.0, 367 1414.0, 143 35864.0, 742 573.0, 178 628.0, 640 35791.0, 247 35796.0, 328 569.0, 391 19141.0, 990 1431.0, 167 623.0, 707 20209.0, 36 35797.0, 41 35798.0, 474 35798.0, 187 35792.0, 551 780.0, 1118 35792.0, 996 1502.0, 528 779.0, 971 35787.0, 599 35791.0, 376 927.0, 195 851.0, 889 1202.0, 316 35795.0, 668 525.0, 428 35795.0, 303 893.0, 671 35800.0, 794 968.0, 905 39966.0, 368 1415.0, 560 780.0, 565 779.0, 310 35795.0, 366 1414.0, 118 813.0, 522 779.0, 150 37872.0, 886 1100.0, 313 35798.0, 384 19130.0, 567 779.0, 238 690.0, 846 1507.0, 962 11600.0, 1127 668.0, 845 1509.0, 196 852.0, 162 831.0, 393 19141.0, 184 35786.0, 219 35792.0, 999 1482.0, 461 514.0, 1032 35801.0, 89 35780.0, 100 35791.0, 426 451.0, 604 35794.0, 477 35809.0, 844 1510.0, 541 779.0, 351 1414.0, 243 514.0, 131 138825.0, 790 1013.0, 963 791.0, 1053 361.0, 629 637.0, 873 747.0, 122 783.0, 933 591.0, 43 35795.0, 1067 858.0, 231 35799.0, 61 850.0, 654 821.0, 883 35795.0, 1003 1351.0, 598 35789.0, 413 35788.0, 29 886.0, 784 35789.0, 800 507.0, 151 35879.0, 369 1414.0, 348 1416.0, 1124 35866.0, 575 779.0, 693 20247.0, 44 35791.0, 739 8068.0, 258 35790.0, 250 35795.0, 674 672.0, 539 779.0, 301 506.0, 838 472.0, 424 1509.0, 93 35802.0, 6 36013.0, 684 20257.0, 1026 35803.0, 951 35791.0, 573 779.0, 408 19212.0, 563 779.0, 850 1512.0, 616 698.0, 866 496.0, 111 35797.0, 997 1495.0, 689 20327.0, 28 5732.0, 456 639.0, 374 1414.0, 608 800.0, 737 8069.0, 1155 653.0, 548 780.0, 538 779.0, 1034 35791.0, 895 1205.0, 411 35801.0, 957 35803.0, 134 804.0, 943 35802.0, 64 694.0, 623 499.0, 1135 1111.0, 1133 1090.0, 465 37564.0, 816 502.0, 334 1415.0, 1150 824.0, 323 23227.0, 189 35797.0, 280 35788.0, 198 859.0, 155 21591.0, 295 556.0, 808 820.0, 248 35822.0, 587 782.0, 285 540.0, 507 35797.0, 227 35798.0, 724 502.0, 476 35793.0, 941 701.0, 911 35798.0, 853 1514.0, 494 35790.0, 220 35793.0, 842 1511.0, 103 35805.0, 697 20498.0, 611 1000.0, 1105 849.0, 170 724.0, 1154 606.0, 51 35789.0, 25 632.0, 261 35793.0, 768 796.0, 822 2165.0, 201 815.0, 904 39850.0, 590 778.0, 489 35791.0, 778 504.0, 166 623.0, 447 673.0, 34 35791.0, 252 35817.0, 978 826.0, 775 774.0, 325 35790.0, 1005 35794.0, 594 823.0, 436 636.0, 828 638.0, 535 780.0, 813 502.0, 146 35809.0, 741 724.0, 1060 613.0, 876 746.0, 1064 764.0, 228 35789.0, 907 35805.0, 306 35795.0, 125 619.0, 276 821.0, 340 1478.0, 148 35799.0, 1143 450.0, 482 37791.0, 1049 35794.0, 622 317.0, 588 779.0, 17 886.0, 312 35799.0, 606 35789.0, 3 35793.0, 1148 1164.0, 520 890.0, 1088 35796.0, 760 795.0, 720 857.0, 1126 628.0, 286 654.0, 279 35798.0, 879 736.0, 1020 35802.0, 536 779.0, 1023 35878.0, 663 821.0, 12 35700.0, 440 551.0, 332 704.0, 330 686.0, 1162 35807.0, 382 19125.0, 152 21545.0, 1112 35790.0, 1140 661.0, 544 779.0, 803 699.0, 642 35788.0, 435 967.0, 342 1416.0, 703 20366.0, 783 35800.0, 695 20234.0, 973 35787.0, 2 35789.0, 948 47086.0, 66 653.0, 484 35796.0, 439 35803.0, 236 692.0, 556 779.0, 373 1415.0, 1083 39128.0, 142 35803.0, 359 1415.0, 727 35793.0, 371 1739.0, 772 838.0, 444 35809.0, 1057 37794.0, 570 779.0, 757 795.0, 107 703.0, 1094 35776.0, 532 779.0, 984 35796.0, 23 534.0, 1079 640.0, 745 589.0, 719 816.0, 230 35797.0, 625 676.0, 47 35798.0, 526 779.0, 180 662.0, 786 35787.0, 1068 784.0, 1166 504.0, 870 35792.0, 537 779.0, 659 35768.0, 158 35799.0, 991 1425.0, 350 1414.0, 35 35800.0, 1116 114027.0, 849 1505.0, 1120 35823.0, 644 35976.0, 1069 35793.0, 881 734.0, 127 643.0, 927 594.0, 675 35795.0, 1055 505.0, 383 19130.0, 533 779.0, 1100 35786.0, 910 35793.0, 302 35829.0, 564 779.0, 701 20221.0, 1090 867.0, 566 779.0, 821 793.0, 787 694.0, 82 35799.0, 76 35792.0, 735 632.0, 492 35801.0, 718 35809.0, 771 795.0, 215 680.0, 97 35806.0, 704 20213.0, 277 35790.0, 926 598.0, 751 35795.0, 1114 35789.0, 19 35808.0, 335 1422.0, 597 35801.0, 938 802.0, 57 35790.0, 609 1041.0, 202 35799.0, 68 35795.0, 452 559.0, 1054 504.0, 200 815.0, 1142 658.0, 868 502.0, 11 36103.0, 115 35794.0, 946 47100.0, 1063 704.0, 983 35778.0, 339 1413.0, 431 35796.0, 462 514.0, 337 1415.0, 698 20266.0, 255 35767.0, 503 35797.0, 546 779.0, 9 35500.0, 953 35797.0, 857 120715.0, 706 20152.0, 632 35812.0, 457 491.0, 427 670.0, 145 35797.0, 5 710.0, 733 35792.0, 1163 35792.0, 1165 773.0, 1152 683.0, 624 675.0, 831 642.0, 244 1313.0, 918 703.0, 824 35788.0, 289 35791.0, 112 35803.0, 925 606.0, 1059 459.0, 730 35798.0, 699 20344.0, 712 696.0, 1076 35794.0, 1113 35787.0, 414 35800.0, 839 541.0, 802 414.0, 1084 700.0, 860 120768.0, 1117 823.0, 179 1475.0, 344 1415.0, 481 35811.0, 732 35794.0, 661 35806.0, 245 671.0, 378 928.0, 913 35792.0, 906 35803.0, 658 35809.0, 266 35805.0, 324 654.0, 793 1008.0, 1134 1081.0, 1132 1089.0, 1014 35792.0, 680 20315.0, 446 665.0, 524 780.0, 254 35802.0, 404 19175.0, 1025 35787.0, 617 696.0, 283 35995.0, 1153 454.0, 513 35805.0, 572 779.0, 705 20311.0, 1098 35787.0, 959 35793.0, 1074 35829.0, 83 35797.0, 634 35793.0, 138 791.0, 1050 35807.0, 346 1415.0, 14 790.0, 455 35799.0, 265 35797.0, 449 504.0, 333 1412.0, 650 35791.0, 639 886.0, 569 779.0, 326 35801.0, 746 797.0, 647 39396.0, 45 35796.0, 53 36007.0, 559 779.0, 78 35795.0, 1037 35791.0, 924 616.0, 562 779.0, 1119 1205.0, 542 779.0, 912 35852.0, 664 832.0, 1048 35798.0, 315 35801.0, 1031 35793.0, 914 35791.0, 480 35796.0, 132 35797.0, 753 777.0, 900 649.0, 1013 720.0, 26 626.0, 766 796.0, 123 631.0, 203 35802.0, 667 35796.0, 392 19145.0, 1045 87526.0, 577 780.0, 807 728.0, 140 747.0, 321 23306.0, 795 1011.0, 441 696.0, 700 20433.0, 268 35800.0, 840 427.0, 16 792.0, 320 23307.0, 133 748.0, 288 500.0, 381 19141.0, 605 866.0, 163 746.0, 81 35795.0, 120 505.0, 643 868.0, 79 35793.0, 211 35800.0, 38 35795.0, 173 830.0, 126 635.0, 981 624.0, 1161 35799.0, 421 1507.0, 593 35872.0, 636 1014.0, 1160 35796.0, 98 35794.0, 422 1511.0, 423 1508.0, 614 35796.0, 762 793.0, 582 779.0, 666 35809.0, 1123 35796.0, 554 779.0, 409 19162.0, 574 751.0, 595 721.0, 124 506.0, 747 35799.0, 171 653.0, 87 35798.0, 169 623.0, 653 35795.0, 679 20260.0, 843 1509.0, 160 841.0, 30 35787.0, 400 19129.0, 767 795.0, 896 1203.0, 928 595.0, 696 20427.0, 1027 35808.0, 738 8069.0, 809 506.0, 509 35798.0, 736 654.0, 207 35799.0, 874 780.0, 434 803.0, 1130 481.0, 690 20276.0, 194 855.0, 1047 35795.0, 511 358802.0, 73 35794.0, 486 35795.0, 336 1415.0, 96 35804.0, 837 571.0, 1136 1111.0, 937 803.0, 10 35805.0, 660 35820.0, 272 35815.0, 499 35794.0, 488 35798.0, 903 35812.0, 386 19171.0, 270 35806.0, 576 780.0, 717 35700.0, 543 779.0, 271 35799.0, 18 886.0, 395 19135.0, 403 19380.0, 469 35809.0, 105 579.0, 185 35786.0, 52 35796.0, 1051 35807.0, 545 779.0, 633 911.0, 114 886.0, 1099 35786.0, 968 886.0, 253 35799.0, 612 997.0, 1151 1508.0, 1015 35801.0, 628 705.0, 748 35796.0, 209 35817.0, 147 35893.0, 655 822.0, 1022 35785.0, 750 35799.0, 852 1516.0, 425 450.0, 1158 35803.0, 864 505.0, 67 669.0, 1108 640.0, 296 1107.0, 602 37768.0, 318 35798.0, 161 836.0, 651 35797.0, 725 35795.0, 372 1414.0, 1092 35796.0, 406 19204.0, 438 682.0, 780 410.0, 711 705.0, 1041 35796.0, 71 35874.0, 939 755.0, 579 779.0, 877 725.0, 722 864.0, 42 35793.0, 919 704.0, 80 35801.0, 885 541.0, 1078 795.0, 986 506.0, 1035 35795.0, 714 35813.0, 677 20403.0, 199 582.0, 841 1448.0, 754 776.0, 791 1008.0, 1029 580.0, 861 120923.0, 591 750.0, 1021 35844.0, 744 576.0, 960 599.0, 37 35797.0, 183 35788.0, 1139 1207.0, 965 886.0, 892 1200.0, 432 35814.0, 379 1391.0, 63 674.0, 212 35909.0, 94 35793.0, 362 1414.0, 8 35937.0, 686 20464.0, 692 20426.0, 764 794.0, 246 35810.0, 190 35796.0, 1004 634.0, 1036 509.0, 549 779.0, 922 601.0, 177 829.0, 915 35816.0, 936 601.0, 820 38950.0, 49 35798.0, 858 704.0, 390 19365.0, 84 35791.0}}, :Perigee_km #inferenceql.inference.gpm.column.Column{:var-name :Perigee_km, :stattype :gaussian, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 6179.0, :sum-x-sq 3.8180041E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 3, :sum-x 1402.0, :sum-x-sq 655286.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 35775.0, :sum-x-sq 1.279850625E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 23783.0, :sum-x-sq 5.65631089E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 2284.0, :sum-x-sq 5216656.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 3905.0, :sum-x-sq 1.5249025E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 7, :sum-x 2192.0, :sum-x-sq 687278.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 12849.0, :sum-x-sq 1.65096801E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 15, :sum-x 11457.0, :sum-x-sq 9731539.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 2, :sum-x 8000.0, :sum-x-sq 5.0E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 264.0, :sum-x-sq 69696.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 4, :sum-x 143209.0, :sum-x-sq 5.127216391E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 186.0, :sum-x-sq 34596.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 7079.0, :sum-x-sq 5.0112241E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 4, :sum-x 68369.0, :sum-x-sq 1.168738099E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 278, :sum-x 256206.0, :sum-x-sq 2.72507656E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 35773.0, :sum-x-sq 1.279707529E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 7, :sum-x 246826.0, :sum-x-sq 8.711446634E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 9999.0, :sum-x-sq 9.9980001E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 4, :sum-x 32252.0, :sum-x-sq 2.60047878E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 434, :sum-x 1.552006E7, :sum-x-sq 5.55030082606E11}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 29, :sum-x 20682.0, :sum-x-sq 1.7382302E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 294, :sum-x 195770.0, :sum-x-sq 1.38615192E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 72, :sum-x 1435516.0, :sum-x-sq 2.8699396536E10}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 2, :sum-x 1858.0, :sum-x-sq 1872964.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}}, :assignments {{:Perigee_km 578.0} {:cluster_2 1}, {:Perigee_km 650.0} {:cluster_2 2, :cluster_6 1}, {:Perigee_km 648.0} {:cluster_6 1}, {:Perigee_km 35782.0} {:cluster_4 16}, {:Perigee_km 410.0} {:cluster_6 2}, {:Perigee_km 509.0} {:cluster_2 2}, {:Perigee_km 1111.0} {:cluster_62 1}, {:Perigee_km 590.0} {:cluster_2 2}, {:Perigee_km 801.0} {:cluster_2 1}, {:Perigee_km 915.0} {:cluster_6 1}, {:Perigee_km 748.0} {:cluster_6 1}, {:Perigee_km 19134.0} {:cluster_23 2}, {:Perigee_km 18864.0} {:cluster_23 1}, {:Perigee_km 35598.0} {:cluster_4 1}, {:Perigee_km 35753.0} {:cluster_4 1}, {:Perigee_km 656.0} {:cluster_2 1}, {:Perigee_km 19781.0} {:cluster_23 1}, {:Perigee_km 1370.0} {:cluster_6 1}, {:Perigee_km 37782.0} {:cluster_4 1}, {:Perigee_km 1015.0} {:cluster_9 1}, {:Perigee_km 599.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 35772.0} {:cluster_4 12}, {:Perigee_km 1192.0} {:cluster_2 1}, {:Perigee_km 538.0} {:cluster_6 2, :cluster_2 2}, {:Perigee_km 457.0} {:cluster_2 1}, {:Perigee_km 827.0} {:cluster_2 3}, {:Perigee_km 8063.0} {:cluster_59 2}, {:Perigee_km 35694.0} {:cluster_4 1}, {:Perigee_km 35757.0} {:cluster_4 4}, {:Perigee_km 415.0} {:cluster_6 1}, {:Perigee_km 571.0} {:cluster_6 1}, {:Perigee_km 558.0} {:cluster_6 1}, {:Perigee_km 817.0} {:cluster_2 3}, {:Perigee_km 570.0} {:cluster_2 1}, {:Perigee_km 21462.0} {:cluster_23 1}, {:Perigee_km 35560.0} {:cluster_4 1}, {:Perigee_km 510.0} {:cluster_6 1}, {:Perigee_km 8062.0} {:cluster_59 1}, {:Perigee_km 19119.0} {:cluster_23 1}, {:Perigee_km 587.0} {:cluster_2 1}, {:Perigee_km 464.0} {:cluster_2 1}, {:Perigee_km 470.0} {:cluster_6 1}, {:Perigee_km 35718.0} {:cluster_4 1}, {:Perigee_km 581.0} {:cluster_2 1}, {:Perigee_km 603.0} {:cluster_6 2}, {:Perigee_km 35714.0} {:cluster_4 2}, {:Perigee_km 495.0} {:cluster_6 2}, {:Perigee_km 498.0} {:cluster_6 8}, {:Perigee_km 625.0} {:cluster_2 2}, {:Perigee_km 35897.0} {:cluster_3 1}, {:Perigee_km 688.0} {:cluster_2 1}, {:Perigee_km 670.0} {:cluster_2 2}, {:Perigee_km 684.0} {:cluster_2 1}, {:Perigee_km 608.0} {:cluster_62 1}, {:Perigee_km 595.0} {:cluster_62 1, :cluster_2 1}, {:Perigee_km 1201.0} {:cluster_2 2}, {:Perigee_km 626.0} {:cluster_2 1}, {:Perigee_km 326.0} {:cluster_0 2}, {:Perigee_km 837.0} {:cluster_2 1}, {:Perigee_km 768.0} {:cluster_6 2}, {:Perigee_km 186.0} {:cluster_73 1}, {:Perigee_km 35717.0} {:cluster_85 1}, {:Perigee_km 291.0} {:cluster_2 1}, {:Perigee_km 1493.0} {:cluster_6 2}, {:Perigee_km 679.0} {:cluster_2 2}, {:Perigee_km 696.0} {:cluster_2 5}, {:Perigee_km 788.0} {:cluster_6 9}, {:Perigee_km 588.0} {:cluster_2 1}, {:Perigee_km 604.0} {:cluster_2 1}, {:Perigee_km 954.0} {:cluster_6 1}, {:Perigee_km 35791.0} {:cluster_4 1}, {:Perigee_km 19128.0} {:cluster_23 1}, {:Perigee_km 586.0} {:cluster_2 2}, {:Perigee_km 618.0} {:cluster_2 1}, {:Perigee_km 20174.0} {:cluster_23 1}, {:Perigee_km 1200.0} {:cluster_74 1}, {:Perigee_km 800.0} {:cluster_9 1, :cluster_2 1}, {:Perigee_km 791.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 19092.0} {:cluster_23 1}, {:Perigee_km 264.0} {:cluster_9 1, :cluster_82 1}, {:Perigee_km 1066.0} {:cluster_2 1}, {:Perigee_km 1885.0} {:cluster_6 1}, {:Perigee_km 7000.0} {:cluster_92 1}, {:Perigee_km 824.0} {:cluster_2 2}, {:Perigee_km 1076.0} {:cluster_2 1}, {:Perigee_km 448.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km nil} {:cluster_2 1}, {:Perigee_km 19112.0} {:cluster_23 1}, {:Perigee_km 19139.0} {:cluster_23 1}, {:Perigee_km 729.0} {:cluster_2 1}, {:Perigee_km 1408.0} {:cluster_6 1}, {:Perigee_km 35760.0} {:cluster_4 4}, {:Perigee_km 802.0} {:cluster_2 1}, {:Perigee_km 620.0} {:cluster_2 3}, {:Perigee_km 845.0} {:cluster_2 2}, {:Perigee_km 20120.0} {:cluster_23 1}, {:Perigee_km 33066.0} {:cluster_4 1}, {:Perigee_km 522.0} {:cluster_6 1}, {:Perigee_km 434.0} {:cluster_2 1}, {:Perigee_km 764.0} {:cluster_2 1}, {:Perigee_km 745.0} {:cluster_6 1}, {:Perigee_km 609.0} {:cluster_2 2}, {:Perigee_km 35778.0} {:cluster_4 34}, {:Perigee_km 35693.0} {:cluster_85 1, :cluster_4 1}, {:Perigee_km 529.0} {:cluster_2 1}, {:Perigee_km 32618.0} {:cluster_85 1}, {:Perigee_km 847.0} {:cluster_6 1}, {:Perigee_km 583.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 702.0} {:cluster_2 6}, {:Perigee_km 1497.0} {:cluster_6 1}, {:Perigee_km 619.0} {:cluster_2 1}, {:Perigee_km 676.0} {:cluster_2 1}, {:Perigee_km 468.0} {:cluster_2 1}, {:Perigee_km 1475.0} {:cluster_6 1}, {:Perigee_km 35777.0} {:cluster_4 21}, {:Perigee_km 21452.0} {:cluster_23 1}, {:Perigee_km 542.0} {:cluster_62 1}, {:Perigee_km 35769.0} {:cluster_4 9}, {:Perigee_km 548.0} {:cluster_6 1}, {:Perigee_km 35766.0} {:cluster_4 7}, {:Perigee_km 1193.0} {:cluster_2 1}, {:Perigee_km 20142.0} {:cluster_23 1}, {:Perigee_km 1079.0} {:cluster_2 1}, {:Perigee_km 35784.0} {:cluster_4 16}, {:Perigee_km 35780.0} {:cluster_4 21}, {:Perigee_km 35595.0} {:cluster_4 1}, {:Perigee_km 984.0} {:cluster_2 2}, {:Perigee_km 19959.0} {:cluster_23 1}, {:Perigee_km 968.0} {:cluster_6 1}, {:Perigee_km 537.0} {:cluster_9 1}, {:Perigee_km 35696.0} {:cluster_4 1}, {:Perigee_km 403.0} {:cluster_6 1}, {:Perigee_km 19912.0} {:cluster_23 1}, {:Perigee_km 686.0} {:cluster_2 2}, {:Perigee_km 19087.0} {:cluster_23 1}, {:Perigee_km 775.0} {:cluster_6 1}, {:Perigee_km 20072.0} {:cluster_23 1}, {:Perigee_km 805.0} {:cluster_2 1}, {:Perigee_km 1440.0} {:cluster_2 1}, {:Perigee_km 621.0} {:cluster_2 3, :cluster_6 1}, {:Perigee_km 35762.0} {:cluster_4 1}, {:Perigee_km 579.0} {:cluster_2 1}, {:Perigee_km 820.0} {:cluster_2 3}, {:Perigee_km 681.0} {:cluster_2 4}, {:Perigee_km 35589.0} {:cluster_4 1}, {:Perigee_km 35793.0} {:cluster_4 1}, {:Perigee_km 35738.0} {:cluster_4 2}, {:Perigee_km 1407.0} {:cluster_6 1}, {:Perigee_km 949.0} {:cluster_6 2}, {:Perigee_km 459.0} {:cluster_9 1}, {:Perigee_km 1339.0} {:cluster_6 1}, {:Perigee_km 20135.0} {:cluster_23 1}, {:Perigee_km 35703.0} {:cluster_4 1}, {:Perigee_km 23783.0} {:cluster_75 1}, {:Perigee_km 19118.0} {:cluster_23 1}, {:Perigee_km 671.0} {:cluster_2 1, :cluster_9 1}, {:Perigee_km 712.0} {:cluster_2 1}, {:Perigee_km 21460.0} {:cluster_23 1}, {:Perigee_km 534.0} {:cluster_2 1}, {:Perigee_km 1465.0} {:cluster_6 1}, {:Perigee_km 716.0} {:cluster_6 1}, {:Perigee_km 1014.0} {:cluster_9 1}, {:Perigee_km 651.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 589.0} {:cluster_2 1}, {:Perigee_km 610.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 18922.0} {:cluster_23 1}, {:Perigee_km 35771.0} {:cluster_4 5, :cluster_3 2}, {:Perigee_km 709.0} {:cluster_2 1}, {:Perigee_km 967.0} {:cluster_6 1}, {:Perigee_km 844.0} {:cluster_9 1}, {:Perigee_km 708.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 907.0} {:cluster_6 1}, {:Perigee_km 786.0} {:cluster_6 1}, {:Perigee_km 35420.0} {:cluster_4 1}, {:Perigee_km 843.0} {:cluster_2 2}, {:Perigee_km 19147.0} {:cluster_23 1}, {:Perigee_km 842.0} {:cluster_2 4}, {:Perigee_km 612.0} {:cluster_6 1}, {:Perigee_km 961.0} {:cluster_62 1, :cluster_6 1}, {:Perigee_km 35779.0} {:cluster_4 13}, {:Perigee_km 594.0} {:cluster_2 16}, {:Perigee_km 630.0} {:cluster_2 2}, {:Perigee_km 501.0} {:cluster_2 2}, {:Perigee_km 19136.0} {:cluster_23 1}, {:Perigee_km 850.0} {:cluster_6 1}, {:Perigee_km 2284.0} {:cluster_81 1}, {:Perigee_km 682.0} {:cluster_2 1}, {:Perigee_km 35987.0} {:cluster_4 1}, {:Perigee_km 35170.0} {:cluster_4 1}, {:Perigee_km 918.0} {:cluster_6 1}, {:Perigee_km 443.0} {:cluster_2 10, :cluster_6 1}, {:Perigee_km 35744.0} {:cluster_4 1}, {:Perigee_km 35741.0} {:cluster_4 1}, {:Perigee_km 1413.0} {:cluster_6 19}, {:Perigee_km 1398.0} {:cluster_6 1}, {:Perigee_km 444.0} {:cluster_2 1}, {:Perigee_km 1459.0} {:cluster_6 1}, {:Perigee_km 37778.0} {:cluster_4 1}, {:Perigee_km 18981.0} {:cluster_23 1}, {:Perigee_km 591.0} {:cluster_62 1, :cluster_2 1}, {:Perigee_km 1347.0} {:cluster_6 1}, {:Perigee_km 735.0} {:cluster_6 1}, {:Perigee_km 480.0} {:cluster_6 1}, {:Perigee_km 19098.0} {:cluster_23 1}, {:Perigee_km 35759.0} {:cluster_4 3}, {:Perigee_km 771.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 19963.0} {:cluster_23 1}, {:Perigee_km 20206.0} {:cluster_23 1}, {:Perigee_km 503.0} {:cluster_2 1}, {:Perigee_km 1484.0} {:cluster_6 1}, {:Perigee_km 623.0} {:cluster_2 1}, {:Perigee_km 257.0} {:cluster_9 1}, {:Perigee_km 1210.0} {:cluster_62 1}, {:Perigee_km 483.0} {:cluster_6 1}, {:Perigee_km 398.0} {:cluster_6 1}, {:Perigee_km 325.0} {:cluster_0 1}, {:Perigee_km 700.0} {:cluster_2 1}, {:Perigee_km 305.0} {:cluster_0 1}, {:Perigee_km 710.0} {:cluster_2 2}, {:Perigee_km 867.0} {:cluster_2 1}, {:Perigee_km 20104.0} {:cluster_23 2}, {:Perigee_km 960.0} {:cluster_6 1}, {:Perigee_km 506.0} {:cluster_2 1}, {:Perigee_km 6179.0} {:cluster_80 1}, {:Perigee_km 819.0} {:cluster_2 1}, {:Perigee_km 1436.0} {:cluster_6 1}, {:Perigee_km 1101.0} {:cluster_2 1}, {:Perigee_km 1482.0} {:cluster_6 3}, {:Perigee_km 35612.0} {:cluster_4 1}, {:Perigee_km 20150.0} {:cluster_23 1}, {:Perigee_km 677.0} {:cluster_2 2}, {:Perigee_km 600.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 20160.0} {:cluster_23 1}, {:Perigee_km 491.0} {:cluster_2 1}, {:Perigee_km 567.0} {:cluster_2 1}, {:Perigee_km 20188.0} {:cluster_23 1}, {:Perigee_km 35864.0} {:cluster_4 1}, {:Perigee_km 890.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 35728.0} {:cluster_4 1}, {:Perigee_km 1477.0} {:cluster_6 3}, {:Perigee_km 18909.0} {:cluster_23 1}, {:Perigee_km 555.0} {:cluster_2 2, :cluster_9 1}, {:Perigee_km 784.0} {:cluster_2 2}, {:Perigee_km 35764.0} {:cluster_4 10}, {:Perigee_km 1017.0} {:cluster_9 1, :cluster_2 3}, {:Perigee_km 773.0} {:cluster_6 1}, {:Perigee_km 1332.0} {:cluster_6 1}, {:Perigee_km 23214.0} {:cluster_23 1}, {:Perigee_km 35775.0} {:cluster_4 26, :cluster_32 1}, {:Perigee_km 35708.0} {:cluster_85 2}, {:Perigee_km 35781.0} {:cluster_4 17}, {:Perigee_km 35788.0} {:cluster_4 3}, {:Perigee_km 35774.0} {:cluster_4 22}, {:Perigee_km 713.0} {:cluster_9 1, :cluster_2 1}, {:Perigee_km 21519.0} {:cluster_23 1}, {:Perigee_km 20134.0} {:cluster_23 1}, {:Perigee_km 19142.0} {:cluster_23 2}, {:Perigee_km 1112.0} {:cluster_62 1}, {:Perigee_km 678.0} {:cluster_2 4}, {:Perigee_km 751.0} {:cluster_2 1}, {:Perigee_km 35794.0} {:cluster_4 1}, {:Perigee_km 759.0} {:cluster_2 1}, {:Perigee_km 35605.0} {:cluster_4 1}, {:Perigee_km 35712.0} {:cluster_85 1}, {:Perigee_km 200.0} {:cluster_9 1}, {:Perigee_km 19079.0} {:cluster_23 1}, {:Perigee_km 818.0} {:cluster_2 1}, {:Perigee_km 35776.0} {:cluster_4 29}, {:Perigee_km 614.0} {:cluster_2 1}, {:Perigee_km 35767.0} {:cluster_4 4}, {:Perigee_km 1019.0} {:cluster_6 1}, {:Perigee_km 1011.0} {:cluster_9 1}, {:Perigee_km 1406.0} {:cluster_6 1}, {:Perigee_km 1409.0} {:cluster_6 1}, {:Perigee_km 782.0} {:cluster_2 2}, {:Perigee_km 635.0} {:cluster_2 2}, {:Perigee_km 306.0} {:cluster_0 2}, {:Perigee_km 658.0} {:cluster_74 1, :cluster_2 1}, {:Perigee_km 628.0} {:cluster_2 2}, {:Perigee_km 1080.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 23242.0} {:cluster_23 1}, {:Perigee_km 20133.0} {:cluster_23 1}, {:Perigee_km 35756.0} {:cluster_4 2}, {:Perigee_km 1012.0} {:cluster_9 2}, {:Perigee_km 340.0} {:cluster_2 1}, {:Perigee_km 35754.0} {:cluster_4 2}, {:Perigee_km 20020.0} {:cluster_23 1}, {:Perigee_km 488.0} {:cluster_2 3}, {:Perigee_km 20096.0} {:cluster_23 1}, {:Perigee_km 969.0} {:cluster_6 1}, {:Perigee_km 701.0} {:cluster_2 2}, {:Perigee_km 692.0} {:cluster_2 1}, {:Perigee_km 33674.0} {:cluster_4 1}, {:Perigee_km 777.0} {:cluster_6 2}, {:Perigee_km 19116.0} {:cluster_23 2}, {:Perigee_km 853.0} {:cluster_6 1}, {:Perigee_km 694.0} {:cluster_6 1}, {:Perigee_km 564.0} {:cluster_2 1, :cluster_9 1}, {:Perigee_km 35804.0} {:cluster_4 1}, {:Perigee_km 611.0} {:cluster_2 2}, {:Perigee_km 35706.0} {:cluster_4 1}, {:Perigee_km 17007.0} {:cluster_78 1}, {:Perigee_km 35609.0} {:cluster_4 1}, {:Perigee_km 400.0} {:cluster_9 1, :cluster_62 1}, {:Perigee_km 1013.0} {:cluster_9 1}, {:Perigee_km 23217.0} {:cluster_23 1}, {:Perigee_km 585.0} {:cluster_2 1}, {:Perigee_km 601.0} {:cluster_2 1}, {:Perigee_km 33782.0} {:cluster_4 1}, {:Perigee_km 35700.0} {:cluster_4 4}, {:Perigee_km 553.0} {:cluster_2 1}, {:Perigee_km 20080.0} {:cluster_23 1}, {:Perigee_km 20155.0} {:cluster_23 1}, {:Perigee_km 675.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 35786.0} {:cluster_4 13}, {:Perigee_km 1016.0} {:cluster_9 2}, {:Perigee_km 787.0} {:cluster_6 2}, {:Perigee_km 770.0} {:cluster_2 2, :cluster_6 2}, {:Perigee_km 21477.0} {:cluster_23 1}, {:Perigee_km 747.0} {:cluster_6 1}, {:Perigee_km 663.0} {:cluster_6 1}, {:Perigee_km 484.0} {:cluster_2 2, :cluster_6 1}, {:Perigee_km 20123.0} {:cluster_23 1}, {:Perigee_km 638.0} {:cluster_6 1}, {:Perigee_km 785.0} {:cluster_2 2}, {:Perigee_km 1068.0} {:cluster_2 1}, {:Perigee_km 35715.0} {:cluster_4 1}, {:Perigee_km 1495.0} {:cluster_6 1}, {:Perigee_km 396.0} {:cluster_6 1}, {:Perigee_km 1360.0} {:cluster_6 1}, {:Perigee_km 35758.0} {:cluster_4 1}, {:Perigee_km 19131.0} {:cluster_23 1}, {:Perigee_km 20177.0} {:cluster_23 1}, {:Perigee_km 814.0} {:cluster_2 1}, {:Perigee_km 35770.0} {:cluster_4 10, :cluster_3 1}, {:Perigee_km 35670.0} {:cluster_85 1}, {:Perigee_km 1199.0} {:cluster_2 1}, {:Perigee_km 765.0} {:cluster_2 1}, {:Perigee_km 669.0} {:cluster_2 3}, {:Perigee_km 617.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 23240.0} {:cluster_23 1}, {:Perigee_km 20184.0} {:cluster_23 2}, {:Perigee_km 806.0} {:cluster_2 1}, {:Perigee_km 35742.0} {:cluster_4 1}, {:Perigee_km 790.0} {:cluster_6 2}, {:Perigee_km 1468.0} {:cluster_6 1}, {:Perigee_km 1415.0} {:cluster_6 2}, {:Perigee_km 467.0} {:cluster_66 1}, {:Perigee_km 776.0} {:cluster_6 62}, {:Perigee_km 35745.0} {:cluster_4 2}, {:Perigee_km 1412.0} {:cluster_6 12}, {:Perigee_km 672.0} {:cluster_2 1}, {:Perigee_km 35725.0} {:cluster_4 1}, {:Perigee_km 20089.0} {:cluster_23 1}, {:Perigee_km 19130.0} {:cluster_23 4}, {:Perigee_km 435.0} {:cluster_6 1}, {:Perigee_km 1411.0} {:cluster_6 5}, {:Perigee_km 440.0} {:cluster_2 1}, {:Perigee_km 569.0} {:cluster_2 1}, {:Perigee_km 1466.0} {:cluster_6 1}, {:Perigee_km 535.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 772.0} {:cluster_6 2, :cluster_2 4}, {:Perigee_km 691.0} {:cluster_2 1}, {:Perigee_km 593.0} {:cluster_2 4}, {:Perigee_km 1405.0} {:cluster_6 1}, {:Perigee_km 584.0} {:cluster_2 1}, {:Perigee_km 469.0} {:cluster_2 2}, {:Perigee_km 19126.0} {:cluster_23 1}, {:Perigee_km 1032.0} {:cluster_6 1}, {:Perigee_km 489.0} {:cluster_2 2}, {:Perigee_km 559.0} {:cluster_6 1}, {:Perigee_km 652.0} {:cluster_6 1}, {:Perigee_km 342.0} {:cluster_9 1}, {:Perigee_km 1417.0} {:cluster_6 2}, {:Perigee_km 494.0} {:cluster_6 1}, {:Perigee_km 479.0} {:cluster_2 1}, {:Perigee_km 1471.0} {:cluster_6 1}, {:Perigee_km 35872.0} {:cluster_4 1}, {:Perigee_km 624.0} {:cluster_2 3}, {:Perigee_km 35633.0} {:cluster_4 1}, {:Perigee_km 298.0} {:cluster_0 1}, {:Perigee_km 35834.0} {:cluster_4 1}, {:Perigee_km 1006.0} {:cluster_62 1}, {:Perigee_km 8064.0} {:cluster_59 1}, {:Perigee_km 360.0} {:cluster_9 1}, {:Perigee_km 16809.0} {:cluster_78 1}, {:Perigee_km 19938.0} {:cluster_23 1}, {:Perigee_km 654.0} {:cluster_6 1}, {:Perigee_km 343.0} {:cluster_2 1}, {:Perigee_km 17313.0} {:cluster_78 1}, {:Perigee_km 633.0} {:cluster_2 1}, {:Perigee_km 1473.0} {:cluster_6 2}, {:Perigee_km 19094.0} {:cluster_23 1}, {:Perigee_km 662.0} {:cluster_2 1}, {:Perigee_km 613.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 487.0} {:cluster_2 1}, {:Perigee_km 401.0} {:cluster_6 1}, {:Perigee_km 1480.0} {:cluster_6 2}, {:Perigee_km 653.0} {:cluster_2 1}, {:Perigee_km 507.0} {:cluster_2 2}, {:Perigee_km 952.0} {:cluster_6 1}, {:Perigee_km 916.0} {:cluster_6 1}, {:Perigee_km 1478.0} {:cluster_6 3}, {:Perigee_km 632.0} {:cluster_2 1}, {:Perigee_km 660.0} {:cluster_2 1}, {:Perigee_km 35323.0} {:cluster_4 1}, {:Perigee_km 202.0} {:cluster_9 1}, {:Perigee_km 697.0} {:cluster_2 2}, {:Perigee_km 815.0} {:cluster_2 1}, {:Perigee_km 1479.0} {:cluster_6 1}, {:Perigee_km 35743.0} {:cluster_4 1}, {:Perigee_km 1100.0} {:cluster_9 2}, {:Perigee_km 689.0} {:cluster_2 1}, {:Perigee_km 405.0} {:cluster_6 1}, {:Perigee_km 35783.0} {:cluster_4 14}, {:Perigee_km 35850.0} {:cluster_4 1}, {:Perigee_km 744.0} {:cluster_6 1}, {:Perigee_km 649.0} {:cluster_6 1}, {:Perigee_km 461.0} {:cluster_66 1}, {:Perigee_km 965.0} {:cluster_2 1}, {:Perigee_km 35763.0} {:cluster_4 4}, {:Perigee_km 1467.0} {:cluster_6 1}, {:Perigee_km 622.0} {:cluster_2 7}, {:Perigee_km 722.0} {:cluster_2 1}, {:Perigee_km 667.0} {:cluster_2 1, :cluster_62 1}, {:Perigee_km 35761.0} {:cluster_4 3}, {:Perigee_km 1000.0} {:cluster_92 1}, {:Perigee_km 714.0} {:cluster_9 1}, {:Perigee_km 19150.0} {:cluster_23 1}, {:Perigee_km 12849.0} {:cluster_76 1}, {:Perigee_km 500.0} {:cluster_2 3, :cluster_6 4, :cluster_62 1}, {:Perigee_km 763.0} {:cluster_2 1}, {:Perigee_km 607.0} {:cluster_2 1}, {:Perigee_km 615.0} {:cluster_2 1}, {:Perigee_km 35768.0} {:cluster_4 13}, {:Perigee_km 900.0} {:cluster_6 1, :cluster_9 1}, {:Perigee_km 1498.0} {:cluster_6 1}, {:Perigee_km 499.0} {:cluster_6 7}, {:Perigee_km 512.0} {:cluster_2 1}, {:Perigee_km 456.0} {:cluster_2 1}, {:Perigee_km 813.0} {:cluster_2 1}, {:Perigee_km 574.0} {:cluster_9 1}, {:Perigee_km 508.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 964.0} {:cluster_62 1}, {:Perigee_km 17240.0} {:cluster_78 1}, {:Perigee_km 474.0} {:cluster_2 1, :cluster_66 1}, {:Perigee_km 1494.0} {:cluster_6 1}, {:Perigee_km 35773.0} {:cluster_4 20, :cluster_77 1}, {:Perigee_km 657.0} {:cluster_2 1}, {:Perigee_km 668.0} {:cluster_2 2}, {:Perigee_km 20149.0} {:cluster_23 1}, {:Perigee_km 1474.0} {:cluster_6 1}, {:Perigee_km 19124.0} {:cluster_23 1}, {:Perigee_km 473.0} {:cluster_2 1, :cluster_6 2}, {:Perigee_km 598.0} {:cluster_2 1}, {:Perigee_km 596.0} {:cluster_2 1}, {:Perigee_km 35789.0} {:cluster_4 1}, {:Perigee_km 639.0} {:cluster_2 1}, {:Perigee_km 504.0} {:cluster_2 1}, {:Perigee_km 769.0} {:cluster_6 2, :cluster_2 1}, {:Perigee_km 367.0} {:cluster_2 1}, {:Perigee_km 563.0} {:cluster_2 1, :cluster_62 1}, {:Perigee_km 530.0} {:cluster_2 1}, {:Perigee_km 3905.0} {:cluster_93 1}, {:Perigee_km 511.0} {:cluster_2 1}, {:Perigee_km 9999.0} {:cluster_79 1}, {:Perigee_km 20109.0} {:cluster_23 1}, {:Perigee_km 35765.0} {:cluster_4 3}, {:Perigee_km 661.0} {:cluster_2 4}, {:Perigee_km 35795.0} {:cluster_4 1}, {:Perigee_km 839.0} {:cluster_6 1}, {:Perigee_km 789.0} {:cluster_6 4}, {:Perigee_km 35500.0} {:cluster_4 1}, {:Perigee_km 35732.0} {:cluster_4 1}, {:Perigee_km 7079.0} {:cluster_94 1}, {:Perigee_km 485.0} {:cluster_2 2}, {:Perigee_km 20063.0} {:cluster_23 1}, {:Perigee_km 627.0} {:cluster_2 2, :cluster_62 1}, {:Perigee_km 35785.0} {:cluster_4 16}, {:Perigee_km 725.0} {:cluster_2 1}, {:Perigee_km 1481.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 554.0} {:cluster_6 1}, {:Perigee_km 20451.0} {:cluster_23 1}, {:Perigee_km 486.0} {:cluster_2 1}, {:Perigee_km 497.0} {:cluster_6 2}, {:Perigee_km 19132.0} {:cluster_23 1}, {:Perigee_km 35800.0} {:cluster_4 3}, {:Perigee_km 739.0} {:cluster_2 1}, {:Perigee_km 19986.0} {:cluster_23 1}}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}, :hyper-grid {:m (186.0 1439.4 2692.8 3946.2000000000003 5199.6 6453.0 7706.4 8959.8 10213.199999999999 11466.599999999999 12719.999999999998 13973.399999999998 15226.799999999997 16480.199999999997 17733.6 18987.0 20240.4 21493.800000000003 22747.200000000004 24000.600000000006 25254.000000000007 26507.40000000001 27760.80000000001 29014.20000000001 30267.600000000013 31521.000000000015 32774.400000000016 34027.80000000002 35281.20000000002 36534.60000000002 37788.00000000002), :r (8.56898029134533E-4 0.0013721466648667219 0.0021972118103789806 0.003518384632839378 0.00563397227619358 0.009021652525608603 0.014446328505508529 0.023132835885295813 0.03704249809160715 0.05931597283059068 0.09498238007972104 0.15209482530742383 0.24354870730634268 0.38999336572232046 0.6244944881440667 0.9999999999999986 1.601295157899462 2.564146182712267 4.105954866523549 6.574845646317901 10.528268497385229 16.858865365928438 26.996019478140187 43.2285952729055 69.22174029329925 110.84443755303434 177.49466113376343 284.2213414265016 455.12225779794744 728.785067664125), :s (3.225808161090059E9 3.761016190458332E9 4.385022939525881E9 5.112561394697145E9 5.960808956993451E9 6.949793005640401E9 8.102863750495015E9 9.447245537500166E9 1.101467962365335E10 1.2842173597599497E10 1.4972875139892672E10 1.745709075266836E10 2.0353473511239323E10 2.3730407880786175E10 2.766762429407999E10 3.2258081610900852E10 3.761016190458363E10 4.385022939525917E10 5.112561394697188E10 5.9608089569935E10 6.949793005640457E10 8.102863750495082E10 9.447245537500244E10 1.1014679623653441E11 1.2842173597599602E11 1.4972875139892795E11 1.7457090752668506E11 2.035347351123949E11 2.373040788078637E11 2.766762429408022E11), :nu (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata {}, :data {0 770.0, 893 1016.0, 920 688.0, 558 776.0, 453 590.0, 584 776.0, 487 35771.0, 637 305.0, 972 35785.0, 519 7000.0, 1097 35783.0, 357 1413.0, 716 35779.0, 950 35774.0, 275 35714.0, 530 775.0, 929 581.0, 789 969.0, 389 18981.0, 586 777.0, 410 19087.0, 433 35782.0, 765 790.0, 521 776.0, 451 650.0, 291 35760.0, 443 35764.0, 798 789.0, 779 499.0, 970 600.0, 249 35768.0, 638 457.0, 299 443.0, 1101 35785.0, 121 609.0, 734 35772.0, 287 488.0, 65 627.0, 1086 595.0, 702 20020.0, 70 35778.0, 949 35776.0, 218 35776.0, 648 1006.0, 1070 35738.0, 812 498.0, 62 563.0, 74 410.0, 774 772.0, 475 35784.0, 497 35781.0, 1009 473.0, 580 776.0, 1138 509.0, 891 1017.0, 164 751.0, 1040 35775.0, 282 35782.0, 769 787.0, 799 714.0, 273 35759.0, 1147 1017.0, 186 35778.0, 430 35763.0, 641 35778.0, 529 776.0, 898 716.0, 370 1412.0, 834 663.0, 233 35323.0, 298 1066.0, 188 35773.0, 240 702.0, 110 35777.0, 130 538.0, 982 35783.0, 620 35780.0, 311 35775.0, 931 584.0, 882 656.0, 128 622.0, 399 18864.0, 989 772.0, 377 1409.0, 468 35764.0, 259 35766.0, 210 35784.0, 229 35783.0, 153 21460.0, 621 35780.0, 213 35765.0, 670 35776.0, 977 627.0, 343 1415.0, 958 35770.0, 887 1100.0, 472 35772.0, 7 35589.0, 894 1014.0, 59 35773.0, 934 623.0, 473 35773.0, 1010 473.0, 86 35766.0, 756 789.0, 830 621.0, 613 35778.0, 491 35775.0, 154 21452.0, 20 35784.0, 224 35776.0, 355 1412.0, 592 620.0, 1146 1192.0, 610 264.0, 806 553.0, 571 776.0, 466 1112.0, 72 35766.0, 454 35770.0, 888 1013.0, 463 nil, 851 1473.0, 770 788.0, 814 498.0, 859 653.0, 58 35778.0, 964 483.0, 980 850.0, 1001 867.0, 205 35757.0, 555 776.0, 552 776.0, 60 696.0, 1102 35785.0, 835 595.0, 459 484.0, 175 443.0, 322 23214.0, 510 35775.0, 1052 464.0, 1121 35780.0, 662 1481.0, 27 558.0, 352 1411.0, 493 35785.0, 899 735.0, 416 1398.0, 777 769.0, 694 20096.0, 1 35777.0, 631 603.0, 854 1478.0, 69 35779.0, 101 35834.0, 24 570.0, 901 35779.0, 547 776.0, 102 35605.0, 788 949.0, 1106 491.0, 713 35764.0, 1110 306.0, 385 19130.0, 988 497.0, 135 784.0, 1065 400.0, 397 19119.0, 1011 486.0, 1006 35779.0, 773 772.0, 490 35770.0, 752 770.0, 354 1412.0, 884 35770.0, 360 1413.0, 998 1474.0, 961 35782.0, 55 35778.0, 568 776.0, 797 968.0, 688 20184.0, 763 788.0, 269 35769.0, 676 19781.0, 448 489.0, 527 776.0, 206 35706.0, 1075 35738.0, 966 443.0, 165 772.0, 715 35779.0, 387 19124.0, 652 35781.0, 683 19912.0, 85 35776.0, 721 843.0, 862 772.0, 615 651.0, 681 20080.0, 225 35781.0, 865 470.0, 297 1068.0, 39 35780.0, 805 600.0, 274 35786.0, 88 35804.0, 217 596.0, 1128 487.0, 46 35778.0, 682 20134.0, 508 35782.0, 1157 35775.0, 149 35717.0, 415 669.0, 239 702.0, 478 35782.0, 878 648.0, 157 35783.0, 345 1413.0, 300 443.0, 743 367.0, 921 689.0, 1039 501.0, 4 35780.0, 550 776.0, 1115 35785.0, 204 35760.0, 470 35609.0, 1164 35759.0, 646 961.0, 77 35784.0, 106 554.0, 197 842.0, 405 19126.0, 897 1012.0, 726 35776.0, 776 768.0, 940 668.0, 755 788.0, 902 35758.0, 518 401.0, 232 639.0, 260 35786.0, 823 35612.0, 1125 35784.0, 267 35774.0, 119 702.0, 319 35784.0, 534 776.0, 222 35785.0, 603 35776.0, 293 827.0, 95 35777.0, 450 35777.0, 329 508.0, 144 35776.0, 1087 594.0, 504 35776.0, 819 448.0, 818 35774.0, 505 35776.0, 723 827.0, 1071 35786.0, 1008 548.0, 992 1415.0, 176 326.0, 863 782.0, 471 35769.0, 349 1412.0, 512 35782.0, 710 35793.0, 1058 35768.0, 192 712.0, 54 1440.0, 92 35768.0, 221 35782.0, 141 702.0, 502 35775.0, 871 35776.0, 464 678.0, 801 725.0, 307 35775.0, 935 624.0, 758 789.0, 290 35767.0, 1156 620.0, 1144 511.0, 627 702.0, 517 35800.0, 1122 35773.0, 361 1412.0, 264 35757.0, 137 35782.0, 356 1413.0, 728 35776.0, 976 608.0, 678 20120.0, 327 593.0, 234 675.0, 856 1482.0, 817 589.0, 1017 443.0, 104 709.0, 353 1412.0, 1145 628.0, 15 495.0, 48 35773.0, 945 35794.0, 759 787.0, 1066 1210.0, 242 530.0, 832 667.0, 969 657.0, 50 35778.0, 956 35771.0, 917 35777.0, 1030 35778.0, 557 776.0, 251 35762.0, 394 19112.0, 116 33066.0, 585 744.0, 583 776.0, 75 35771.0, 437 681.0, 516 35769.0, 1062 35773.0, 994 1466.0, 930 578.0, 967 759.0, 687 20174.0, 159 35780.0, 848 1493.0, 995 1467.0, 1096 622.0, 1159 35759.0, 709 398.0, 99 984.0, 540 776.0, 645 33674.0, 749 35774.0, 479 35765.0, 1081 542.0, 890 1016.0, 1046 824.0, 630 610.0, 916 35783.0, 815 498.0, 1080 35696.0, 281 35777.0, 402 18909.0, 669 35778.0, 781 499.0, 740 8063.0, 1012 571.0, 975 1000.0, 429 35761.0, 309 35776.0, 458 484.0, 21 35770.0, 388 19142.0, 495 35774.0, 952 35779.0, 626 713.0, 875 652.0, 31 672.0, 113 35772.0, 32 35776.0, 811 498.0, 827 613.0, 407 19150.0, 398 19131.0, 136 564.0, 691 20072.0, 847 1495.0, 825 35777.0, 139 594.0, 506 35774.0, 396 19132.0, 460 588.0, 483 2284.0, 589 745.0, 581 776.0, 932 586.0, 174 678.0, 578 776.0, 855 1477.0, 331 3905.0, 363 1413.0, 1038 529.0, 284 35420.0, 208 35718.0, 305 594.0, 1019 17313.0, 955 35773.0, 796 916.0, 708 772.0, 182 594.0, 256 35780.0, 1107 765.0, 1109 342.0, 657 35754.0, 514 35775.0, 1103 35776.0, 731 35773.0, 619 497.0, 985 35791.0, 485 35783.0, 214 35741.0, 193 845.0, 685 20188.0, 804 678.0, 869 35777.0, 1002 1347.0, 1104 186.0, 836 817.0, 1131 1201.0, 785 35780.0, 635 35772.0, 442 952.0, 1073 35763.0, 561 776.0, 954 35774.0, 656 35784.0, 607 35786.0, 241 701.0, 314 35776.0, 782 635.0, 226 35783.0, 235 677.0, 672 35800.0, 420 1478.0, 418 1408.0, 262 35766.0, 1016 658.0, 263 35784.0, 304 790.0, 401 19128.0, 673 654.0, 40 35773.0, 129 325.0, 600 35778.0, 729 35776.0, 1042 35786.0, 467 620.0, 1033 35773.0, 1149 1017.0, 445 35782.0, 317 35776.0, 1091 479.0, 1028 35768.0, 294 827.0, 91 35772.0, 1044 467.0, 810 498.0, 1137 890.0, 364 1412.0, 987 650.0, 880 603.0, 515 35770.0, 412 35170.0, 553 776.0, 974 35745.0, 341 1411.0, 117 35784.0, 1000 593.0, 1095 682.0, 665 669.0, 523 776.0, 172 594.0, 601 35788.0, 108 500.0, 156 21477.0, 358 1413.0, 308 35781.0, 908 661.0, 649 818.0, 531 776.0, 1085 591.0, 923 661.0, 1111 489.0, 223 35789.0, 419 1497.0, 365 1413.0, 944 681.0, 181 598.0, 417 1405.0, 1082 667.0, 979 696.0, 278 35783.0, 56 35777.0, 942 35769.0, 33 35767.0, 13 35700.0, 1043 461.0, 867 448.0, 22 35769.0, 618 535.0, 1141 625.0, 1093 35782.0, 380 19116.0, 257 35788.0, 1061 611.0, 338 1412.0, 1024 35773.0, 500 35774.0, 909 607.0, 1018 507.0, 993 1468.0, 1089 494.0, 168 622.0, 833 35786.0, 496 35781.0, 1056 35769.0, 1129 506.0, 947 12849.0, 347 1413.0, 501 35778.0, 1007 35781.0, 1077 660.0, 596 1332.0, 872 35779.0, 792 961.0, 90 35776.0, 237 677.0, 826 1199.0, 292 820.0, 109 503.0, 216 585.0, 191 35774.0, 498 35778.0, 829 621.0, 761 791.0, 1072 35766.0, 375 1360.0, 525 708.0, 367 1413.0, 143 35708.0, 742 569.0, 178 609.0, 640 35782.0, 247 35776.0, 328 522.0, 391 19092.0, 990 1417.0, 167 622.0, 707 20160.0, 36 35775.0, 41 35774.0, 474 35775.0, 187 35780.0, 551 776.0, 1118 35778.0, 996 1465.0, 528 776.0, 971 35785.0, 599 35780.0, 376 915.0, 195 837.0, 889 1011.0, 316 35778.0, 668 500.0, 428 35777.0, 303 890.0, 671 35800.0, 794 907.0, 905 400.0, 368 1413.0, 560 776.0, 565 776.0, 310 35776.0, 366 1413.0, 118 403.0, 522 776.0, 150 35693.0, 886 1100.0, 313 35774.0, 384 19130.0, 567 776.0, 238 678.0, 846 1482.0, 962 1200.0, 1127 626.0, 845 1498.0, 196 843.0, 162 769.0, 393 19136.0, 184 35786.0, 219 35780.0, 999 298.0, 461 512.0, 1032 35774.0, 89 35715.0, 100 35780.0, 426 434.0, 604 35780.0, 477 35764.0, 844 1478.0, 541 776.0, 351 1411.0, 243 508.0, 131 9999.0, 790 967.0, 963 495.0, 1053 360.0, 629 617.0, 873 697.0, 122 771.0, 933 534.0, 43 35777.0, 1067 844.0, 231 35773.0, 61 694.0, 654 820.0, 883 35778.0, 1003 1339.0, 598 35784.0, 413 35786.0, 29 443.0, 784 35784.0, 800 499.0, 151 35708.0, 369 1413.0, 348 1411.0, 1124 35694.0, 575 776.0, 693 20123.0, 44 35781.0, 739 8064.0, 258 35781.0, 250 35779.0, 674 583.0, 539 776.0, 301 500.0, 838 459.0, 424 1494.0, 93 35770.0, 6 35560.0, 684 20109.0, 1026 35767.0, 951 35785.0, 573 776.0, 408 19139.0, 563 776.0, 850 1481.0, 616 676.0, 866 473.0, 111 35776.0, 997 1471.0, 689 19963.0, 28 264.0, 456 590.0, 374 1413.0, 608 800.0, 737 8063.0, 1155 619.0, 548 776.0, 538 776.0, 1034 35783.0, 895 1019.0, 411 35768.0, 957 35700.0, 134 785.0, 943 35788.0, 64 610.0, 623 498.0, 1135 1076.0, 1133 1079.0, 465 1111.0, 816 498.0, 334 1413.0, 1150 802.0, 323 23217.0, 189 35774.0, 280 35785.0, 198 842.0, 155 21462.0, 295 537.0, 808 813.0, 248 35781.0, 587 773.0, 285 538.0, 507 35775.0, 227 35775.0, 724 499.0, 476 35780.0, 941 684.0, 911 35778.0, 853 1475.0, 494 35780.0, 220 35778.0, 842 1480.0, 103 35768.0, 697 20177.0, 611 200.0, 1105 594.0, 170 713.0, 1154 555.0, 51 35783.0, 25 615.0, 261 35778.0, 768 786.0, 822 1885.0, 201 594.0, 904 500.0, 590 777.0, 489 35783.0, 778 499.0, 166 622.0, 447 621.0, 34 35781.0, 252 35754.0, 978 824.0, 775 771.0, 325 35782.0, 1005 35778.0, 594 817.0, 436 601.0, 828 621.0, 535 776.0, 813 498.0, 146 35764.0, 741 722.0, 1060 612.0, 876 649.0, 1064 594.0, 228 35782.0, 907 35771.0, 306 35785.0, 125 618.0, 276 806.0, 340 1477.0, 148 35775.0, 1143 440.0, 482 37782.0, 1049 35779.0, 622 291.0, 588 776.0, 17 443.0, 312 35774.0, 606 35783.0, 3 35780.0, 1148 1017.0, 520 469.0, 1088 35777.0, 760 788.0, 720 842.0, 1126 625.0, 286 627.0, 279 35774.0, 879 650.0, 1020 35768.0, 536 776.0, 1023 35693.0, 663 805.0, 12 35700.0, 440 535.0, 332 701.0, 330 671.0, 1162 35767.0, 382 19118.0, 152 21519.0, 1112 35782.0, 1140 633.0, 544 776.0, 803 697.0, 642 35728.0, 435 965.0, 342 1411.0, 703 20206.0, 783 35786.0, 695 20133.0, 973 35785.0, 2 35785.0, 948 6179.0, 66 594.0, 484 35776.0, 439 35769.0, 236 675.0, 556 776.0, 373 1413.0, 1083 563.0, 142 35768.0, 359 1412.0, 727 35779.0, 371 1459.0, 772 768.0, 444 35764.0, 1057 37778.0, 570 776.0, 757 788.0, 107 681.0, 1094 35742.0, 532 776.0, 984 35776.0, 23 510.0, 1079 504.0, 745 343.0, 719 800.0, 230 35775.0, 625 574.0, 47 35773.0, 526 776.0, 180 661.0, 786 35786.0, 1068 770.0, 1166 500.0, 870 35779.0, 537 776.0, 659 35764.0, 158 35773.0, 991 1417.0, 350 1413.0, 35 35772.0, 1116 7079.0, 849 1484.0, 1120 35743.0, 644 35598.0, 1069 35778.0, 881 696.0, 127 624.0, 927 591.0, 675 35775.0, 1055 485.0, 383 19130.0, 533 776.0, 1100 35785.0, 910 35781.0, 302 35745.0, 564 776.0, 701 20142.0, 1090 847.0, 566 776.0, 821 791.0, 787 692.0, 82 35774.0, 76 35780.0, 735 613.0, 492 35768.0, 718 35764.0, 771 788.0, 215 662.0, 97 35768.0, 704 20149.0, 277 35781.0, 926 587.0, 751 35775.0, 1114 35784.0, 19 35764.0, 335 1406.0, 597 35772.0, 938 784.0, 57 35781.0, 609 202.0, 202 35775.0, 68 35782.0, 452 555.0, 1054 488.0, 200 594.0, 1142 635.0, 868 474.0, 11 35872.0, 115 35778.0, 946 23783.0, 1063 681.0, 983 35703.0, 339 900.0, 431 35776.0, 462 509.0, 337 1412.0, 698 20104.0, 255 35725.0, 503 35775.0, 546 776.0, 9 35500.0, 953 35775.0, 857 17240.0, 706 20135.0, 632 35760.0, 457 485.0, 427 668.0, 145 35774.0, 5 670.0, 733 35784.0, 1163 35781.0, 1165 763.0, 1152 594.0, 624 671.0, 831 617.0, 244 306.0, 918 686.0, 824 35784.0, 289 35777.0, 112 35769.0, 925 579.0, 1059 456.0, 730 35775.0, 699 20155.0, 712 661.0, 1076 35772.0, 1113 35784.0, 414 35772.0, 839 538.0, 802 410.0, 1084 593.0, 860 16809.0, 1117 801.0, 179 326.0, 344 1412.0, 481 35760.0, 732 35779.0, 661 35768.0, 245 658.0, 378 918.0, 913 35781.0, 906 35770.0, 658 35765.0, 266 35769.0, 324 630.0, 793 949.0, 1134 1032.0, 1132 1080.0, 1014 35778.0, 680 19986.0, 446 628.0, 524 776.0, 254 35770.0, 404 19079.0, 1025 35773.0, 617 679.0, 283 35987.0, 1153 444.0, 513 35768.0, 572 776.0, 705 20150.0, 1098 35786.0, 959 35786.0, 1074 35744.0, 83 35778.0, 634 35778.0, 138 484.0, 1050 35764.0, 346 1413.0, 14 480.0, 455 35775.0, 265 35777.0, 449 499.0, 333 1407.0, 650 35784.0, 639 443.0, 569 776.0, 326 35774.0, 746 594.0, 647 964.0, 45 35777.0, 53 35595.0, 559 776.0, 78 35778.0, 1037 35783.0, 924 599.0, 562 776.0, 1119 1193.0, 542 776.0, 912 35850.0, 664 817.0, 1048 35773.0, 315 35771.0, 1031 35781.0, 914 35783.0, 480 35777.0, 132 35777.0, 753 769.0, 900 638.0, 1013 710.0, 26 599.0, 766 788.0, 123 611.0, 203 35771.0, 667 35776.0, 392 19134.0, 1045 474.0, 577 776.0, 807 708.0, 140 594.0, 321 23240.0, 795 954.0, 441 670.0, 700 20063.0, 268 35780.0, 840 415.0, 16 499.0, 320 23242.0, 133 729.0, 288 488.0, 381 19134.0, 605 839.0, 163 669.0, 81 35776.0, 120 501.0, 643 853.0, 79 35782.0, 211 35780.0, 38 35777.0, 173 815.0, 126 632.0, 981 622.0, 1161 35773.0, 421 1482.0, 593 35712.0, 636 984.0, 1160 35778.0, 98 35778.0, 422 1480.0, 423 1493.0, 614 35776.0, 762 789.0, 582 776.0, 666 35763.0, 1123 35774.0, 554 776.0, 409 19130.0, 574 747.0, 595 710.0, 124 500.0, 747 35773.0, 171 630.0, 87 35772.0, 169 622.0, 653 35775.0, 679 20104.0, 843 1477.0, 160 820.0, 30 35786.0, 400 19098.0, 767 788.0, 896 1012.0, 928 594.0, 696 20184.0, 1027 35768.0, 738 8062.0, 809 500.0, 509 35775.0, 736 624.0, 207 35774.0, 874 696.0, 434 782.0, 1130 469.0, 690 20089.0, 194 842.0, 1047 35777.0, 511 35773.0, 73 35778.0, 486 35778.0, 336 1412.0, 96 35770.0, 837 564.0, 1136 1080.0, 937 785.0, 10 35771.0, 660 35753.0, 272 35756.0, 499 35779.0, 488 35776.0, 903 35761.0, 386 19094.0, 270 35766.0, 576 776.0, 717 35700.0, 543 776.0, 271 35775.0, 18 443.0, 395 18922.0, 403 19116.0, 469 35763.0, 105 555.0, 185 35785.0, 52 35633.0, 1051 35766.0, 545 776.0, 633 900.0, 114 594.0, 1099 35785.0, 968 443.0, 253 35772.0, 612 257.0, 1151 1479.0, 1015 35772.0, 628 700.0, 748 35778.0, 209 35756.0, 147 35670.0, 655 819.0, 1022 35780.0, 750 35774.0, 852 1473.0, 425 435.0, 1158 35775.0, 864 468.0, 67 594.0, 1108 593.0, 296 1101.0, 602 33782.0, 318 35775.0, 161 764.0, 651 35770.0, 725 35778.0, 372 1413.0, 1092 35775.0, 406 19142.0, 438 679.0, 780 396.0, 711 691.0, 1041 35777.0, 71 35864.0, 939 739.0, 579 776.0, 877 651.0, 722 845.0, 42 35778.0, 919 686.0, 80 35773.0, 885 538.0, 1078 696.0, 986 500.0, 1035 35778.0, 714 35795.0, 677 19959.0, 199 559.0, 841 1436.0, 754 770.0, 791 960.0, 1029 405.0, 861 17007.0, 591 748.0, 1021 35732.0, 744 340.0, 960 567.0, 37 35774.0, 183 35785.0, 1139 1201.0, 965 443.0, 892 1015.0, 432 35757.0, 379 1370.0, 63 604.0, 212 35897.0, 94 35781.0, 362 1413.0, 8 35714.0, 686 20451.0, 692 19938.0, 764 788.0, 246 35761.0, 190 35777.0, 1004 614.0, 1036 507.0, 549 776.0, 922 583.0, 177 814.0, 915 35757.0, 936 586.0, 820 32618.0, 49 35773.0, 858 702.0, 390 19147.0, 84 35780.0}}, :Type_of_Orbit #inferenceql.inference.gpm.column.Column{:var-name :Type_of_Orbit, :stattype :categorical, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 11, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 11, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 4, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 4, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 238, :counts {"Sun-Synchronous" 30, "Deep Highly Eccentric" 0, "Polar" 76, "Intermediate" 132, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 1, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 22, :counts {"Sun-Synchronous" 7, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 15, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 239, :counts {"Sun-Synchronous" 225, "Deep Highly Eccentric" 0, "Polar" 13, "Intermediate" 0, "Molniya" 0, "Retrograde" 1, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Type_of_Orbit nil} {:cluster_80 1, :cluster_66 3, :cluster_32 1, :cluster_75 1, :cluster_0 7, :cluster_76 1, :cluster_62 4, :cluster_92 1, :cluster_82 1, :cluster_3 4, :cluster_6 40, :cluster_77 1, :cluster_85 7, :cluster_59 4, :cluster_4 433, :cluster_9 7, :cluster_2 56, :cluster_23 72, :cluster_74 2}, {:Type_of_Orbit "Intermediate"} {:cluster_9 15, :cluster_6 132}, {:Type_of_Orbit "Sun-Synchronous"} {:cluster_2 225, :cluster_6 30, :cluster_9 7, :cluster_4 1}, {:Type_of_Orbit "Polar"} {:cluster_6 76, :cluster_2 13}, {:Type_of_Orbit "Deep Highly Eccentric"} {:cluster_92 1, :cluster_81 1, :cluster_93 1, :cluster_78 4, :cluster_79 1, :cluster_94 1}, {:Type_of_Orbit "Molniya"} {:cluster_62 11}, {:Type_of_Orbit "Retrograde"} {:cluster_2 1}, {:Type_of_Orbit "Cislunar"} {:cluster_73 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.2318597278836194 1.5174783891815051 1.869320515566402 2.302740661632895 2.836653484825644 3.4943591899174393 4.304560360819322 5.302614554737505 6.532077322470664 8.046602992973474 9.912286173311823 12.210546148160468 15.041680055383333 18.52923989993698 22.825424421026675 28.117721116114044 34.63708828280375 42.668034146735536 52.56103293332663 64.74781972652968 79.76023158938051 98.25341718162875 121.03442775299695 149.09743723635643 183.6671284621231 226.25213888851673 278.71089824429515 343.33273126941657 422.9377649150834)}, :metadata ["Sun-Synchronous" "Deep Highly Eccentric" "Polar" "Intermediate" "Molniya" "Retrograde" "Cislunar"], :data {0 nil, 893 "Intermediate", 920 "Sun-Synchronous", 558 "Polar", 453 "Sun-Synchronous", 584 "Polar", 487 nil, 637 nil, 972 nil, 519 "Deep Highly Eccentric", 1097 nil, 357 "Intermediate", 716 nil, 950 nil, 275 nil, 530 "Polar", 929 "Sun-Synchronous", 789 "Intermediate", 389 nil, 586 "Polar", 410 nil, 433 nil, 765 "Intermediate", 521 "Polar", 451 "Sun-Synchronous", 291 nil, 443 nil, 798 "Intermediate", 779 "Sun-Synchronous", 970 "Intermediate", 249 nil, 638 nil, 299 nil, 1101 nil, 121 "Sun-Synchronous", 734 nil, 287 nil, 65 "Sun-Synchronous", 1086 nil, 702 nil, 70 nil, 949 nil, 218 nil, 648 "Molniya", 1070 nil, 812 "Sun-Synchronous", 62 "Sun-Synchronous", 74 "Sun-Synchronous", 774 "Intermediate", 475 nil, 497 nil, 1009 "Polar", 580 "Polar", 1138 "Sun-Synchronous", 891 "Intermediate", 164 "Sun-Synchronous", 1040 nil, 282 nil, 769 "Intermediate", 799 "Sun-Synchronous", 273 nil, 1147 "Sun-Synchronous", 186 nil, 430 nil, 641 nil, 529 "Polar", 898 "Intermediate", 370 "Intermediate", 834 "Intermediate", 233 nil, 298 nil, 188 nil, 240 "Sun-Synchronous", 110 nil, 130 nil, 982 nil, 620 nil, 311 nil, 931 "Sun-Synchronous", 882 nil, 128 "Sun-Synchronous", 399 nil, 989 "Sun-Synchronous", 377 "Intermediate", 468 nil, 259 nil, 210 nil, 229 nil, 153 nil, 621 nil, 213 nil, 670 nil, 977 nil, 343 "Intermediate", 958 nil, 887 "Intermediate", 472 nil, 7 nil, 894 "Intermediate", 59 nil, 934 nil, 473 nil, 1010 "Polar", 86 nil, 756 "Intermediate", 830 nil, 613 nil, 491 nil, 154 nil, 20 nil, 224 nil, 355 "Intermediate", 592 "Sun-Synchronous", 1146 "Sun-Synchronous", 610 "Sun-Synchronous", 806 "Sun-Synchronous", 571 "Polar", 466 "Molniya", 72 nil, 454 nil, 888 "Intermediate", 463 "Sun-Synchronous", 851 "Intermediate", 770 "Intermediate", 814 "Sun-Synchronous", 859 "Sun-Synchronous", 58 nil, 964 nil, 980 nil, 1001 "Sun-Synchronous", 205 nil, 555 "Polar", 552 "Polar", 60 "Sun-Synchronous", 1102 nil, 835 "Sun-Synchronous", 459 "Sun-Synchronous", 175 nil, 322 nil, 510 nil, 1052 nil, 1121 nil, 662 nil, 27 nil, 352 "Intermediate", 493 nil, 899 "Intermediate", 416 "Intermediate", 777 "Intermediate", 694 nil, 1 nil, 631 "Intermediate", 854 "Intermediate", 69 nil, 101 nil, 24 nil, 901 nil, 547 "Polar", 102 nil, 788 "Intermediate", 1106 "Sun-Synchronous", 713 nil, 1110 nil, 385 nil, 988 nil, 135 "Sun-Synchronous", 1065 "Intermediate", 397 nil, 1011 "Polar", 1006 nil, 773 "Intermediate", 490 nil, 752 "Intermediate", 354 "Intermediate", 884 nil, 360 "Intermediate", 998 "Intermediate", 961 nil, 55 nil, 568 "Polar", 797 "Intermediate", 688 nil, 763 "Intermediate", 269 nil, 676 nil, 448 nil, 527 "Polar", 206 nil, 1075 nil, 966 nil, 165 "Sun-Synchronous", 715 nil, 387 nil, 652 nil, 683 nil, 85 nil, 721 "Sun-Synchronous", 862 "Sun-Synchronous", 615 nil, 681 nil, 225 nil, 865 nil, 297 nil, 39 nil, 805 "Sun-Synchronous", 274 nil, 88 nil, 217 "Sun-Synchronous", 1128 "Sun-Synchronous", 46 nil, 682 nil, 508 nil, 1157 nil, 149 nil, 415 "Sun-Synchronous", 239 "Sun-Synchronous", 478 nil, 878 "Sun-Synchronous", 157 nil, 345 "Intermediate", 300 nil, 743 "Retrograde", 921 "Sun-Synchronous", 1039 "Sun-Synchronous", 4 nil, 550 "Polar", 1115 nil, 204 nil, 470 nil, 1164 nil, 646 "Molniya", 77 nil, 106 "Sun-Synchronous", 197 "Sun-Synchronous", 405 nil, 897 nil, 726 nil, 776 "Intermediate", 940 "Sun-Synchronous", 755 "Intermediate", 902 nil, 518 "Intermediate", 232 "Sun-Synchronous", 260 nil, 823 nil, 1125 nil, 267 nil, 119 "Sun-Synchronous", 319 nil, 534 "Polar", 222 nil, 603 nil, 293 "Sun-Synchronous", 95 nil, 450 nil, 329 nil, 144 nil, 1087 nil, 504 nil, 819 "Sun-Synchronous", 818 "Sun-Synchronous", 505 nil, 723 "Polar", 1071 nil, 1008 "Intermediate", 992 "Intermediate", 176 nil, 863 "Sun-Synchronous", 471 nil, 349 "Intermediate", 512 nil, 710 nil, 1058 nil, 192 "Sun-Synchronous", 54 "Sun-Synchronous", 92 nil, 221 nil, 141 "Sun-Synchronous", 502 nil, 871 nil, 464 "Sun-Synchronous", 801 "Sun-Synchronous", 307 nil, 935 nil, 758 "Intermediate", 290 nil, 1156 "Sun-Synchronous", 1144 "Sun-Synchronous", 627 "Sun-Synchronous", 517 nil, 1122 nil, 361 "Intermediate", 264 nil, 137 nil, 356 "Intermediate", 728 nil, 976 nil, 678 nil, 327 "Sun-Synchronous", 234 "Polar", 856 "Intermediate", 817 "Sun-Synchronous", 1017 nil, 104 "Sun-Synchronous", 353 "Intermediate", 1145 "Sun-Synchronous", 15 nil, 48 nil, 945 nil, 759 "Intermediate", 1066 "Molniya", 242 "Sun-Synchronous", 832 "Sun-Synchronous", 969 "Sun-Synchronous", 50 nil, 956 nil, 917 nil, 1030 nil, 557 "Polar", 251 nil, 394 nil, 116 nil, 585 "Polar", 583 "Polar", 75 nil, 437 "Sun-Synchronous", 516 nil, 1062 nil, 994 "Intermediate", 930 "Sun-Synchronous", 967 "Sun-Synchronous", 687 nil, 159 nil, 848 "Intermediate", 995 "Intermediate", 1096 nil, 1159 nil, 709 nil, 99 "Sun-Synchronous", 540 "Polar", 645 nil, 749 nil, 479 nil, 1081 "Molniya", 890 "Intermediate", 1046 "Sun-Synchronous", 630 "Intermediate", 916 nil, 815 "Sun-Synchronous", 1080 nil, 281 nil, 402 nil, 669 nil, 781 "Sun-Synchronous", 740 nil, 1012 "Intermediate", 975 nil, 429 nil, 309 nil, 458 "Sun-Synchronous", 21 nil, 388 nil, 495 nil, 952 nil, 626 "Intermediate", 875 "Sun-Synchronous", 31 "Sun-Synchronous", 113 nil, 32 nil, 811 "Sun-Synchronous", 827 nil, 407 nil, 398 nil, 136 "Sun-Synchronous", 691 nil, 847 "Intermediate", 825 nil, 139 "Sun-Synchronous", 506 nil, 396 nil, 460 "Sun-Synchronous", 483 "Deep Highly Eccentric", 589 "Polar", 581 "Polar", 932 "Sun-Synchronous", 174 "Sun-Synchronous", 578 "Polar", 855 "Intermediate", 331 "Deep Highly Eccentric", 363 "Intermediate", 1038 nil, 284 nil, 208 nil, 305 nil, 1019 "Deep Highly Eccentric", 955 nil, 796 "Intermediate", 708 "Sun-Synchronous", 182 "Sun-Synchronous", 256 nil, 1107 "Sun-Synchronous", 1109 nil, 657 nil, 514 nil, 1103 nil, 731 nil, 619 nil, 985 nil, 485 nil, 214 nil, 193 "Sun-Synchronous", 685 nil, 804 "Sun-Synchronous", 869 nil, 1002 nil, 1104 "Cislunar", 836 "Sun-Synchronous", 1131 "Sun-Synchronous", 785 nil, 635 nil, 442 nil, 1073 nil, 561 "Polar", 954 nil, 656 nil, 607 nil, 241 "Sun-Synchronous", 314 nil, 782 "Sun-Synchronous", 226 nil, 235 "Polar", 672 nil, 420 "Intermediate", 418 "Intermediate", 262 nil, 1016 nil, 263 nil, 304 "Intermediate", 401 nil, 673 "Polar", 40 nil, 129 nil, 600 nil, 729 nil, 1042 nil, 467 "Sun-Synchronous", 1033 nil, 1149 "Sun-Synchronous", 445 nil, 317 nil, 1091 "Sun-Synchronous", 1028 nil, 294 nil, 91 nil, 1044 nil, 810 "Sun-Synchronous", 1137 "Sun-Synchronous", 364 "Intermediate", 987 "Sun-Synchronous", 880 "Intermediate", 515 nil, 412 nil, 553 "Polar", 974 nil, 341 "Intermediate", 117 nil, 1000 nil, 1095 nil, 665 "Sun-Synchronous", 523 "Polar", 172 "Sun-Synchronous", 601 nil, 108 "Sun-Synchronous", 156 nil, 358 "Intermediate", 308 nil, 908 "Sun-Synchronous", 649 "Polar", 531 "Polar", 1085 nil, 923 "Sun-Synchronous", 1111 nil, 223 nil, 419 "Intermediate", 365 "Intermediate", 944 "Sun-Synchronous", 181 "Sun-Synchronous", 417 "Intermediate", 1082 "Molniya", 979 "Sun-Synchronous", 278 nil, 56 nil, 942 nil, 33 nil, 13 nil, 1043 nil, 867 nil, 22 nil, 618 "Sun-Synchronous", 1141 "Sun-Synchronous", 1093 nil, 380 nil, 257 nil, 1061 "Sun-Synchronous", 338 "Intermediate", 1024 nil, 500 nil, 909 "Sun-Synchronous", 1018 "Sun-Synchronous", 993 "Intermediate", 1089 "Sun-Synchronous", 168 "Sun-Synchronous", 833 nil, 496 nil, 1056 nil, 1129 "Sun-Synchronous", 947 nil, 347 "Intermediate", 501 nil, 1007 nil, 1077 "Sun-Synchronous", 596 "Intermediate", 872 nil, 792 "Intermediate", 90 nil, 237 "Polar", 826 "Polar", 292 "Sun-Synchronous", 109 nil, 216 "Sun-Synchronous", 191 nil, 498 nil, 829 nil, 761 "Intermediate", 1072 nil, 375 "Intermediate", 525 "Polar", 367 "Intermediate", 143 nil, 742 "Sun-Synchronous", 178 "Sun-Synchronous", 640 nil, 247 nil, 328 nil, 391 nil, 990 "Intermediate", 167 "Sun-Synchronous", 707 nil, 36 nil, 41 nil, 474 nil, 187 nil, 551 "Polar", 1118 nil, 996 "Intermediate", 528 "Polar", 971 nil, 599 nil, 376 "Intermediate", 195 "Sun-Synchronous", 889 "Intermediate", 316 nil, 668 "Sun-Synchronous", 428 nil, 303 "Sun-Synchronous", 671 nil, 794 "Intermediate", 905 "Molniya", 368 "Intermediate", 560 "Polar", 565 "Polar", 310 nil, 366 "Intermediate", 118 nil, 522 "Polar", 150 nil, 886 "Intermediate", 313 nil, 384 nil, 567 "Polar", 238 "Sun-Synchronous", 846 "Intermediate", 962 nil, 1127 "Sun-Synchronous", 845 "Intermediate", 196 "Sun-Synchronous", 162 "Sun-Synchronous", 393 nil, 184 nil, 219 nil, 999 nil, 461 "Sun-Synchronous", 1032 nil, 89 nil, 100 nil, 426 "Polar", 604 nil, 477 nil, 844 "Intermediate", 541 "Polar", 351 "Intermediate", 243 "Sun-Synchronous", 131 "Deep Highly Eccentric", 790 "Intermediate", 963 nil, 1053 nil, 629 "Sun-Synchronous", 873 "Sun-Synchronous", 122 "Sun-Synchronous", 933 "Sun-Synchronous", 43 nil, 1067 "Intermediate", 231 nil, 61 "Sun-Synchronous", 654 "Polar", 883 nil, 1003 nil, 598 nil, 413 nil, 29 nil, 784 nil, 800 "Sun-Synchronous", 151 nil, 369 "Intermediate", 348 "Intermediate", 1124 nil, 575 "Polar", 693 nil, 44 nil, 739 nil, 258 nil, 250 nil, 674 "Polar", 539 "Polar", 301 nil, 838 nil, 424 nil, 93 nil, 6 nil, 684 nil, 1026 nil, 951 nil, 573 "Polar", 408 nil, 563 "Polar", 850 "Intermediate", 616 "Sun-Synchronous", 866 nil, 111 nil, 997 "Intermediate", 689 nil, 28 nil, 456 "Sun-Synchronous", 374 "Intermediate", 608 "Sun-Synchronous", 737 nil, 1155 "Sun-Synchronous", 548 "Polar", 538 "Polar", 1034 nil, 895 "Intermediate", 411 nil, 957 nil, 134 "Sun-Synchronous", 943 nil, 64 "Sun-Synchronous", 623 nil, 1135 "Sun-Synchronous", 1133 "Sun-Synchronous", 465 "Molniya", 816 "Sun-Synchronous", 334 "Intermediate", 1150 "Sun-Synchronous", 323 nil, 189 nil, 280 nil, 198 "Sun-Synchronous", 155 nil, 295 nil, 808 "Sun-Synchronous", 248 nil, 587 "Polar", 285 nil, 507 nil, 227 nil, 724 "Sun-Synchronous", 476 nil, 941 "Sun-Synchronous", 911 nil, 853 "Intermediate", 494 nil, 220 nil, 842 "Intermediate", 103 nil, 697 nil, 611 "Sun-Synchronous", 1105 "Sun-Synchronous", 170 nil, 1154 "Sun-Synchronous", 51 nil, 25 "Sun-Synchronous", 261 nil, 768 "Intermediate", 822 nil, 201 "Sun-Synchronous", 904 "Molniya", 590 "Polar", 489 nil, 778 "Sun-Synchronous", 166 "Sun-Synchronous", 447 "Polar", 34 nil, 252 nil, 978 "Sun-Synchronous", 775 "Intermediate", 325 nil, 1005 nil, 594 "Sun-Synchronous", 436 "Sun-Synchronous", 828 nil, 535 "Polar", 813 "Sun-Synchronous", 146 nil, 741 "Sun-Synchronous", 1060 "Intermediate", 876 "Sun-Synchronous", 1064 "Sun-Synchronous", 228 nil, 907 nil, 306 nil, 125 "Sun-Synchronous", 276 "Sun-Synchronous", 340 "Intermediate", 148 nil, 1143 "Sun-Synchronous", 482 nil, 1049 nil, 622 nil, 588 "Polar", 17 nil, 312 nil, 606 nil, 3 nil, 1148 "Sun-Synchronous", 520 nil, 1088 nil, 760 "Intermediate", 720 "Sun-Synchronous", 1126 "Sun-Synchronous", 286 "Sun-Synchronous", 279 nil, 879 "Sun-Synchronous", 1020 nil, 536 "Polar", 1023 nil, 663 "Sun-Synchronous", 12 nil, 440 "Intermediate", 332 "Sun-Synchronous", 330 "Sun-Synchronous", 1162 nil, 382 nil, 152 nil, 1112 nil, 1140 "Sun-Synchronous", 544 "Polar", 803 "Sun-Synchronous", 642 nil, 435 nil, 342 "Intermediate", 703 nil, 783 nil, 695 nil, 973 nil, 2 nil, 948 nil, 66 "Sun-Synchronous", 484 nil, 439 nil, 236 "Polar", 556 "Polar", 373 "Intermediate", 1083 "Molniya", 142 nil, 359 "Intermediate", 727 nil, 371 "Intermediate", 772 "Intermediate", 444 nil, 1057 nil, 570 "Polar", 757 "Intermediate", 107 "Sun-Synchronous", 1094 nil, 532 "Polar", 984 nil, 23 nil, 1079 "Sun-Synchronous", 745 nil, 719 "Sun-Synchronous", 230 nil, 625 "Intermediate", 47 nil, 526 "Polar", 180 "Sun-Synchronous", 786 nil, 1068 "Sun-Synchronous", 1166 "Sun-Synchronous", 870 nil, 537 "Polar", 659 nil, 158 nil, 991 "Intermediate", 350 "Intermediate", 35 nil, 1116 "Deep Highly Eccentric", 849 "Intermediate", 1120 nil, 644 nil, 1069 nil, 881 "Sun-Synchronous", 127 "Sun-Synchronous", 927 "Sun-Synchronous", 675 nil, 1055 nil, 383 nil, 533 "Polar", 1100 nil, 910 nil, 302 nil, 564 "Polar", 701 nil, 1090 "Sun-Synchronous", 566 "Polar", 821 "Sun-Synchronous", 787 "Sun-Synchronous", 82 nil, 76 nil, 735 nil, 492 nil, 718 nil, 771 "Intermediate", 215 "Sun-Synchronous", 97 nil, 704 nil, 277 nil, 926 "Sun-Synchronous", 751 nil, 1114 nil, 19 nil, 335 "Intermediate", 597 nil, 938 "Sun-Synchronous", 57 nil, 609 "Sun-Synchronous", 202 nil, 68 nil, 452 "Intermediate", 1054 nil, 200 "Sun-Synchronous", 1142 "Sun-Synchronous", 868 nil, 11 nil, 115 nil, 946 nil, 1063 "Sun-Synchronous", 983 nil, 339 "Intermediate", 431 nil, 462 "Sun-Synchronous", 337 "Intermediate", 698 nil, 255 nil, 503 nil, 546 "Polar", 9 nil, 953 nil, 857 "Deep Highly Eccentric", 706 nil, 632 nil, 457 "Sun-Synchronous", 427 "Sun-Synchronous", 145 nil, 5 "Sun-Synchronous", 733 nil, 1163 nil, 1165 "Sun-Synchronous", 1152 "Sun-Synchronous", 624 "Intermediate", 831 nil, 244 nil, 918 "Sun-Synchronous", 824 nil, 289 nil, 112 nil, 925 "Sun-Synchronous", 1059 "Sun-Synchronous", 730 nil, 699 nil, 712 "Sun-Synchronous", 1076 nil, 1113 nil, 414 nil, 839 "Sun-Synchronous", 802 "Sun-Synchronous", 1084 nil, 860 "Deep Highly Eccentric", 1117 "Sun-Synchronous", 179 nil, 344 "Intermediate", 481 nil, 732 nil, 661 nil, 245 "Sun-Synchronous", 378 "Intermediate", 913 nil, 906 nil, 658 nil, 266 nil, 324 nil, 793 "Intermediate", 1134 "Sun-Synchronous", 1132 "Sun-Synchronous", 1014 nil, 680 nil, 446 "Polar", 524 "Polar", 254 nil, 404 nil, 1025 nil, 617 "Sun-Synchronous", 283 nil, 1153 "Sun-Synchronous", 513 nil, 572 "Polar", 705 nil, 1098 nil, 959 nil, 1074 nil, 83 nil, 634 nil, 138 "Sun-Synchronous", 1050 nil, 346 "Intermediate", 14 nil, 455 nil, 265 nil, 449 nil, 333 "Intermediate", 650 nil, 639 nil, 569 "Polar", 326 nil, 746 "Sun-Synchronous", 647 "Molniya", 45 nil, 53 nil, 559 "Polar", 78 nil, 1037 nil, 924 "Sun-Synchronous", 562 "Polar", 1119 "Sun-Synchronous", 542 "Polar", 912 nil, 664 "Sun-Synchronous", 1048 nil, 315 nil, 1031 nil, 914 nil, 480 nil, 132 nil, 753 "Intermediate", 900 "Intermediate", 1013 "Sun-Synchronous", 26 nil, 766 "Intermediate", 123 "Sun-Synchronous", 203 nil, 667 nil, 392 nil, 1045 nil, 577 "Polar", 807 "Sun-Synchronous", 140 "Sun-Synchronous", 321 nil, 795 "Intermediate", 441 nil, 700 nil, 268 nil, 840 nil, 16 nil, 320 nil, 133 "Sun-Synchronous", 288 nil, 381 nil, 605 nil, 163 "Sun-Synchronous", 81 nil, 120 "Sun-Synchronous", 643 nil, 79 nil, 211 nil, 38 nil, 173 "Sun-Synchronous", 126 "Sun-Synchronous", 981 nil, 1161 nil, 421 nil, 593 nil, 636 "Sun-Synchronous", 1160 nil, 98 nil, 422 "Intermediate", 423 nil, 614 nil, 762 "Intermediate", 582 "Polar", 666 nil, 1123 nil, 554 "Polar", 409 nil, 574 "Polar", 595 "Sun-Synchronous", 124 "Sun-Synchronous", 747 nil, 171 "Sun-Synchronous", 87 nil, 169 "Sun-Synchronous", 653 nil, 679 nil, 843 "Intermediate", 160 "Sun-Synchronous", 30 nil, 400 nil, 767 "Intermediate", 896 nil, 928 "Sun-Synchronous", 696 nil, 1027 nil, 738 nil, 809 "Sun-Synchronous", 509 nil, 736 "Sun-Synchronous", 207 nil, 874 "Sun-Synchronous", 434 nil, 1130 "Sun-Synchronous", 690 nil, 194 "Sun-Synchronous", 1047 nil, 511 nil, 73 nil, 486 nil, 336 "Intermediate", 96 nil, 837 nil, 1136 "Sun-Synchronous", 937 "Sun-Synchronous", 10 nil, 660 nil, 272 nil, 499 nil, 488 nil, 903 nil, 386 nil, 270 nil, 576 "Polar", 717 nil, 543 "Polar", 271 nil, 18 nil, 395 nil, 403 nil, 469 nil, 105 "Sun-Synchronous", 185 nil, 52 nil, 1051 nil, 545 "Polar", 633 "Sun-Synchronous", 114 "Sun-Synchronous", 1099 nil, 968 nil, 253 nil, 612 "Sun-Synchronous", 1151 "Intermediate", 1015 nil, 628 "Sun-Synchronous", 748 nil, 209 nil, 147 nil, 655 "Polar", 1022 nil, 750 nil, 852 "Intermediate", 425 "Polar", 1158 nil, 864 nil, 67 "Sun-Synchronous", 1108 "Sun-Synchronous", 296 nil, 602 nil, 318 nil, 161 "Sun-Synchronous", 651 nil, 725 nil, 372 "Intermediate", 1092 nil, 406 nil, 438 "Sun-Synchronous", 780 nil, 711 "Sun-Synchronous", 1041 nil, 71 nil, 939 nil, 579 "Polar", 877 "Sun-Synchronous", 722 "Sun-Synchronous", 42 nil, 919 "Sun-Synchronous", 80 nil, 885 nil, 1078 "Sun-Synchronous", 986 nil, 1035 nil, 714 nil, 677 nil, 199 "Sun-Synchronous", 841 "Intermediate", 754 "Intermediate", 791 "Intermediate", 1029 nil, 861 "Deep Highly Eccentric", 591 "Polar", 1021 nil, 744 nil, 960 nil, 37 nil, 183 nil, 1139 "Sun-Synchronous", 965 nil, 892 "Intermediate", 432 nil, 379 "Intermediate", 63 "Sun-Synchronous", 212 nil, 94 nil, 362 "Intermediate", 8 nil, 686 nil, 692 nil, 764 "Intermediate", 246 nil, 190 nil, 1004 "Sun-Synchronous", 1036 nil, 549 "Polar", 922 "Sun-Synchronous", 177 "Sun-Synchronous", 915 nil, 936 "Sun-Synchronous", 820 nil, 49 nil, 858 "Sun-Synchronous", 390 nil, 84 nil}}, :Purpose #inferenceql.inference.gpm.column.Column{:var-name :Purpose, :stattype :categorical, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 3, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 3, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 7, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 6, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 1, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 15, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 5, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 2, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 3, "Technology Demonstration" 0, "Earth Science" 2, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 3, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 2, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 4, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 1, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 2, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 4, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 4, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 278, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 1, "Communications" 187, "Communications/Navigation" 0, "Communications/Maritime Tracking" 1, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 1, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 4, "Communications/Earth Science" 0, "Technology Development" 38, "Remote Sensing/Technology Development" 0, "Navigation" 10, "Remote Sensing" 5, "Electronic Surveillance/Ocean" 1, "Scientific Research" 3, "Space Physics" 0, "Reconnaissance" 3, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 5, "Electronic Intelligence/Technology Development" 1, "Earth Observation" 4, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 1, "Earth/Space Science" 0, "Surveillance" 4, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 5, "Radar Calibration" 1, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 1, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 2}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 7, :counts {"Navigation/Global Positioning" 5, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 2, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 4, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 4, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 434, :counts {"Navigation/Global Positioning" 5, "Earth Science/Meteorology" 7, "Technology Development/Communications" 0, "Communications" 390, "Communications/Navigation" 1, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 1, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 1, "Communications/Earth Science" 1, "Technology Development" 3, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 5, "Communications/Technology Development" 2, "Earth/Space Science" 0, "Surveillance" 2, "Communications/Research" 1, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 1, "Space Observation" 0, "Early Warning" 6, "Technology Demonstration" 0, "Earth Science" 3, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 5, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 29, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 2, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 11, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 7, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 3, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 3, "Communications/Research" 0, "Astrophysics/Planetary Science" 1, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 1, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 295, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 10, "Technology Development/Communications" 0, "Communications" 5, "Communications/Navigation" 0, "Communications/Maritime Tracking" 7, "Solar Physics" 3, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 1, "Amateur Radio" 1, "Maritime Tracking/Technology Development" 1, "Maritime Tracking" 1, "Space Science" 7, "Communications/Earth Science" 0, "Technology Development" 75, "Remote Sensing/Technology Development" 2, "Navigation" 0, "Remote Sensing" 51, "Electronic Surveillance/Ocean" 0, "Scientific Research" 6, "Space Physics" 8, "Reconnaissance" 16, "Remote Sensing/Reconnaissance" 4, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 3, "Earth Observation" 45, "Earth Observation/Research" 3, "Meteorology" 6, "Communications/Technology Development" 0, "Earth/Space Science" 1, "Surveillance" 3, "Communications/Research" 1, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 2, "Early Warning" 0, "Technology Demonstration" 2, "Earth Science" 18, "Radar Calibration" 0, "Remote Sensing/Imaging" 1, "Earth Observation/Technology Development" 5, "Remote Sensing/Research" 4, "Astrophysics/Earth Science" 1, "Communications (experimental)" 1, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 72, :counts {"Navigation/Global Positioning" 72, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 2, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 1, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Purpose "Earth Science"} {:cluster_4 3, :cluster_62 2, :cluster_2 18, :cluster_6 5, :cluster_0 1}, {:Purpose "Early Warning"} {:cluster_4 6, :cluster_62 3, :cluster_3 1}, {:Purpose "Earth Observation"} {:cluster_2 45, :cluster_9 3, :cluster_6 4}, {:Purpose "Communications"} {:cluster_80 1, :cluster_32 1, :cluster_75 1, :cluster_76 1, :cluster_62 5, :cluster_3 1, :cluster_6 187, :cluster_77 1, :cluster_59 4, :cluster_4 390, :cluster_2 5, :cluster_74 1}, {:Purpose "Astrophysics"} {:cluster_6 5, :cluster_92 1, :cluster_73 1, :cluster_79 1, :cluster_9 1, :cluster_2 1}, {:Purpose "Earth Science/Meteorology"} {:cluster_4 7, :cluster_2 10}, {:Purpose "Radar Calibration"} {:cluster_6 1}, {:Purpose "Maritime Tracking"} {:cluster_2 1}, {:Purpose "Astrophysics/Planetary Science"} {:cluster_9 1}, {:Purpose "Space Physics"} {:cluster_92 1, :cluster_2 8, :cluster_81 1, :cluster_93 1, :cluster_78 4, :cluster_66 3, :cluster_82 1, :cluster_94 1}, {:Purpose "Earth Observation/Meteorology/Communications"} {:cluster_4 1}, {:Purpose "Electronic Intelligence/Technology Development"} {:cluster_2 3, :cluster_6 1}, {:Purpose "Technology Development/Communications"} {:cluster_6 1}, {:Purpose "Remote Sensing/Earth Science"} {:cluster_2 1}, {:Purpose "Remote Sensing/Research"} {:cluster_2 4}, {:Purpose "Communications/Navigation"} {:cluster_4 1}, {:Purpose "Meteorology/Earth Observation"} {:cluster_6 2}, {:Purpose "Navigation"} {:cluster_6 10, :cluster_85 2}, {:Purpose "Technology Demonstration"} {:cluster_2 2}, {:Purpose "Space Observation"} {:cluster_2 2}, {:Purpose "Communications/Maritime Tracking"} {:cluster_2 7, :cluster_6 1}, {:Purpose "Reconnaissance"} {:cluster_9 7, :cluster_2 16, :cluster_6 3}, {:Purpose "Earth Observation/Research"} {:cluster_2 3}, {:Purpose "Amateur Radio"} {:cluster_2 1, :cluster_6 1}, {:Purpose "Maritime Tracking/Technology Development"} {:cluster_2 1}, {:Purpose "Remote Sensing"} {:cluster_2 51, :cluster_6 5}, {:Purpose "Communications (experimental)"} {:cluster_2 1, :cluster_6 1}, {:Purpose "Remote Sensing/Reconnaissance"} {:cluster_2 4}, {:Purpose "Communications/Research"} {:cluster_4 1, :cluster_2 1}, {:Purpose "Electronic Surveillance/Ocean"} {:cluster_9 11, :cluster_6 1}, {:Purpose "Earth/Space Science"} {:cluster_2 1}, {:Purpose "Surveillance"} {:cluster_6 4, :cluster_4 2, :cluster_9 3, :cluster_2 3}, {:Purpose "Meteorology/Navigation"} {:cluster_4 1}, {:Purpose "Scientific Research"} {:cluster_6 3, :cluster_2 6}, {:Purpose "Space Science"} {:cluster_2 7, :cluster_4 1, :cluster_6 4}, {:Purpose "Communications/Technology Development"} {:cluster_6 1, :cluster_4 2}, {:Purpose "Remote Sensing/Imaging"} {:cluster_2 1}, {:Purpose "Solar Physics"} {:cluster_2 3}, {:Purpose "Meteorology"} {:cluster_4 5, :cluster_2 6}, {:Purpose "Earth Observation/Technology Development"} {:cluster_2 5}, {:Purpose "Electronic Surveillance"} {:cluster_4 5, :cluster_62 3, :cluster_9 1, :cluster_3 2}, {:Purpose "Remote Sensing/Technology Development"} {:cluster_2 2}, {:Purpose "Navigation/Global Positioning"} {:cluster_23 72, :cluster_85 5, :cluster_4 5}, {:Purpose "Astrophysics/Earth Science"} {:cluster_2 1}, {:Purpose "Communications/Earth Science"} {:cluster_4 1}, {:Purpose "Technology Development"} {:cluster_2 75, :cluster_0 6, :cluster_6 38, :cluster_62 2, :cluster_4 3, :cluster_9 2, :cluster_74 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Technology Development" "Communications" "Solar Physics" "Electronic Surveillance" "Scientific Research" "Earth Science" "Maritime Tracking/Technology Development" "Space Physics" "Communications/Technology Development" "Earth Observation" "Amateur Radio" "Communications (experimental)" "Communications/Maritime Tracking" "Communications/Research" "Remote Sensing/Technology Development" "Remote Sensing" "Space Science" "Astrophysics" "Navigation/Global Positioning" "Earth Observation/Meteorology/Communications" "Earth/Space Science" "Remote Sensing/Imaging" "Earth Science/Meteorology" "Early Warning" "Meteorology" "Electronic Intelligence/Technology Development" "Earth Observation/Research" "Maritime Tracking" "Reconnaissance" "Communications/Navigation" "Radar Calibration" "Astrophysics/Planetary Science" "Communications/Earth Science" "Navigation" "Earth Observation/Technology Development" "Surveillance" "Remote Sensing/Earth Science" "Meteorology/Navigation" "Space Observation" "Astrophysics/Earth Science" "Remote Sensing/Reconnaissance" "Technology Development/Communications" "Technology Demonstration" "Remote Sensing/Research" "Electronic Surveillance/Ocean" "Meteorology/Earth Observation"], :data {0 "Technology Development", 893 "Electronic Surveillance/Ocean", 920 "Technology Development", 558 "Communications", 453 "Technology Development", 584 "Communications", 487 "Communications", 637 "Technology Development", 972 "Communications", 519 "Space Physics", 1097 "Communications", 357 "Communications", 716 "Communications", 950 "Communications", 275 "Communications", 530 "Communications", 929 "Space Physics", 789 "Navigation", 389 "Navigation/Global Positioning", 586 "Communications", 410 "Navigation/Global Positioning", 433 "Communications/Navigation", 765 "Communications", 521 "Communications", 451 "Technology Development", 291 "Earth Science", 443 "Communications", 798 "Technology Development/Communications", 779 "Technology Development", 970 "Astrophysics", 249 "Communications", 638 "Technology Development", 299 "Space Science", 1101 "Communications", 121 "Technology Development", 734 "Communications", 287 "Technology Development", 65 "Communications/Maritime Tracking", 1086 "Earth Science", 702 "Navigation/Global Positioning", 70 "Communications", 949 "Communications", 218 "Communications", 648 "Communications", 1070 "Communications", 812 "Technology Development", 62 "Communications/Maritime Tracking", 74 "Technology Development", 774 "Communications", 475 "Communications", 497 "Communications", 1009 "Earth Science", 580 "Communications", 1138 "Remote Sensing", 891 "Electronic Surveillance/Ocean", 164 "Remote Sensing", 1040 "Communications", 282 "Communications", 769 "Communications", 799 "Reconnaissance", 273 "Communications", 1147 "Remote Sensing", 186 "Communications", 430 "Communications", 641 "Communications", 529 "Communications", 898 "Meteorology/Earth Observation", 370 "Communications", 834 "Remote Sensing", 233 "Meteorology", 298 "Reconnaissance", 188 "Communications", 240 "Remote Sensing", 110 "Communications", 130 "Technology Development", 982 "Communications", 620 "Communications", 311 "Communications", 931 "Reconnaissance", 882 "Earth Observation/Research", 128 "Remote Sensing", 399 "Navigation/Global Positioning", 989 "Technology Development", 377 "Communications", 468 "Communications", 259 "Communications", 210 "Communications", 229 "Communications", 153 "Navigation/Global Positioning", 621 "Communications", 213 "Early Warning", 670 "Meteorology", 977 "Technology Development", 343 "Communications", 958 "Communications", 887 "Electronic Surveillance/Ocean", 472 "Communications", 7 "Electronic Surveillance", 894 "Electronic Surveillance/Ocean", 59 "Communications", 934 "Technology Development", 473 "Communications", 1010 "Earth Science", 86 "Communications", 756 "Communications", 830 "Earth Observation", 613 "Technology Development", 491 "Communications", 154 "Navigation/Global Positioning", 20 "Communications", 224 "Communications", 355 "Communications", 592 "Space Science", 1146 "Remote Sensing", 610 "Reconnaissance", 806 "Technology Demonstration", 571 "Communications", 466 "Electronic Surveillance", 72 "Communications", 454 "Communications", 888 "Electronic Surveillance/Ocean", 463 "Reconnaissance", 851 "Communications", 770 "Communications", 814 "Technology Development", 859 "Earth Observation", 58 "Communications", 964 "Technology Development", 980 "Technology Development", 1001 "Technology Development", 205 "Communications", 555 "Communications", 552 "Communications", 60 "Communications (experimental)", 1102 "Communications", 835 "Technology Development", 459 "Reconnaissance", 175 "Technology Development", 322 "Navigation/Global Positioning", 510 "Communications", 1052 "Technology Development", 1121 "Communications", 662 "Earth Observation/Technology Development", 27 "Technology Development", 352 "Communications", 493 "Communications", 899 "Meteorology/Earth Observation", 416 "Communications", 777 "Communications", 694 "Navigation/Global Positioning", 1 "Communications", 631 "Communications", 854 "Communications", 69 "Communications", 101 "Communications", 24 "Earth Science", 901 "Space Science", 547 "Communications", 102 "Communications", 788 "Navigation", 1106 "Earth Observation", 713 "Communications", 1110 "Technology Development", 385 "Navigation/Global Positioning", 988 "Technology Development", 135 "Earth Observation", 1065 "Earth Observation", 397 "Navigation/Global Positioning", 1011 "Earth Science", 1006 "Communications", 773 "Communications", 490 "Communications", 752 "Communications", 354 "Communications", 884 "Early Warning", 360 "Communications", 998 "Communications", 961 "Communications", 55 "Communications", 568 "Communications", 797 "Navigation", 688 "Navigation/Global Positioning", 763 "Communications", 269 "Communications", 676 "Navigation/Global Positioning", 448 "Remote Sensing", 527 "Communications", 206 "Communications", 1075 "Communications", 966 "Technology Development", 165 "Remote Sensing", 715 "Communications", 387 "Navigation/Global Positioning", 652 "Earth Science/Meteorology", 683 "Navigation/Global Positioning", 85 "Communications", 721 "Meteorology", 862 "Space Observation", 615 "Technology Development", 681 "Navigation/Global Positioning", 225 "Communications", 865 "Surveillance", 297 "Reconnaissance", 39 "Communications", 805 "Earth Observation", 274 "Communications", 88 "Communications", 217 "Technology Development", 1128 "Remote Sensing", 46 "Communications", 682 "Navigation/Global Positioning", 508 "Communications", 1157 "Communications", 149 "Navigation/Global Positioning", 415 "Earth Observation", 239 "Earth Science", 478 "Meteorology", 878 "Communications", 157 "Earth Observation/Meteorology/Communications", 345 "Communications", 300 "Space Science", 743 "Remote Sensing/Reconnaissance", 921 "Technology Development", 1039 "Technology Development", 4 "Communications", 550 "Communications", 1115 "Communications", 204 "Communications", 470 "Communications", 1164 "Communications", 646 "Communications", 77 "Communications", 106 "Technology Development", 197 "Earth Science/Meteorology", 405 "Navigation/Global Positioning", 897 "Electronic Surveillance/Ocean", 726 "Communications", 776 "Communications", 940 "Technology Development", 755 "Communications", 902 "Electronic Surveillance", 518 "Scientific Research", 232 "Technology Development", 260 "Communications", 823 "Communications", 1125 "Communications", 267 "Communications", 119 "Earth Science", 319 "Communications", 534 "Communications", 222 "Communications", 603 "Communications", 293 "Earth Science", 95 "Communications", 450 "Communications", 329 "Technology Development", 144 "Navigation/Global Positioning", 1087 "Technology Development", 504 "Communications", 819 "Earth Observation", 818 "Communications", 505 "Communications", 723 "Meteorology", 1071 "Communications", 1008 "Astrophysics", 992 "Communications", 176 "Technology Development", 863 "Earth Science", 471 "Communications", 349 "Communications", 512 "Communications", 710 "Communications", 1058 "Communications", 192 "Earth Science", 54 "Amateur Radio", 92 "Communications", 221 "Communications", 141 "Earth Science", 502 "Communications", 871 "Communications", 464 "Remote Sensing", 801 "Solar Physics", 307 "Communications", 935 "Technology Development", 758 "Communications", 290 "Earth Science", 1156 "Scientific Research", 1144 "Remote Sensing", 627 "Earth Science", 517 "Communications", 1122 "Communications", 361 "Communications", 264 "Communications", 137 "Communications", 356 "Communications", 728 "Communications", 976 "Technology Development", 678 "Navigation/Global Positioning", 327 "Technology Development", 234 "Electronic Intelligence/Technology Development", 856 "Communications", 817 "Technology Development", 1017 "Technology Development", 104 "Technology Development", 353 "Communications", 1145 "Remote Sensing", 15 "Technology Development", 48 "Communications", 945 "Communications", 759 "Communications", 1066 "Electronic Surveillance", 242 "Remote Sensing", 832 "Earth Observation", 969 "Technology Development", 50 "Communications", 956 "Communications", 917 "Communications", 1030 "Communications", 557 "Communications", 251 "Communications", 394 "Navigation/Global Positioning", 116 "Communications", 585 "Communications", 583 "Communications", 75 "Communications/Research", 437 "Reconnaissance", 516 "Communications", 1062 "Communications", 994 "Communications", 930 "Space Physics", 967 "Earth Observation", 687 "Navigation/Global Positioning", 159 "Communications", 848 "Communications", 995 "Communications", 1096 "Remote Sensing", 1159 "Communications", 709 "Technology Development", 99 "Remote Sensing/Technology Development", 540 "Communications", 645 "Surveillance", 749 "Communications", 479 "Communications/Earth Science", 1081 "Early Warning", 890 "Electronic Surveillance/Ocean", 1046 "Earth Observation", 630 "Communications", 916 "Communications", 815 "Technology Development", 1080 "Early Warning", 281 "Communications", 402 "Navigation/Global Positioning", 669 "Meteorology/Navigation", 781 "Technology Development", 740 "Communications", 1012 "Astrophysics", 975 "Astrophysics", 429 "Communications", 309 "Communications", 458 "Reconnaissance", 21 "Communications", 388 "Navigation/Global Positioning", 495 "Communications", 952 "Communications", 626 "Surveillance", 875 "Communications", 31 "Earth Observation", 113 "Communications", 32 "Communications", 811 "Technology Development", 827 "Earth Observation", 407 "Navigation/Global Positioning", 398 "Navigation/Global Positioning", 136 "Technology Development", 691 "Navigation/Global Positioning", 847 "Communications", 825 "Communications", 139 "Space Science", 506 "Communications", 396 "Navigation/Global Positioning", 460 "Reconnaissance", 483 "Space Physics", 589 "Communications", 581 "Communications", 932 "Reconnaissance", 174 "Technology Development", 578 "Communications", 855 "Communications", 331 "Space Physics", 363 "Communications", 1038 "Remote Sensing/Reconnaissance", 284 "Communications", 208 "Communications", 305 "Communications", 1019 "Space Physics", 955 "Communications", 796 "Navigation", 708 "Space Observation", 182 "Technology Development", 256 "Communications", 1107 "Earth Observation", 1109 "Technology Development", 657 "Communications", 514 "Communications", 1103 "Communications", 731 "Communications", 619 "Reconnaissance", 985 "Communications", 485 "Communications", 214 "Early Warning", 193 "Earth Science/Meteorology", 685 "Navigation/Global Positioning", 804 "Earth Observation", 869 "Communications", 1002 "Technology Development", 1104 "Astrophysics", 836 "Earth Observation", 1131 "Remote Sensing", 785 "Communications", 635 "Communications", 442 "Space Science", 1073 "Communications", 561 "Communications", 954 "Communications", 656 "Communications", 607 "Communications", 241 "Earth Observation", 314 "Communications", 782 "Earth Science", 226 "Communications", 235 "Electronic Intelligence/Technology Development", 672 "Communications", 420 "Communications", 418 "Communications", 262 "Communications", 1016 "Technology Development", 263 "Communications", 304 "Earth Observation", 401 "Navigation/Global Positioning", 673 "Communications", 40 "Communications", 129 "Earth Science", 600 "Communications", 729 "Communications", 1042 "Communications", 467 "Remote Sensing", 1033 "Communications", 1149 "Remote Sensing", 445 "Communications", 317 "Communications", 1091 "Communications/Maritime Tracking", 1028 "Communications", 294 "Earth Science", 91 "Communications", 1044 "Space Physics", 810 "Technology Development", 1137 "Remote Sensing", 364 "Communications", 987 "Technology Development", 880 "Scientific Research", 515 "Communications", 412 "Earth Science/Meteorology", 553 "Communications", 974 "Communications", 341 "Communications", 117 "Communications", 1000 "Technology Development", 1095 "Earth Observation", 665 "Technology Development", 523 "Communications", 172 "Technology Development", 601 "Communications", 108 "Remote Sensing/Technology Development", 156 "Navigation/Global Positioning", 358 "Communications", 308 "Communications", 908 "Technology Development", 649 "Meteorology", 531 "Communications", 1085 "Earth Science", 923 "Technology Development", 1111 "Technology Development", 223 "Communications", 419 "Communications", 365 "Communications", 944 "Communications/Research", 181 "Technology Development", 417 "Communications", 1082 "Early Warning", 979 "Earth Observation", 278 "Communications", 56 "Communications", 942 "Communications", 33 "Communications", 13 "Communications", 1043 "Space Physics", 867 "Surveillance", 22 "Communications", 618 "Earth Observation", 1141 "Remote Sensing", 1093 "Communications", 380 "Navigation/Global Positioning", 257 "Communications", 1061 "Technology Development", 338 "Communications", 1024 "Communications", 500 "Communications", 909 "Technology Development", 1018 "Earth Observation", 993 "Communications", 1089 "Technology Development", 168 "Earth Observation", 833 "Communications", 496 "Communications", 1056 "Communications", 1129 "Remote Sensing", 947 "Communications", 347 "Communications", 501 "Communications", 1007 "Communications", 1077 "Earth Observation", 596 "Earth Science", 872 "Communications", 792 "Navigation", 90 "Communications", 237 "Electronic Intelligence/Technology Development", 826 "Technology Development", 292 "Earth Science", 109 "Remote Sensing", 216 "Earth Observation", 191 "Communications", 498 "Communications", 829 "Earth Observation", 761 "Communications", 1072 "Communications", 375 "Communications", 525 "Communications", 367 "Communications", 143 "Navigation/Global Positioning", 742 "Astrophysics/Earth Science", 178 "Technology Development", 640 "Communications", 247 "Communications", 328 "Technology Development", 391 "Navigation/Global Positioning", 990 "Communications", 167 "Earth Observation", 707 "Navigation/Global Positioning", 36 "Communications", 41 "Communications", 474 "Communications", 187 "Communications", 551 "Communications", 1118 "Communications", 996 "Communications", 528 "Communications", 971 "Communications", 599 "Communications", 376 "Communications", 195 "Earth Science/Meteorology", 889 "Electronic Surveillance/Ocean", 316 "Communications", 668 "Technology Development", 428 "Communications", 303 "Remote Sensing", 671 "Communications", 794 "Navigation", 905 "Communications", 368 "Communications", 560 "Communications", 565 "Communications", 310 "Communications", 366 "Communications", 118 "Technology Development", 522 "Communications", 150 "Navigation/Global Positioning", 886 "Electronic Surveillance/Ocean", 313 "Communications", 384 "Navigation/Global Positioning", 567 "Communications", 238 "Earth Observation/Research", 846 "Communications", 962 "Communications", 1127 "Remote Sensing", 845 "Communications", 196 "Earth Science/Meteorology", 162 "Remote Sensing", 393 "Navigation/Global Positioning", 184 "Communications", 219 "Communications", 999 "Technology Development", 461 "Reconnaissance", 1032 "Communications", 89 "Communications", 100 "Communications", 426 "Earth Science", 604 "Communications", 477 "Communications", 844 "Communications", 541 "Communications", 351 "Communications", 243 "Remote Sensing", 131 "Astrophysics", 790 "Navigation", 963 "Technology Development", 1053 "Technology Development", 629 "Earth Observation/Technology Development", 873 "Technology Development", 122 "Space Science", 933 "Space Physics", 43 "Communications", 1067 "Electronic Surveillance", 231 "Communications", 61 "Communications (experimental)", 654 "Earth Science/Meteorology", 883 "Early Warning", 1003 "Technology Development", 598 "Communications", 413 "Earth Science/Meteorology", 29 "Technology Development", 784 "Communications", 800 "Technology Development", 151 "Navigation/Global Positioning", 369 "Communications", 348 "Communications", 1124 "Communications", 575 "Communications", 693 "Navigation/Global Positioning", 44 "Communications", 739 "Communications", 258 "Communications", 250 "Communications", 674 "Communications/Technology Development", 539 "Communications", 301 "Earth Science", 838 "Earth Observation", 424 "Communications", 93 "Communications", 6 "Electronic Surveillance", 684 "Navigation/Global Positioning", 1026 "Communications", 951 "Communications", 573 "Communications", 408 "Navigation/Global Positioning", 563 "Communications", 850 "Communications", 616 "Earth Observation/Technology Development", 866 "Surveillance", 111 "Communications", 997 "Communications", 689 "Navigation/Global Positioning", 28 "Space Physics", 456 "Technology Development", 374 "Communications", 608 "Reconnaissance", 737 "Communications", 1155 "Scientific Research", 548 "Communications", 538 "Communications", 1034 "Communications", 895 "Electronic Surveillance/Ocean", 411 "Earth Science/Meteorology", 957 "Communications", 134 "Earth Observation", 943 "Communications", 64 "Communications/Maritime Tracking", 623 "Technology Development", 1135 "Remote Sensing", 1133 "Remote Sensing", 465 "Electronic Surveillance", 816 "Technology Development", 334 "Communications", 1150 "Scientific Research", 323 "Navigation/Global Positioning", 189 "Communications", 280 "Communications", 198 "Earth Science/Meteorology", 155 "Navigation/Global Positioning", 295 "Astrophysics", 808 "Earth Observation", 248 "Communications", 587 "Communications", 285 "Technology Development", 507 "Communications", 227 "Communications", 724 "Technology Development", 476 "Meteorology", 941 "Earth Observation", 911 "Communications", 853 "Communications", 494 "Communications", 220 "Communications", 842 "Communications", 103 "Communications", 697 "Navigation/Global Positioning", 611 "Reconnaissance", 1105 "Earth Observation", 170 "Earth Observation", 1154 "Reconnaissance", 51 "Communications", 25 "Maritime Tracking/Technology Development", 261 "Communications", 768 "Communications", 822 "Amateur Radio", 201 "Technology Development", 904 "Communications", 590 "Communications", 489 "Communications", 778 "Technology Development", 166 "Remote Sensing/Imaging", 447 "Remote Sensing", 34 "Communications", 252 "Communications", 978 "Earth Observation", 775 "Communications", 325 "Communications", 1005 "Communications", 594 "Remote Sensing", 436 "Communications", 828 "Earth Observation", 535 "Communications", 813 "Technology Development", 146 "Navigation/Global Positioning", 741 "Remote Sensing", 1060 "Astrophysics", 876 "Communications", 1064 "Technology Development", 228 "Communications", 907 "Electronic Surveillance", 306 "Communications", 125 "Remote Sensing", 276 "Maritime Tracking", 340 "Communications", 148 "Navigation/Global Positioning", 1143 "Remote Sensing", 482 "Communications", 1049 "Communications", 622 "Remote Sensing", 588 "Communications", 17 "Technology Development", 312 "Communications", 606 "Meteorology", 3 "Communications", 1148 "Remote Sensing", 520 "Technology Development", 1088 "Communications", 760 "Communications", 720 "Earth Science/Meteorology", 1126 "Remote Sensing", 286 "Technology Development", 279 "Communications", 879 "Communications", 1020 "Communications", 536 "Communications", 1023 "Communications", 663 "Remote Sensing/Earth Science", 12 "Communications", 440 "Astrophysics", 332 "Earth Science", 330 "Remote Sensing", 1162 "Communications", 382 "Navigation/Global Positioning", 152 "Navigation/Global Positioning", 1112 "Communications", 1140 "Remote Sensing", 544 "Communications", 803 "Earth Observation", 642 "Communications", 435 "Meteorology", 342 "Communications", 703 "Navigation/Global Positioning", 783 "Communications", 695 "Navigation/Global Positioning", 973 "Communications", 2 "Communications", 948 "Communications", 66 "Communications/Maritime Tracking", 484 "Communications", 439 "Communications", 236 "Electronic Intelligence/Technology Development", 556 "Communications", 373 "Communications", 1083 "Early Warning", 142 "Navigation/Global Positioning", 359 "Communications", 727 "Communications", 371 "Communications", 772 "Communications", 444 "Communications", 1057 "Communications", 570 "Communications", 757 "Communications", 107 "Earth Observation", 1094 "Communications", 532 "Communications", 984 "Communications", 23 "Scientific Research", 1079 "Scientific Research", 745 "Remote Sensing/Reconnaissance", 719 "Earth Science/Meteorology", 230 "Communications", 625 "Surveillance", 47 "Communications", 526 "Communications", 180 "Earth Observation", 786 "Communications", 1068 "Technology Development", 1166 "Earth Observation", 870 "Communications", 537 "Communications", 659 "Communications", 158 "Communications", 991 "Communications", 350 "Communications", 35 "Communications", 1116 "Space Physics", 849 "Communications", 1120 "Communications", 644 "Surveillance", 1069 "Communications", 881 "Remote Sensing/Research", 127 "Remote Sensing", 927 "Space Physics", 675 "Communications", 1055 "Earth Observation", 383 "Navigation/Global Positioning", 533 "Communications", 1100 "Communications", 910 "Communications", 302 "Communications", 564 "Communications", 701 "Navigation/Global Positioning", 1090 "Communications/Maritime Tracking", 566 "Communications", 821 "Earth Observation", 787 "Earth Science", 82 "Communications", 76 "Communications", 735 "Space Science", 492 "Communications", 718 "Communications", 771 "Communications", 215 "Earth Observation", 97 "Communications", 704 "Navigation/Global Positioning", 277 "Communications", 926 "Space Physics", 751 "Communications", 1114 "Communications", 19 "Communications", 335 "Communications", 597 "Communications", 938 "Remote Sensing/Research", 57 "Communications", 609 "Reconnaissance", 202 "Technology Development", 68 "Communications", 452 "Astrophysics/Planetary Science", 1054 "Earth Observation", 200 "Technology Development", 1142 "Remote Sensing", 868 "Surveillance", 11 "Communications", 115 "Communications", 946 "Communications", 1063 "Earth Observation/Technology Development", 983 "Communications", 339 "Communications", 431 "Communications/Technology Development", 462 "Reconnaissance", 337 "Communications", 698 "Navigation/Global Positioning", 255 "Communications", 503 "Communications", 546 "Communications", 9 "Electronic Surveillance", 953 "Communications", 857 "Space Physics", 706 "Navigation/Global Positioning", 632 "Communications", 457 "Reconnaissance", 427 "Earth Science", 145 "Navigation/Global Positioning", 5 "Solar Physics", 733 "Communications", 1163 "Communications", 1165 "Earth Observation", 1152 "Technology Development", 624 "Surveillance", 831 "Earth Observation", 244 "Technology Development", 918 "Space Physics", 824 "Communications", 289 "Earth Science", 112 "Communications", 925 "Space Physics", 1059 "Technology Development", 730 "Communications", 699 "Navigation/Global Positioning", 712 "Earth Observation/Technology Development", 1076 "Communications", 1113 "Communications", 414 "Communications", 839 "Surveillance", 802 "Technology Development", 1084 "Communications", 860 "Space Physics", 1117 "Earth Observation", 179 "Technology Development", 344 "Communications", 481 "Communications", 732 "Communications", 661 "Communications", 245 "Technology Development", 378 "Communications", 913 "Communications", 906 "Communications", 658 "Communications", 266 "Communications", 324 "Remote Sensing", 793 "Navigation", 1134 "Remote Sensing", 1132 "Remote Sensing", 1014 "Communications", 680 "Navigation/Global Positioning", 446 "Remote Sensing", 524 "Communications", 254 "Communications", 404 "Navigation/Global Positioning", 1025 "Communications", 617 "Earth Observation", 283 "Communications", 1153 "Remote Sensing", 513 "Communications", 572 "Communications", 705 "Navigation/Global Positioning", 1098 "Communications", 959 "Communications", 1074 "Communications", 83 "Communications", 634 "Communications", 138 "Space Science", 1050 "Communications", 346 "Communications", 14 "Technology Development", 455 "Communications", 265 "Communications", 449 "Radar Calibration", 333 "Communications", 650 "Earth Science/Meteorology", 639 "Technology Development", 569 "Communications", 326 "Communications", 746 "Technology Development", 647 "Communications", 45 "Communications", 53 "Communications", 559 "Communications", 78 "Communications", 1037 "Communications", 924 "Technology Development", 562 "Communications", 1119 "Communications", 542 "Communications", 912 "Communications", 664 "Astrophysics", 1048 "Communications", 315 "Communications", 1031 "Communications", 914 "Communications", 480 "Communications", 132 "Communications", 753 "Communications", 900 "Space Science", 1013 "Technology Development", 26 "Technology Development", 766 "Communications", 123 "Technology Development", 203 "Communications", 667 "Communications", 392 "Navigation/Global Positioning", 1045 "Space Physics", 577 "Communications", 807 "Technology Demonstration", 140 "Space Science", 321 "Navigation/Global Positioning", 795 "Navigation", 441 "Solar Physics", 700 "Navigation/Global Positioning", 268 "Communications", 840 "Surveillance", 16 "Technology Development", 320 "Navigation/Global Positioning", 133 "Communications", 288 "Technology Development", 381 "Navigation/Global Positioning", 605 "Earth Observation", 163 "Remote Sensing", 81 "Communications", 120 "Remote Sensing", 643 "Earth Science", 79 "Communications", 211 "Early Warning", 38 "Communications", 173 "Technology Development", 126 "Remote Sensing", 981 "Earth Observation", 1161 "Communications", 421 "Communications", 593 "Navigation", 636 "Technology Development", 1160 "Communications", 98 "Communications", 422 "Communications", 423 "Communications", 614 "Technology Development", 762 "Communications", 582 "Communications", 666 "Communications", 1123 "Communications", 554 "Communications", 409 "Navigation/Global Positioning", 574 "Communications", 595 "Technology Development", 124 "Technology Development", 747 "Communications", 171 "Technology Development", 87 "Communications", 169 "Earth Observation", 653 "Earth Science/Meteorology", 679 "Navigation/Global Positioning", 843 "Communications", 160 "Earth/Space Science", 30 "Communications/Technology Development", 400 "Navigation/Global Positioning", 767 "Communications", 896 "Electronic Surveillance/Ocean", 928 "Space Physics", 696 "Navigation/Global Positioning", 1027 "Communications", 738 "Communications", 809 "Technology Development", 509 "Communications", 736 "Scientific Research", 207 "Communications", 874 "Technology Development", 434 "Meteorology", 1130 "Remote Sensing", 690 "Navigation/Global Positioning", 194 "Earth Science/Meteorology", 1047 "Communications", 511 "Communications", 73 "Communications", 486 "Communications", 336 "Communications", 96 "Communications", 837 "Earth Observation", 1136 "Remote Sensing", 937 "Remote Sensing/Research", 10 "Electronic Surveillance", 660 "Communications", 272 "Communications", 499 "Communications", 488 "Communications", 903 "Communications", 386 "Navigation/Global Positioning", 270 "Communications", 576 "Communications", 717 "Communications", 543 "Communications", 271 "Communications", 18 "Technology Development", 395 "Navigation/Global Positioning", 403 "Navigation/Global Positioning", 469 "Communications", 105 "Technology Development", 185 "Communications", 52 "Communications", 1051 "Communications", 545 "Communications", 633 "Reconnaissance", 114 "Space Science", 1099 "Communications", 968 "Communications", 253 "Communications", 612 "Reconnaissance", 1151 "Technology Development", 1015 "Communications", 628 "Earth Science", 748 "Communications", 209 "Communications", 147 "Navigation/Global Positioning", 655 "Earth Science/Meteorology", 1022 "Communications", 750 "Communications", 852 "Communications", 425 "Earth Science", 1158 "Communications", 864 "Surveillance", 67 "Communications/Maritime Tracking", 1108 "Technology Development", 296 "Reconnaissance", 602 "Communications", 318 "Communications", 161 "Remote Sensing", 651 "Earth Science/Meteorology", 725 "Communications", 372 "Communications", 1092 "Communications", 406 "Navigation/Global Positioning", 438 "Reconnaissance", 780 "Reconnaissance", 711 "Earth Observation", 1041 "Communications", 71 "Communications", 939 "Remote Sensing/Research", 579 "Communications", 877 "Communications", 722 "Meteorology", 42 "Communications", 919 "Technology Development", 80 "Communications", 885 "Reconnaissance", 1078 "Scientific Research", 986 "Remote Sensing", 1035 "Communications", 714 "Communications", 677 "Navigation/Global Positioning", 199 "Technology Development", 841 "Communications", 754 "Communications", 791 "Navigation", 1029 "Reconnaissance", 861 "Space Physics", 591 "Communications", 1021 "Communications", 744 "Remote Sensing/Reconnaissance", 960 "Remote Sensing", 37 "Communications", 183 "Communications", 1139 "Remote Sensing", 965 "Technology Development", 892 "Electronic Surveillance/Ocean", 432 "Communications", 379 "Communications", 63 "Communications/Maritime Tracking", 212 "Early Warning", 94 "Communications", 362 "Communications", 8 "Electronic Surveillance", 686 "Navigation/Global Positioning", 692 "Navigation/Global Positioning", 764 "Communications", 246 "Communications", 190 "Communications", 1004 "Technology Development", 1036 "Remote Sensing", 549 "Communications", 922 "Technology Development", 177 "Technology Development", 915 "Communications", 936 "Remote Sensing", 820 "Navigation", 49 "Communications", 858 "Earth Observation/Research", 390 "Navigation/Global Positioning", 84 "Communications"}}, :Period_minutes #inferenceql.inference.gpm.column.Column{:var-name :Period_minutes, :stattype :gaussian, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 994.83, :sum-x-sq 989686.7289000001}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 3, :sum-x 5612.42, :sum-x-sq 1.04997867894E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1436.1, :sum-x-sq 2062383.2099999997}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1418.5, :sum-x-sq 2012142.25}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 4032.86, :sum-x-sq 1.6263959779600002E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 2474.83, :sum-x-sq 6124783.528899999}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 7, :sum-x 714.25, :sum-x-sq 72886.9235}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1148.43, :sum-x-sq 1318891.4649000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 15, :sum-x 10090.819999999998, :sum-x-sq 6841435.649800001}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 2, :sum-x 0.44, :sum-x-sq 0.0968}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 150.4, :sum-x-sq 22620.160000000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 4, :sum-x 204.32, :sum-x-sq 21539.183200000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 19700.45, :sum-x-sq 3.8810773020250005E8}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 2872.15, :sum-x-sq 8249245.6225000005}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 4, :sum-x 13721.58, :sum-x-sq 4.70707233284E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 278, :sum-x 28833.770000000037, :sum-x-sq 3010792.6209000032}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1436.16, :sum-x-sq 2062555.5456000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 7, :sum-x 10051.05, :sum-x-sq 1.44319444681E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 3808.92, :sum-x-sq 1.45078715664E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 4, :sum-x 1151.73, :sum-x-sq 331620.4983}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 433, :sum-x 621493.6299999984, :sum-x-sq 8.92081397473701E8}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 29, :sum-x 2926.4, :sum-x-sq 296222.71359999996}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 294, :sum-x 28980.76999999998, :sum-x-sq 2860085.4782999987}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 72, :sum-x 51214.31999999999, :sum-x-sq 3.6561600499000005E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 2, :sum-x 475.15999999999997, :sum-x-sq 112900.2256}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}}, :assignments {{:Period_minutes 101.0} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 1365.61} {:cluster_4 1}, {:Period_minutes 100.2} {:cluster_2 2}, {:Period_minutes 1436.06} {:cluster_4 20}, {:Period_minutes 107.1} {:cluster_2 3}, {:Period_minutes 716.4} {:cluster_23 1}, {:Period_minutes 1435.92} {:cluster_4 2}, {:Period_minutes 101.08} {:cluster_0 1}, {:Period_minutes 94.9} {:cluster_2 2}, {:Period_minutes 100.9} {:cluster_0 1, :cluster_2 4, :cluster_6 1}, {:Period_minutes 96.98} {:cluster_2 1}, {:Period_minutes 94.65} {:cluster_6 1}, {:Period_minutes 1436.16} {:cluster_4 3, :cluster_77 1}, {:Period_minutes 97.13} {:cluster_9 1}, {:Period_minutes 1435.88} {:cluster_4 1}, {:Period_minutes 235.16} {:cluster_74 1}, {:Period_minutes 97.56} {:cluster_2 1}, {:Period_minutes 115.6} {:cluster_6 2}, {:Period_minutes 3442.0} {:cluster_78 1}, {:Period_minutes 1435.94} {:cluster_4 1}, {:Period_minutes 106.27} {:cluster_6 1}, {:Period_minutes 1418.5} {:cluster_75 1}, {:Period_minutes 99.3} {:cluster_2 1}, {:Period_minutes 100.4} {:cluster_6 66, :cluster_2 3}, {:Period_minutes 98.1} {:cluster_2 5}, {:Period_minutes 107.13} {:cluster_6 1}, {:Period_minutes 107.5} {:cluster_6 1}, {:Period_minutes 1436.99} {:cluster_4 1}, {:Period_minutes 97.46} {:cluster_2 1}, {:Period_minutes 675.08} {:cluster_23 1}, {:Period_minutes 127.45} {:cluster_6 1}, {:Period_minutes 116.1} {:cluster_6 1}, {:Period_minutes 672.7} {:cluster_23 1}, {:Period_minutes 115.8} {:cluster_6 5}, {:Period_minutes 1427.91} {:cluster_4 1}, {:Period_minutes 675.39} {:cluster_23 1}, {:Period_minutes 717.91} {:cluster_23 2}, {:Period_minutes 109.5} {:cluster_2 1}, {:Period_minutes 101.1} {:cluster_2 1}, {:Period_minutes 1875.53} {:cluster_66 1}, {:Period_minutes 680.75} {:cluster_23 1}, {:Period_minutes 97.21} {:cluster_9 1}, {:Period_minutes 2474.83} {:cluster_93 1}, {:Period_minutes 104.9} {:cluster_6 1}, {:Period_minutes 95.5} {:cluster_6 2, :cluster_2 1}, {:Period_minutes 100.0} {:cluster_2 1}, {:Period_minutes 1439.41} {:cluster_4 1}, {:Period_minutes 1867.91} {:cluster_66 1}, {:Period_minutes 1435.04} {:cluster_4 1}, {:Period_minutes 98.37} {:cluster_2 1}, {:Period_minutes 104.7} {:cluster_6 1}, {:Period_minutes 1435.7} {:cluster_4 1}, {:Period_minutes 680.91} {:cluster_23 1}, {:Period_minutes 844.76} {:cluster_23 1}, {:Period_minutes 1436.07} {:cluster_4 29}, {:Period_minutes 113.9} {:cluster_6 1}, {:Period_minutes 1446.36} {:cluster_4 1}, {:Period_minutes 96.47} {:cluster_2 1}, {:Period_minutes 94.0} {:cluster_2 2}, {:Period_minutes 105.1} {:cluster_2 2}, {:Period_minutes 94.51} {:cluster_2 1}, {:Period_minutes 115.5} {:cluster_6 1}, {:Period_minutes 722.98} {:cluster_23 1}, {:Period_minutes 98.0} {:cluster_2 17, :cluster_6 1}, {:Period_minutes 14.36} {:cluster_3 1}, {:Period_minutes 240.0} {:cluster_74 1}, {:Period_minutes 98.8} {:cluster_2 11, :cluster_6 1}, {:Period_minutes 676.07} {:cluster_23 1}, {:Period_minutes 97.3} {:cluster_2 5, :cluster_6 3}, {:Period_minutes 94.53} {:cluster_2 1}, {:Period_minutes 1436.27} {:cluster_4 1}, {:Period_minutes 716.69} {:cluster_23 1}, {:Period_minutes 19700.45} {:cluster_73 1}, {:Period_minutes 97.73} {:cluster_2 1}, {:Period_minutes 681.53} {:cluster_23 1}, {:Period_minutes 118.2} {:cluster_6 1}, {:Period_minutes 97.54} {:cluster_2 1}, {:Period_minutes 675.2} {:cluster_23 1}, {:Period_minutes 102.1} {:cluster_6 2}, {:Period_minutes 103.44} {:cluster_6 1}, {:Period_minutes 287.94} {:cluster_59 1}, {:Period_minutes 112.58} {:cluster_6 1}, {:Period_minutes 717.96} {:cluster_23 1}, {:Period_minutes 677.54} {:cluster_23 1}, {:Period_minutes 3431.1} {:cluster_78 1}, {:Period_minutes 98.08} {:cluster_2 1}, {:Period_minutes 97.5} {:cluster_2 3, :cluster_6 3}, {:Period_minutes 98.7} {:cluster_2 7, :cluster_6 1}, {:Period_minutes 675.78} {:cluster_23 1}, {:Period_minutes 114.08} {:cluster_6 2}, {:Period_minutes 717.93} {:cluster_23 3}, {:Period_minutes 97.2} {:cluster_2 10, :cluster_6 1}, {:Period_minutes 107.12} {:cluster_2 1}, {:Period_minutes 96.01} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 97.1} {:cluster_2 6}, {:Period_minutes 98.5} {:cluster_2 4, :cluster_6 1}, {:Period_minutes 94.5} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 94.7} {:cluster_2 4}, {:Period_minutes 98.2} {:cluster_2 2, :cluster_9 1}, {:Period_minutes 101.89} {:cluster_2 1}, {:Period_minutes 41.2} {:cluster_6 1}, {:Period_minutes 97.0} {:cluster_6 2, :cluster_2 6, :cluster_9 2}, {:Period_minutes 98.6} {:cluster_2 7, :cluster_6 1}, {:Period_minutes 142.08} {:cluster_3 1}, {:Period_minutes 1435.93} {:cluster_85 1}, {:Period_minutes 96.1} {:cluster_2 1}, {:Period_minutes 1436.1} {:cluster_4 123, :cluster_32 1}, {:Period_minutes 1430.6} {:cluster_4 1}, {:Period_minutes 1439.76} {:cluster_4 1}, {:Period_minutes 1435.96} {:cluster_4 1}, {:Period_minutes 539.06} {:cluster_62 1}, {:Period_minutes 1868.98} {:cluster_66 1}, {:Period_minutes 680.43} {:cluster_23 1}, {:Period_minutes 1436.39} {:cluster_4 2}, {:Period_minutes 773.1} {:cluster_23 2}, {:Period_minutes 94.63} {:cluster_6 1}, {:Period_minutes 718.03} {:cluster_23 1}, {:Period_minutes 675.75} {:cluster_23 3}, {:Period_minutes 113.35} {:cluster_6 1}, {:Period_minutes 107.35} {:cluster_2 1}, {:Period_minutes 98.15} {:cluster_2 1}, {:Period_minutes 97.45} {:cluster_2 1}, {:Period_minutes 1436.01} {:cluster_4 2}, {:Period_minutes 99.8} {:cluster_6 5}, {:Period_minutes 94.37} {:cluster_2 3}, {:Period_minutes 287.93} {:cluster_59 3}, {:Period_minutes 718.0} {:cluster_23 2, :cluster_62 1}, {:Period_minutes 93.6} {:cluster_2 2}, {:Period_minutes 95.9} {:cluster_2 2}, {:Period_minutes 1434.1} {:cluster_4 1}, {:Period_minutes 93.4} {:cluster_2 1, :cluster_6 1}, {:Period_minutes 3418.2} {:cluster_78 1}, {:Period_minutes 718.01} {:cluster_23 1}, {:Period_minutes 95.6} {:cluster_6 2, :cluster_9 1}, {:Period_minutes 1436.24} {:cluster_4 2}, {:Period_minutes 675.81} {:cluster_23 2}, {:Period_minutes 844.69} {:cluster_23 1}, {:Period_minutes 676.38} {:cluster_23 1}, {:Period_minutes 98.35} {:cluster_2 1}, {:Period_minutes 98.9} {:cluster_2 2}, {:Period_minutes 99.4} {:cluster_2 1}, {:Period_minutes 994.83} {:cluster_80 1}, {:Period_minutes 4032.86} {:cluster_81 1}, {:Period_minutes 2872.15} {:cluster_94 1}, {:Period_minutes 96.0} {:cluster_9 1}, {:Period_minutes 720.65} {:cluster_23 1}, {:Period_minutes 92.62} {:cluster_6 1}, {:Period_minutes 101.9} {:cluster_2 2}, {:Period_minutes 93.5} {:cluster_2 1}, {:Period_minutes 671.2} {:cluster_23 1}, {:Period_minutes 1306.29} {:cluster_4 2}, {:Period_minutes 91.54} {:cluster_9 1}, {:Period_minutes 670.47} {:cluster_23 1}, {:Period_minutes 637.64} {:cluster_62 1}, {:Period_minutes 717.9} {:cluster_62 1}, {:Period_minutes 106.7} {:cluster_2 1}, {:Period_minutes 93.9} {:cluster_2 1, :cluster_6 1, :cluster_9 1}, {:Period_minutes 1436.21} {:cluster_4 3}, {:Period_minutes 97.8} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 92.8} {:cluster_6 1}, {:Period_minutes 675.83} {:cluster_23 1}, {:Period_minutes 704.3} {:cluster_62 1}, {:Period_minutes 114.1} {:cluster_6 38}, {:Period_minutes 103.6} {:cluster_6 1}, {:Period_minutes 718.07} {:cluster_23 1}, {:Period_minutes 1436.13} {:cluster_4 18}, {:Period_minutes 94.4} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 1434.6} {:cluster_4 1}, {:Period_minutes 1436.28} {:cluster_4 1}, {:Period_minutes 90.61} {:cluster_2 1}, {:Period_minutes 103.48} {:cluster_6 1}, {:Period_minutes 1435.95} {:cluster_4 1}, {:Period_minutes 102.8} {:cluster_2 1}, {:Period_minutes 1436.15} {:cluster_4 6}, {:Period_minutes 1436.57} {:cluster_4 1}, {:Period_minutes 96.85} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 102.2} {:cluster_6 1}, {:Period_minutes 113.96} {:cluster_6 1}, {:Period_minutes 724.28} {:cluster_23 1}, {:Period_minutes 94.36} {:cluster_2 1}, {:Period_minutes 94.58} {:cluster_6 1}, {:Period_minutes 93.91} {:cluster_2 1}, {:Period_minutes 671.71} {:cluster_23 1}, {:Period_minutes 1436.52} {:cluster_4 1}, {:Period_minutes 675.85} {:cluster_23 1}, {:Period_minutes 96.08} {:cluster_6 1}, {:Period_minutes 1434.03} {:cluster_4 1}, {:Period_minutes 96.8} {:cluster_2 1}, {:Period_minutes 101.2} {:cluster_2 3}, {:Period_minutes 100.53} {:cluster_2 1}, {:Period_minutes 114.7} {:cluster_6 1}, {:Period_minutes 95.43} {:cluster_2 1}, {:Period_minutes 101.87} {:cluster_2 1}, {:Period_minutes 94.85} {:cluster_2 1}, {:Period_minutes 1436.11} {:cluster_4 29}, {:Period_minutes 115.86} {:cluster_6 4}, {:Period_minutes 719.32} {:cluster_23 1}, {:Period_minutes 116.0} {:cluster_6 3}, {:Period_minutes 112.68} {:cluster_6 1}, {:Period_minutes 1439.15} {:cluster_4 1}, {:Period_minutes 96.56} {:cluster_2 1}, {:Period_minutes 3808.92} {:cluster_79 1}, {:Period_minutes 722.19} {:cluster_23 1}, {:Period_minutes 718.09} {:cluster_23 2}, {:Period_minutes 104.74} {:cluster_6 1}, {:Period_minutes 97.55} {:cluster_2 1}, {:Period_minutes 1440.31} {:cluster_4 1}, {:Period_minutes 717.97} {:cluster_23 4}, {:Period_minutes 105.0} {:cluster_6 2}, {:Period_minutes 23.94} {:cluster_3 2}, {:Period_minutes 106.93} {:cluster_2 2}, {:Period_minutes 114.0} {:cluster_6 4}, {:Period_minutes 102.89} {:cluster_0 1}, {:Period_minutes 106.33} {:cluster_6 1}, {:Period_minutes 114.9} {:cluster_2 1}, {:Period_minutes 1435.76} {:cluster_4 1}, {:Period_minutes 92.6} {:cluster_9 1}, {:Period_minutes 1432.0} {:cluster_4 1}, {:Period_minutes 101.4} {:cluster_2 4}, {:Period_minutes 99.2} {:cluster_9 1, :cluster_2 6}, {:Period_minutes 1436.03} {:cluster_4 5}, {:Period_minutes 717.94} {:cluster_23 1}, {:Period_minutes 1436.23} {:cluster_4 2}, {:Period_minutes 1437.78} {:cluster_4 1}, {:Period_minutes 773.21} {:cluster_23 1}, {:Period_minutes 97.44} {:cluster_2 1}, {:Period_minutes 100.87} {:cluster_9 1}, {:Period_minutes 718.04} {:cluster_62 1}, {:Period_minutes 684.0} {:cluster_62 2}, {:Period_minutes 1423.35} {:cluster_4 1}, {:Period_minutes 96.6} {:cluster_2 5}, {:Period_minutes 107.4} {:cluster_9 9}, {:Period_minutes 1435.1} {:cluster_85 1}, {:Period_minutes 99.5} {:cluster_2 1}, {:Period_minutes 1436.09} {:cluster_4 32}, {:Period_minutes 103.1} {:cluster_9 1}, {:Period_minutes 96.5} {:cluster_2 5}, {:Period_minutes 1435.82} {:cluster_85 1}, {:Period_minutes 773.39} {:cluster_23 1}, {:Period_minutes 103.11} {:cluster_0 1}, {:Period_minutes 1436.18} {:cluster_4 1}, {:Period_minutes 93.7} {:cluster_2 1}, {:Period_minutes 100.3} {:cluster_6 9, :cluster_2 2}, {:Period_minutes 773.19} {:cluster_23 1}, {:Period_minutes 92.81} {:cluster_6 2}, {:Period_minutes 115.9} {:cluster_2 1, :cluster_6 8}, {:Period_minutes 104.4} {:cluster_2 1}, {:Period_minutes 109.42} {:cluster_2 1}, {:Period_minutes 91.8} {:cluster_9 1}, {:Period_minutes 1438.2} {:cluster_4 1}, {:Period_minutes 98.73} {:cluster_2 1}, {:Period_minutes 101.94} {:cluster_2 1}, {:Period_minutes 677.46} {:cluster_23 1}, {:Period_minutes 98.45} {:cluster_2 2}, {:Period_minutes 645.98} {:cluster_62 1}, {:Period_minutes 94.34} {:cluster_6 1}, {:Period_minutes 95.4} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 98.03} {:cluster_2 1}, {:Period_minutes 3430.28} {:cluster_78 1}, {:Period_minutes 150.4} {:cluster_82 1}, {:Period_minutes 677.5} {:cluster_23 1}, {:Period_minutes 98.4} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 97.25} {:cluster_9 1}, {:Period_minutes 101.93} {:cluster_2 1}, {:Period_minutes 94.49} {:cluster_2 2}, {:Period_minutes 105.14} {:cluster_6 1}, {:Period_minutes 95.7} {:cluster_6 1}, {:Period_minutes 99.7} {:cluster_6 1, :cluster_2 2}, {:Period_minutes 1435.79} {:cluster_4 1}, {:Period_minutes 94.89} {:cluster_2 1}, {:Period_minutes 101.8} {:cluster_2 1}, {:Period_minutes 1436.0} {:cluster_4 9, :cluster_85 2}, {:Period_minutes 116.02} {:cluster_6 1}, {:Period_minutes 717.7} {:cluster_62 1}, {:Period_minutes 102.77} {:cluster_0 1}, {:Period_minutes 94.68} {:cluster_6 10}, {:Period_minutes 99.1} {:cluster_2 3}, {:Period_minutes 719.92} {:cluster_23 1}, {:Period_minutes 107.26} {:cluster_9 2}, {:Period_minutes 94.6} {:cluster_6 6}, {:Period_minutes 95.1} {:cluster_6 1}, {:Period_minutes 1436.19} {:cluster_4 3}, {:Period_minutes 97.99} {:cluster_2 1}, {:Period_minutes 101.5} {:cluster_2 3}, {:Period_minutes 846.98} {:cluster_23 1}, {:Period_minutes 98.43} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 98.3} {:cluster_6 1, :cluster_2 5}, {:Period_minutes 96.2} {:cluster_2 1}, {:Period_minutes 541.4} {:cluster_62 1}, {:Period_minutes 95.8} {:cluster_9 1}, {:Period_minutes 1435.22} {:cluster_4 1}, {:Period_minutes 1436.3} {:cluster_4 1}, {:Period_minutes 97.9} {:cluster_2 1, :cluster_6 2}, {:Period_minutes 101.3} {:cluster_2 7}, {:Period_minutes 114.2} {:cluster_6 2}, {:Period_minutes 99.0} {:cluster_2 1, :cluster_6 1}, {:Period_minutes 675.73} {:cluster_23 1}, {:Period_minutes 846.88} {:cluster_23 1}, {:Period_minutes 676.2} {:cluster_23 1}, {:Period_minutes 729.18} {:cluster_23 1}, {:Period_minutes 102.0} {:cluster_2 2, :cluster_9 1, :cluster_6 1}, {:Period_minutes 100.5} {:cluster_0 1}, {:Period_minutes 103.8} {:cluster_6 1}, {:Period_minutes 96.3} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 96.43} {:cluster_2 1}, {:Period_minutes 1436.04} {:cluster_4 10}, {:Period_minutes 96.88} {:cluster_2 1}, {:Period_minutes 716.47} {:cluster_23 1}, {:Period_minutes 1446.57} {:cluster_4 1}, {:Period_minutes 676.1} {:cluster_23 2}, {:Period_minutes 109.4} {:cluster_2 2}, {:Period_minutes 1148.43} {:cluster_76 1}, {:Period_minutes nil} {:cluster_2 1, :cluster_4 1}, {:Period_minutes 94.66} {:cluster_6 1}, {:Period_minutes 97.48} {:cluster_2 2}, {:Period_minutes 97.17} {:cluster_2 1}, {:Period_minutes 100.7} {:cluster_6 18, :cluster_2 4}, {:Period_minutes 102.41} {:cluster_2 1}, {:Period_minutes 717.66} {:cluster_62 1}, {:Period_minutes 94.67} {:cluster_6 1}, {:Period_minutes 114.3} {:cluster_6 1}, {:Period_minutes 675.67} {:cluster_23 1}, {:Period_minutes 1435.52} {:cluster_4 1}, {:Period_minutes 109.51} {:cluster_2 1}, {:Period_minutes 1434.69} {:cluster_4 1}, {:Period_minutes 99.08} {:cluster_9 1}, {:Period_minutes 100.42} {:cluster_2 1}, {:Period_minutes 97.92} {:cluster_2 1}, {:Period_minutes 718.94} {:cluster_23 1}, {:Period_minutes 1436.05} {:cluster_4 7}, {:Period_minutes 112.4} {:cluster_6 1}, {:Period_minutes 96.34} {:cluster_2 1}, {:Period_minutes 103.0} {:cluster_0 1}, {:Period_minutes 709.61} {:cluster_62 1}, {:Period_minutes 1436.2} {:cluster_4 1}, {:Period_minutes 99.6} {:cluster_2 3}, {:Period_minutes 94.3} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 94.1} {:cluster_2 1}, {:Period_minutes 95.97} {:cluster_2 1}, {:Period_minutes 94.8} {:cluster_2 5}, {:Period_minutes 100.8} {:cluster_2 1}, {:Period_minutes 1427.27} {:cluster_4 1}, {:Period_minutes 101.21} {:cluster_2 1}, {:Period_minutes 96.06} {:cluster_6 1}, {:Period_minutes 1436.14} {:cluster_4 5}, {:Period_minutes 94.84} {:cluster_2 1}, {:Period_minutes 93.75} {:cluster_2 1}, {:Period_minutes 97.4} {:cluster_2 5, :cluster_6 3}, {:Period_minutes 97.7} {:cluster_2 6}, {:Period_minutes 104.8} {:cluster_6 3}, {:Period_minutes 96.9} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 107.0} {:cluster_2 1}, {:Period_minutes 675.61} {:cluster_23 1}, {:Period_minutes 101.45} {:cluster_2 1}, {:Period_minutes 98.46} {:cluster_2 1}, {:Period_minutes 717.95} {:cluster_23 1}, {:Period_minutes 637.65} {:cluster_62 1}, {:Period_minutes 675.62} {:cluster_23 1}, {:Period_minutes 0.22} {:cluster_92 2}, {:Period_minutes 1436.17} {:cluster_4 2}, {:Period_minutes 97.6} {:cluster_2 2, :cluster_6 3}, {:Period_minutes 1436.08} {:cluster_4 46, :cluster_85 1}, {:Period_minutes 1438.8} {:cluster_4 1}, {:Period_minutes 1436.12} {:cluster_4 33, :cluster_85 1}, {:Period_minutes 720.71} {:cluster_23 1}, {:Period_minutes 115.7} {:cluster_6 3}, {:Period_minutes 1436.8} {:cluster_4 1}, {:Period_minutes 717.88} {:cluster_62 1}, {:Period_minutes 717.98} {:cluster_23 1}}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}, :hyper-grid {:m (0.22 657.0943333333333 1313.9686666666666 1970.8429999999998 2627.717333333333 3284.5916666666662 3941.4659999999994 4598.340333333333 5255.214666666666 5912.088999999999 6568.963333333332 7225.837666666665 7882.711999999999 8539.586333333333 9196.460666666666 9853.335 10510.209333333332 11167.083666666666 11823.957999999999 12480.832333333332 13137.706666666665 13794.580999999998 14451.455333333332 15108.329666666665 15765.203999999998 16422.07833333333 17078.952666666664 17735.826999999997 18392.70133333333 19049.575666666664 19706.449999999997 20363.32433333333), :r (8.576329331046313E-4 0.0013732449784346495 0.002198844864748113 0.003520798411904941 0.005637515249941187 0.009026809966130353 0.014453761019179565 0.023143414825770564 0.037057320173410464 0.059336316130216185 0.09500952565995888 0.15212959878265186 0.24359046806108064 0.3900379453112892 0.6245301796641137 1.0000000000000024 1.6012036448548046 2.563853112296305 4.105250948281168 6.573342781431434 10.525260420508005 16.853085348363386 26.985221686848497 43.208835322196634 69.18614460783213 110.78110691951214 177.38311218057225 284.02648575922035 454.7842442329639 728.2021894883578), :s (8858425.349318355 1.0328165686546758E7 1.2041757111716256E7 1.4039658032059647E7 1.6369039487218447E7 1.9084898871629328E7 2.2251358439493366E7 2.5943179250419714E7 3.0247526300454155E7 3.526602651376524E7 4.111716818478869E7 4.7939098522378355E7 5.589288534681975E7 6.516631994935038E7 7.597835090084021E7 8.858425349318428E7 1.0328165686546843E8 1.2041757111716355E8 1.4039658032059762E8 1.6369039487218583E8 1.9084898871629483E8 2.2251358439493546E8 2.594317925041993E8 3.02475263004544E8 3.5266026513765526E8 4.1117168184789026E8 4.793909852237875E8 5.589288534682021E8 6.51663199493509E8 7.597835090084083E8), :nu (1.0 1.265386757025219 1.6012036448548006 2.0261418874997768 2.563853112296299 3.2442657752576287 4.105250948281159 5.194730184220202 6.57334278143142 8.317820905010638 10.525260420507985 13.318525150352494 16.853085348363365 21.325671014834754 26.985221686848462 34.14674215792779 43.20883532219658 54.67588800319107 69.186144607832 87.54723115638235 110.78110691951184 140.1809456245451 177.38311218057163 224.45824107321408 284.0264857592191 359.4033537241277 454.7842442329615 575.4779599561122 728.2021894883533 921.4574070153311)}, :metadata {}, :data {0 100.42, 893 107.4, 920 98.7, 558 100.4, 453 96.9, 584 100.4, 487 1436.05, 637 100.9, 972 1436.1, 519 0.22, 1097 1436.1, 357 114.1, 716 1436.1, 950 1436.0, 275 1436.01, 530 100.4, 929 96.6, 789 105.0, 389 672.7, 586 100.4, 410 675.73, 433 1436.23, 765 100.7, 521 100.4, 451 97.9, 291 1436.19, 443 1436.08, 798 100.7, 779 94.6, 970 97.0, 249 1436.1, 638 97.45, 299 98.0, 1101 1436.1, 121 97.1, 734 1436.08, 287 94.49, 65 98.0, 1086 541.4, 702 717.93, 70 1436.08, 949 1436.1, 218 1436.07, 648 718.04, 1070 1436.1, 812 94.68, 62 97.0, 74 92.81, 774 100.3, 475 1436.13, 497 1436.21, 1009 93.9, 580 100.4, 1138 94.84, 891 107.4, 164 100.9, 1040 1436.1, 282 1436.1, 769 100.7, 799 99.2, 273 1436.06, 1147 107.1, 186 1436.1, 430 1436.1, 641 1436.1, 529 100.4, 898 99.7, 370 114.1, 834 98.3, 233 1423.35, 298 106.7, 188 1436.08, 240 98.8, 110 1436.09, 130 95.5, 982 1436.12, 620 1436.1, 311 1436.1, 931 96.6, 882 98.1, 128 97.4, 399 670.47, 989 100.4, 377 114.08, 468 1436.08, 259 1436.08, 210 1436.1, 229 1436.1, 153 773.19, 621 1436.12, 213 1436.14, 670 1436.1, 977 637.64, 343 114.1, 958 1436.1, 887 107.26, 472 1436.08, 7 1436.1, 894 107.4, 59 1436.08, 934 97.44, 473 1436.11, 1010 93.9, 86 1436.1, 756 100.7, 830 97.3, 613 1436.04, 491 1436.09, 154 773.21, 20 1436.06, 224 1436.06, 355 114.1, 592 97.5, 1146 109.4, 610 97.0, 806 96.98, 571 100.4, 466 684.0, 72 1436.06, 454 1436.07, 888 107.4, 463 nil, 851 115.86, 770 100.7, 814 94.68, 859 97.8, 58 1436.1, 964 97.4, 980 102.1, 1001 102.41, 205 1436.1, 555 100.4, 552 100.4, 60 99.4, 1102 1436.1, 835 97.0, 459 94.37, 175 98.0, 322 844.76, 510 1436.1, 1052 94.0, 1121 1436.07, 662 115.9, 27 96.06, 352 114.1, 493 1436.11, 899 99.8, 416 113.9, 777 100.3, 694 717.97, 1 1436.08, 631 97.9, 854 115.9, 69 1436.03, 101 1439.76, 24 96.2, 901 1436.03, 547 100.4, 102 1427.27, 788 104.74, 1106 94.5, 713 1436.08, 1110 100.5, 385 675.75, 988 94.66, 135 100.7, 1065 92.6, 397 675.85, 1011 94.0, 1006 1436.09, 773 100.3, 490 1436.12, 752 100.3, 354 114.1, 884 1436.11, 360 114.1, 998 115.6, 961 1436.09, 55 1436.08, 568 100.4, 797 105.0, 688 719.32, 763 100.7, 269 1436.07, 676 717.94, 448 94.53, 527 100.4, 206 1436.13, 1075 1436.11, 966 98.0, 165 100.9, 715 1436.08, 387 675.67, 652 1436.1, 683 717.91, 85 1436.04, 721 102.0, 862 100.4, 615 97.92, 681 717.97, 225 1436.13, 865 94.34, 297 107.0, 39 1436.1, 805 97.0, 274 1436.09, 88 1438.2, 217 97.0, 1128 94.4, 46 1436.12, 682 717.91, 508 1436.14, 1157 1436.05, 149 1436.12, 415 98.35, 239 98.8, 478 1436.09, 878 98.8, 157 1436.1, 345 114.1, 300 98.0, 743 95.97, 921 98.7, 1039 94.7, 4 1436.06, 550 100.4, 1115 1436.11, 204 1436.1, 470 1427.91, 1164 1436.1, 646 645.98, 77 1436.1, 106 96.01, 197 101.89, 405 676.2, 897 107.4, 726 1436.15, 776 100.3, 940 98.15, 755 100.7, 902 1436.13, 518 92.8, 232 98.1, 260 1436.09, 823 1435.79, 1125 1436.11, 267 1436.09, 119 98.8, 319 1436.11, 534 100.4, 222 1436.11, 603 1436.1, 293 101.5, 95 1436.07, 450 1436.1, 329 95.6, 144 1436.15, 1087 97.6, 504 1436.1, 819 93.6, 818 1436.09, 505 1436.07, 723 101.4, 1071 1436.1, 1008 95.7, 992 114.2, 176 102.89, 863 100.53, 471 1436.07, 349 114.1, 512 1436.07, 710 1436.1, 1058 1436.0, 192 99.2, 54 114.9, 92 1436.12, 221 1436.11, 141 98.8, 502 1436.09, 871 1436.1, 464 98.3, 801 99.3, 307 1436.07, 935 97.46, 758 100.7, 290 1436.04, 1156 97.5, 1144 94.9, 627 98.8, 517 1439.15, 1122 1436.1, 361 114.08, 264 1436.07, 137 1436.05, 356 114.1, 728 1436.08, 976 637.65, 678 717.97, 327 98.9, 234 98.43, 856 115.8, 817 96.9, 1017 98.0, 104 99.0, 353 114.1, 1145 97.7, 15 97.5, 48 1436.07, 945 1436.1, 759 100.7, 1066 709.61, 242 95.4, 832 98.4, 969 98.0, 50 1436.08, 956 1436.1, 917 1436.07, 1030 1436.13, 557 100.4, 251 1436.1, 394 675.62, 116 1365.61, 585 99.8, 583 100.4, 75 1436.12, 437 98.0, 516 1436.11, 1062 1436.07, 994 115.7, 930 96.5, 967 100.0, 687 718.0, 159 1436.11, 848 115.9, 995 115.7, 1096 97.48, 1159 1435.92, 709 97.6, 99 105.1, 540 100.4, 645 1436.12, 749 1436.08, 479 1436.08, 1081 717.66, 890 107.4, 1046 101.4, 630 97.5, 916 1436.1, 815 94.68, 1080 1436.39, 281 1436.1, 402 671.2, 669 1436.1, 781 94.6, 740 287.93, 1012 96.3, 975 0.22, 429 1436.1, 309 1436.07, 458 94.37, 21 1436.09, 388 680.91, 495 1436.39, 952 1436.12, 626 99.08, 875 98.4, 31 98.2, 113 1436.09, 32 1436.1, 811 94.68, 827 97.3, 407 677.5, 398 675.81, 136 96.43, 691 717.96, 847 116.0, 825 1436.13, 139 98.0, 506 1436.08, 396 681.53, 460 96.47, 483 4032.86, 589 99.8, 581 100.4, 932 96.6, 174 98.6, 578 100.4, 855 115.8, 331 2474.83, 363 114.1, 1038 95.9, 284 1430.6, 208 1436.1, 305 97.4, 1019 3442.0, 955 1436.15, 796 103.6, 708 100.4, 182 98.5, 256 1436.04, 1107 100.2, 1109 91.54, 657 1436.13, 514 1436.07, 1103 1436.1, 731 1436.08, 619 94.6, 985 1437.78, 485 1436.08, 214 1436.12, 193 101.93, 685 718.94, 804 98.45, 869 1436.08, 1002 112.68, 1104 19700.45, 836 101.3, 1131 109.5, 785 1436.09, 635 1436.09, 442 106.27, 1073 1435.22, 561 100.4, 954 1436.06, 656 1436.16, 607 1436.13, 241 98.8, 314 1436.1, 782 99.5, 226 1436.11, 235 98.46, 672 1436.1, 420 115.9, 418 114.0, 262 1436.07, 1016 235.16, 263 1436.21, 304 101.0, 401 675.81, 673 97.9, 40 1436.1, 129 103.11, 600 1436.09, 729 1436.12, 1042 1436.3, 467 97.3, 1033 1436.09, 1149 107.1, 445 1435.95, 317 1436.06, 1091 94.3, 1028 1436.11, 294 101.45, 91 1436.11, 1044 1867.91, 810 94.68, 1137 105.14, 364 114.1, 987 97.73, 880 97.8, 515 1436.1, 412 1436.0, 553 100.4, 974 1436.1, 341 114.1, 117 1436.04, 1000 96.88, 1095 98.43, 665 98.3, 523 100.4, 172 97.8, 601 1436.1, 108 94.8, 156 773.1, 358 114.1, 308 1436.07, 908 98.1, 649 101.3, 531 100.4, 1085 539.06, 923 98.08, 1111 94.51, 223 1436.57, 419 116.1, 365 114.1, 944 98.6, 181 96.8, 417 114.0, 1082 717.9, 979 98.73, 278 1436.11, 56 1436.1, 942 1436.06, 33 1436.08, 13 1306.29, 1043 1868.98, 867 94.4, 22 1436.07, 618 95.5, 1141 97.2, 1093 1436.1, 380 675.78, 257 1436.1, 1061 97.1, 338 114.1, 1024 1436.99, 500 1436.09, 909 97.0, 1018 94.8, 993 115.7, 1089 94.6, 168 97.2, 833 1436.1, 496 1436.11, 1056 1436.08, 1129 94.8, 947 1148.43, 347 114.1, 501 1436.12, 1007 1436.12, 1077 98.0, 596 112.4, 872 1436.1, 792 104.8, 90 1436.12, 237 98.45, 826 109.42, 292 101.5, 109 94.7, 216 96.56, 191 1436.1, 498 1436.1, 829 97.3, 761 100.7, 1072 1436.12, 375 113.35, 525 99.0, 367 114.1, 143 1436.08, 742 96.1, 178 97.1, 640 1436.12, 247 1436.09, 328 95.6, 391 675.2, 990 114.3, 167 97.2, 707 718.07, 36 1436.09, 41 1436.1, 474 1436.1, 187 1436.09, 551 100.4, 1118 1436.06, 996 115.6, 528 100.4, 971 1436.1, 599 1436.03, 376 103.44, 195 101.8, 889 107.4, 316 1436.11, 668 94.9, 428 1436.07, 303 102.8, 671 1436.1, 794 103.8, 905 718.0, 368 114.1, 560 100.4, 565 100.4, 310 1436.07, 366 114.1, 118 96.85, 522 100.4, 150 1435.93, 886 107.26, 313 1436.1, 384 675.75, 567 100.4, 238 98.4, 846 115.9, 962 240.0, 1127 97.7, 845 116.0, 196 101.87, 162 100.9, 393 676.07, 184 1436.1, 219 1436.0, 999 102.77, 461 94.89, 1032 1436.13, 89 1434.1, 100 1436.06, 426 93.4, 604 1436.12, 477 1436.1, 844 115.8, 541 100.4, 351 114.0, 243 94.8, 131 3808.92, 790 104.9, 963 97.5, 1053 91.8, 629 97.2, 873 99.2, 122 100.3, 933 95.9, 43 1436.08, 1067 102.0, 231 1436.1, 61 100.3, 654 101.3, 883 1436.11, 1003 112.58, 598 1436.11, 413 1436.14, 29 98.0, 784 1436.13, 800 94.68, 151 1435.1, 369 114.1, 348 114.1, 1124 1435.76, 575 100.4, 693 718.09, 44 1436.1, 739 287.94, 258 1436.06, 250 1436.12, 674 97.3, 539 100.4, 301 94.68, 838 93.9, 424 116.02, 93 1436.1, 6 1436.14, 684 718.01, 1026 1436.04, 951 1436.16, 573 100.4, 408 677.54, 563 100.4, 850 115.9, 616 98.5, 866 94.3, 111 1436.11, 997 115.5, 689 716.47, 28 150.4, 456 96.9, 374 114.1, 608 100.87, 737 287.93, 1155 97.4, 548 100.4, 538 100.4, 1034 1436.1, 895 107.5, 411 1436.0, 957 1436.1, 134 98.5, 943 1436.52, 64 97.8, 623 94.58, 1135 107.12, 1133 106.93, 465 684.0, 816 94.68, 334 114.1, 1150 101.2, 323 844.69, 189 1436.1, 280 1436.1, 198 101.94, 155 773.1, 295 95.6, 808 101.21, 248 1436.09, 587 100.4, 285 95.4, 507 1436.08, 227 1436.12, 724 94.63, 476 1436.1, 941 98.6, 911 1436.19, 853 115.86, 494 1436.03, 220 1436.1, 842 115.9, 103 1436.1, 697 724.28, 611 97.0, 1105 99.2, 170 99.2, 1154 96.3, 51 1436.1, 25 97.2, 261 1436.08, 768 100.7, 822 127.45, 201 98.8, 904 717.7, 590 100.4, 489 1436.19, 778 94.6, 166 97.2, 447 97.7, 34 1436.05, 252 1436.06, 978 101.4, 775 100.3, 325 1436.1, 1005 1436.1, 594 101.3, 436 97.1, 828 97.3, 535 100.4, 813 94.68, 146 1436.1, 741 99.2, 1060 97.0, 876 98.7, 1064 98.1, 228 1436.07, 907 23.94, 306 1436.11, 125 97.1, 276 101.2, 340 114.1, 148 1436.11, 1143 93.5, 482 1436.11, 1049 1436.1, 622 90.61, 588 100.4, 17 98.0, 312 1436.1, 606 1436.08, 3 1436.1, 1148 107.1, 520 98.3, 1088 1436.1, 760 100.7, 720 101.9, 1126 97.2, 286 97.54, 279 1436.1, 879 98.6, 1020 1436.04, 536 100.4, 1023 1436.06, 663 101.2, 12 1306.29, 440 95.5, 332 98.8, 330 98.3, 1162 1436.1, 382 675.39, 152 773.39, 1112 1436.1, 1140 97.7, 544 100.4, 803 98.7, 642 1434.6, 435 104.4, 342 114.1, 703 722.19, 783 1436.1, 695 718.03, 973 1436.1, 2 1436.13, 948 994.83, 66 97.17, 484 1436.08, 439 1436.08, 236 98.43, 556 100.4, 373 114.1, 1083 704.3, 142 1436.05, 359 114.1, 727 1436.08, 371 118.2, 772 100.9, 444 1436.11, 1057 1436.1, 570 100.4, 757 100.7, 107 98.6, 1094 1434.69, 532 100.4, 984 1436.1, 23 95.1, 1079 97.0, 745 93.91, 719 101.0, 230 1436.08, 625 97.21, 47 1436.08, 526 100.4, 180 98.0, 786 1436.12, 1068 100.3, 1166 94.7, 870 1436.08, 537 100.4, 659 1435.04, 158 1436.1, 991 114.2, 350 114.1, 35 1436.1, 1116 2872.15, 849 115.9, 1120 1435.92, 644 1436.13, 1069 1436.06, 881 99.1, 127 97.4, 927 96.5, 675 1436.04, 1055 94.5, 383 675.75, 533 100.4, 1100 1436.1, 910 1436.1, 302 1436.13, 564 100.4, 701 717.95, 1090 102.1, 566 100.4, 821 100.7, 787 98.6, 82 1436.13, 76 1436.07, 735 97.2, 492 1436.01, 718 1436.09, 771 100.7, 215 98.2, 97 1436.11, 704 717.93, 277 1436.06, 926 96.5, 751 1436.04, 1114 1436.13, 19 1436.08, 335 114.1, 597 1436.1, 938 100.7, 57 1436.08, 609 97.13, 202 1436.12, 68 1436.21, 452 95.8, 1054 94.5, 200 98.8, 1142 97.7, 868 94.37, 11 1446.36, 115 1436.1, 946 1418.5, 1063 98.6, 983 1436.0, 339 114.1, 431 1436.07, 462 94.85, 337 114.1, 698 718.09, 255 1434.03, 503 1436.08, 546 100.4, 9 nil, 953 1436.07, 857 3431.1, 706 716.4, 632 1436.1, 457 94.36, 427 98.1, 145 1436.05, 5 98.6, 733 1436.17, 1163 1436.09, 1165 100.2, 1152 94.4, 624 98.2, 831 97.3, 244 101.08, 918 98.7, 824 1436.06, 289 1436.0, 112 1436.07, 925 96.5, 1059 93.7, 730 1436.12, 699 720.71, 712 98.3, 1076 1435.94, 1113 1436.09, 414 1436.08, 839 95.4, 802 92.81, 1084 97.6, 860 3418.2, 1117 101.1, 179 103.0, 344 114.1, 481 1436.08, 732 1436.11, 661 1436.13, 245 98.03, 378 103.48, 913 1436.1, 906 14.36, 658 1436.13, 266 1436.08, 324 97.56, 793 104.7, 1134 106.33, 1132 106.93, 1014 1436.06, 680 716.69, 446 97.7, 524 100.4, 254 1436.09, 404 675.61, 1025 1435.7, 617 98.5, 283 1446.57, 1153 93.6, 513 1436.12, 572 100.4, 705 719.92, 1098 1436.12, 959 1436.24, 1074 1436.12, 83 1436.15, 634 1436.8, 138 97.4, 1050 1436.07, 346 114.1, 14 97.4, 455 1436.14, 265 1436.12, 449 94.65, 333 114.0, 650 1436.15, 639 98.0, 569 100.4, 326 1436.16, 746 98.7, 647 717.88, 45 1436.1, 53 1436.08, 559 100.4, 78 1436.11, 1037 1436.11, 924 96.85, 562 100.4, 1119 109.4, 542 100.4, 912 1439.41, 664 101.4, 1048 1436.1, 315 1436.08, 1031 1436.1, 914 1436.12, 480 1436.1, 132 1436.1, 753 100.3, 900 97.6, 1013 99.1, 26 96.9, 766 100.7, 123 97.1, 203 1436.12, 667 1436.09, 392 676.1, 1045 1875.53, 577 100.4, 807 99.2, 140 98.0, 321 846.88, 795 104.8, 441 98.4, 700 720.65, 268 1436.28, 840 41.2, 16 97.6, 320 846.98, 133 99.6, 288 94.49, 381 676.1, 605 102.0, 163 98.9, 81 1436.08, 120 94.7, 643 102.2, 79 1436.17, 211 1436.27, 38 1436.08, 173 101.3, 126 97.4, 981 97.2, 1161 1436.05, 421 115.86, 593 1436.0, 636 105.1, 1160 1436.13, 98 1436.08, 422 115.9, 423 116.0, 614 1436.1, 762 100.7, 582 100.4, 666 1436.09, 1123 1436.06, 554 100.4, 409 676.38, 574 99.8, 595 99.1, 124 94.67, 747 1436.08, 171 97.55, 87 1436.03, 169 97.2, 653 1436.0, 679 717.97, 843 115.8, 160 101.5, 30 1436.09, 400 675.08, 767 100.7, 896 107.4, 928 96.6, 696 722.98, 1027 1436.2, 738 287.93, 809 94.68, 509 1436.12, 736 97.48, 207 1436.12, 874 99.6, 434 100.7, 1130 94.1, 690 717.98, 194 101.9, 1047 1436.07, 511 1436.16, 73 1436.09, 486 1436.1, 336 114.1, 96 1436.07, 837 96.0, 1136 107.13, 937 100.8, 10 23.94, 660 1436.12, 272 1436.06, 499 1436.1, 488 1436.12, 903 1436.1, 386 675.83, 270 1436.1, 576 100.4, 717 1436.1, 543 100.4, 271 1436.1, 18 98.0, 395 671.71, 403 680.43, 469 1436.1, 105 96.01, 185 1436.04, 52 1432.0, 1051 1436.1, 545 100.4, 633 103.1, 114 99.6, 1099 1436.1, 968 98.0, 253 1436.1, 612 97.25, 1151 115.8, 1015 1436.09, 628 98.8, 748 1436.12, 209 1436.11, 147 1435.82, 655 101.3, 1022 1435.88, 750 1436.1, 852 115.86, 425 93.4, 1158 1436.24, 864 94.3, 67 97.99, 1108 97.3, 296 107.35, 602 1435.52, 318 1436.1, 161 100.9, 651 1435.96, 725 1436.1, 372 114.1, 1092 1436.09, 406 677.46, 438 98.37, 780 92.62, 711 98.7, 1041 1436.1, 71 1440.31, 939 99.7, 579 100.4, 877 98.5, 722 102.0, 42 1436.1, 919 98.7, 80 1436.15, 885 95.43, 1078 99.7, 986 94.6, 1035 1436.1, 714 1436.23, 677 717.93, 199 96.08, 841 114.7, 754 100.3, 791 104.8, 1029 94.5, 861 3430.28, 591 99.8, 1021 1436.18, 744 93.75, 960 96.34, 37 1436.07, 183 1436.1, 1139 109.51, 965 98.0, 892 107.4, 432 1436.0, 379 113.96, 63 97.5, 212 142.08, 94 1436.12, 362 114.1, 8 1438.8, 686 729.18, 692 718.0, 764 100.7, 246 1436.06, 190 1436.1, 1004 97.2, 1036 94.8, 549 100.4, 922 96.5, 177 101.3, 915 1436.09, 936 96.6, 820 1436.0, 49 1436.08, 858 98.8, 390 680.75, 84 1436.08}}, :Inclination_radians #inferenceql.inference.gpm.column.Column{:var-name :Inclination_radians, :stattype :gaussian, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.106538746, :sum-x-sq 1.2244279963992526}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 3, :sum-x 0.8220500789999999, :sum-x-sq 0.2252554441279687}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 25.06467339, :sum-x-sq 628.237852147374}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.104793417, :sum-x-sq 1.2205684942465358}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.90931654, :sum-x-sq 0.8268565699175715}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.389208423, :sum-x-sq 0.15148319653414694}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 7, :sum-x 9.280788296999999, :sum-x-sq 12.371801612999668}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.104793417, :sum-x-sq 1.2205684942465358}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 15, :sum-x 12.484514672000001, :sum-x-sq 13.304584078471652}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 2, :sum-x 1.090132651, :sum-x-sq 0.843525723012567}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.310742268, :sum-x-sq 1.718045293121784}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 4, :sum-x 0.24277529799999997, :sum-x-sq 0.019788221595664644}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.500909495, :sum-x-sq 0.25091032218115505}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.670206433, :sum-x-sq 0.4491766628345836}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 4, :sum-x 6.330309198, :sum-x-sq 10.01821810490022}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 278, :sum-x 322.3104765720005, :sum-x-sq 416.25948293448715}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 3.49066E-4, :sum-x-sq 1.21847072356E-7}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 7, :sum-x 6.705205920000001, :sum-x-sq 7.250594174978519}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.497418837, :sum-x-sq 0.24742549940243258}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 4, :sum-x 0.0022689290000000003, :sum-x-sq 1.309856027827E-6}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 432, :sum-x 7.324448773000023, :sum-x-sq 1.113137483626897}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 29, :sum-x 33.376105822, :sum-x-sq 41.88670772965639}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 294, :sum-x 501.9291166370006, :sum-x-sq 865.5088320398081}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 72, :sum-x 74.38418739100004, :sum-x-sq 77.36889640089734}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 2, :sum-x 2.2172662819999998, :sum-x-sq 2.4581436556278837}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}}, :assignments {{:Inclination_radians 1.774999849} {:cluster_2 1}, {:Inclination_radians 0.043633231} {:cluster_6 1}, {:Inclination_radians 1.734857276} {:cluster_2 1}, {:Inclination_radians 1.724385301} {:cluster_2 4}, {:Inclination_radians 0.050440015} {:cluster_4 1}, {:Inclination_radians 0.037699112} {:cluster_4 1}, {:Inclination_radians 0.954346035} {:cluster_23 1}, {:Inclination_radians 1.684242728} {:cluster_2 1}, {:Inclination_radians 0.191986218} {:cluster_92 1}, {:Inclination_radians 1.21300383} {:cluster_0 2}, {:Inclination_radians 1.256113463} {:cluster_2 2}, {:Inclination_radians 0.359537826} {:cluster_6 1}, {:Inclination_radians 1.74533E-4} {:cluster_4 59}, {:Inclination_radians 0.759218225} {:cluster_9 1}, {:Inclination_radians 25.06467339} {:cluster_32 1}, {:Inclination_radians 2.103121749} {:cluster_2 1}, {:Inclination_radians 1.699950691} {:cluster_2 8}, {:Inclination_radians 0.907396678} {:cluster_6 1}, {:Inclination_radians 0.070162236} {:cluster_4 1}, {:Inclination_radians 0.785398163} {:cluster_6 25}, {:Inclination_radians 1.70344135} {:cluster_2 7}, {:Inclination_radians 0.009599311} {:cluster_4 1}, {:Inclination_radians 1.221730476} {:cluster_6 1}, {:Inclination_radians 1.401150324} {:cluster_0 1}, {:Inclination_radians 0.024609142} {:cluster_4 1}, {:Inclination_radians 1.099557429} {:cluster_9 2, :cluster_62 1}, {:Inclination_radians 2.474527813} {:cluster_2 1}, {:Inclination_radians 0.74700092} {:cluster_9 1}, {:Inclination_radians 1.128529894} {:cluster_23 1}, {:Inclination_radians 1.712691595} {:cluster_2 2}, {:Inclination_radians 1.106713279} {:cluster_2 1}, {:Inclination_radians 1.448623279} {:cluster_6 6}, {:Inclination_radians 0.00418879} {:cluster_4 1}, {:Inclination_radians 1.289798317} {:cluster_6 1}, {:Inclination_radians 0.226892803} {:cluster_6 1}, {:Inclination_radians 0.185004901} {:cluster_4 1}, {:Inclination_radians 0.001047198} {:cluster_4 28}, {:Inclination_radians 0.038222711} {:cluster_4 1}, {:Inclination_radians 0.084648469} {:cluster_4 1}, {:Inclination_radians 2.09963109} {:cluster_2 10, :cluster_6 1}, {:Inclination_radians 0.907745744} {:cluster_6 3}, {:Inclination_radians 0.134739418} {:cluster_4 1}, {:Inclination_radians 0.16406095} {:cluster_4 1}, {:Inclination_radians 0.058293997} {:cluster_4 1}, {:Inclination_radians 1.109331273} {:cluster_62 1}, {:Inclination_radians 1.130973355} {:cluster_23 8, :cluster_6 1, :cluster_2 1}, {:Inclination_radians 0.001396263} {:cluster_4 13}, {:Inclination_radians 0.032637657} {:cluster_4 1}, {:Inclination_radians 0.104719755} {:cluster_6 1}, {:Inclination_radians 1.74881991} {:cluster_2 1}, {:Inclination_radians 1.724559834} {:cluster_2 1}, {:Inclination_radians 0.043807764} {:cluster_4 1}, {:Inclination_radians 2.502802147} {:cluster_2 1}, {:Inclination_radians 0.044854962} {:cluster_4 1}, {:Inclination_radians 0.004014257} {:cluster_4 1}, {:Inclination_radians 0.139102741} {:cluster_4 1}, {:Inclination_radians 1.441641962} {:cluster_6 3}, {:Inclination_radians 1.047197551} {:cluster_62 1}, {:Inclination_radians 1.186823891} {:cluster_9 1}, {:Inclination_radians 1.106538746} {:cluster_9 10, :cluster_2 3, :cluster_74 1, :cluster_6 1, :cluster_62 1, :cluster_80 1}, {:Inclination_radians 0.015707963} {:cluster_4 1}, {:Inclination_radians 1.722639972} {:cluster_2 11}, {:Inclination_radians 0.071733032} {:cluster_4 1}, {:Inclination_radians 0.144338729} {:cluster_4 1}, {:Inclination_radians 1.439896633} {:cluster_6 28, :cluster_2 1}, {:Inclination_radians 0.34906585} {:cluster_6 4}, {:Inclination_radians 1.291543646} {:cluster_6 1}, {:Inclination_radians 1.614255025} {:cluster_6 1}, {:Inclination_radians 1.131496954} {:cluster_23 1}, {:Inclination_radians 1.721418241} {:cluster_2 1}, {:Inclination_radians 0.066147979} {:cluster_4 1}, {:Inclination_radians 0.122173048} {:cluster_4 1}, {:Inclination_radians 1.711295332} {:cluster_2 1}, {:Inclination_radians 1.584758961} {:cluster_78 1}, {:Inclination_radians 0.005235988} {:cluster_4 2}, {:Inclination_radians 1.717403984} {:cluster_2 5, :cluster_6 1}, {:Inclination_radians 1.131671487} {:cluster_23 2}, {:Inclination_radians 1.727875959} {:cluster_2 2}, {:Inclination_radians 0.001570796} {:cluster_4 9}, {:Inclination_radians 0.020769418} {:cluster_4 1}, {:Inclination_radians 1.682497399} {:cluster_85 1}, {:Inclination_radians 0.105766953} {:cluster_4 1}, {:Inclination_radians 0.95644043} {:cluster_23 3}, {:Inclination_radians 6.98132E-4} {:cluster_4 32, :cluster_59 1}, {:Inclination_radians 0.500909495} {:cluster_73 1}, {:Inclination_radians 1.219985147} {:cluster_9 1}, {:Inclination_radians 5.23599E-4} {:cluster_4 41, :cluster_59 3}, {:Inclination_radians 0.961676418} {:cluster_23 3}, {:Inclination_radians 1.130275224} {:cluster_23 1}, {:Inclination_radians 1.509709803} {:cluster_6 2}, {:Inclination_radians 0.965865208} {:cluster_23 1}, {:Inclination_radians 0.0} {:cluster_4 20, :cluster_3 1}, {:Inclination_radians nil} {:cluster_2 1, :cluster_4 2}, {:Inclination_radians 0.017453293} {:cluster_4 1}, {:Inclination_radians 0.907222145} {:cluster_6 2}, {:Inclination_radians 1.713215194} {:cluster_2 2, :cluster_6 1}, {:Inclination_radians 0.959232957} {:cluster_23 1}, {:Inclination_radians 0.954171502} {:cluster_23 1}, {:Inclination_radians 0.056374135} {:cluster_4 1}, {:Inclination_radians 1.095892237} {:cluster_62 1}, {:Inclination_radians 1.169370599} {:cluster_6 1}, {:Inclination_radians 0.900589894} {:cluster_6 1}, {:Inclination_radians 0.706858347} {:cluster_6 7}, {:Inclination_radians 0.01134464} {:cluster_4 1}, {:Inclination_radians 0.002443461} {:cluster_4 2}, {:Inclination_radians 0.104545222} {:cluster_4 2}, {:Inclination_radians 1.527163095} {:cluster_2 1}, {:Inclination_radians 1.710248134} {:cluster_2 3}, {:Inclination_radians 0.052185345} {:cluster_4 1}, {:Inclination_radians 1.308647873} {:cluster_2 1}, {:Inclination_radians 1.719149313} {:cluster_2 7}, {:Inclination_radians 1.09606677} {:cluster_62 4}, {:Inclination_radians 0.548033385} {:cluster_6 1}, {:Inclination_radians 1.713913325} {:cluster_2 25, :cluster_6 1}, {:Inclination_radians 0.148352986} {:cluster_6 1}, {:Inclination_radians 1.09484504} {:cluster_62 1}, {:Inclination_radians 1.720196511} {:cluster_2 1}, {:Inclination_radians 0.973544657} {:cluster_23 1}, {:Inclination_radians 1.714087858} {:cluster_2 3, :cluster_6 1}, {:Inclination_radians 1.705186679} {:cluster_2 14}, {:Inclination_radians 1.729621289} {:cluster_2 2}, {:Inclination_radians 0.044331363} {:cluster_4 1}, {:Inclination_radians 0.060213859} {:cluster_4 1}, {:Inclination_radians 1.696460033} {:cluster_2 3, :cluster_9 1}, {:Inclination_radians 3.49066E-4} {:cluster_4 48, :cluster_6 1, :cluster_77 1}, {:Inclination_radians 0.080110613} {:cluster_4 1}, {:Inclination_radians 1.753706832} {:cluster_2 1}, {:Inclination_radians 0.962723615} {:cluster_23 1, :cluster_85 1}, {:Inclination_radians 1.127482697} {:cluster_6 8}, {:Inclination_radians 0.103672558} {:cluster_4 1}, {:Inclination_radians 2.14675498} {:cluster_2 2}, {:Inclination_radians 0.05253441} {:cluster_4 1}, {:Inclination_radians 1.605702912} {:cluster_2 1}, {:Inclination_radians 0.716108592} {:cluster_6 1}, {:Inclination_radians 0.024958208} {:cluster_4 1}, {:Inclination_radians 0.023911011} {:cluster_4 1}, {:Inclination_radians 1.413542161} {:cluster_0 1}, {:Inclination_radians 0.007330383} {:cluster_4 1}, {:Inclination_radians 0.034382986} {:cluster_4 1}, {:Inclination_radians 0.08709193} {:cluster_4 1}, {:Inclination_radians 1.128355361} {:cluster_23 1}, {:Inclination_radians 1.710422667} {:cluster_2 13}, {:Inclination_radians 0.249582083} {:cluster_4 1}, {:Inclination_radians 0.113446401} {:cluster_4 1}, {:Inclination_radians 1.107760476} {:cluster_6 1}, {:Inclination_radians 0.670206433} {:cluster_94 1}, {:Inclination_radians 0.031939525} {:cluster_4 1}, {:Inclination_radians 0.002094395} {:cluster_4 4}, {:Inclination_radians 0.274016693} {:cluster_66 3}, {:Inclination_radians 0.003316126} {:cluster_4 2}, {:Inclination_radians 0.019547688} {:cluster_4 1}, {:Inclination_radians 0.002268928} {:cluster_4 4}, {:Inclination_radians 0.012915436} {:cluster_4 1}, {:Inclination_radians 1.128704427} {:cluster_23 1}, {:Inclination_radians 0.994837674} {:cluster_9 1}, {:Inclination_radians 0.031066861} {:cluster_4 1}, {:Inclination_radians 1.72316357} {:cluster_2 1}, {:Inclination_radians 0.085695666} {:cluster_3 1}, {:Inclination_radians 1.293288976} {:cluster_6 1}, {:Inclination_radians 0.960280154} {:cluster_23 1}, {:Inclination_radians 0.033510322} {:cluster_62 1}, {:Inclination_radians 0.963421747} {:cluster_85 1}, {:Inclination_radians 1.507964474} {:cluster_6 67}, {:Inclination_radians 0.959931089} {:cluster_23 11}, {:Inclination_radians 0.031415927} {:cluster_4 1}, {:Inclination_radians 1.75056524} {:cluster_2 2}, {:Inclination_radians 1.413716694} {:cluster_0 2}, {:Inclination_radians 0.052359878} {:cluster_4 1}, {:Inclination_radians 0.006108652} {:cluster_4 1}, {:Inclination_radians 0.004886922} {:cluster_4 1}, {:Inclination_radians 0.958883891} {:cluster_23 1}, {:Inclination_radians 0.157079633} {:cluster_6 1}, {:Inclination_radians 0.019024089} {:cluster_4 1}, {:Inclination_radians 0.175231057} {:cluster_62 1}, {:Inclination_radians 1.702394152} {:cluster_2 1}, {:Inclination_radians 0.00122173} {:cluster_4 27}, {:Inclination_radians 1.110727536} {:cluster_74 1}, {:Inclination_radians 1.132369619} {:cluster_6 2}, {:Inclination_radians 1.715658655} {:cluster_9 1, :cluster_2 5}, {:Inclination_radians 1.212654764} {:cluster_0 1}, {:Inclination_radians 1.506219144} {:cluster_6 1}, {:Inclination_radians 0.014660766} {:cluster_4 1}, {:Inclination_radians 1.700997889} {:cluster_2 1}, {:Inclination_radians 0.841248699} {:cluster_6 1}, {:Inclination_radians 0.035604717} {:cluster_4 1}, {:Inclination_radians 0.085870199} {:cluster_3 1}, {:Inclination_radians 0.898146433} {:cluster_92 1}, {:Inclination_radians 1.711644397} {:cluster_2 1}, {:Inclination_radians 1.698205362} {:cluster_2 6}, {:Inclination_radians 0.102799893} {:cluster_4 1}, {:Inclination_radians 0.152541777} {:cluster_4 1}, {:Inclination_radians 0.121998515} {:cluster_4 1}, {:Inclination_radians 1.127308164} {:cluster_6 1}, {:Inclination_radians 0.610865238} {:cluster_9 1}, {:Inclination_radians 1.10618968} {:cluster_2 2, :cluster_6 1}, {:Inclination_radians 0.960454687} {:cluster_23 1}, {:Inclination_radians 1.553343034} {:cluster_2 1, :cluster_6 1}, {:Inclination_radians 1.72613063} {:cluster_2 5}, {:Inclination_radians 1.583013632} {:cluster_78 2}, {:Inclination_radians 2.474178748} {:cluster_2 1}, {:Inclination_radians 1.726654229} {:cluster_2 2}, {:Inclination_radians 0.541052068} {:cluster_6 1}, {:Inclination_radians 1.711469865} {:cluster_2 2}, {:Inclination_radians 0.001745329} {:cluster_4 4}, {:Inclination_radians 0.90931654} {:cluster_81 1}, {:Inclination_radians 0.112573737} {:cluster_4 2}, {:Inclination_radians 0.127932634} {:cluster_4 2}, {:Inclination_radians 1.698379895} {:cluster_2 1}, {:Inclination_radians 0.963945346} {:cluster_85 1}, {:Inclination_radians 1.30428455} {:cluster_6 1}, {:Inclination_radians 1.724210768} {:cluster_2 1}, {:Inclination_radians 1.104793417} {:cluster_76 1, :cluster_75 1}, {:Inclination_radians 1.769763862} {:cluster_2 1}, {:Inclination_radians 0.962025484} {:cluster_23 1}, {:Inclination_radians 0.355872634} {:cluster_4 2}, {:Inclination_radians 0.995012207} {:cluster_9 1}, {:Inclination_radians 1.707106541} {:cluster_2 2}, {:Inclination_radians 0.082205008} {:cluster_4 1}, {:Inclination_radians 0.064228116} {:cluster_4 1}, {:Inclination_radians 1.4397221} {:cluster_6 2}, {:Inclination_radians 1.172861257} {:cluster_9 1}, {:Inclination_radians 1.239183769} {:cluster_9 1}, {:Inclination_radians 0.497418837} {:cluster_79 1, :cluster_9 1}, {:Inclination_radians 0.009250245} {:cluster_4 1}, {:Inclination_radians 0.033859387} {:cluster_62 1}, {:Inclination_radians 1.579522973} {:cluster_78 1}, {:Inclination_radians 0.472984227} {:cluster_85 1}, {:Inclination_radians 1.151917306} {:cluster_6 1}, {:Inclination_radians 0.959058424} {:cluster_23 1}, {:Inclination_radians 0.164584548} {:cluster_4 1}, {:Inclination_radians 0.025132741} {:cluster_4 1}, {:Inclination_radians 0.017627825} {:cluster_4 1}, {:Inclination_radians 1.129228026} {:cluster_62 1}, {:Inclination_radians 0.091455253} {:cluster_4 1}, {:Inclination_radians 0.954695101} {:cluster_23 2}, {:Inclination_radians 1.712167996} {:cluster_2 15, :cluster_6 1}, {:Inclination_radians 0.040666172} {:cluster_4 1}, {:Inclination_radians 1.708677338} {:cluster_2 24, :cluster_9 1, :cluster_6 2}, {:Inclination_radians 1.706932008} {:cluster_2 35, :cluster_6 5, :cluster_9 3}, {:Inclination_radians 0.961501885} {:cluster_23 1, :cluster_85 1}, {:Inclination_radians 1.701696021} {:cluster_2 8}, {:Inclination_radians 0.039444441} {:cluster_4 1}, {:Inclination_radians 0.201236463} {:cluster_4 1}, {:Inclination_radians 0.003490659} {:cluster_4 2}, {:Inclination_radians 0.719424718} {:cluster_6 1}, {:Inclination_radians 1.521927108} {:cluster_6 1}, {:Inclination_radians 1.131322421} {:cluster_23 4}, {:Inclination_radians 0.175056524} {:cluster_62 1}, {:Inclination_radians 0.005061455} {:cluster_4 1}, {:Inclination_radians 0.032463124} {:cluster_4 1}, {:Inclination_radians 0.078539816} {:cluster_4 1}, {:Inclination_radians 1.710946266} {:cluster_2 2}, {:Inclination_radians 1.44687795} {:cluster_6 4}, {:Inclination_radians 0.089011792} {:cluster_4 1}, {:Inclination_radians 0.617846555} {:cluster_6 2}, {:Inclination_radians 1.106887812} {:cluster_6 1}, {:Inclination_radians 0.045553093} {:cluster_4 1}, {:Inclination_radians 0.100007366} {:cluster_4 1}, {:Inclination_radians 0.032114058} {:cluster_4 1}, {:Inclination_radians 0.0143117} {:cluster_4 1}, {:Inclination_radians 1.570796327} {:cluster_2 1}, {:Inclination_radians 1.713389727} {:cluster_6 1}, {:Inclination_radians 0.0286234} {:cluster_4 1}, {:Inclination_radians 2.146580447} {:cluster_2 1}, {:Inclination_radians 0.958185759} {:cluster_23 5}, {:Inclination_radians 1.692969374} {:cluster_2 1}, {:Inclination_radians 1.713738793} {:cluster_6 1}, {:Inclination_radians 1.256637061} {:cluster_2 6}, {:Inclination_radians 1.310742268} {:cluster_82 1}, {:Inclination_radians 0.925024504} {:cluster_23 1}, {:Inclination_radians 1.699078027} {:cluster_2 4}, {:Inclination_radians 0.70703288} {:cluster_6 13}, {:Inclination_radians 1.705012146} {:cluster_2 1}, {:Inclination_radians 0.076096355} {:cluster_4 1}, {:Inclination_radians 0.020071286} {:cluster_4 1}, {:Inclination_radians 1.694714704} {:cluster_2 1}, {:Inclination_radians 1.125737368} {:cluster_6 2}, {:Inclination_radians 0.008028515} {:cluster_4 2}, {:Inclination_radians 1.132718685} {:cluster_23 2}, {:Inclination_radians 1.523672437} {:cluster_2 1, :cluster_6 1}, {:Inclination_radians 1.686686189} {:cluster_2 1}, {:Inclination_radians 0.047996554} {:cluster_4 1}, {:Inclination_radians 0.156556034} {:cluster_4 1}, {:Inclination_radians 0.961327352} {:cluster_23 1}, {:Inclination_radians 0.122696646} {:cluster_4 1}, {:Inclination_radians 1.130624289} {:cluster_23 2}, {:Inclination_radians 0.964468945} {:cluster_23 1}, {:Inclination_radians 0.698131701} {:cluster_6 2, :cluster_85 1}, {:Inclination_radians 0.004712389} {:cluster_4 1}, {:Inclination_radians 0.001919862} {:cluster_4 3}, {:Inclination_radians 0.040142573} {:cluster_4 1}, {:Inclination_radians 0.488692191} {:cluster_4 1}, {:Inclination_radians 0.663225116} {:cluster_6 1}, {:Inclination_radians 0.901462559} {:cluster_6 2}, {:Inclination_radians 0.446804289} {:cluster_9 1}, {:Inclination_radians 0.966388807} {:cluster_23 1}, {:Inclination_radians 0.00296706} {:cluster_4 1}, {:Inclination_radians 1.131147888} {:cluster_23 1}, {:Inclination_radians 8.72665E-4} {:cluster_4 33}, {:Inclination_radians 0.101927228} {:cluster_4 1}, {:Inclination_radians 0.003665191} {:cluster_4 1}, {:Inclination_radians 1.130449757} {:cluster_23 4}, {:Inclination_radians 1.012290966} {:cluster_6 2}, {:Inclination_radians 0.003141593} {:cluster_4 1}, {:Inclination_radians 1.720894642} {:cluster_2 10}, {:Inclination_radians 1.731366618} {:cluster_2 2}, {:Inclination_radians 0.055850536} {:cluster_4 1}, {:Inclination_radians 1.130798822} {:cluster_23 3}, {:Inclination_radians 0.389208423} {:cluster_93 1}, {:Inclination_radians 0.071209433} {:cluster_3 1}, {:Inclination_radians 0.436332313} {:cluster_6 2}, {:Inclination_radians 0.021293017} {:cluster_4 1}, {:Inclination_radians 1.438151304} {:cluster_6 1}, {:Inclination_radians 0.003839724} {:cluster_4 1}, {:Inclination_radians 0.013439035} {:cluster_4 1}, {:Inclination_radians 1.884955592} {:cluster_6 1}, {:Inclination_radians 0.907571211} {:cluster_6 40}, {:Inclination_radians 0.965167076} {:cluster_23 1}}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}, :hyper-grid {:m (0.0 1.035489113 2.070978226 3.106467339 4.141956452 5.177445564999999 6.212934677999999 7.248423790999999 8.283912904 9.319402017 10.35489113 11.390380243000001 12.425869356000002 13.461358469000002 14.496847582000003 15.532336695000003 16.567825808000002 17.603314921000003 18.638804034000003 19.674293147000004 20.709782260000004 21.745271373000005 22.780760486000005 23.816249599000006 24.851738712000007 25.887227825000007 26.922716938000008 27.95820605100001 28.99369516400001 30.02918427700001 31.06467339000001), :r (8.583690987124466E-4 0.001374345114616742 0.002200480535592605 0.0035232159200945805 0.005641063494463031 0.009031974783909701 0.014461203738843202 0.02315400768709934 0.03707216091107643 0.05935668387043353 0.09503670229921549 0.1521644100540575 0.24363227181642744 0.3900825682519762 0.6245659038500072 1.0000000000000009 1.6011120585285052 2.5635598239653854 4.104546546910188 6.571838971049434 10.522250623254804 16.847302355752333 26.974418955470735 43.18906746140405 69.15053670905505 110.71775817858601 177.27153771297696 283.8315966661379 454.4461920135521 727.6192779852582), :s (12.05789937163154 14.058478525362458 16.390982571397497 19.11048262947997 22.28118691120772 25.977956695156657 30.288073824109176 35.31330145552679 41.1722867202034 48.003362016590295 55.96781108019156 65.25367694090747 76.0802016753403 88.70300277794519 103.42010836670089 120.57899371631532 140.58478525362443 163.9098257139747 191.10482629479935 222.81186911207666 259.7795669515658 302.88073824109074 353.1330145552666 411.7228672020323 480.0336201659007 559.6781108019127 652.5367694090713 760.8020167533991 887.0300277794473 1034.2010836670036), :nu (1.0 1.2653505674430718 1.601112058528504 2.0259680517989875 2.5635598239653836 3.2438018779288593 4.104546546910185 5.193690302229303 6.571838971049429 8.315680171161887 10.522250623254795 13.31433579691367 16.84730235575232 21.3177435957362 26.97441895547071 34.13209633175202 43.18906746140401 54.649311019624676 69.15053670905498 87.49967086379566 110.71775817858581 140.09677813729832 177.27153771297648 224.31064083662062 283.8315966661369 359.14647189976927 454.4461920135501 575.0337469366885 727.6192779852544 920.6934662811595)}, :metadata {}, :data {0 1.721418241, 893 1.106538746, 920 1.713913325, 558 1.507964474, 453 1.706932008, 584 1.507964474, 487 3.49066E-4, 637 1.21300383, 972 8.72665E-4, 519 0.191986218, 1097 0.0, 357 0.907571211, 716 1.74533E-4, 950 0.0, 275 0.002268928, 530 1.507964474, 929 1.70344135, 789 1.448623279, 389 1.128355361, 586 1.507964474, 410 1.130449757, 433 0.001570796, 765 0.785398163, 521 1.507964474, 451 1.713913325, 291 0.038222711, 443 5.23599E-4, 798 1.169370599, 779 0.706858347, 970 0.698131701, 249 0.001919862, 638 1.774999849, 299 2.09963109, 1101 0.0, 121 1.706932008, 734 0.001047198, 287 1.699078027, 65 1.713913325, 1086 0.175231057, 702 0.958883891, 70 1.74533E-4, 949 6.98132E-4, 218 1.74533E-4, 648 1.09484504, 1070 0.034382986, 812 0.70703288, 62 1.712167996, 74 0.901462559, 774 0.785398163, 475 0.001047198, 497 5.23599E-4, 1009 1.523672437, 580 1.507964474, 1138 1.702394152, 891 1.106538746, 164 1.256637061, 1040 0.0, 282 8.72665E-4, 769 0.785398163, 799 1.715658655, 273 3.49066E-4, 1147 1.106538746, 186 5.23599E-4, 430 0.004014257, 641 0.0, 529 1.507964474, 898 0.436332313, 370 0.907571211, 834 0.157079633, 233 0.008028515, 298 2.14675498, 188 0.00122173, 240 1.713913325, 110 5.23599E-4, 130 0.617846555, 982 3.49066E-4, 620 3.49066E-4, 311 1.74533E-4, 931 1.705186679, 882 1.706932008, 128 1.708677338, 399 1.130624289, 989 1.720894642, 377 0.907222145, 468 0.001396263, 259 0.00122173, 210 0.0, 229 1.74533E-4, 153 0.962723615, 621 8.72665E-4, 213 0.064228116, 670 1.74533E-4, 977 0.033510322, 343 0.907571211, 958 0.009250245, 887 1.099557429, 472 0.040142573, 7 0.055850536, 894 1.106538746, 59 1.74533E-4, 934 1.710248134, 473 0.040666172, 1010 1.523672437, 86 0.001396263, 756 0.785398163, 830 1.708677338, 613 5.23599E-4, 491 1.74533E-4, 154 0.961676418, 20 0.019547688, 224 8.72665E-4, 355 0.907571211, 592 1.708677338, 1146 1.75056524, 610 1.708677338, 806 1.708677338, 571 1.507964474, 466 1.109331273, 72 0.001047198, 454 1.74533E-4, 888 1.106538746, 463 nil, 851 1.439896633, 770 0.785398163, 814 0.70703288, 859 1.710422667, 58 1.74533E-4, 964 1.127482697, 980 0.34906585, 1001 1.726654229, 205 0.044331363, 555 1.507964474, 552 1.507964474, 60 1.710422667, 1102 0.0, 835 1.710422667, 459 1.698379895, 175 2.09963109, 322 0.965865208, 510 25.06467339, 1052 1.699950691, 1121 0.0, 662 1.439896633, 27 1.132369619, 352 0.907571211, 493 0.001047198, 899 0.436332313, 416 1.441641962, 777 0.785398163, 694 0.925024504, 1 1.74533E-4, 631 1.127482697, 854 1.439896633, 69 0.102799893, 101 0.001047198, 24 1.706932008, 901 0.488692191, 547 1.507964474, 102 5.23599E-4, 788 1.44687795, 1106 1.698205362, 713 5.23599E-4, 1110 1.21300383, 385 1.130973355, 988 0.70703288, 135 1.719149313, 1065 0.610865238, 397 1.130275224, 1011 1.527163095, 1006 1.74533E-4, 773 0.785398163, 490 5.23599E-4, 752 0.785398163, 354 0.907571211, 884 0.112573737, 360 0.907571211, 998 1.439896633, 961 0.105766953, 55 3.49066E-4, 568 1.507964474, 797 1.448623279, 688 0.961501885, 763 0.785398163, 269 0.001047198, 676 0.973544657, 448 1.699078027, 527 1.507964474, 206 1.74533E-4, 1075 0.066147979, 966 2.09963109, 165 1.256637061, 715 1.74533E-4, 387 1.132718685, 652 0.008028515, 683 0.958185759, 85 0.001047198, 721 1.729621289, 862 1.720894642, 615 1.710946266, 681 0.954695101, 225 1.74533E-4, 865 1.713738793, 297 2.14675498, 39 3.49066E-4, 805 1.713913325, 274 0.001047198, 88 0.002443461, 217 1.706932008, 1128 1.699950691, 46 8.72665E-4, 682 0.959931089, 508 1.74533E-4, 1157 0.00296706, 149 0.963945346, 415 1.713215194, 239 1.713913325, 478 0.00418879, 878 1.706932008, 157 1.74533E-4, 345 0.907571211, 300 2.09963109, 743 2.502802147, 921 1.712167996, 1039 1.701696021, 4 1.74533E-4, 550 1.507964474, 1115 0.001570796, 204 8.72665E-4, 470 0.001047198, 1164 5.23599E-4, 646 1.09606677, 77 0.0, 106 1.130973355, 197 1.724210768, 405 1.131322421, 897 1.106538746, 726 0.00122173, 776 0.785398163, 940 1.711469865, 755 0.785398163, 902 0.044854962, 518 0.900589894, 232 1.713913325, 260 0.00122173, 823 0.025132741, 1125 0.001047198, 267 0.001047198, 119 1.713913325, 319 1.74533E-4, 534 1.507964474, 222 8.72665E-4, 603 1.74533E-4, 293 1.724385301, 95 0.001047198, 450 0.0, 329 1.125737368, 144 0.032637657, 1087 1.706932008, 504 3.49066E-4, 819 1.696460033, 818 3.49066E-4, 505 1.74533E-4, 723 1.722639972, 1071 0.037699112, 1008 0.548033385, 992 1.439896633, 176 1.413542161, 863 1.719149313, 471 6.98132E-4, 349 0.907571211, 512 1.74533E-4, 710 0.003490659, 1058 0.035604717, 192 1.720894642, 54 1.769763862, 92 0.00122173, 221 0.001047198, 141 1.713913325, 502 0.0, 871 5.23599E-4, 464 1.712167996, 801 1.715658655, 307 8.72665E-4, 935 1.710248134, 758 0.785398163, 290 0.045553093, 1156 1.708677338, 1144 1.698205362, 627 1.713913325, 517 8.72665E-4, 1122 5.23599E-4, 361 0.907396678, 264 0.001396263, 137 8.72665E-4, 356 0.907571211, 728 0.0, 976 0.033859387, 678 0.954695101, 327 1.705186679, 234 1.714087858, 856 1.439896633, 817 1.706932008, 1017 2.09963109, 104 1.715658655, 353 0.907571211, 1145 1.710422667, 15 1.127482697, 48 5.23599E-4, 945 0.005235988, 759 0.785398163, 1066 1.129228026, 242 1.70344135, 832 1.713913325, 969 1.712167996, 50 8.72665E-4, 956 0.00122173, 917 3.49066E-4, 1030 3.49066E-4, 557 1.507964474, 251 3.49066E-4, 394 1.131496954, 116 0.00122173, 585 1.507964474, 583 1.507964474, 75 0.122696646, 437 1.712167996, 516 0.003141593, 1062 0.004712389, 994 1.439896633, 930 1.70344135, 967 1.717403984, 687 0.959058424, 159 0.001396263, 848 1.439896633, 995 1.439896633, 1096 1.710946266, 1159 6.98132E-4, 709 0.841248699, 99 1.731366618, 540 1.507964474, 645 0.127932634, 749 3.49066E-4, 479 0.002094395, 1081 1.09606677, 890 1.106538746, 1046 1.722639972, 630 1.127482697, 916 5.23599E-4, 815 0.70703288, 1080 0.039444441, 281 0.001570796, 402 1.131322421, 669 0.00122173, 781 0.706858347, 740 5.23599E-4, 1012 0.359537826, 975 0.898146433, 429 0.001570796, 309 1.74533E-4, 458 1.698205362, 21 5.23599E-4, 388 1.128529894, 495 0.001047198, 952 5.23599E-4, 626 0.995012207, 875 1.706932008, 31 1.712167996, 113 0.00122173, 32 6.98132E-4, 811 0.70703288, 827 1.708677338, 407 1.130973355, 398 1.130449757, 136 1.705186679, 691 0.966388807, 847 1.439896633, 825 0.001745329, 139 1.706932008, 506 3.49066E-4, 396 1.131147888, 460 1.705012146, 483 0.90931654, 589 1.521927108, 581 1.507964474, 932 1.705186679, 174 1.708677338, 578 1.507964474, 855 1.439896633, 331 0.389208423, 363 0.907571211, 1038 1.706932008, 284 0.001396263, 208 8.72665E-4, 305 1.706932008, 1019 1.583013632, 955 0.056374135, 796 1.448623279, 708 1.720894642, 182 1.705186679, 256 3.49066E-4, 1107 1.719149313, 1109 0.759218225, 657 0.104545222, 514 1.74533E-4, 1103 1.74533E-4, 731 3.49066E-4, 619 1.30428455, 985 3.49066E-4, 485 3.49066E-4, 214 0.024609142, 193 1.724385301, 685 0.959931089, 804 1.719149313, 869 0.012915436, 1002 1.012290966, 1104 0.500909495, 836 1.722639972, 1131 1.74881991, 785 0.00122173, 635 0.003839724, 442 0.541052068, 1073 0.058293997, 561 1.507964474, 954 0.08709193, 656 0.00122173, 607 5.23599E-4, 241 1.713913325, 314 8.72665E-4, 782 1.684242728, 226 3.49066E-4, 235 1.714087858, 672 nil, 420 1.439896633, 418 1.441641962, 262 0.001047198, 1016 1.110727536, 263 5.23599E-4, 304 1.221730476, 401 1.130449757, 673 1.717403984, 40 0.001047198, 129 1.413716694, 600 1.74533E-4, 729 3.49066E-4, 1042 8.72665E-4, 467 1.706932008, 1033 8.72665E-4, 1149 1.106538746, 445 0.00122173, 317 0.0, 1091 1.701696021, 1028 3.49066E-4, 294 1.724559834, 91 0.00122173, 1044 0.274016693, 810 0.70703288, 1137 1.107760476, 364 0.907571211, 987 1.256637061, 880 1.127482697, 515 3.49066E-4, 412 0.0, 553 1.507964474, 974 0.001047198, 341 0.907571211, 117 8.72665E-4, 1000 1.707106541, 1095 1.712691595, 665 1.706932008, 523 1.507964474, 172 1.706932008, 601 1.74533E-4, 108 1.708677338, 156 0.959931089, 358 0.907571211, 308 1.74533E-4, 908 1.713913325, 649 1.720894642, 531 1.507964474, 1085 0.175056524, 923 1.711469865, 1111 1.699078027, 223 0.00122173, 419 1.439896633, 365 0.907571211, 944 1.708677338, 181 1.706932008, 417 1.441641962, 1082 1.09606677, 979 1.713913325, 278 0.047996554, 56 3.49066E-4, 942 0.017627825, 33 5.23599E-4, 13 0.355872634, 1043 0.274016693, 867 1.713215194, 22 8.72665E-4, 618 1.70344135, 1141 1.708677338, 1093 3.49066E-4, 380 1.130449757, 257 0.00122173, 1061 1.710422667, 338 0.907571211, 1024 0.16406095, 500 5.23599E-4, 909 1.706932008, 1018 1.699950691, 993 0.148352986, 1089 0.706858347, 168 1.708677338, 833 1.74533E-4, 496 5.23599E-4, 1056 0.001047198, 1129 1.699950691, 947 1.104793417, 347 0.907571211, 501 0.104545222, 1007 1.74533E-4, 1077 1.710422667, 596 1.151917306, 872 3.49066E-4, 792 1.44687795, 90 0.001396263, 237 1.714087858, 826 1.570796327, 292 1.720894642, 109 1.701696021, 216 1.706932008, 191 5.23599E-4, 498 3.49066E-4, 829 1.708677338, 761 0.785398163, 1072 0.144338729, 375 0.907222145, 525 1.509709803, 367 0.907571211, 143 0.962723615, 742 1.70344135, 178 1.706932008, 640 0.019024089, 247 0.0, 328 1.125737368, 391 1.130798822, 990 1.439896633, 167 1.708677338, 707 0.962025484, 36 1.74533E-4, 41 8.72665E-4, 474 0.05253441, 187 8.72665E-4, 551 1.507964474, 1118 0.001745329, 996 1.439896633, 528 1.507964474, 971 0.001047198, 599 8.72665E-4, 376 0.907745744, 195 1.72613063, 889 1.106538746, 316 1.74533E-4, 668 1.699950691, 428 0.001047198, 303 1.727875959, 671 nil, 794 1.448623279, 905 1.047197551, 368 0.907571211, 560 1.507964474, 565 1.507964474, 310 0.001047198, 366 0.907571211, 118 0.226892803, 522 1.507964474, 150 1.682497399, 886 1.099557429, 313 3.49066E-4, 384 1.130973355, 567 1.507964474, 238 1.712167996, 846 1.439896633, 962 1.106538746, 1127 1.708677338, 845 1.439896633, 196 1.72613063, 162 1.256637061, 393 1.131322421, 184 5.23599E-4, 219 0.001047198, 999 1.401150324, 461 1.700997889, 1032 6.98132E-4, 89 0.002094395, 100 0.00122173, 426 1.553343034, 604 6.98132E-4, 477 6.98132E-4, 844 1.439896633, 541 1.507964474, 351 0.907571211, 243 1.699950691, 131 0.497418837, 790 1.44687795, 963 1.127482697, 1053 0.74700092, 629 1.705186679, 873 1.710422667, 122 1.720894642, 933 1.705186679, 43 3.49066E-4, 1067 1.239183769, 231 0.100007366, 61 1.713913325, 654 1.722639972, 883 0.112573737, 1003 1.012290966, 598 1.74533E-4, 413 0.007330383, 29 2.09963109, 784 8.72665E-4, 800 0.70703288, 151 0.963421747, 369 0.907571211, 348 0.907571211, 1124 0.002443461, 575 1.507964474, 693 0.958185759, 44 1.74533E-4, 739 5.23599E-4, 258 8.72665E-4, 250 0.003490659, 674 1.712167996, 539 1.507964474, 301 0.70703288, 838 1.696460033, 424 1.614255025, 93 0.00122173, 6 0.134739418, 684 0.95644043, 1026 0.185004901, 951 0.001396263, 573 1.507964474, 408 1.130624289, 563 1.507964474, 850 1.439896633, 616 1.713913325, 866 1.713389727, 111 0.014660766, 997 1.439896633, 689 0.961676418, 28 1.310742268, 456 1.706932008, 374 0.907571211, 608 1.106538746, 737 5.23599E-4, 1155 1.708677338, 548 1.507964474, 538 1.507964474, 1034 3.49066E-4, 895 1.106538746, 411 0.004886922, 957 0.00122173, 134 1.719149313, 943 6.98132E-4, 64 1.713913325, 623 0.706858347, 1135 1.106713279, 1133 1.10618968, 465 1.099557429, 816 0.70703288, 334 0.907571211, 1150 1.722639972, 323 0.965167076, 189 1.74533E-4, 280 6.98132E-4, 198 1.726654229, 155 0.959931089, 295 0.446804289, 808 1.72316357, 248 5.23599E-4, 587 1.507964474, 285 0.617846555, 507 1.74533E-4, 227 0.00122173, 724 0.706858347, 476 0.0, 941 1.713913325, 911 1.74533E-4, 853 1.439896633, 494 3.49066E-4, 220 5.23599E-4, 842 1.439896633, 103 8.72665E-4, 697 0.959931089, 611 1.706932008, 1105 1.706932008, 170 1.605702912, 1154 1.696460033, 51 6.98132E-4, 25 1.710422667, 261 1.74533E-4, 768 0.785398163, 822 1.127308164, 201 1.705186679, 904 1.106538746, 590 1.507964474, 489 0.00122173, 778 0.706858347, 166 1.708677338, 447 1.706932008, 34 5.23599E-4, 252 0.00122173, 978 1.720894642, 775 0.785398163, 325 0.001570796, 1005 0.002094395, 594 1.724385301, 436 1.70344135, 828 1.708677338, 535 1.507964474, 813 0.70703288, 146 0.024958208, 741 1.715658655, 1060 1.293288976, 876 1.706932008, 1064 1.705186679, 228 1.74533E-4, 907 0.085695666, 306 8.72665E-4, 125 1.708677338, 276 1.727875959, 340 0.907571211, 148 0.032114058, 1143 1.696460033, 482 5.23599E-4, 1049 3.49066E-4, 622 1.686686189, 588 1.507964474, 17 2.09963109, 312 3.49066E-4, 606 6.98132E-4, 3 1.74533E-4, 1148 1.106538746, 520 2.103121749, 1088 0.003665191, 760 0.785398163, 720 1.729621289, 1126 1.706932008, 286 1.256113463, 279 3.49066E-4, 879 1.706932008, 1020 0.0286234, 536 1.507964474, 1023 0.201236463, 663 1.72613063, 12 0.355872634, 440 0.663225116, 332 1.713913325, 330 1.712167996, 1162 0.00122173, 382 1.130973355, 152 0.964468945, 1112 1.74533E-4, 1140 1.710422667, 544 1.507964474, 803 1.713913325, 642 6.98132E-4, 435 1.734857276, 342 0.907571211, 703 0.960280154, 783 0.001745329, 695 0.958185759, 973 6.98132E-4, 2 0.032463124, 948 1.106538746, 66 1.706932008, 484 6.98132E-4, 439 1.74533E-4, 236 1.714087858, 556 1.507964474, 373 0.907571211, 1083 1.095892237, 142 0.031066861, 359 0.907571211, 727 0.001047198, 371 1.291543646, 772 1.884955592, 444 3.49066E-4, 1057 0.017453293, 570 1.507964474, 757 0.785398163, 107 1.708677338, 1094 0.001396263, 532 1.507964474, 984 0.001047198, 23 0.043633231, 1079 1.706932008, 745 2.474527813, 719 1.722639972, 230 1.74533E-4, 625 1.186823891, 47 1.74533E-4, 526 1.507964474, 180 1.710422667, 786 5.23599E-4, 1068 1.720894642, 1166 1.701696021, 870 3.49066E-4, 537 1.507964474, 659 0.078539816, 158 8.72665E-4, 991 1.439896633, 350 0.907571211, 35 5.23599E-4, 1116 0.670206433, 849 1.439896633, 1120 6.98132E-4, 644 0.089011792, 1069 1.74533E-4, 881 1.708677338, 127 1.708677338, 927 1.705186679, 675 0.127932634, 1055 1.699950691, 383 1.130973355, 533 1.507964474, 1100 1.74533E-4, 910 8.72665E-4, 302 0.156556034, 564 1.507964474, 701 0.961327352, 1090 0.34906585, 566 1.507964474, 821 1.720894642, 787 1.717403984, 82 6.98132E-4, 76 3.49066E-4, 735 0.104719755, 492 0.002268928, 718 6.98132E-4, 771 0.785398163, 215 1.710422667, 97 0.001396263, 704 0.95644043, 277 3.49066E-4, 926 1.706932008, 751 6.98132E-4, 1114 0.001396263, 19 0.002094395, 335 0.907571211, 597 0.020769418, 938 1.717403984, 57 1.74533E-4, 609 1.706932008, 202 3.49066E-4, 68 0.113446401, 452 0.497418837, 1054 1.699950691, 200 1.705186679, 1142 1.706932008, 868 1.713215194, 11 0.076096355, 115 5.23599E-4, 946 1.104793417, 1063 1.708677338, 983 5.23599E-4, 339 0.907571211, 431 6.98132E-4, 462 1.701696021, 337 0.907571211, 698 0.959931089, 255 0.001396263, 503 1.74533E-4, 546 1.507964474, 9 0.0, 953 0.164584548, 857 1.584758961, 706 0.961676418, 632 0.139102741, 457 1.698205362, 427 1.712167996, 145 0.031939525, 5 1.706932008, 733 3.49066E-4, 1163 0.003316126, 1165 1.720196511, 1152 1.706932008, 624 0.994837674, 831 1.708677338, 244 1.212654764, 918 1.712167996, 824 1.74533E-4, 289 0.013439035, 112 6.98132E-4, 925 1.706932008, 1059 1.698205362, 730 0.001396263, 699 0.959931089, 712 1.713913325, 1076 0.091455253, 1113 1.74533E-4, 414 0.249582083, 839 1.70344135, 802 0.901462559, 1084 1.706932008, 860 1.583013632, 1117 1.722639972, 179 1.413716694, 344 0.907571211, 481 6.98132E-4, 732 5.23599E-4, 661 0.0143117, 245 1.712691595, 378 0.907745744, 913 8.72665E-4, 906 0.085870199, 658 0.006108652, 266 6.98132E-4, 324 1.711644397, 793 1.448623279, 1134 1.10618968, 1132 1.10618968, 1014 0.0, 680 0.958185759, 446 1.706932008, 524 1.507964474, 254 0.00122173, 404 1.131671487, 1025 0.152541777, 617 1.713913325, 283 0.001919862, 1153 1.694714704, 513 1.74533E-4, 572 1.506219144, 705 0.959232957, 1098 5.23599E-4, 959 0.00122173, 1074 0.071733032, 83 5.23599E-4, 634 0.084648469, 138 1.127482697, 1050 0.052185345, 346 0.907571211, 14 3.49066E-4, 455 0.001047198, 265 0.001570796, 449 0.70703288, 333 0.907571211, 650 0.031415927, 639 2.09963109, 569 1.507964474, 326 0.021293017, 746 1.706932008, 647 1.09606677, 45 5.23599E-4, 53 0.001570796, 559 1.507964474, 78 0.0, 1037 0.103672558, 924 1.308647873, 562 1.507964474, 1119 1.75056524, 542 1.507964474, 912 8.72665E-4, 664 1.722639972, 1048 1.74533E-4, 315 5.23599E-4, 1031 6.98132E-4, 914 0.002268928, 480 5.23599E-4, 132 8.72665E-4, 753 0.785398163, 900 1.289798317, 1013 1.715658655, 26 1.438151304, 766 0.785398163, 123 1.706932008, 203 5.23599E-4, 667 0.070162236, 392 1.130798822, 1045 0.274016693, 577 1.507964474, 807 1.715658655, 140 1.706932008, 321 0.954346035, 795 1.448623279, 441 1.712167996, 700 0.958185759, 268 0.001047198, 840 0.719424718, 16 1.127482697, 320 0.954171502, 133 1.719149313, 288 1.699078027, 381 1.130973355, 605 0.34906585, 163 1.256637061, 81 0.020071286, 120 1.701696021, 643 0.34906585, 79 3.49066E-4, 211 0.001745329, 38 6.98132E-4, 173 1.722639972, 126 1.692969374, 981 1.710422667, 1161 0.009599311, 421 1.4397221, 593 0.472984227, 636 1.731366618, 1160 0.005235988, 98 6.98132E-4, 422 1.439896633, 423 1.4397221, 614 3.49066E-4, 762 0.785398163, 582 1.507964474, 666 0.023911011, 1123 6.98132E-4, 554 1.507964474, 409 1.131322421, 574 1.509709803, 595 1.717403984, 124 0.70703288, 747 3.49066E-4, 171 1.711295332, 87 8.72665E-4, 169 1.708677338, 653 0.005061455, 679 0.959931089, 843 1.439896633, 160 1.724385301, 30 3.49066E-4, 400 1.130973355, 767 0.785398163, 896 1.106538746, 928 1.705186679, 696 0.959931089, 1027 0.015707963, 738 6.98132E-4, 809 0.70703288, 509 1.74533E-4, 736 1.256113463, 207 6.98132E-4, 874 1.712167996, 434 1.717403984, 1130 1.698205362, 690 0.959931089, 194 1.72613063, 1047 0.00122173, 511 3.49066E-4, 73 1.74533E-4, 486 5.23599E-4, 336 0.907571211, 96 0.001047198, 837 1.219985147, 1136 1.106887812, 937 1.719149313, 10 0.0, 660 0.060213859, 272 0.001570796, 499 3.49066E-4, 488 8.72665E-4, 903 0.043807764, 386 1.132718685, 270 0.001047198, 576 1.507964474, 717 1.74533E-4, 543 1.507964474, 271 0.00122173, 18 2.09963109, 395 1.130798822, 403 1.131671487, 469 0.001396263, 105 1.130973355, 185 0.001570796, 52 1.74533E-4, 1051 0.101927228, 545 1.507964474, 633 1.172861257, 114 1.705186679, 1099 0.0, 968 2.09963109, 253 1.74533E-4, 612 1.706932008, 1151 1.439896633, 1015 5.23599E-4, 628 1.713913325, 748 3.49066E-4, 209 0.080110613, 147 0.961501885, 655 1.722639972, 1022 0.121998515, 750 5.23599E-4, 852 1.439896633, 425 1.553343034, 1158 0.01134464, 864 1.713913325, 67 1.706932008, 1108 1.706932008, 296 2.146580447, 602 0.00122173, 318 1.74533E-4, 161 1.256637061, 651 0.082205008, 725 3.49066E-4, 372 0.907571211, 1092 6.98132E-4, 406 1.130973355, 438 1.712167996, 780 0.698131701, 711 1.713913325, 1041 6.98132E-4, 71 5.23599E-4, 939 1.708677338, 579 1.507964474, 877 1.706932008, 722 1.72613063, 42 0.052359878, 919 1.713913325, 80 3.49066E-4, 885 1.710248134, 1078 1.712167996, 986 0.706858347, 1035 1.74533E-4, 714 8.72665E-4, 677 0.959931089, 199 1.132369619, 841 1.439896633, 754 0.785398163, 791 1.44687795, 1029 0.716108592, 861 1.579522973, 591 1.507964474, 1021 0.122173048, 744 2.474178748, 960 1.707106541, 37 6.98132E-4, 183 6.98132E-4, 1139 1.753706832, 965 2.09963109, 892 1.106538746, 432 0.003316126, 379 0.907745744, 63 1.712167996, 212 0.071209433, 94 0.001919862, 362 0.907571211, 8 0.050440015, 686 0.960454687, 692 0.95644043, 764 0.785398163, 246 3.49066E-4, 190 3.49066E-4, 1004 1.710422667, 1036 1.701696021, 549 1.507964474, 922 1.705186679, 177 1.722639972, 915 0.002268928, 936 1.701696021, 820 0.698131701, 49 8.72665E-4, 858 1.708677338, 390 1.128704427, 84 6.98132E-4}}, :Users #inferenceql.inference.gpm.column.Column{:var-name :Users, :stattype :categorical, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 3, :counts {"Commercial/Government/Government" 0, "Government/Civil" 3, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 7, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 1, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 4, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 15, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 13, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 2, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 1, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 4, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 4, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 4, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 4, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 278, :counts {"Commercial/Government/Government" 1, "Government/Civil" 5, "Military" 67, "Civil/Military" 1, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 21, "Commercial" 90, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 71, "Civil" 13, "Governmnet" 1, "Commerical" 0, "Commercial/Government" 8, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 7, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 5, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 4, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 4, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 434, :counts {"Commercial/Government/Government" 0, "Government/Civil" 4, "Military" 75, "Civil/Military" 0, "Commercial/Gov/Mil" 2, "Civil/Government" 0, "Military/Commercial" 10, "Government" 55, "Commercial" 277, "Commecial" 1, "Civil/Commercial" 0, "Government/Military" 1, "Government/Commercial" 3, "Civil" 1, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 3, "Military/Government" 2}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 29, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 23, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 4, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 2, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 295, :counts {"Commercial/Government/Government" 0, "Government/Civil" 10, "Military" 48, "Civil/Military" 1, "Commercial/Gov/Mil" 0, "Civil/Government" 3, "Military/Commercial" 4, "Government" 134, "Commercial" 30, "Commecial" 0, "Civil/Commercial" 1, "Government/Military" 5, "Government/Commercial" 4, "Civil" 51, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 1, "Military/Government" 3}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 72, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 5, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 63, "Government" 0, "Commercial" 3, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 1, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 2, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 2, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Users "Civil/Government"} {:cluster_2 3, :cluster_0 1}, {:Users "Civil"} {:cluster_2 51, :cluster_0 4, :cluster_6 13, :cluster_82 1, :cluster_4 1}, {:Users "Civil/Commercial"} {:cluster_2 1}, {:Users "Commercial/Government/Government"} {:cluster_6 1}, {:Users "Government/Civil"} {:cluster_6 5, :cluster_2 10, :cluster_4 4, :cluster_66 3}, {:Users "Governmnet"} {:cluster_6 1}, {:Users "Commercial/Gov/Mil"} {:cluster_4 2}, {:Users "Commerical"} {:cluster_23 1}, {:Users "Government/Commercial"} {:cluster_6 71, :cluster_2 4, :cluster_4 3, :cluster_9 2}, {:Users "Government/Military"} {:cluster_2 5, :cluster_4 1}, {:Users "Military/Commercial"} {:cluster_23 63, :cluster_4 10, :cluster_2 4}, {:Users "Commecial"} {:cluster_4 1}, {:Users "Government"} {:cluster_81 1, :cluster_93 1, :cluster_0 2, :cluster_62 2, :cluster_92 2, :cluster_73 1, :cluster_94 1, :cluster_78 4, :cluster_6 21, :cluster_85 2, :cluster_79 1, :cluster_4 55, :cluster_9 4, :cluster_2 134}, {:Users "Civil/Military"} {:cluster_6 1, :cluster_2 1}, {:Users "Military/Government"} {:cluster_2 3, :cluster_4 2}, {:Users "Commercial/Government"} {:cluster_4 3, :cluster_6 8, :cluster_2 1}, {:Users "Commercial"} {:cluster_80 1, :cluster_32 1, :cluster_75 1, :cluster_76 1, :cluster_6 90, :cluster_77 1, :cluster_59 4, :cluster_4 277, :cluster_2 30, :cluster_23 3}, {:Users "Military"} {:cluster_62 13, :cluster_3 4, :cluster_6 67, :cluster_85 5, :cluster_4 75, :cluster_9 23, :cluster_2 48, :cluster_23 5, :cluster_74 2}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Civil" "Commercial" "Government" "Military" "Commercial/Government" "Military/Commercial" "Government/Military" "Government/Civil" "Civil/Commercial" "Civil/Military" "Military/Government" "Civil/Government" "Commerical" "Commercial/Government/Government" "Commercial/Gov/Mil" "Government/Commercial" "Governmnet" "Commecial"], :data {0 "Civil", 893 "Military", 920 "Government", 558 "Government/Commercial", 453 "Civil", 584 "Government/Commercial", 487 "Commercial", 637 "Civil", 972 "Commercial", 519 "Government", 1097 "Military", 357 "Commercial", 716 "Commercial", 950 "Commercial", 275 "Commercial", 530 "Government/Commercial", 929 "Government", 789 "Military", 389 "Military/Commercial", 586 "Government/Commercial", 410 "Military/Commercial", 433 "Government", 765 "Commercial", 521 "Government/Commercial", 451 "Civil", 291 "Government", 443 "Commercial/Gov/Mil", 798 "Government", 779 "Military", 970 "Government/Civil", 249 "Commercial", 638 "Civil", 299 "Civil/Government", 1101 "Military", 121 "Civil", 734 "Commercial", 287 "Government", 65 "Commercial", 1086 "Government", 702 "Military/Commercial", 70 "Commercial", 949 "Commercial", 218 "Commercial", 648 "Military", 1070 "Military", 812 "Military", 62 "Commercial", 74 "Commercial", 774 "Commercial", 475 "Commercial", 497 "Commercial", 1009 "Government", 580 "Government/Commercial", 1138 "Military", 891 "Military", 164 "Government/Civil", 1040 "Commercial", 282 "Commercial", 769 "Commercial", 799 "Military", 273 "Commercial", 1147 "Government", 186 "Commercial", 430 "Government", 641 "Commercial", 529 "Government/Commercial", 898 "Government", 370 "Commercial", 834 "Government", 233 "Government", 298 "Military", 188 "Commercial", 240 "Government", 110 "Commercial", 130 "Government", 982 "Commercial", 620 "Military/Commercial", 311 "Commercial", 931 "Government", 882 "Government", 128 "Government", 399 "Military/Commercial", 989 "Commercial", 377 "Commercial", 468 "Commercial", 259 "Commercial", 210 "Military", 229 "Commercial", 153 "Military", 621 "Commercial", 213 "Military", 670 "Government", 977 "Military", 343 "Commercial", 958 "Military", 887 "Military", 472 "Commercial", 7 "Military", 894 "Military", 59 "Commercial", 934 "Government", 473 "Commercial", 1010 "Government", 86 "Commercial", 756 "Commercial", 830 "Commercial", 613 "Government", 491 "Commercial", 154 "Military", 20 "Commercial", 224 "Commercial", 355 "Commercial", 592 "Government", 1146 "Government", 610 "Military", 806 "Government", 571 "Government/Commercial", 466 "Military", 72 "Government", 454 "Commercial", 888 "Military", 463 "Government", 851 "Military", 770 "Commercial", 814 "Military", 859 "Government", 58 "Commercial", 964 "Military", 980 "Civil", 1001 "Military", 205 "Military", 555 "Government/Commercial", 552 "Government/Commercial", 60 "Commercial", 1102 "Military", 835 "Government", 459 "Government", 175 "Civil", 322 "Commercial", 510 "Commercial", 1052 "Civil", 1121 "Military/Commercial", 662 "Civil", 27 "Civil", 352 "Commercial", 493 "Commercial", 899 "Government", 416 "Commercial/Government/Government", 777 "Commercial", 694 "Military/Commercial", 1 "Commercial", 631 "Commercial", 854 "Military", 69 "Commercial", 101 "Government", 24 "Government", 901 "Government", 547 "Government/Commercial", 102 "Government", 788 "Military", 1106 "Military/Commercial", 713 "Government", 1110 "Civil", 385 "Military/Commercial", 988 "Military", 135 "Government", 1065 "Government", 397 "Military/Commercial", 1011 "Government", 1006 "Commercial", 773 "Commercial", 490 "Commercial", 752 "Commercial", 354 "Commercial", 884 "Military", 360 "Commercial", 998 "Military", 961 "Commercial", 55 "Commercial", 568 "Government/Commercial", 797 "Military", 688 "Military/Commercial", 763 "Commercial", 269 "Commercial", 676 "Military/Commercial", 448 "Government", 527 "Government/Commercial", 206 "Military", 1075 "Military", 966 "Military", 165 "Government/Civil", 715 "Commercial", 387 "Military/Commercial", 652 "Government/Civil", 683 "Military/Commercial", 85 "Commercial", 721 "Government", 862 "Military", 615 "Civil", 681 "Military/Commercial", 225 "Commercial", 865 "Military", 297 "Military", 39 "Commercial", 805 "Civil", 274 "Commercial", 88 "Commercial", 217 "Civil", 1128 "Military", 46 "Commercial", 682 "Military/Commercial", 508 "Commercial", 1157 "Government", 149 "Military", 415 "Military", 239 "Government", 478 "Government", 878 "Commercial", 157 "Government", 345 "Commercial", 300 "Civil/Government", 743 "Military", 921 "Government", 1039 "Commercial", 4 "Commercial", 550 "Government/Commercial", 1115 "Commercial", 204 "Military", 470 "Commercial", 1164 "Government", 646 "Military", 77 "Commercial", 106 "Civil", 197 "Military", 405 "Military/Commercial", 897 "Military", 726 "Commercial", 776 "Commercial", 940 "Military", 755 "Commercial", 902 "Military", 518 "Government", 232 "Civil", 260 "Commercial", 823 "Military", 1125 "Commercial", 267 "Commercial", 119 "Government", 319 "Commercial", 534 "Government/Commercial", 222 "Commercial", 603 "Commercial", 293 "Government", 95 "Commercial", 450 "Commercial", 329 "Commercial", 144 "Military", 1087 "Civil", 504 "Commercial", 819 "Commercial", 818 "Commercial", 505 "Commercial", 723 "Government", 1071 "Military", 1008 "Government", 992 "Military", 176 "Civil", 863 "Government", 471 "Commercial", 349 "Commercial", 512 "Commercial", 710 "Commercial", 1058 "Government", 192 "Government", 54 "Civil", 92 "Commercial", 221 "Commercial", 141 "Government/Civil", 502 "Commercial", 871 "Commercial", 464 "Commercial", 801 "Government", 307 "Commercial", 935 "Government", 758 "Commercial", 290 "Government", 1156 "Civil", 1144 "Government", 627 "Government", 517 "Commercial", 1122 "Commercial", 361 "Commercial", 264 "Commercial", 137 "Commercial", 356 "Commercial", 728 "Commercial", 976 "Military", 678 "Military/Commercial", 327 "Commercial", 234 "Military", 856 "Military", 817 "Civil", 1017 "Military", 104 "Civil", 353 "Commercial", 1145 "Government", 15 "Commercial", 48 "Commercial", 945 "Commercial", 759 "Commercial", 1066 "Military", 242 "Military/Commercial", 832 "Government", 969 "Civil", 50 "Military/Commercial", 956 "Military", 917 "Commercial", 1030 "Commercial", 557 "Government/Commercial", 251 "Commercial", 394 "Military/Commercial", 116 "Commercial", 585 "Government/Commercial", 583 "Government/Commercial", 75 "Commercial/Government", 437 "Military", 516 "Commercial", 1062 "Government", 994 "Military", 930 "Government", 967 "Government", 687 "Military/Commercial", 159 "Military", 848 "Military", 995 "Military", 1096 "Government", 1159 "Government", 709 "Military", 99 "Government/Military", 540 "Government/Commercial", 645 "Military", 749 "Commercial", 479 "Government", 1081 "Military", 890 "Military", 1046 "Government", 630 "Commercial", 916 "Commercial", 815 "Military", 1080 "Military", 281 "Commercial", 402 "Military/Commercial", 669 "Government", 781 "Military", 740 "Commercial", 1012 "Government/Civil", 975 "Government", 429 "Government", 309 "Commercial", 458 "Government", 21 "Commercial", 388 "Military/Commercial", 495 "Commercial", 952 "Commercial", 626 "Military", 875 "Commercial", 31 "Government", 113 "Commercial", 32 "Commercial", 811 "Military", 827 "Commercial", 407 "Military/Commercial", 398 "Military/Commercial", 136 "Government", 691 "Military/Commercial", 847 "Military", 825 "Military", 139 "Civil", 506 "Commercial", 396 "Military/Commercial", 460 "Government", 483 "Government", 589 "Government/Commercial", 581 "Government/Commercial", 932 "Government", 174 "Civil", 578 "Government/Commercial", 855 "Military", 331 "Government", 363 "Commercial", 1038 "Government/Military", 284 "Commercial", 208 "Military", 305 "Civil", 1019 "Government", 955 "Military", 796 "Military", 708 "Government", 182 "Civil", 256 "Commercial", 1107 "Military/Commercial", 1109 "Military", 657 "Military", 514 "Commercial", 1103 "Commercial", 731 "Commercial", 619 "Military", 985 "Commercial", 485 "Commercial", 214 "Military", 193 "Military", 685 "Military/Commercial", 804 "Government", 869 "Commercial", 1002 "Military", 1104 "Government", 836 "Government", 1131 "Military", 785 "Commercial", 635 "Government", 442 "Government", 1073 "Military", 561 "Government/Commercial", 954 "Military", 656 "Government/Military", 607 "Commercial", 241 "Government", 314 "Commercial", 782 "Government", 226 "Commercial", 235 "Military", 672 "Military", 420 "Commercial/Government", 418 "Commercial/Government", 262 "Commercial", 1016 "Military", 263 "Commercial", 304 "Government", 401 "Military/Commercial", 673 "Government", 40 "Commercial", 129 "Government", 600 "Commercial", 729 "Commercial", 1042 "Commercial", 467 "Government", 1033 "Commercial", 1149 "Government", 445 "Commercial", 317 "Commercial", 1091 "Commercial", 1028 "Government", 294 "Government", 91 "Commercial", 1044 "Government/Civil", 810 "Military", 1137 "Military", 364 "Commercial", 987 "Military", 880 "Government", 515 "Commercial", 412 "Government", 553 "Government/Commercial", 974 "Military", 341 "Commercial", 117 "Commercial", 1000 "Government", 1095 "Government", 665 "Civil", 523 "Government/Commercial", 172 "Civil", 601 "Commercial", 108 "Government/Civil", 156 "Military", 358 "Commercial", 308 "Commercial", 908 "Government", 649 "Government", 531 "Government/Commercial", 1085 "Government", 923 "Government", 1111 "Government", 223 "Commercial", 419 "Commercial/Government", 365 "Commercial", 944 "Government", 181 "Civil", 417 "Commercial/Government", 1082 "Military", 979 "Commercial", 278 "Commercial", 56 "Commercial", 942 "Military", 33 "Commercial", 13 "Military", 1043 "Government/Civil", 867 "Military", 22 "Commercial", 618 "Government/Commercial", 1141 "Military", 1093 "Government", 380 "Military/Commercial", 257 "Commercial", 1061 "Civil", 338 "Commercial", 1024 "Government/Commercial", 500 "Commercial", 909 "Civil", 1018 "Government", 993 "Military", 1089 "Civil", 168 "Military/Government", 833 "Commercial", 496 "Commercial", 1056 "Government", 1129 "Military", 947 "Commercial", 347 "Commercial", 501 "Commercial", 1007 "Commercial", 1077 "Government", 596 "Government", 872 "Commecial", 792 "Military", 90 "Commercial", 237 "Military", 826 "Military", 292 "Government", 109 "Government", 216 "Government", 191 "Commercial", 498 "Commercial", 829 "Commercial", 761 "Commercial", 1072 "Military", 375 "Commercial", 525 "Government/Commercial", 367 "Commercial", 143 "Military", 742 "Government", 178 "Civil", 640 "Commercial", 247 "Commercial", 328 "Commercial", 391 "Military/Commercial", 990 "Military", 167 "Military/Government", 707 "Military/Commercial", 36 "Commercial", 41 "Commercial", 474 "Commercial", 187 "Commercial", 551 "Government/Commercial", 1118 "Military/Government", 996 "Military", 528 "Government/Commercial", 971 "Commercial", 599 "Commercial", 376 "Commercial", 195 "Military", 889 "Military", 316 "Commercial", 668 "Government/Military", 428 "Government", 303 "Government/Military", 671 "Military", 794 "Military", 905 "Military", 368 "Commercial", 560 "Government/Commercial", 565 "Government/Commercial", 310 "Commercial", 366 "Commercial", 118 "Military", 522 "Government/Commercial", 150 "Military", 886 "Military", 313 "Commercial", 384 "Military/Commercial", 567 "Government/Commercial", 238 "Government", 846 "Military", 962 "Military", 1127 "Military", 845 "Military", 196 "Military", 162 "Government/Civil", 393 "Military/Commercial", 184 "Commercial", 219 "Commercial", 999 "Government", 461 "Government", 1032 "Commercial", 89 "Commercial", 100 "Government", 426 "Civil", 604 "Commercial", 477 "Government", 844 "Military", 541 "Government/Commercial", 351 "Commercial", 243 "Military/Commercial", 131 "Government", 790 "Military", 963 "Military", 1053 "Government", 629 "Government", 873 "Commercial", 122 "Civil", 933 "Government", 43 "Commercial", 1067 "Military", 231 "Commercial", 61 "Commercial", 654 "Government/Civil", 883 "Military", 1003 "Military", 598 "Commercial", 413 "Government", 29 "Military", 784 "Commercial", 800 "Government", 151 "Military", 369 "Commercial", 348 "Commercial", 1124 "Commercial", 575 "Government/Commercial", 693 "Military/Commercial", 44 "Commercial", 739 "Commercial", 258 "Commercial", 250 "Commercial", 674 "Government", 539 "Government/Commercial", 301 "Government/Civil", 838 "Government/Commercial", 424 "Commercial/Government", 93 "Commercial", 6 "Military", 684 "Military/Commercial", 1026 "Government", 951 "Commercial", 573 "Government/Commercial", 408 "Military/Commercial", 563 "Government/Commercial", 850 "Military", 616 "Government/Commercial", 866 "Military", 111 "Military/Commercial", 997 "Military", 689 "Military/Commercial", 28 "Civil", 456 "Government", 374 "Commercial", 608 "Military", 737 "Commercial", 1155 "Civil", 548 "Government/Commercial", 538 "Government/Commercial", 1034 "Commercial", 895 "Military", 411 "Government", 957 "Military", 134 "Government", 943 "Military/Commercial", 64 "Commercial", 623 "Civil", 1135 "Military", 1133 "Military", 465 "Military", 816 "Military", 334 "Commercial", 1150 "Government", 323 "Commercial", 189 "Commercial", 280 "Commercial", 198 "Military", 155 "Military", 295 "Government", 808 "Government", 248 "Commercial", 587 "Government/Commercial", 285 "Civil/Military", 507 "Commercial", 227 "Commercial", 724 "Governmnet", 476 "Government", 941 "Government", 911 "Commercial", 853 "Military", 494 "Commercial", 220 "Commercial", 842 "Military", 103 "Government", 697 "Military/Commercial", 611 "Military", 1105 "Commercial", 170 "Government", 1154 "Military", 51 "Military/Commercial", 25 "Government", 261 "Commercial", 768 "Commercial", 822 "Civil", 201 "Commercial", 904 "Military", 590 "Government/Commercial", 489 "Commercial", 778 "Military", 166 "Civil/Military", 447 "Government", 34 "Commercial", 252 "Commercial", 978 "Commercial", 775 "Commercial", 325 "Military", 1005 "Commercial", 594 "Government", 436 "Government/Civil", 828 "Commercial", 535 "Government/Commercial", 813 "Military", 146 "Military", 741 "Government", 1060 "Government/Civil", 876 "Commercial", 1064 "Commercial", 228 "Commercial", 907 "Military", 306 "Commercial", 125 "Government", 276 "Commercial", 340 "Commercial", 148 "Military", 1143 "Government", 482 "Government", 1049 "Commercial", 622 "Government", 588 "Government/Commercial", 17 "Commercial", 312 "Commercial", 606 "Government", 3 "Commercial", 1148 "Government", 520 "Government", 1088 "Government", 760 "Commercial", 720 "Government", 1126 "Military", 286 "Civil", 279 "Commercial", 879 "Commercial", 1020 "Government", 536 "Government/Commercial", 1023 "Government", 663 "Government", 12 "Military", 440 "Government/Civil", 332 "Government", 330 "Commercial/Government", 1162 "Military", 382 "Military/Commercial", 152 "Military", 1112 "Commercial", 1140 "Military", 544 "Government/Commercial", 803 "Government", 642 "Commercial", 435 "Government", 342 "Commercial", 703 "Military/Commercial", 783 "Government/Commercial", 695 "Military/Commercial", 973 "Commercial", 2 "Commercial", 948 "Commercial", 66 "Commercial", 484 "Commercial", 439 "Commercial", 236 "Military", 556 "Government/Commercial", 373 "Commercial", 1083 "Military", 142 "Military", 359 "Commercial", 727 "Commercial", 371 "Commercial", 772 "Commercial", 444 "Commercial/Gov/Mil", 1057 "Government", 570 "Government/Commercial", 757 "Commercial", 107 "Civil", 1094 "Government", 532 "Government/Commercial", 984 "Commercial", 23 "Government", 1079 "Civil", 745 "Military", 719 "Government", 230 "Commercial", 625 "Military", 47 "Commercial", 526 "Government/Commercial", 180 "Government", 786 "Military", 1068 "Civil", 1166 "Government", 870 "Commercial", 537 "Government/Commercial", 659 "Military", 158 "Military", 991 "Military", 350 "Commercial", 35 "Commercial", 1116 "Government", 849 "Military", 1120 "Military/Commercial", 644 "Military", 1069 "Commercial", 881 "Government", 127 "Military", 927 "Government", 675 "Military", 1055 "Government", 383 "Military/Commercial", 533 "Government/Commercial", 1100 "Military", 910 "Commercial", 302 "Military", 564 "Government/Commercial", 701 "Military/Commercial", 1090 "Commercial", 566 "Government/Commercial", 821 "Commercial", 787 "Government", 82 "Commercial", 76 "Commercial", 735 "Government", 492 "Commercial", 718 "Commercial", 771 "Commercial", 215 "Government", 97 "Commercial", 704 "Military/Commercial", 277 "Commercial", 926 "Government", 751 "Commercial", 1114 "Commercial", 19 "Commercial", 335 "Commercial", 597 "Commercial", 938 "Government", 57 "Commercial", 609 "Military", 202 "Government", 68 "Commercial", 452 "Government", 1054 "Government", 200 "Commercial", 1142 "Government", 868 "Military", 11 "Military", 115 "Commercial", 946 "Commercial", 1063 "Government", 983 "Commercial", 339 "Commercial", 431 "Government", 462 "Government", 337 "Commercial", 698 "Military/Commercial", 255 "Commercial", 503 "Commercial", 546 "Government/Commercial", 9 "Military", 953 "Military", 857 "Government", 706 "Military/Commercial", 632 "Military", 457 "Government", 427 "Civil", 145 "Military", 5 "Government", 733 "Commercial", 1163 "Military/Government", 1165 "Government", 1152 "Civil", 624 "Military", 831 "Commercial", 244 "Civil", 918 "Government", 824 "Military", 289 "Government", 112 "Commercial", 925 "Government", 1059 "Government", 730 "Commercial", 699 "Military/Commercial", 712 "Government", 1076 "Military", 1113 "Commercial", 414 "Civil", 839 "Military", 802 "Government", 1084 "Civil", 860 "Government", 1117 "Government", 179 "Civil/Government", 344 "Commercial", 481 "Government", 732 "Commercial", 661 "Military", 245 "Civil", 378 "Commercial", 913 "Commercial", 906 "Military", 658 "Military", 266 "Commercial", 324 "Government", 793 "Military", 1134 "Military", 1132 "Military", 1014 "Military", 680 "Military/Commercial", 446 "Government", 524 "Government/Commercial", 254 "Commercial", 404 "Military/Commercial", 1025 "Government/Commercial", 617 "Government/Commercial", 283 "Commercial", 1153 "Military", 513 "Commercial", 572 "Government/Commercial", 705 "Military/Commercial", 1098 "Military", 959 "Military", 1074 "Military", 83 "Commercial", 634 "Government", 138 "Civil", 1050 "Commercial", 346 "Commercial", 14 "Government", 455 "Commercial", 265 "Commercial", 449 "Civil", 333 "Commercial", 650 "Government/Civil", 639 "Civil", 569 "Government/Commercial", 326 "Commercial", 746 "Government", 647 "Military", 45 "Commercial", 53 "Military/Commercial", 559 "Government/Commercial", 78 "Commercial", 1037 "Commercial", 924 "Government", 562 "Government/Commercial", 1119 "Civil", 542 "Government/Commercial", 912 "Commercial", 664 "Government", 1048 "Commercial", 315 "Commercial", 1031 "Commercial", 914 "Commercial", 480 "Government", 132 "Commercial/Government", 753 "Commercial", 900 "Government", 1013 "Civil", 26 "Civil", 766 "Commercial", 123 "Civil/Commercial", 203 "Military", 667 "Commercial", 392 "Military/Commercial", 1045 "Government/Civil", 577 "Government/Commercial", 807 "Government", 140 "Civil", 321 "Commercial", 795 "Military", 441 "Government", 700 "Military/Commercial", 268 "Commercial", 840 "Military", 16 "Commercial", 320 "Commerical", 133 "Government", 288 "Government", 381 "Military/Commercial", 605 "Civil", 163 "Government/Civil", 81 "Commercial", 120 "Government", 643 "Government", 79 "Commercial", 211 "Military", 38 "Commercial", 173 "Civil", 126 "Government", 981 "Government/Military", 1161 "Military", 421 "Commercial/Government", 593 "Government", 636 "Government", 1160 "Military", 98 "Government", 422 "Commercial/Government", 423 "Commercial/Government", 614 "Government", 762 "Commercial", 582 "Government/Commercial", 666 "Commercial", 1123 "Commercial", 554 "Government/Commercial", 409 "Military/Commercial", 574 "Government/Commercial", 595 "Civil", 124 "Civil", 747 "Military/Commercial", 171 "Civil", 87 "Commercial", 169 "Military/Government", 653 "Government/Civil", 679 "Military/Commercial", 843 "Military", 160 "Military", 30 "Commercial/Government", 400 "Military/Commercial", 767 "Commercial", 896 "Military", 928 "Government", 696 "Military/Commercial", 1027 "Government", 738 "Commercial", 809 "Military", 509 "Commercial", 736 "Civil/Government", 207 "Military", 874 "Commercial", 434 "Government", 1130 "Military", 690 "Military/Commercial", 194 "Military", 1047 "Commercial", 511 "Commercial", 73 "Commercial", 486 "Commercial", 336 "Commercial", 96 "Commercial", 837 "Government/Commercial", 1136 "Military", 937 "Government", 10 "Military", 660 "Military", 272 "Commercial", 499 "Commercial", 488 "Commercial", 903 "Military", 386 "Military/Commercial", 270 "Commercial", 576 "Government/Commercial", 717 "Commercial", 543 "Government/Commercial", 271 "Commercial", 18 "Commercial", 395 "Military/Commercial", 403 "Military/Commercial", 469 "Commercial", 105 "Civil", 185 "Commercial", 52 "Military/Commercial", 1051 "Commercial", 545 "Government/Commercial", 633 "Military", 114 "Government", 1099 "Military", 968 "Military", 253 "Commercial", 612 "Military", 1151 "Civil", 1015 "Military", 628 "Government", 748 "Commercial", 209 "Military", 147 "Military", 655 "Government/Civil", 1022 "Government", 750 "Commercial", 852 "Military", 425 "Civil", 1158 "Government", 864 "Military", 67 "Commercial", 1108 "Commercial", 296 "Military", 602 "Commercial", 318 "Commercial", 161 "Government/Civil", 651 "Government/Civil", 725 "Commercial", 372 "Commercial", 1092 "Commercial", 406 "Military/Commercial", 438 "Military", 780 "Military", 711 "Government", 1041 "Commercial", 71 "Commercial", 939 "Government", 579 "Government/Commercial", 877 "Commercial", 722 "Government", 42 "Commercial", 919 "Government", 80 "Commercial", 885 "Military", 1078 "Civil", 986 "Military", 1035 "Commercial", 714 "Government", 677 "Military/Commercial", 199 "Commercial", 841 "Military", 754 "Commercial", 791 "Military", 1029 "Military", 861 "Government", 591 "Government/Commercial", 1021 "Government", 744 "Military", 960 "Commercial", 37 "Commercial", 183 "Commercial", 1139 "Military", 965 "Military", 892 "Military", 432 "Military", 379 "Commercial", 63 "Commercial", 212 "Military", 94 "Commercial", 362 "Commercial", 8 "Military", 686 "Military/Commercial", 692 "Military/Commercial", 764 "Commercial", 246 "Commercial", 190 "Commercial", 1004 "Civil", 1036 "Government/Commercial", 549 "Government/Commercial", 922 "Government", 177 "Civil", 915 "Commercial", 936 "Government", 820 "Government", 49 "Commercial", 858 "Civil", 390 "Military/Commercial", 84 "Commercial"}}, :Class_of_Orbit #inferenceql.inference.gpm.column.Column{:var-name :Class_of_Orbit, :stattype :categorical, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 3, :counts {"LEO" 0, "GEO" 0, "Elliptical" 3, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 1, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 7, :counts {"LEO" 5, "GEO" 0, "Elliptical" 2, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 15, :counts {"LEO" 0, "GEO" 0, "Elliptical" 15, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 2, :counts {"LEO" 0, "GEO" 0, "Elliptical" 2, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 4, :counts {"LEO" 0, "GEO" 4, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 4, :counts {"LEO" 0, "GEO" 0, "Elliptical" 4, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 278, :counts {"LEO" 276, "GEO" 0, "Elliptical" 1, "MEO" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 1, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 7, :counts {"LEO" 0, "GEO" 7, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 4, :counts {"LEO" 0, "GEO" 0, "Elliptical" 0, "MEO" 4}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 434, :counts {"LEO" 0, "GEO" 434, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 29, :counts {"LEO" 29, "GEO" 0, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 295, :counts {"LEO" 295, "GEO" 0, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 72, :counts {"LEO" 0, "GEO" 0, "Elliptical" 0, "MEO" 72}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 2, :counts {"LEO" 0, "GEO" 0, "Elliptical" 2, "MEO" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Class_of_Orbit "LEO"} {:cluster_2 295, :cluster_9 29, :cluster_6 276, :cluster_0 5}, {:Class_of_Orbit "GEO"} {:cluster_4 434, :cluster_32 1, :cluster_85 7, :cluster_3 4, :cluster_77 1}, {:Class_of_Orbit "Elliptical"} {:cluster_80 1, :cluster_66 3, :cluster_75 1, :cluster_81 1, :cluster_93 1, :cluster_0 2, :cluster_76 1, :cluster_62 15, :cluster_92 2, :cluster_82 1, :cluster_73 1, :cluster_94 1, :cluster_78 4, :cluster_6 1, :cluster_79 1, :cluster_74 2}, {:Class_of_Orbit "MEO"} {:cluster_23 72, :cluster_59 4, :cluster_6 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["LEO" "GEO" "Elliptical" "MEO"], :data {0 "LEO", 893 "LEO", 920 "LEO", 558 "LEO", 453 "LEO", 584 "LEO", 487 "GEO", 637 "LEO", 972 "GEO", 519 "Elliptical", 1097 "GEO", 357 "LEO", 716 "GEO", 950 "GEO", 275 "GEO", 530 "LEO", 929 "LEO", 789 "LEO", 389 "MEO", 586 "LEO", 410 "MEO", 433 "GEO", 765 "LEO", 521 "LEO", 451 "LEO", 291 "GEO", 443 "GEO", 798 "LEO", 779 "LEO", 970 "LEO", 249 "GEO", 638 "LEO", 299 "LEO", 1101 "GEO", 121 "LEO", 734 "GEO", 287 "LEO", 65 "LEO", 1086 "Elliptical", 702 "MEO", 70 "GEO", 949 "GEO", 218 "GEO", 648 "Elliptical", 1070 "GEO", 812 "LEO", 62 "LEO", 74 "LEO", 774 "LEO", 475 "GEO", 497 "GEO", 1009 "LEO", 580 "LEO", 1138 "LEO", 891 "LEO", 164 "LEO", 1040 "GEO", 282 "GEO", 769 "LEO", 799 "LEO", 273 "GEO", 1147 "LEO", 186 "GEO", 430 "GEO", 641 "GEO", 529 "LEO", 898 "LEO", 370 "LEO", 834 "LEO", 233 "GEO", 298 "LEO", 188 "GEO", 240 "LEO", 110 "GEO", 130 "LEO", 982 "GEO", 620 "GEO", 311 "GEO", 931 "LEO", 882 "LEO", 128 "LEO", 399 "MEO", 989 "LEO", 377 "LEO", 468 "GEO", 259 "GEO", 210 "GEO", 229 "GEO", 153 "MEO", 621 "GEO", 213 "GEO", 670 "GEO", 977 "Elliptical", 343 "LEO", 958 "GEO", 887 "LEO", 472 "GEO", 7 "GEO", 894 "LEO", 59 "GEO", 934 "LEO", 473 "GEO", 1010 "LEO", 86 "GEO", 756 "LEO", 830 "LEO", 613 "GEO", 491 "GEO", 154 "MEO", 20 "GEO", 224 "GEO", 355 "LEO", 592 "LEO", 1146 "LEO", 610 "LEO", 806 "LEO", 571 "LEO", 466 "Elliptical", 72 "GEO", 454 "GEO", 888 "LEO", 463 "LEO", 851 "LEO", 770 "LEO", 814 "LEO", 859 "LEO", 58 "GEO", 964 "LEO", 980 "LEO", 1001 "LEO", 205 "GEO", 555 "LEO", 552 "LEO", 60 "LEO", 1102 "GEO", 835 "LEO", 459 "LEO", 175 "LEO", 322 "MEO", 510 "GEO", 1052 "LEO", 1121 "GEO", 662 "LEO", 27 "LEO", 352 "LEO", 493 "GEO", 899 "LEO", 416 "LEO", 777 "LEO", 694 "MEO", 1 "GEO", 631 "LEO", 854 "LEO", 69 "GEO", 101 "GEO", 24 "LEO", 901 "GEO", 547 "LEO", 102 "GEO", 788 "LEO", 1106 "LEO", 713 "GEO", 1110 "LEO", 385 "MEO", 988 "LEO", 135 "LEO", 1065 "LEO", 397 "MEO", 1011 "LEO", 1006 "GEO", 773 "LEO", 490 "GEO", 752 "LEO", 354 "LEO", 884 "GEO", 360 "LEO", 998 "LEO", 961 "GEO", 55 "GEO", 568 "LEO", 797 "LEO", 688 "MEO", 763 "LEO", 269 "GEO", 676 "MEO", 448 "LEO", 527 "LEO", 206 "GEO", 1075 "GEO", 966 "LEO", 165 "LEO", 715 "GEO", 387 "MEO", 652 "GEO", 683 "MEO", 85 "GEO", 721 "LEO", 862 "LEO", 615 "LEO", 681 "MEO", 225 "GEO", 865 "LEO", 297 "LEO", 39 "GEO", 805 "LEO", 274 "GEO", 88 "GEO", 217 "LEO", 1128 "LEO", 46 "GEO", 682 "MEO", 508 "GEO", 1157 "GEO", 149 "GEO", 415 "LEO", 239 "LEO", 478 "GEO", 878 "LEO", 157 "GEO", 345 "LEO", 300 "LEO", 743 "LEO", 921 "LEO", 1039 "LEO", 4 "GEO", 550 "LEO", 1115 "GEO", 204 "GEO", 470 "GEO", 1164 "GEO", 646 "Elliptical", 77 "GEO", 106 "LEO", 197 "LEO", 405 "MEO", 897 "LEO", 726 "GEO", 776 "LEO", 940 "LEO", 755 "LEO", 902 "GEO", 518 "LEO", 232 "LEO", 260 "GEO", 823 "GEO", 1125 "GEO", 267 "GEO", 119 "LEO", 319 "GEO", 534 "LEO", 222 "GEO", 603 "GEO", 293 "LEO", 95 "GEO", 450 "GEO", 329 "LEO", 144 "GEO", 1087 "LEO", 504 "GEO", 819 "LEO", 818 "GEO", 505 "GEO", 723 "LEO", 1071 "GEO", 1008 "LEO", 992 "LEO", 176 "LEO", 863 "LEO", 471 "GEO", 349 "LEO", 512 "GEO", 710 "GEO", 1058 "GEO", 192 "LEO", 54 "LEO", 92 "GEO", 221 "GEO", 141 "LEO", 502 "GEO", 871 "GEO", 464 "LEO", 801 "LEO", 307 "GEO", 935 "LEO", 758 "LEO", 290 "GEO", 1156 "LEO", 1144 "LEO", 627 "LEO", 517 "GEO", 1122 "GEO", 361 "LEO", 264 "GEO", 137 "GEO", 356 "LEO", 728 "GEO", 976 "Elliptical", 678 "MEO", 327 "LEO", 234 "LEO", 856 "LEO", 817 "LEO", 1017 "LEO", 104 "LEO", 353 "LEO", 1145 "LEO", 15 "LEO", 48 "GEO", 945 "GEO", 759 "LEO", 1066 "Elliptical", 242 "LEO", 832 "LEO", 969 "LEO", 50 "GEO", 956 "GEO", 917 "GEO", 1030 "GEO", 557 "LEO", 251 "GEO", 394 "MEO", 116 "GEO", 585 "LEO", 583 "LEO", 75 "GEO", 437 "LEO", 516 "GEO", 1062 "GEO", 994 "LEO", 930 "LEO", 967 "LEO", 687 "MEO", 159 "GEO", 848 "LEO", 995 "LEO", 1096 "LEO", 1159 "GEO", 709 "LEO", 99 "LEO", 540 "LEO", 645 "GEO", 749 "GEO", 479 "GEO", 1081 "Elliptical", 890 "LEO", 1046 "LEO", 630 "LEO", 916 "GEO", 815 "LEO", 1080 "GEO", 281 "GEO", 402 "MEO", 669 "GEO", 781 "LEO", 740 "MEO", 1012 "LEO", 975 "Elliptical", 429 "GEO", 309 "GEO", 458 "LEO", 21 "GEO", 388 "MEO", 495 "GEO", 952 "GEO", 626 "LEO", 875 "LEO", 31 "LEO", 113 "GEO", 32 "GEO", 811 "LEO", 827 "LEO", 407 "MEO", 398 "MEO", 136 "LEO", 691 "MEO", 847 "LEO", 825 "GEO", 139 "LEO", 506 "GEO", 396 "MEO", 460 "LEO", 483 "Elliptical", 589 "LEO", 581 "LEO", 932 "LEO", 174 "LEO", 578 "LEO", 855 "LEO", 331 "Elliptical", 363 "LEO", 1038 "LEO", 284 "GEO", 208 "GEO", 305 "LEO", 1019 "Elliptical", 955 "GEO", 796 "LEO", 708 "LEO", 182 "LEO", 256 "GEO", 1107 "LEO", 1109 "LEO", 657 "GEO", 514 "GEO", 1103 "GEO", 731 "GEO", 619 "LEO", 985 "GEO", 485 "GEO", 214 "GEO", 193 "LEO", 685 "MEO", 804 "LEO", 869 "GEO", 1002 "LEO", 1104 "Elliptical", 836 "LEO", 1131 "LEO", 785 "GEO", 635 "GEO", 442 "Elliptical", 1073 "GEO", 561 "LEO", 954 "GEO", 656 "GEO", 607 "GEO", 241 "LEO", 314 "GEO", 782 "LEO", 226 "GEO", 235 "LEO", 672 "GEO", 420 "LEO", 418 "LEO", 262 "GEO", 1016 "Elliptical", 263 "GEO", 304 "LEO", 401 "MEO", 673 "LEO", 40 "GEO", 129 "Elliptical", 600 "GEO", 729 "GEO", 1042 "GEO", 467 "LEO", 1033 "GEO", 1149 "LEO", 445 "GEO", 317 "GEO", 1091 "LEO", 1028 "GEO", 294 "LEO", 91 "GEO", 1044 "Elliptical", 810 "LEO", 1137 "LEO", 364 "LEO", 987 "LEO", 880 "LEO", 515 "GEO", 412 "GEO", 553 "LEO", 974 "GEO", 341 "LEO", 117 "GEO", 1000 "LEO", 1095 "LEO", 665 "LEO", 523 "LEO", 172 "LEO", 601 "GEO", 108 "LEO", 156 "MEO", 358 "LEO", 308 "GEO", 908 "LEO", 649 "LEO", 531 "LEO", 1085 "Elliptical", 923 "LEO", 1111 "LEO", 223 "GEO", 419 "LEO", 365 "LEO", 944 "LEO", 181 "LEO", 417 "LEO", 1082 "Elliptical", 979 "LEO", 278 "GEO", 56 "GEO", 942 "GEO", 33 "GEO", 13 "GEO", 1043 "Elliptical", 867 "LEO", 22 "GEO", 618 "LEO", 1141 "LEO", 1093 "GEO", 380 "MEO", 257 "GEO", 1061 "LEO", 338 "LEO", 1024 "GEO", 500 "GEO", 909 "LEO", 1018 "LEO", 993 "LEO", 1089 "LEO", 168 "LEO", 833 "GEO", 496 "GEO", 1056 "GEO", 1129 "LEO", 947 "Elliptical", 347 "LEO", 501 "GEO", 1007 "GEO", 1077 "LEO", 596 "LEO", 872 "GEO", 792 "LEO", 90 "GEO", 237 "LEO", 826 "LEO", 292 "LEO", 109 "LEO", 216 "LEO", 191 "GEO", 498 "GEO", 829 "LEO", 761 "LEO", 1072 "GEO", 375 "LEO", 525 "LEO", 367 "LEO", 143 "GEO", 742 "LEO", 178 "LEO", 640 "GEO", 247 "GEO", 328 "LEO", 391 "MEO", 990 "LEO", 167 "LEO", 707 "MEO", 36 "GEO", 41 "GEO", 474 "GEO", 187 "GEO", 551 "LEO", 1118 "GEO", 996 "LEO", 528 "LEO", 971 "GEO", 599 "GEO", 376 "LEO", 195 "LEO", 889 "LEO", 316 "GEO", 668 "LEO", 428 "GEO", 303 "LEO", 671 "GEO", 794 "LEO", 905 "Elliptical", 368 "LEO", 560 "LEO", 565 "LEO", 310 "GEO", 366 "LEO", 118 "LEO", 522 "LEO", 150 "GEO", 886 "LEO", 313 "GEO", 384 "MEO", 567 "LEO", 238 "LEO", 846 "LEO", 962 "Elliptical", 1127 "LEO", 845 "LEO", 196 "LEO", 162 "LEO", 393 "MEO", 184 "GEO", 219 "GEO", 999 "LEO", 461 "LEO", 1032 "GEO", 89 "GEO", 100 "GEO", 426 "LEO", 604 "GEO", 477 "GEO", 844 "LEO", 541 "LEO", 351 "LEO", 243 "LEO", 131 "Elliptical", 790 "LEO", 963 "LEO", 1053 "LEO", 629 "LEO", 873 "LEO", 122 "LEO", 933 "LEO", 43 "GEO", 1067 "LEO", 231 "GEO", 61 "LEO", 654 "LEO", 883 "GEO", 1003 "LEO", 598 "GEO", 413 "GEO", 29 "LEO", 784 "GEO", 800 "LEO", 151 "GEO", 369 "LEO", 348 "LEO", 1124 "GEO", 575 "LEO", 693 "MEO", 44 "GEO", 739 "MEO", 258 "GEO", 250 "GEO", 674 "LEO", 539 "LEO", 301 "LEO", 838 "LEO", 424 "LEO", 93 "GEO", 6 "GEO", 684 "MEO", 1026 "GEO", 951 "GEO", 573 "LEO", 408 "MEO", 563 "LEO", 850 "LEO", 616 "LEO", 866 "LEO", 111 "GEO", 997 "LEO", 689 "MEO", 28 "Elliptical", 456 "LEO", 374 "LEO", 608 "LEO", 737 "MEO", 1155 "LEO", 548 "LEO", 538 "LEO", 1034 "GEO", 895 "LEO", 411 "GEO", 957 "GEO", 134 "LEO", 943 "GEO", 64 "LEO", 623 "LEO", 1135 "LEO", 1133 "LEO", 465 "Elliptical", 816 "LEO", 334 "LEO", 1150 "LEO", 323 "MEO", 189 "GEO", 280 "GEO", 198 "LEO", 155 "MEO", 295 "LEO", 808 "LEO", 248 "GEO", 587 "LEO", 285 "LEO", 507 "GEO", 227 "GEO", 724 "LEO", 476 "GEO", 941 "LEO", 911 "GEO", 853 "LEO", 494 "GEO", 220 "GEO", 842 "LEO", 103 "GEO", 697 "MEO", 611 "LEO", 1105 "LEO", 170 "LEO", 1154 "LEO", 51 "GEO", 25 "LEO", 261 "GEO", 768 "LEO", 822 "MEO", 201 "LEO", 904 "Elliptical", 590 "LEO", 489 "GEO", 778 "LEO", 166 "LEO", 447 "LEO", 34 "GEO", 252 "GEO", 978 "LEO", 775 "LEO", 325 "GEO", 1005 "GEO", 594 "LEO", 436 "LEO", 828 "LEO", 535 "LEO", 813 "LEO", 146 "GEO", 741 "LEO", 1060 "LEO", 876 "LEO", 1064 "LEO", 228 "GEO", 907 "GEO", 306 "GEO", 125 "LEO", 276 "LEO", 340 "LEO", 148 "GEO", 1143 "LEO", 482 "GEO", 1049 "GEO", 622 "LEO", 588 "LEO", 17 "LEO", 312 "GEO", 606 "GEO", 3 "GEO", 1148 "LEO", 520 "LEO", 1088 "GEO", 760 "LEO", 720 "LEO", 1126 "LEO", 286 "LEO", 279 "GEO", 879 "LEO", 1020 "GEO", 536 "LEO", 1023 "GEO", 663 "LEO", 12 "GEO", 440 "LEO", 332 "LEO", 330 "LEO", 1162 "GEO", 382 "MEO", 152 "MEO", 1112 "GEO", 1140 "LEO", 544 "LEO", 803 "LEO", 642 "GEO", 435 "LEO", 342 "LEO", 703 "MEO", 783 "GEO", 695 "MEO", 973 "GEO", 2 "GEO", 948 "Elliptical", 66 "LEO", 484 "GEO", 439 "GEO", 236 "LEO", 556 "LEO", 373 "LEO", 1083 "Elliptical", 142 "GEO", 359 "LEO", 727 "GEO", 371 "LEO", 772 "LEO", 444 "GEO", 1057 "GEO", 570 "LEO", 757 "LEO", 107 "LEO", 1094 "GEO", 532 "LEO", 984 "GEO", 23 "LEO", 1079 "LEO", 745 "LEO", 719 "LEO", 230 "GEO", 625 "LEO", 47 "GEO", 526 "LEO", 180 "LEO", 786 "GEO", 1068 "LEO", 1166 "LEO", 870 "GEO", 537 "LEO", 659 "GEO", 158 "GEO", 991 "LEO", 350 "LEO", 35 "GEO", 1116 "Elliptical", 849 "LEO", 1120 "GEO", 644 "GEO", 1069 "GEO", 881 "LEO", 127 "LEO", 927 "LEO", 675 "GEO", 1055 "LEO", 383 "MEO", 533 "LEO", 1100 "GEO", 910 "GEO", 302 "GEO", 564 "LEO", 701 "MEO", 1090 "LEO", 566 "LEO", 821 "LEO", 787 "LEO", 82 "GEO", 76 "GEO", 735 "LEO", 492 "GEO", 718 "GEO", 771 "LEO", 215 "LEO", 97 "GEO", 704 "MEO", 277 "GEO", 926 "LEO", 751 "GEO", 1114 "GEO", 19 "GEO", 335 "LEO", 597 "GEO", 938 "LEO", 57 "GEO", 609 "LEO", 202 "GEO", 68 "GEO", 452 "LEO", 1054 "LEO", 200 "LEO", 1142 "LEO", 868 "LEO", 11 "GEO", 115 "GEO", 946 "Elliptical", 1063 "LEO", 983 "GEO", 339 "LEO", 431 "GEO", 462 "LEO", 337 "LEO", 698 "MEO", 255 "GEO", 503 "GEO", 546 "LEO", 9 "GEO", 953 "GEO", 857 "Elliptical", 706 "MEO", 632 "GEO", 457 "LEO", 427 "LEO", 145 "GEO", 5 "LEO", 733 "GEO", 1163 "GEO", 1165 "LEO", 1152 "LEO", 624 "LEO", 831 "LEO", 244 "Elliptical", 918 "LEO", 824 "GEO", 289 "GEO", 112 "GEO", 925 "LEO", 1059 "LEO", 730 "GEO", 699 "MEO", 712 "LEO", 1076 "GEO", 1113 "GEO", 414 "GEO", 839 "LEO", 802 "LEO", 1084 "LEO", 860 "Elliptical", 1117 "LEO", 179 "LEO", 344 "LEO", 481 "GEO", 732 "GEO", 661 "GEO", 245 "LEO", 378 "LEO", 913 "GEO", 906 "GEO", 658 "GEO", 266 "GEO", 324 "LEO", 793 "LEO", 1134 "LEO", 1132 "LEO", 1014 "GEO", 680 "MEO", 446 "LEO", 524 "LEO", 254 "GEO", 404 "MEO", 1025 "GEO", 617 "LEO", 283 "GEO", 1153 "LEO", 513 "GEO", 572 "LEO", 705 "MEO", 1098 "GEO", 959 "GEO", 1074 "GEO", 83 "GEO", 634 "GEO", 138 "LEO", 1050 "GEO", 346 "LEO", 14 "LEO", 455 "GEO", 265 "GEO", 449 "LEO", 333 "LEO", 650 "GEO", 639 "LEO", 569 "LEO", 326 "GEO", 746 "LEO", 647 "Elliptical", 45 "GEO", 53 "GEO", 559 "LEO", 78 "GEO", 1037 "GEO", 924 "LEO", 562 "LEO", 1119 "LEO", 542 "LEO", 912 "GEO", 664 "LEO", 1048 "GEO", 315 "GEO", 1031 "GEO", 914 "GEO", 480 "GEO", 132 "GEO", 753 "LEO", 900 "LEO", 1013 "LEO", 26 "LEO", 766 "LEO", 123 "LEO", 203 "GEO", 667 "GEO", 392 "MEO", 1045 "Elliptical", 577 "LEO", 807 "LEO", 140 "LEO", 321 "MEO", 795 "LEO", 441 "LEO", 700 "MEO", 268 "GEO", 840 "LEO", 16 "LEO", 320 "MEO", 133 "LEO", 288 "LEO", 381 "MEO", 605 "LEO", 163 "LEO", 81 "GEO", 120 "LEO", 643 "LEO", 79 "GEO", 211 "GEO", 38 "GEO", 173 "LEO", 126 "LEO", 981 "LEO", 1161 "GEO", 421 "LEO", 593 "GEO", 636 "LEO", 1160 "GEO", 98 "GEO", 422 "LEO", 423 "LEO", 614 "GEO", 762 "LEO", 582 "LEO", 666 "GEO", 1123 "GEO", 554 "LEO", 409 "MEO", 574 "LEO", 595 "LEO", 124 "LEO", 747 "GEO", 171 "LEO", 87 "GEO", 169 "LEO", 653 "GEO", 679 "MEO", 843 "LEO", 160 "LEO", 30 "GEO", 400 "MEO", 767 "LEO", 896 "LEO", 928 "LEO", 696 "MEO", 1027 "GEO", 738 "MEO", 809 "LEO", 509 "GEO", 736 "LEO", 207 "GEO", 874 "LEO", 434 "LEO", 1130 "LEO", 690 "MEO", 194 "LEO", 1047 "GEO", 511 "GEO", 73 "GEO", 486 "GEO", 336 "LEO", 96 "GEO", 837 "LEO", 1136 "LEO", 937 "LEO", 10 "GEO", 660 "GEO", 272 "GEO", 499 "GEO", 488 "GEO", 903 "GEO", 386 "MEO", 270 "GEO", 576 "LEO", 717 "GEO", 543 "LEO", 271 "GEO", 18 "LEO", 395 "MEO", 403 "MEO", 469 "GEO", 105 "LEO", 185 "GEO", 52 "GEO", 1051 "GEO", 545 "LEO", 633 "LEO", 114 "LEO", 1099 "GEO", 968 "LEO", 253 "GEO", 612 "LEO", 1151 "LEO", 1015 "GEO", 628 "LEO", 748 "GEO", 209 "GEO", 147 "GEO", 655 "LEO", 1022 "GEO", 750 "GEO", 852 "LEO", 425 "LEO", 1158 "GEO", 864 "LEO", 67 "LEO", 1108 "LEO", 296 "LEO", 602 "GEO", 318 "GEO", 161 "LEO", 651 "GEO", 725 "GEO", 372 "LEO", 1092 "GEO", 406 "MEO", 438 "LEO", 780 "LEO", 711 "LEO", 1041 "GEO", 71 "GEO", 939 "LEO", 579 "LEO", 877 "LEO", 722 "LEO", 42 "GEO", 919 "LEO", 80 "GEO", 885 "LEO", 1078 "LEO", 986 "LEO", 1035 "GEO", 714 "GEO", 677 "MEO", 199 "LEO", 841 "LEO", 754 "LEO", 791 "LEO", 1029 "LEO", 861 "Elliptical", 591 "LEO", 1021 "GEO", 744 "LEO", 960 "LEO", 37 "GEO", 183 "GEO", 1139 "LEO", 965 "LEO", 892 "LEO", 432 "GEO", 379 "LEO", 63 "LEO", 212 "GEO", 94 "GEO", 362 "LEO", 8 "GEO", 686 "MEO", 692 "MEO", 764 "LEO", 246 "GEO", 190 "GEO", 1004 "LEO", 1036 "LEO", 549 "LEO", 922 "LEO", 177 "LEO", 915 "GEO", 936 "LEO", 820 "GEO", 49 "GEO", 858 "LEO", 390 "MEO", 84 "GEO"}}, :Launch_Site #inferenceql.inference.gpm.column.Column{:var-name :Launch_Site, :stattype :categorical, :categories {:cluster_80 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 3, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 3, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 1, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 1, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 7, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 3, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 3, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 1, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 15, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 2, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 2, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 5, "Plesetsk Cosmodrome" 6, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 2, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 1, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 4, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 4, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 1, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 1, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 4, :counts {"Baikonur Cosmodrome" 4, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 278, :counts {"Baikonur Cosmodrome" 72, "Jiuquan Satellite Launch Center" 3, "L-1011 Aircraft" 1, "Vandenberg AFB" 59, "Taiyuan Launch Center" 9, "Kodiak Launch Complex" 1, "Guiana Space Center" 2, "Sea Launch" 0, "Sriharikota Launch Station" 5, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 47, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 1, "Yasny Cosmodrome" 1, "Naro Space Center" 0, "ISS" 2, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 2, "Cape Canaveral" 16, "Plesetsk Cosmodrome" 53, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 2, "Uchinoura Space Center" 2}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 1, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 7, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 1, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 1, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 5, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 1, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 4, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 4, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 434, :counts {"Baikonur Cosmodrome" 105, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 157, "Sea Launch" 4, "Sriharikota Launch Station" 3, "Kennedy Space Center" 1, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 5, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 36, "Kwajalein Island" 0, "Cape Canaveral" 95, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 26, "Satish Dhawan Space Center" 2, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 29, :counts {"Baikonur Cosmodrome" 3, "Jiuquan Satellite Launch Center" 1, "L-1011 Aircraft" 0, "Vandenberg AFB" 14, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 1, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 8, "Plesetsk Cosmodrome" 2, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 295, :counts {"Baikonur Cosmodrome" 30, "Jiuquan Satellite Launch Center" 31, "L-1011 Aircraft" 0, "Vandenberg AFB" 61, "Taiyuan Launch Center" 44, "Kodiak Launch Complex" 3, "Guiana Space Center" 13, "Sea Launch" 0, "Sriharikota Launch Station" 24, "Kennedy Space Center" 0, "Palmachim Launch Complex" 3, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 15, "Dombarovsky Launch Facility" 35, "Yasny Cosmodrome" 1, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 3, "Xichang Satellite Launch Center" 1, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 17, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 13, "Uchinoura Space Center" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 72, :counts {"Baikonur Cosmodrome" 27, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 4, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 5, "Kwajalein Island" 0, "Cape Canaveral" 32, "Plesetsk Cosmodrome" 4, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #inferenceql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 2, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 1, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 1, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Launch_Site "Jiuquan Satellite Launch Center"} {:cluster_2 31, :cluster_6 3, :cluster_9 1}, {:Launch_Site "ISS"} {:cluster_6 2}, {:Launch_Site "Plesetsk Cosmodrome"} {:cluster_6 53, :cluster_23 4, :cluster_62 6, :cluster_2 17, :cluster_9 2}, {:Launch_Site "Tanegashima Space Center"} {:cluster_2 15, :cluster_4 5, :cluster_9 1, :cluster_85 1}, {:Launch_Site "Dombarovsky Launch Facility"} {:cluster_2 35, :cluster_6 1}, {:Launch_Site "L-1011 Aircraft"} {:cluster_6 1}, {:Launch_Site "Sea Launch"} {:cluster_4 4}, {:Launch_Site "Kwajalein Island"} {:cluster_92 1, :cluster_6 2}, {:Launch_Site "Cape Canaveral"} {:cluster_66 3, :cluster_93 1, :cluster_62 5, :cluster_3 4, :cluster_73 1, :cluster_6 16, :cluster_79 1, :cluster_4 95, :cluster_9 8, :cluster_23 32}, {:Launch_Site "Taiyuan Launch Center"} {:cluster_6 9, :cluster_2 44}, {:Launch_Site "Wallops Island Flight Facility"} {:cluster_6 47}, {:Launch_Site "Baikonur Cosmodrome"} {:cluster_80 1, :cluster_75 1, :cluster_81 1, :cluster_76 1, :cluster_92 1, :cluster_78 4, :cluster_6 72, :cluster_4 105, :cluster_9 3, :cluster_2 30, :cluster_23 27}, {:Launch_Site "Kennedy Space Center"} {:cluster_4 1}, {:Launch_Site "Naro Space Center"} {:cluster_0 1}, {:Launch_Site "Sea Launch (Odyssey)"} {:cluster_4 26}, {:Launch_Site "Svobodny Cosmodrome"} {:cluster_2 3}, {:Launch_Site "Vandenberg AFB"} {:cluster_6 59, :cluster_2 61, :cluster_9 14, :cluster_62 2, :cluster_0 3, :cluster_74 1}, {:Launch_Site "Guiana Space Center"} {:cluster_32 1, :cluster_0 3, :cluster_62 2, :cluster_94 1, :cluster_6 2, :cluster_77 1, :cluster_59 4, :cluster_4 157, :cluster_2 13, :cluster_23 4}, {:Launch_Site "Palmachim Launch Complex"} {:cluster_2 3}, {:Launch_Site "Kodiak Launch Complex"} {:cluster_6 1, :cluster_74 1, :cluster_2 3}, {:Launch_Site "Satish Dhawan Space Center"} {:cluster_2 13, :cluster_4 2, :cluster_6 2}, {:Launch_Site "Xichang Satellite Launch Center"} {:cluster_4 36, :cluster_23 5, :cluster_85 5, :cluster_2 1}, {:Launch_Site "Uchinoura Space Center"} {:cluster_6 2, :cluster_82 1, :cluster_2 1}, {:Launch_Site "Sriharikota Launch Station"} {:cluster_2 24, :cluster_4 3, :cluster_6 5, :cluster_85 1}, {:Launch_Site "Yasny Cosmodrome"} {:cluster_6 1, :cluster_2 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Satish Dhawan Space Center" "Baikonur Cosmodrome" "Cape Canaveral" "Guiana Space Center" "Vandenberg AFB" "Xichang Satellite Launch Center" "Sriharikota Launch Station" "Plesetsk Cosmodrome" "Uchinoura Space Center" "Dombarovsky Launch Facility" "ISS" "L-1011 Aircraft" "Wallops Island Flight Facility" "Taiyuan Launch Center" "Jiuquan Satellite Launch Center" "Sea Launch (Odyssey)" "Sea Launch" "Tanegashima Space Center" "Svobodny Cosmodrome" "Kodiak Launch Complex" "Yasny Cosmodrome" "Kwajalein Island" "Kennedy Space Center" "Palmachim Launch Complex" "Naro Space Center"], :data {0 "Satish Dhawan Space Center", 893 "Cape Canaveral", 920 "Jiuquan Satellite Launch Center", 558 "Vandenberg AFB", 453 "Dombarovsky Launch Facility", 584 "Vandenberg AFB", 487 "Cape Canaveral", 637 "Guiana Space Center", 972 "Sea Launch (Odyssey)", 519 "Kwajalein Island", 1097 "Cape Canaveral", 357 "Baikonur Cosmodrome", 716 "Baikonur Cosmodrome", 950 "Baikonur Cosmodrome", 275 "Baikonur Cosmodrome", 530 "Taiyuan Launch Center", 929 "Taiyuan Launch Center", 789 "Plesetsk Cosmodrome", 389 "Baikonur Cosmodrome", 586 "Vandenberg AFB", 410 "Plesetsk Cosmodrome", 433 "Guiana Space Center", 765 "Wallops Island Flight Facility", 521 "Baikonur Cosmodrome", 451 "Tanegashima Space Center", 291 "Xichang Satellite Launch Center", 443 "Cape Canaveral", 798 "Kodiak Launch Complex", 779 "Wallops Island Flight Facility", 970 "Cape Canaveral", 249 "Guiana Space Center", 638 "Vandenberg AFB", 299 "Vandenberg AFB", 1101 "Cape Canaveral", 121 "Sriharikota Launch Station", 734 "Guiana Space Center", 287 "Taiyuan Launch Center", 65 "Dombarovsky Launch Facility", 1086 "Cape Canaveral", 702 "Cape Canaveral", 70 "Xichang Satellite Launch Center", 949 "Baikonur Cosmodrome", 218 "Xichang Satellite Launch Center", 648 "Plesetsk Cosmodrome", 1070 "Cape Canaveral", 812 "Wallops Island Flight Facility", 62 "Baikonur Cosmodrome", 74 "ISS", 774 "Wallops Island Flight Facility", 475 "Baikonur Cosmodrome", 497 "Baikonur Cosmodrome", 1009 "Plesetsk Cosmodrome", 580 "Vandenberg AFB", 1138 "Taiyuan Launch Center", 891 "Cape Canaveral", 164 "Vandenberg AFB", 1040 "Guiana Space Center", 282 "Baikonur Cosmodrome", 769 "Wallops Island Flight Facility", 799 "Plesetsk Cosmodrome", 273 "Baikonur Cosmodrome", 1147 "Jiuquan Satellite Launch Center", 186 "Sea Launch (Odyssey)", 430 "Sriharikota Launch Station", 641 "Baikonur Cosmodrome", 529 "Taiyuan Launch Center", 898 "Cape Canaveral", 370 "Baikonur Cosmodrome", 834 "Kwajalein Island", 233 "Baikonur Cosmodrome", 298 "Vandenberg AFB", 188 "Baikonur Cosmodrome", 240 "Vandenberg AFB", 110 "Cape Canaveral", 130 "Cape Canaveral", 982 "Guiana Space Center", 620 "Sea Launch (Odyssey)", 311 "Sea Launch (Odyssey)", 931 "Taiyuan Launch Center", 882 "Baikonur Cosmodrome", 128 "Sriharikota Launch Station", 399 "Baikonur Cosmodrome", 989 "Sriharikota Launch Station", 377 "Baikonur Cosmodrome", 468 "Cape Canaveral", 259 "Cape Canaveral", 210 "Cape Canaveral", 229 "Baikonur Cosmodrome", 153 "Xichang Satellite Launch Center", 621 "Guiana Space Center", 213 "Cape Canaveral", 670 "Tanegashima Space Center", 977 "Guiana Space Center", 343 "Baikonur Cosmodrome", 958 "Guiana Space Center", 887 "Vandenberg AFB", 472 "Cape Canaveral", 7 "Cape Canaveral", 894 "Vandenberg AFB", 59 "Baikonur Cosmodrome", 934 "Taiyuan Launch Center", 473 "Sea Launch (Odyssey)", 1010 "Plesetsk Cosmodrome", 86 "Cape Canaveral", 756 "Wallops Island Flight Facility", 830 "Baikonur Cosmodrome", 613 "Tanegashima Space Center", 491 "Baikonur Cosmodrome", 154 "Xichang Satellite Launch Center", 20 "Guiana Space Center", 224 "Baikonur Cosmodrome", 355 "Baikonur Cosmodrome", 592 "Vandenberg AFB", 1146 "Taiyuan Launch Center", 610 "Vandenberg AFB", 806 "Sriharikota Launch Station", 571 "Vandenberg AFB", 466 "Vandenberg AFB", 72 "Guiana Space Center", 454 "Guiana Space Center", 888 "Vandenberg AFB", 463 "Tanegashima Space Center", 851 "Plesetsk Cosmodrome", 770 "Wallops Island Flight Facility", 814 "Wallops Island Flight Facility", 859 "Vandenberg AFB", 58 "Baikonur Cosmodrome", 964 "Vandenberg AFB", 980 "Sriharikota Launch Station", 1001 "Vandenberg AFB", 205 "Cape Canaveral", 555 "Vandenberg AFB", 552 "Taiyuan Launch Center", 60 "Baikonur Cosmodrome", 1102 "Cape Canaveral", 835 "Baikonur Cosmodrome", 459 "Tanegashima Space Center", 175 "Vandenberg AFB", 322 "Guiana Space Center", 510 "Guiana Space Center", 1052 "Taiyuan Launch Center", 1121 "Baikonur Cosmodrome", 662 "Plesetsk Cosmodrome", 27 "Baikonur Cosmodrome", 352 "Baikonur Cosmodrome", 493 "Guiana Space Center", 899 "Cape Canaveral", 416 "Plesetsk Cosmodrome", 777 "Wallops Island Flight Facility", 694 "Cape Canaveral", 1 "Baikonur Cosmodrome", 631 "Baikonur Cosmodrome", 854 "Plesetsk Cosmodrome", 69 "Xichang Satellite Launch Center", 101 "Baikonur Cosmodrome", 24 "Vandenberg AFB", 901 "Cape Canaveral", 547 "Vandenberg AFB", 102 "Guiana Space Center", 788 "Plesetsk Cosmodrome", 1106 "Vandenberg AFB", 713 "Guiana Space Center", 1110 "Guiana Space Center", 385 "Baikonur Cosmodrome", 988 "Wallops Island Flight Facility", 135 "Jiuquan Satellite Launch Center", 1065 "Tanegashima Space Center", 397 "Baikonur Cosmodrome", 1011 "Plesetsk Cosmodrome", 1006 "Guiana Space Center", 773 "Wallops Island Flight Facility", 490 "Guiana Space Center", 752 "Wallops Island Flight Facility", 354 "Baikonur Cosmodrome", 884 "Cape Canaveral", 360 "Baikonur Cosmodrome", 998 "Plesetsk Cosmodrome", 961 "Baikonur Cosmodrome", 55 "Guiana Space Center", 568 "Baikonur Cosmodrome", 797 "Plesetsk Cosmodrome", 688 "Cape Canaveral", 763 "Wallops Island Flight Facility", 269 "Baikonur Cosmodrome", 676 "Cape Canaveral", 448 "Taiyuan Launch Center", 527 "Vandenberg AFB", 206 "Cape Canaveral", 1075 "Cape Canaveral", 966 "Vandenberg AFB", 165 "Vandenberg AFB", 715 "Baikonur Cosmodrome", 387 "Baikonur Cosmodrome", 652 "Guiana Space Center", 683 "Cape Canaveral", 85 "Baikonur Cosmodrome", 721 "Vandenberg AFB", 862 "Satish Dhawan Space Center", 615 "Tanegashima Space Center", 681 "Cape Canaveral", 225 "Guiana Space Center", 865 "Plesetsk Cosmodrome", 297 "Vandenberg AFB", 39 "Cape Canaveral", 805 "Tanegashima Space Center", 274 "Guiana Space Center", 88 "Baikonur Cosmodrome", 217 "Dombarovsky Launch Facility", 1128 "Taiyuan Launch Center", 46 "Baikonur Cosmodrome", 682 "Cape Canaveral", 508 "Sea Launch (Odyssey)", 1157 "Xichang Satellite Launch Center", 149 "Xichang Satellite Launch Center", 415 "Jiuquan Satellite Launch Center", 239 "Vandenberg AFB", 478 "Guiana Space Center", 878 "Baikonur Cosmodrome", 157 "Guiana Space Center", 345 "Baikonur Cosmodrome", 300 "Vandenberg AFB", 743 "Palmachim Launch Complex", 921 "Jiuquan Satellite Launch Center", 1039 "Baikonur Cosmodrome", 4 "Guiana Space Center", 550 "Vandenberg AFB", 1115 "Sea Launch (Odyssey)", 204 "Cape Canaveral", 470 "Guiana Space Center", 1164 "Xichang Satellite Launch Center", 646 "Plesetsk Cosmodrome", 77 "Cape Canaveral", 106 "Baikonur Cosmodrome", 197 "Vandenberg AFB", 405 "Plesetsk Cosmodrome", 897 "Vandenberg AFB", 726 "Baikonur Cosmodrome", 776 "Wallops Island Flight Facility", 940 "Taiyuan Launch Center", 755 "Wallops Island Flight Facility", 902 "Cape Canaveral", 518 "Baikonur Cosmodrome", 232 "Dombarovsky Launch Facility", 260 "Baikonur Cosmodrome", 823 "Baikonur Cosmodrome", 1125 "Baikonur Cosmodrome", 267 "Sea Launch (Odyssey)", 119 "Vandenberg AFB", 319 "Sea Launch (Odyssey)", 534 "Baikonur Cosmodrome", 222 "Baikonur Cosmodrome", 603 "Sea Launch (Odyssey)", 293 "Taiyuan Launch Center", 95 "Guiana Space Center", 450 "Guiana Space Center", 329 "Yasny Cosmodrome", 144 "Xichang Satellite Launch Center", 1087 "Dombarovsky Launch Facility", 504 "Guiana Space Center", 819 "Vandenberg AFB", 818 "Baikonur Cosmodrome", 505 "Cape Canaveral", 723 "Vandenberg AFB", 1071 "Cape Canaveral", 1008 "Uchinoura Space Center", 992 "Plesetsk Cosmodrome", 176 "Vandenberg AFB", 863 "Satish Dhawan Space Center", 471 "Guiana Space Center", 349 "Baikonur Cosmodrome", 512 "Baikonur Cosmodrome", 710 "Xichang Satellite Launch Center", 1058 "Xichang Satellite Launch Center", 192 "Satish Dhawan Space Center", 54 "Vandenberg AFB", 92 "Baikonur Cosmodrome", 221 "Cape Canaveral", 141 "Vandenberg AFB", 502 "Guiana Space Center", 871 "Guiana Space Center", 464 "Vandenberg AFB", 801 "Dombarovsky Launch Facility", 307 "Guiana Space Center", 935 "Taiyuan Launch Center", 758 "Wallops Island Flight Facility", 290 "Xichang Satellite Launch Center", 1156 "Jiuquan Satellite Launch Center", 1144 "Taiyuan Launch Center", 627 "Vandenberg AFB", 517 "Guiana Space Center", 1122 "Baikonur Cosmodrome", 361 "Baikonur Cosmodrome", 264 "Cape Canaveral", 137 "Baikonur Cosmodrome", 356 "Baikonur Cosmodrome", 728 "Guiana Space Center", 976 "Guiana Space Center", 678 "Cape Canaveral", 327 "Dombarovsky Launch Facility", 234 "Guiana Space Center", 856 "Plesetsk Cosmodrome", 817 "Dombarovsky Launch Facility", 1017 "Vandenberg AFB", 104 "Sriharikota Launch Station", 353 "Baikonur Cosmodrome", 1145 "Jiuquan Satellite Launch Center", 15 "Vandenberg AFB", 48 "Guiana Space Center", 945 "Xichang Satellite Launch Center", 759 "Wallops Island Flight Facility", 1066 "Cape Canaveral", 242 "Svobodny Cosmodrome", 832 "Dombarovsky Launch Facility", 969 "Tanegashima Space Center", 50 "Baikonur Cosmodrome", 956 "Guiana Space Center", 917 "Cape Canaveral", 1030 "Guiana Space Center", 557 "Vandenberg AFB", 251 "Guiana Space Center", 394 "Baikonur Cosmodrome", 116 "Guiana Space Center", 585 "Vandenberg AFB", 583 "Vandenberg AFB", 75 "Guiana Space Center", 437 "Guiana Space Center", 516 "Xichang Satellite Launch Center", 1062 "Xichang Satellite Launch Center", 994 "Plesetsk Cosmodrome", 930 "Taiyuan Launch Center", 967 "Plesetsk Cosmodrome", 687 "Cape Canaveral", 159 "Guiana Space Center", 848 "Plesetsk Cosmodrome", 995 "Plesetsk Cosmodrome", 1096 "Jiuquan Satellite Launch Center", 1159 "Xichang Satellite Launch Center", 709 "Wallops Island Flight Facility", 99 "Baikonur Cosmodrome", 540 "Vandenberg AFB", 645 "Cape Canaveral", 749 "Guiana Space Center", 479 "Guiana Space Center", 1081 "Plesetsk Cosmodrome", 890 "Cape Canaveral", 1046 "Dombarovsky Launch Facility", 630 "Baikonur Cosmodrome", 916 "Baikonur Cosmodrome", 815 "Wallops Island Flight Facility", 1080 "Baikonur Cosmodrome", 281 "Baikonur Cosmodrome", 402 "Baikonur Cosmodrome", 669 "Tanegashima Space Center", 781 "Wallops Island Flight Facility", 740 "Guiana Space Center", 1012 "Cape Canaveral", 975 "Baikonur Cosmodrome", 429 "Sriharikota Launch Station", 309 "Baikonur Cosmodrome", 458 "Tanegashima Space Center", 21 "Guiana Space Center", 388 "Baikonur Cosmodrome", 495 "Sea Launch (Odyssey)", 952 "Baikonur Cosmodrome", 626 "Cape Canaveral", 875 "Baikonur Cosmodrome", 31 "Sriharikota Launch Station", 113 "Guiana Space Center", 32 "Baikonur Cosmodrome", 811 "Wallops Island Flight Facility", 827 "Baikonur Cosmodrome", 407 "Baikonur Cosmodrome", 398 "Baikonur Cosmodrome", 136 "Taiyuan Launch Center", 691 "Cape Canaveral", 847 "Plesetsk Cosmodrome", 825 "Baikonur Cosmodrome", 139 "Dombarovsky Launch Facility", 506 "Baikonur Cosmodrome", 396 "Baikonur Cosmodrome", 460 "Tanegashima Space Center", 483 "Baikonur Cosmodrome", 589 "Vandenberg AFB", 581 "Vandenberg AFB", 932 "Taiyuan Launch Center", 174 "Plesetsk Cosmodrome", 578 "Vandenberg AFB", 855 "Plesetsk Cosmodrome", 331 "Cape Canaveral", 363 "Baikonur Cosmodrome", 1038 "Sriharikota Launch Station", 284 "Baikonur Cosmodrome", 208 "Cape Canaveral", 305 "Dombarovsky Launch Facility", 1019 "Baikonur Cosmodrome", 955 "Guiana Space Center", 796 "Plesetsk Cosmodrome", 708 "Satish Dhawan Space Center", 182 "Dombarovsky Launch Facility", 256 "Cape Canaveral", 1107 "Vandenberg AFB", 1109 "Cape Canaveral", 657 "Cape Canaveral", 514 "Guiana Space Center", 1103 "Guiana Space Center", 731 "Guiana Space Center", 619 "Baikonur Cosmodrome", 985 "Guiana Space Center", 485 "Baikonur Cosmodrome", 214 "Cape Canaveral", 193 "Vandenberg AFB", 685 "Cape Canaveral", 804 "Guiana Space Center", 869 "Guiana Space Center", 1002 "Cape Canaveral", 1104 "Cape Canaveral", 836 "Sriharikota Launch Station", 1131 "Taiyuan Launch Center", 785 "Xichang Satellite Launch Center", 635 "Baikonur Cosmodrome", 442 "Uchinoura Space Center", 1073 "Cape Canaveral", 561 "Vandenberg AFB", 954 "Guiana Space Center", 656 "Guiana Space Center", 607 "Baikonur Cosmodrome", 241 "Vandenberg AFB", 314 "Sea Launch (Odyssey)", 782 "Vandenberg AFB", 226 "Cape Canaveral", 235 "Guiana Space Center", 672 "Cape Canaveral", 420 "Plesetsk Cosmodrome", 418 "Plesetsk Cosmodrome", 262 "Guiana Space Center", 1016 "Kodiak Launch Complex", 263 "Baikonur Cosmodrome", 304 "Vandenberg AFB", 401 "Baikonur Cosmodrome", 673 "Guiana Space Center", 40 "Guiana Space Center", 129 "Vandenberg AFB", 600 "Guiana Space Center", 729 "Guiana Space Center", 1042 "Cape Canaveral", 467 "Sriharikota Launch Station", 1033 "Guiana Space Center", 1149 "Jiuquan Satellite Launch Center", 445 "Guiana Space Center", 317 "Guiana Space Center", 1091 "Taiyuan Launch Center", 1028 "Cape Canaveral", 294 "Taiyuan Launch Center", 91 "Guiana Space Center", 1044 "Cape Canaveral", 810 "Wallops Island Flight Facility", 1137 "Jiuquan Satellite Launch Center", 364 "Baikonur Cosmodrome", 987 "Kodiak Launch Complex", 880 "Baikonur Cosmodrome", 515 "Guiana Space Center", 412 "Cape Canaveral", 553 "Vandenberg AFB", 974 "Guiana Space Center", 341 "Baikonur Cosmodrome", 117 "Guiana Space Center", 1000 "Dombarovsky Launch Facility", 1095 "Guiana Space Center", 665 "Plesetsk Cosmodrome", 523 "Baikonur Cosmodrome", 172 "Dombarovsky Launch Facility", 601 "Guiana Space Center", 108 "Satish Dhawan Space Center", 156 "Xichang Satellite Launch Center", 358 "Baikonur Cosmodrome", 308 "Sea Launch (Odyssey)", 908 "Tanegashima Space Center", 649 "Baikonur Cosmodrome", 531 "Vandenberg AFB", 1085 "Cape Canaveral", 923 "Taiyuan Launch Center", 1111 "Taiyuan Launch Center", 223 "Baikonur Cosmodrome", 419 "Plesetsk Cosmodrome", 365 "Baikonur Cosmodrome", 944 "Plesetsk Cosmodrome", 181 "Sriharikota Launch Station", 417 "Plesetsk Cosmodrome", 1082 "Plesetsk Cosmodrome", 979 "Sriharikota Launch Station", 278 "Baikonur Cosmodrome", 56 "Baikonur Cosmodrome", 942 "Guiana Space Center", 33 "Guiana Space Center", 13 "Cape Canaveral", 1043 "Cape Canaveral", 867 "Plesetsk Cosmodrome", 22 "Xichang Satellite Launch Center", 618 "Yasny Cosmodrome", 1141 "Taiyuan Launch Center", 1093 "Guiana Space Center", 380 "Plesetsk Cosmodrome", 257 "Guiana Space Center", 1061 "Sriharikota Launch Station", 338 "Cape Canaveral", 1024 "Cape Canaveral", 500 "Baikonur Cosmodrome", 909 "Sriharikota Launch Station", 1018 "Baikonur Cosmodrome", 993 "Plesetsk Cosmodrome", 1089 "Wallops Island Flight Facility", 168 "Vandenberg AFB", 833 "Guiana Space Center", 496 "Baikonur Cosmodrome", 1056 "Xichang Satellite Launch Center", 1129 "Taiyuan Launch Center", 947 "Baikonur Cosmodrome", 347 "Cape Canaveral", 501 "Guiana Space Center", 1007 "Cape Canaveral", 1077 "Baikonur Cosmodrome", 596 "Vandenberg AFB", 872 "Baikonur Cosmodrome", 792 "Plesetsk Cosmodrome", 90 "Baikonur Cosmodrome", 237 "Guiana Space Center", 826 "Vandenberg AFB", 292 "Taiyuan Launch Center", 109 "Baikonur Cosmodrome", 216 "Dombarovsky Launch Facility", 191 "Guiana Space Center", 498 "Guiana Space Center", 829 "Baikonur Cosmodrome", 761 "Wallops Island Flight Facility", 1072 "Cape Canaveral", 375 "Baikonur Cosmodrome", 525 "Taiyuan Launch Center", 367 "Baikonur Cosmodrome", 143 "Xichang Satellite Launch Center", 742 "Svobodny Cosmodrome", 178 "Sriharikota Launch Station", 640 "Guiana Space Center", 247 "Guiana Space Center", 328 "Dombarovsky Launch Facility", 391 "Baikonur Cosmodrome", 990 "Plesetsk Cosmodrome", 167 "Vandenberg AFB", 707 "Cape Canaveral", 36 "Cape Canaveral", 41 "Guiana Space Center", 474 "Baikonur Cosmodrome", 187 "Guiana Space Center", 551 "Vandenberg AFB", 1118 "Guiana Space Center", 996 "Plesetsk Cosmodrome", 528 "Vandenberg AFB", 971 "Guiana Space Center", 599 "Guiana Space Center", 376 "Baikonur Cosmodrome", 195 "Vandenberg AFB", 889 "Vandenberg AFB", 316 "Baikonur Cosmodrome", 668 "Vandenberg AFB", 428 "Guiana Space Center", 303 "Vandenberg AFB", 671 "Cape Canaveral", 794 "Plesetsk Cosmodrome", 905 "Cape Canaveral", 368 "Baikonur Cosmodrome", 560 "Vandenberg AFB", 565 "Baikonur Cosmodrome", 310 "Guiana Space Center", 366 "Baikonur Cosmodrome", 118 "L-1011 Aircraft", 522 "Taiyuan Launch Center", 150 "Xichang Satellite Launch Center", 886 "Vandenberg AFB", 313 "Sea Launch (Odyssey)", 384 "Baikonur Cosmodrome", 567 "Baikonur Cosmodrome", 238 "Vandenberg AFB", 846 "Plesetsk Cosmodrome", 962 "Vandenberg AFB", 1127 "Jiuquan Satellite Launch Center", 845 "Plesetsk Cosmodrome", 196 "Vandenberg AFB", 162 "Vandenberg AFB", 393 "Baikonur Cosmodrome", 184 "Sea Launch (Odyssey)", 219 "Sea Launch", 999 "Naro Space Center", 461 "Tanegashima Space Center", 1032 "Sea Launch (Odyssey)", 89 "Guiana Space Center", 100 "Baikonur Cosmodrome", 426 "Plesetsk Cosmodrome", 604 "Guiana Space Center", 477 "Guiana Space Center", 844 "Plesetsk Cosmodrome", 541 "Vandenberg AFB", 351 "Baikonur Cosmodrome", 243 "Svobodny Cosmodrome", 131 "Cape Canaveral", 790 "Plesetsk Cosmodrome", 963 "Vandenberg AFB", 1053 "Jiuquan Satellite Launch Center", 629 "Satish Dhawan Space Center", 873 "Baikonur Cosmodrome", 122 "Satish Dhawan Space Center", 933 "Jiuquan Satellite Launch Center", 43 "Cape Canaveral", 1067 "Baikonur Cosmodrome", 231 "Cape Canaveral", 61 "Baikonur Cosmodrome", 654 "Baikonur Cosmodrome", 883 "Cape Canaveral", 1003 "Cape Canaveral", 598 "Guiana Space Center", 413 "Cape Canaveral", 29 "Vandenberg AFB", 784 "Guiana Space Center", 800 "Wallops Island Flight Facility", 151 "Xichang Satellite Launch Center", 369 "Baikonur Cosmodrome", 348 "Baikonur Cosmodrome", 1124 "Baikonur Cosmodrome", 575 "Vandenberg AFB", 693 "Cape Canaveral", 44 "Guiana Space Center", 739 "Guiana Space Center", 258 "Guiana Space Center", 250 "Xichang Satellite Launch Center", 674 "Baikonur Cosmodrome", 539 "Vandenberg AFB", 301 "Wallops Island Flight Facility", 838 "Baikonur Cosmodrome", 424 "Plesetsk Cosmodrome", 93 "Guiana Space Center", 6 "Cape Canaveral", 684 "Cape Canaveral", 1026 "Cape Canaveral", 951 "Baikonur Cosmodrome", 573 "Vandenberg AFB", 408 "Baikonur Cosmodrome", 563 "Taiyuan Launch Center", 850 "Plesetsk Cosmodrome", 616 "Plesetsk Cosmodrome", 866 "Plesetsk Cosmodrome", 111 "Guiana Space Center", 997 "Plesetsk Cosmodrome", 689 "Cape Canaveral", 28 "Uchinoura Space Center", 456 "Dombarovsky Launch Facility", 374 "Baikonur Cosmodrome", 608 "Vandenberg AFB", 737 "Guiana Space Center", 1155 "Jiuquan Satellite Launch Center", 548 "Vandenberg AFB", 538 "Baikonur Cosmodrome", 1034 "Baikonur Cosmodrome", 895 "Vandenberg AFB", 411 "Cape Canaveral", 957 "Guiana Space Center", 134 "Jiuquan Satellite Launch Center", 943 "Sea Launch (Odyssey)", 64 "Dombarovsky Launch Facility", 623 "Wallops Island Flight Facility", 1135 "Jiuquan Satellite Launch Center", 1133 "Jiuquan Satellite Launch Center", 465 "Vandenberg AFB", 816 "Wallops Island Flight Facility", 334 "Cape Canaveral", 1150 "Sriharikota Launch Station", 323 "Guiana Space Center", 189 "Sea Launch", 280 "Baikonur Cosmodrome", 198 "Vandenberg AFB", 155 "Xichang Satellite Launch Center", 295 "Cape Canaveral", 808 "Guiana Space Center", 248 "Baikonur Cosmodrome", 587 "Vandenberg AFB", 285 "Cape Canaveral", 507 "Guiana Space Center", 227 "Cape Canaveral", 724 "Wallops Island Flight Facility", 476 "Guiana Space Center", 941 "Dombarovsky Launch Facility", 911 "Guiana Space Center", 853 "Plesetsk Cosmodrome", 494 "Guiana Space Center", 220 "Sea Launch", 842 "Plesetsk Cosmodrome", 103 "Guiana Space Center", 697 "Cape Canaveral", 611 "Vandenberg AFB", 1105 "Dombarovsky Launch Facility", 170 "Baikonur Cosmodrome", 1154 "Taiyuan Launch Center", 51 "Baikonur Cosmodrome", 25 "Sriharikota Launch Station", 261 "Xichang Satellite Launch Center", 768 "Wallops Island Flight Facility", 822 "Baikonur Cosmodrome", 201 "Dombarovsky Launch Facility", 904 "Cape Canaveral", 590 "Plesetsk Cosmodrome", 489 "Baikonur Cosmodrome", 778 "Wallops Island Flight Facility", 166 "Vandenberg AFB", 447 "Taiyuan Launch Center", 34 "Guiana Space Center", 252 "Baikonur Cosmodrome", 978 "Guiana Space Center", 775 "Wallops Island Flight Facility", 325 "Baikonur Cosmodrome", 1005 "Guiana Space Center", 594 "Sriharikota Launch Station", 436 "Satish Dhawan Space Center", 828 "Baikonur Cosmodrome", 535 "Taiyuan Launch Center", 813 "Wallops Island Flight Facility", 146 "Xichang Satellite Launch Center", 741 "Sriharikota Launch Station", 1060 "Vandenberg AFB", 876 "Baikonur Cosmodrome", 1064 "Dombarovsky Launch Facility", 228 "Cape Canaveral", 907 "Cape Canaveral", 306 "Guiana Space Center", 125 "Satish Dhawan Space Center", 276 "Baikonur Cosmodrome", 340 "Baikonur Cosmodrome", 148 "Xichang Satellite Launch Center", 1143 "Taiyuan Launch Center", 482 "Sriharikota Launch Station", 1049 "Guiana Space Center", 622 "Jiuquan Satellite Launch Center", 588 "Vandenberg AFB", 17 "Vandenberg AFB", 312 "Guiana Space Center", 606 "Satish Dhawan Space Center", 3 "Cape Canaveral", 1148 "Jiuquan Satellite Launch Center", 520 "Vandenberg AFB", 1088 "Xichang Satellite Launch Center", 760 "Wallops Island Flight Facility", 720 "Vandenberg AFB", 1126 "Taiyuan Launch Center", 286 "Kodiak Launch Complex", 279 "Baikonur Cosmodrome", 879 "Baikonur Cosmodrome", 1020 "Cape Canaveral", 536 "Baikonur Cosmodrome", 1023 "Cape Canaveral", 663 "Baikonur Cosmodrome", 12 "Cape Canaveral", 440 "Cape Canaveral", 332 "Tanegashima Space Center", 330 "Vandenberg AFB", 1162 "Xichang Satellite Launch Center", 382 "Baikonur Cosmodrome", 152 "Xichang Satellite Launch Center", 1112 "Sea Launch (Odyssey)", 1140 "Jiuquan Satellite Launch Center", 544 "Vandenberg AFB", 803 "Guiana Space Center", 642 "Baikonur Cosmodrome", 435 "Taiyuan Launch Center", 342 "Baikonur Cosmodrome", 703 "Cape Canaveral", 783 "Xichang Satellite Launch Center", 695 "Cape Canaveral", 973 "Guiana Space Center", 2 "Cape Canaveral", 948 "Baikonur Cosmodrome", 66 "Dombarovsky Launch Facility", 484 "Baikonur Cosmodrome", 439 "Cape Canaveral", 236 "Guiana Space Center", 556 "Vandenberg AFB", 373 "Baikonur Cosmodrome", 1083 "Plesetsk Cosmodrome", 142 "Xichang Satellite Launch Center", 359 "Baikonur Cosmodrome", 727 "Guiana Space Center", 371 "Baikonur Cosmodrome", 772 "Vandenberg AFB", 444 "Cape Canaveral", 1057 "Xichang Satellite Launch Center", 570 "Baikonur Cosmodrome", 757 "Wallops Island Flight Facility", 107 "Plesetsk Cosmodrome", 1094 "Guiana Space Center", 532 "Vandenberg AFB", 984 "Guiana Space Center", 23 "Satish Dhawan Space Center", 1079 "Dombarovsky Launch Facility", 745 "Palmachim Launch Complex", 719 "Vandenberg AFB", 230 "Sea Launch", 625 "Vandenberg AFB", 47 "Guiana Space Center", 526 "Vandenberg AFB", 180 "Baikonur Cosmodrome", 786 "Cape Canaveral", 1068 "Satish Dhawan Space Center", 1166 "Taiyuan Launch Center", 870 "Guiana Space Center", 537 "Baikonur Cosmodrome", 659 "Cape Canaveral", 158 "Guiana Space Center", 991 "Plesetsk Cosmodrome", 350 "Baikonur Cosmodrome", 35 "Cape Canaveral", 1116 "Guiana Space Center", 849 "Plesetsk Cosmodrome", 1120 "Guiana Space Center", 644 "Cape Canaveral", 1069 "Guiana Space Center", 881 "Baikonur Cosmodrome", 127 "Sriharikota Launch Station", 927 "Taiyuan Launch Center", 675 "Cape Canaveral", 1055 "Jiuquan Satellite Launch Center", 383 "Baikonur Cosmodrome", 533 "Vandenberg AFB", 1100 "Cape Canaveral", 910 "Baikonur Cosmodrome", 302 "Cape Canaveral", 564 "Baikonur Cosmodrome", 701 "Cape Canaveral", 1090 "Sriharikota Launch Station", 566 "Baikonur Cosmodrome", 821 "Baikonur Cosmodrome", 787 "Guiana Space Center", 82 "Guiana Space Center", 76 "Baikonur Cosmodrome", 735 "Kwajalein Island", 492 "Sea Launch (Odyssey)", 718 "Baikonur Cosmodrome", 771 "Wallops Island Flight Facility", 215 "Baikonur Cosmodrome", 97 "Guiana Space Center", 704 "Cape Canaveral", 277 "Baikonur Cosmodrome", 926 "Taiyuan Launch Center", 751 "Guiana Space Center", 1114 "Sea Launch (Odyssey)", 19 "Guiana Space Center", 335 "Baikonur Cosmodrome", 597 "Guiana Space Center", 938 "Jiuquan Satellite Launch Center", 57 "Guiana Space Center", 609 "Vandenberg AFB", 202 "Tanegashima Space Center", 68 "Xichang Satellite Launch Center", 452 "Cape Canaveral", 1054 "Jiuquan Satellite Launch Center", 200 "Dombarovsky Launch Facility", 1142 "Jiuquan Satellite Launch Center", 868 "Plesetsk Cosmodrome", 11 "Cape Canaveral", 115 "Guiana Space Center", 946 "Baikonur Cosmodrome", 1063 "Plesetsk Cosmodrome", 983 "Guiana Space Center", 339 "Baikonur Cosmodrome", 431 "Satish Dhawan Space Center", 462 "Tanegashima Space Center", 337 "Cape Canaveral", 698 "Cape Canaveral", 255 "Guiana Space Center", 503 "Guiana Space Center", 546 "Vandenberg AFB", 9 "Cape Canaveral", 953 "Guiana Space Center", 857 "Baikonur Cosmodrome", 706 "Cape Canaveral", 632 "Kennedy Space Center", 457 "Tanegashima Space Center", 427 "Tanegashima Space Center", 145 "Xichang Satellite Launch Center", 5 "Vandenberg AFB", 733 "Guiana Space Center", 1163 "Xichang Satellite Launch Center", 1165 "Taiyuan Launch Center", 1152 "Dombarovsky Launch Facility", 624 "Vandenberg AFB", 831 "Baikonur Cosmodrome", 244 "Guiana Space Center", 918 "Jiuquan Satellite Launch Center", 824 "Baikonur Cosmodrome", 289 "Xichang Satellite Launch Center", 112 "Guiana Space Center", 925 "Taiyuan Launch Center", 1059 "Taiyuan Launch Center", 730 "Guiana Space Center", 699 "Cape Canaveral", 712 "Dombarovsky Launch Facility", 1076 "Cape Canaveral", 1113 "Sea Launch (Odyssey)", 414 "Cape Canaveral", 839 "Satish Dhawan Space Center", 802 "ISS", 1084 "Dombarovsky Launch Facility", 860 "Baikonur Cosmodrome", 1117 "Sriharikota Launch Station", 179 "Vandenberg AFB", 344 "Cape Canaveral", 481 "Guiana Space Center", 732 "Guiana Space Center", 661 "Cape Canaveral", 245 "Guiana Space Center", 378 "Baikonur Cosmodrome", 913 "Baikonur Cosmodrome", 906 "Cape Canaveral", 658 "Cape Canaveral", 266 "Guiana Space Center", 324 "Jiuquan Satellite Launch Center", 793 "Plesetsk Cosmodrome", 1134 "Jiuquan Satellite Launch Center", 1132 "Jiuquan Satellite Launch Center", 1014 "Guiana Space Center", 680 "Cape Canaveral", 446 "Taiyuan Launch Center", 524 "Baikonur Cosmodrome", 254 "Guiana Space Center", 404 "Baikonur Cosmodrome", 1025 "Cape Canaveral", 617 "Tanegashima Space Center", 283 "Baikonur Cosmodrome", 1153 "Taiyuan Launch Center", 513 "Guiana Space Center", 572 "Vandenberg AFB", 705 "Cape Canaveral", 1098 "Cape Canaveral", 959 "Guiana Space Center", 1074 "Cape Canaveral", 83 "Baikonur Cosmodrome", 634 "Baikonur Cosmodrome", 138 "Vandenberg AFB", 1050 "Sea Launch (Odyssey)", 346 "Baikonur Cosmodrome", 14 "Vandenberg AFB", 455 "Guiana Space Center", 265 "Guiana Space Center", 449 "Wallops Island Flight Facility", 333 "Cape Canaveral", 650 "Guiana Space Center", 639 "Vandenberg AFB", 569 "Baikonur Cosmodrome", 326 "Baikonur Cosmodrome", 746 "Dombarovsky Launch Facility", 647 "Plesetsk Cosmodrome", 45 "Guiana Space Center", 53 "Baikonur Cosmodrome", 559 "Vandenberg AFB", 78 "Baikonur Cosmodrome", 1037 "Guiana Space Center", 924 "Jiuquan Satellite Launch Center", 562 "Vandenberg AFB", 1119 "Taiyuan Launch Center", 542 "Vandenberg AFB", 912 "Baikonur Cosmodrome", 664 "Plesetsk Cosmodrome", 1048 "Baikonur Cosmodrome", 315 "Baikonur Cosmodrome", 1031 "Guiana Space Center", 914 "Baikonur Cosmodrome", 480 "Guiana Space Center", 132 "Xichang Satellite Launch Center", 753 "Wallops Island Flight Facility", 900 "Vandenberg AFB", 1013 "Sriharikota Launch Station", 26 "Plesetsk Cosmodrome", 766 "Wallops Island Flight Facility", 123 "Sriharikota Launch Station", 203 "Cape Canaveral", 667 "Cape Canaveral", 392 "Baikonur Cosmodrome", 1045 "Cape Canaveral", 577 "Vandenberg AFB", 807 "Plesetsk Cosmodrome", 140 "Dombarovsky Launch Facility", 321 "Guiana Space Center", 795 "Plesetsk Cosmodrome", 441 "Uchinoura Space Center", 700 "Cape Canaveral", 268 "Sea Launch (Odyssey)", 840 "Satish Dhawan Space Center", 16 "Vandenberg AFB", 320 "Guiana Space Center", 133 "Taiyuan Launch Center", 288 "Taiyuan Launch Center", 381 "Baikonur Cosmodrome", 605 "Sriharikota Launch Station", 163 "Vandenberg AFB", 81 "Guiana Space Center", 120 "Baikonur Cosmodrome", 643 "Sriharikota Launch Station", 79 "Baikonur Cosmodrome", 211 "Cape Canaveral", 38 "Baikonur Cosmodrome", 173 "Plesetsk Cosmodrome", 126 "Satish Dhawan Space Center", 981 "Guiana Space Center", 1161 "Xichang Satellite Launch Center", 421 "Plesetsk Cosmodrome", 593 "Sriharikota Launch Station", 636 "Baikonur Cosmodrome", 1160 "Xichang Satellite Launch Center", 98 "Guiana Space Center", 422 "Plesetsk Cosmodrome", 423 "Plesetsk Cosmodrome", 614 "Tanegashima Space Center", 762 "Wallops Island Flight Facility", 582 "Vandenberg AFB", 666 "Guiana Space Center", 1123 "Baikonur Cosmodrome", 554 "Vandenberg AFB", 409 "Plesetsk Cosmodrome", 574 "Vandenberg AFB", 595 "Sriharikota Launch Station", 124 "Wallops Island Flight Facility", 747 "Guiana Space Center", 171 "Jiuquan Satellite Launch Center", 87 "Guiana Space Center", 169 "Vandenberg AFB", 653 "Guiana Space Center", 679 "Cape Canaveral", 843 "Plesetsk Cosmodrome", 160 "Vandenberg AFB", 30 "Guiana Space Center", 400 "Baikonur Cosmodrome", 767 "Wallops Island Flight Facility", 896 "Vandenberg AFB", 928 "Taiyuan Launch Center", 696 "Cape Canaveral", 1027 "Cape Canaveral", 738 "Guiana Space Center", 809 "Wallops Island Flight Facility", 509 "Cape Canaveral", 736 "Kodiak Launch Complex", 207 "Cape Canaveral", 874 "Baikonur Cosmodrome", 434 "Taiyuan Launch Center", 1130 "Taiyuan Launch Center", 690 "Cape Canaveral", 194 "Vandenberg AFB", 1047 "Cape Canaveral", 511 "Guiana Space Center", 73 "Baikonur Cosmodrome", 486 "Guiana Space Center", 336 "Cape Canaveral", 96 "Guiana Space Center", 837 "Baikonur Cosmodrome", 1136 "Jiuquan Satellite Launch Center", 937 "Jiuquan Satellite Launch Center", 10 "Cape Canaveral", 660 "Cape Canaveral", 272 "Cape Canaveral", 499 "Cape Canaveral", 488 "Baikonur Cosmodrome", 903 "Cape Canaveral", 386 "Baikonur Cosmodrome", 270 "Guiana Space Center", 576 "Taiyuan Launch Center", 717 "Baikonur Cosmodrome", 543 "Vandenberg AFB", 271 "Guiana Space Center", 18 "Vandenberg AFB", 395 "Baikonur Cosmodrome", 403 "Baikonur Cosmodrome", 469 "Baikonur Cosmodrome", 105 "Baikonur Cosmodrome", 185 "Baikonur Cosmodrome", 52 "Baikonur Cosmodrome", 1051 "Sea Launch (Odyssey)", 545 "Taiyuan Launch Center", 633 "Plesetsk Cosmodrome", 114 "Dombarovsky Launch Facility", 1099 "Cape Canaveral", 968 "Vandenberg AFB", 253 "Baikonur Cosmodrome", 612 "Vandenberg AFB", 1151 "Plesetsk Cosmodrome", 1015 "Guiana Space Center", 628 "Vandenberg AFB", 748 "Xichang Satellite Launch Center", 209 "Cape Canaveral", 147 "Xichang Satellite Launch Center", 655 "Baikonur Cosmodrome", 1022 "Cape Canaveral", 750 "Guiana Space Center", 852 "Plesetsk Cosmodrome", 425 "Plesetsk Cosmodrome", 1158 "Xichang Satellite Launch Center", 864 "Plesetsk Cosmodrome", 67 "Dombarovsky Launch Facility", 1108 "Dombarovsky Launch Facility", 296 "Vandenberg AFB", 602 "Cape Canaveral", 318 "Sea Launch (Odyssey)", 161 "Vandenberg AFB", 651 "Guiana Space Center", 725 "Baikonur Cosmodrome", 372 "Baikonur Cosmodrome", 1092 "Baikonur Cosmodrome", 406 "Baikonur Cosmodrome", 438 "Guiana Space Center", 780 "Wallops Island Flight Facility", 711 "Dombarovsky Launch Facility", 1041 "Guiana Space Center", 71 "Xichang Satellite Launch Center", 939 "Jiuquan Satellite Launch Center", 579 "Vandenberg AFB", 877 "Baikonur Cosmodrome", 722 "Vandenberg AFB", 42 "Guiana Space Center", 919 "Jiuquan Satellite Launch Center", 80 "Guiana Space Center", 885 "Vandenberg AFB", 1078 "Baikonur Cosmodrome", 986 "Wallops Island Flight Facility", 1035 "Sea Launch (Odyssey)", 714 "Guiana Space Center", 677 "Cape Canaveral", 199 "Baikonur Cosmodrome", 841 "Plesetsk Cosmodrome", 754 "Wallops Island Flight Facility", 791 "Plesetsk Cosmodrome", 1029 "Sriharikota Launch Station", 861 "Baikonur Cosmodrome", 591 "Plesetsk Cosmodrome", 1021 "Cape Canaveral", 744 "Palmachim Launch Complex", 960 "Dombarovsky Launch Facility", 37 "Cape Canaveral", 183 "Baikonur Cosmodrome", 1139 "Taiyuan Launch Center", 965 "Vandenberg AFB", 892 "Cape Canaveral", 432 "Guiana Space Center", 379 "Baikonur Cosmodrome", 63 "Baikonur Cosmodrome", 212 "Cape Canaveral", 94 "Baikonur Cosmodrome", 362 "Baikonur Cosmodrome", 8 "Cape Canaveral", 686 "Cape Canaveral", 692 "Cape Canaveral", 764 "Wallops Island Flight Facility", 246 "Guiana Space Center", 190 "Baikonur Cosmodrome", 1004 "Sriharikota Launch Station", 1036 "Baikonur Cosmodrome", 549 "Vandenberg AFB", 922 "Jiuquan Satellite Launch Center", 177 "Plesetsk Cosmodrome", 915 "Baikonur Cosmodrome", 936 "Xichang Satellite Launch Center", 820 "Tanegashima Space Center", 49 "Baikonur Cosmodrome", 858 "Vandenberg AFB", 390 "Baikonur Cosmodrome", 84 "Baikonur Cosmodrome"}}}, :latents {:alpha 5.499553712280129, :counts {:cluster_80 1, :cluster_66 3, :cluster_32 1, :cluster_75 1, :cluster_81 1, :cluster_93 1, :cluster_0 7, :cluster_76 1, :cluster_62 15, :cluster_92 2, :cluster_82 1, :cluster_3 4, :cluster_73 1, :cluster_94 1, :cluster_78 4, :cluster_6 278, :cluster_77 1, :cluster_85 7, :cluster_79 1, :cluster_59 4, :cluster_4 434, :cluster_9 29, :cluster_2 295, :cluster_23 72, :cluster_74 2}, :y {0 :cluster_2, 893 :cluster_9, 920 :cluster_2, 558 :cluster_6, 453 :cluster_2, 584 :cluster_6, 487 :cluster_4, 637 :cluster_0, 972 :cluster_4, 519 :cluster_92, 1097 :cluster_4, 357 :cluster_6, 716 :cluster_4, 950 :cluster_4, 275 :cluster_4, 530 :cluster_6, 929 :cluster_2, 789 :cluster_6, 389 :cluster_23, 586 :cluster_6, 410 :cluster_23, 433 :cluster_4, 765 :cluster_6, 521 :cluster_6, 451 :cluster_2, 291 :cluster_4, 443 :cluster_4, 798 :cluster_6, 779 :cluster_6, 970 :cluster_6, 249 :cluster_4, 638 :cluster_2, 299 :cluster_2, 1101 :cluster_4, 121 :cluster_2, 734 :cluster_4, 287 :cluster_2, 65 :cluster_2, 1086 :cluster_62, 702 :cluster_23, 70 :cluster_4, 949 :cluster_4, 218 :cluster_4, 648 :cluster_62, 1070 :cluster_4, 812 :cluster_6, 62 :cluster_2, 74 :cluster_6, 774 :cluster_6, 475 :cluster_4, 497 :cluster_4, 1009 :cluster_2, 580 :cluster_6, 1138 :cluster_2, 891 :cluster_9, 164 :cluster_2, 1040 :cluster_4, 282 :cluster_4, 769 :cluster_6, 799 :cluster_9, 273 :cluster_4, 1147 :cluster_2, 186 :cluster_4, 430 :cluster_4, 641 :cluster_4, 529 :cluster_6, 898 :cluster_6, 370 :cluster_6, 834 :cluster_6, 233 :cluster_4, 298 :cluster_2, 188 :cluster_4, 240 :cluster_2, 110 :cluster_4, 130 :cluster_6, 982 :cluster_4, 620 :cluster_4, 311 :cluster_4, 931 :cluster_2, 882 :cluster_2, 128 :cluster_2, 399 :cluster_23, 989 :cluster_2, 377 :cluster_6, 468 :cluster_4, 259 :cluster_4, 210 :cluster_4, 229 :cluster_4, 153 :cluster_23, 621 :cluster_4, 213 :cluster_4, 670 :cluster_4, 977 :cluster_62, 343 :cluster_6, 958 :cluster_4, 887 :cluster_9, 472 :cluster_4, 7 :cluster_4, 894 :cluster_9, 59 :cluster_4, 934 :cluster_2, 473 :cluster_4, 1010 :cluster_6, 86 :cluster_4, 756 :cluster_6, 830 :cluster_2, 613 :cluster_4, 491 :cluster_4, 154 :cluster_23, 20 :cluster_4, 224 :cluster_4, 355 :cluster_6, 592 :cluster_2, 1146 :cluster_2, 610 :cluster_9, 806 :cluster_2, 571 :cluster_6, 466 :cluster_62, 72 :cluster_4, 454 :cluster_4, 888 :cluster_9, 463 :cluster_2, 851 :cluster_6, 770 :cluster_6, 814 :cluster_6, 859 :cluster_2, 58 :cluster_4, 964 :cluster_6, 980 :cluster_6, 1001 :cluster_2, 205 :cluster_4, 555 :cluster_6, 552 :cluster_6, 60 :cluster_2, 1102 :cluster_4, 835 :cluster_2, 459 :cluster_2, 175 :cluster_2, 322 :cluster_23, 510 :cluster_32, 1052 :cluster_2, 1121 :cluster_4, 662 :cluster_2, 27 :cluster_6, 352 :cluster_6, 493 :cluster_4, 899 :cluster_6, 416 :cluster_6, 777 :cluster_6, 694 :cluster_23, 1 :cluster_4, 631 :cluster_6, 854 :cluster_6, 69 :cluster_4, 101 :cluster_4, 24 :cluster_2, 901 :cluster_4, 547 :cluster_6, 102 :cluster_4, 788 :cluster_6, 1106 :cluster_2, 713 :cluster_4, 1110 :cluster_0, 385 :cluster_23, 988 :cluster_6, 135 :cluster_2, 1065 :cluster_9, 397 :cluster_23, 1011 :cluster_2, 1006 :cluster_4, 773 :cluster_6, 490 :cluster_4, 752 :cluster_6, 354 :cluster_6, 884 :cluster_4, 360 :cluster_6, 998 :cluster_6, 961 :cluster_4, 55 :cluster_4, 568 :cluster_6, 797 :cluster_6, 688 :cluster_23, 763 :cluster_6, 269 :cluster_4, 676 :cluster_23, 448 :cluster_2, 527 :cluster_6, 206 :cluster_4, 1075 :cluster_4, 966 :cluster_2, 165 :cluster_2, 715 :cluster_4, 387 :cluster_23, 652 :cluster_4, 683 :cluster_23, 85 :cluster_4, 721 :cluster_2, 862 :cluster_2, 615 :cluster_2, 681 :cluster_23, 225 :cluster_4, 865 :cluster_6, 297 :cluster_2, 39 :cluster_4, 805 :cluster_2, 274 :cluster_4, 88 :cluster_4, 217 :cluster_2, 1128 :cluster_2, 46 :cluster_4, 682 :cluster_23, 508 :cluster_4, 1157 :cluster_4, 149 :cluster_85, 415 :cluster_2, 239 :cluster_2, 478 :cluster_4, 878 :cluster_6, 157 :cluster_4, 345 :cluster_6, 300 :cluster_2, 743 :cluster_2, 921 :cluster_2, 1039 :cluster_2, 4 :cluster_4, 550 :cluster_6, 1115 :cluster_4, 204 :cluster_4, 470 :cluster_4, 1164 :cluster_4, 646 :cluster_62, 77 :cluster_4, 106 :cluster_6, 197 :cluster_2, 405 :cluster_23, 897 :cluster_9, 726 :cluster_4, 776 :cluster_6, 940 :cluster_2, 755 :cluster_6, 902 :cluster_4, 518 :cluster_6, 232 :cluster_2, 260 :cluster_4, 823 :cluster_4, 1125 :cluster_4, 267 :cluster_4, 119 :cluster_2, 319 :cluster_4, 534 :cluster_6, 222 :cluster_4, 603 :cluster_4, 293 :cluster_2, 95 :cluster_4, 450 :cluster_4, 329 :cluster_6, 144 :cluster_4, 1087 :cluster_2, 504 :cluster_4, 819 :cluster_2, 818 :cluster_4, 505 :cluster_4, 723 :cluster_2, 1071 :cluster_4, 1008 :cluster_6, 992 :cluster_6, 176 :cluster_0, 863 :cluster_2, 471 :cluster_4, 349 :cluster_6, 512 :cluster_4, 710 :cluster_4, 1058 :cluster_4, 192 :cluster_2, 54 :cluster_2, 92 :cluster_4, 221 :cluster_4, 141 :cluster_2, 502 :cluster_4, 871 :cluster_4, 464 :cluster_2, 801 :cluster_2, 307 :cluster_4, 935 :cluster_2, 758 :cluster_6, 290 :cluster_4, 1156 :cluster_2, 1144 :cluster_2, 627 :cluster_2, 517 :cluster_4, 1122 :cluster_4, 361 :cluster_6, 264 :cluster_4, 137 :cluster_4, 356 :cluster_6, 728 :cluster_4, 976 :cluster_62, 678 :cluster_23, 327 :cluster_2, 234 :cluster_2, 856 :cluster_6, 817 :cluster_2, 1017 :cluster_2, 104 :cluster_2, 353 :cluster_6, 1145 :cluster_2, 15 :cluster_6, 48 :cluster_4, 945 :cluster_4, 759 :cluster_6, 1066 :cluster_62, 242 :cluster_2, 832 :cluster_2, 969 :cluster_2, 50 :cluster_4, 956 :cluster_4, 917 :cluster_4, 1030 :cluster_4, 557 :cluster_6, 251 :cluster_4, 394 :cluster_23, 116 :cluster_4, 585 :cluster_6, 583 :cluster_6, 75 :cluster_4, 437 :cluster_2, 516 :cluster_4, 1062 :cluster_4, 994 :cluster_6, 930 :cluster_2, 967 :cluster_2, 687 :cluster_23, 159 :cluster_4, 848 :cluster_6, 995 :cluster_6, 1096 :cluster_2, 1159 :cluster_4, 709 :cluster_6, 99 :cluster_2, 540 :cluster_6, 645 :cluster_4, 749 :cluster_4, 479 :cluster_4, 1081 :cluster_62, 890 :cluster_9, 1046 :cluster_2, 630 :cluster_6, 916 :cluster_4, 815 :cluster_6, 1080 :cluster_4, 281 :cluster_4, 402 :cluster_23, 669 :cluster_4, 781 :cluster_6, 740 :cluster_59, 1012 :cluster_6, 975 :cluster_92, 429 :cluster_4, 309 :cluster_4, 458 :cluster_2, 21 :cluster_4, 388 :cluster_23, 495 :cluster_4, 952 :cluster_4, 626 :cluster_9, 875 :cluster_6, 31 :cluster_2, 113 :cluster_4, 32 :cluster_4, 811 :cluster_6, 827 :cluster_2, 407 :cluster_23, 398 :cluster_23, 136 :cluster_2, 691 :cluster_23, 847 :cluster_6, 825 :cluster_4, 139 :cluster_2, 506 :cluster_4, 396 :cluster_23, 460 :cluster_2, 483 :cluster_81, 589 :cluster_6, 581 :cluster_6, 932 :cluster_2, 174 :cluster_2, 578 :cluster_6, 855 :cluster_6, 331 :cluster_93, 363 :cluster_6, 1038 :cluster_2, 284 :cluster_4, 208 :cluster_4, 305 :cluster_2, 1019 :cluster_78, 955 :cluster_4, 796 :cluster_6, 708 :cluster_2, 182 :cluster_2, 256 :cluster_4, 1107 :cluster_2, 1109 :cluster_9, 657 :cluster_4, 514 :cluster_4, 1103 :cluster_4, 731 :cluster_4, 619 :cluster_6, 985 :cluster_4, 485 :cluster_4, 214 :cluster_4, 193 :cluster_2, 685 :cluster_23, 804 :cluster_2, 869 :cluster_4, 1002 :cluster_6, 1104 :cluster_73, 836 :cluster_2, 1131 :cluster_2, 785 :cluster_4, 635 :cluster_4, 442 :cluster_6, 1073 :cluster_4, 561 :cluster_6, 954 :cluster_4, 656 :cluster_4, 607 :cluster_4, 241 :cluster_2, 314 :cluster_4, 782 :cluster_2, 226 :cluster_4, 235 :cluster_2, 672 :cluster_4, 420 :cluster_6, 418 :cluster_6, 262 :cluster_4, 1016 :cluster_74, 263 :cluster_4, 304 :cluster_6, 401 :cluster_23, 673 :cluster_6, 40 :cluster_4, 129 :cluster_0, 600 :cluster_4, 729 :cluster_4, 1042 :cluster_4, 467 :cluster_2, 1033 :cluster_4, 1149 :cluster_2, 445 :cluster_4, 317 :cluster_4, 1091 :cluster_2, 1028 :cluster_4, 294 :cluster_2, 91 :cluster_4, 1044 :cluster_66, 810 :cluster_6, 1137 :cluster_6, 364 :cluster_6, 987 :cluster_2, 880 :cluster_6, 515 :cluster_4, 412 :cluster_4, 553 :cluster_6, 974 :cluster_4, 341 :cluster_6, 117 :cluster_4, 1000 :cluster_2, 1095 :cluster_2, 665 :cluster_2, 523 :cluster_6, 172 :cluster_2, 601 :cluster_4, 108 :cluster_2, 156 :cluster_23, 358 :cluster_6, 308 :cluster_4, 908 :cluster_2, 649 :cluster_2, 531 :cluster_6, 1085 :cluster_62, 923 :cluster_2, 1111 :cluster_2, 223 :cluster_4, 419 :cluster_6, 365 :cluster_6, 944 :cluster_2, 181 :cluster_2, 417 :cluster_6, 1082 :cluster_62, 979 :cluster_2, 278 :cluster_4, 56 :cluster_4, 942 :cluster_4, 33 :cluster_4, 13 :cluster_4, 1043 :cluster_66, 867 :cluster_6, 22 :cluster_4, 618 :cluster_2, 1141 :cluster_2, 1093 :cluster_4, 380 :cluster_23, 257 :cluster_4, 1061 :cluster_2, 338 :cluster_6, 1024 :cluster_4, 500 :cluster_4, 909 :cluster_2, 1018 :cluster_2, 993 :cluster_6, 1089 :cluster_6, 168 :cluster_2, 833 :cluster_4, 496 :cluster_4, 1056 :cluster_4, 1129 :cluster_2, 947 :cluster_76, 347 :cluster_6, 501 :cluster_4, 1007 :cluster_4, 1077 :cluster_2, 596 :cluster_6, 872 :cluster_4, 792 :cluster_6, 90 :cluster_4, 237 :cluster_2, 826 :cluster_2, 292 :cluster_2, 109 :cluster_2, 216 :cluster_2, 191 :cluster_4, 498 :cluster_4, 829 :cluster_2, 761 :cluster_6, 1072 :cluster_4, 375 :cluster_6, 525 :cluster_6, 367 :cluster_6, 143 :cluster_85, 742 :cluster_2, 178 :cluster_2, 640 :cluster_4, 247 :cluster_4, 328 :cluster_6, 391 :cluster_23, 990 :cluster_6, 167 :cluster_2, 707 :cluster_23, 36 :cluster_4, 41 :cluster_4, 474 :cluster_4, 187 :cluster_4, 551 :cluster_6, 1118 :cluster_4, 996 :cluster_6, 528 :cluster_6, 971 :cluster_4, 599 :cluster_4, 376 :cluster_6, 195 :cluster_2, 889 :cluster_9, 316 :cluster_4, 668 :cluster_2, 428 :cluster_4, 303 :cluster_2, 671 :cluster_4, 794 :cluster_6, 905 :cluster_62, 368 :cluster_6, 560 :cluster_6, 565 :cluster_6, 310 :cluster_4, 366 :cluster_6, 118 :cluster_6, 522 :cluster_6, 150 :cluster_85, 886 :cluster_9, 313 :cluster_4, 384 :cluster_23, 567 :cluster_6, 238 :cluster_2, 846 :cluster_6, 962 :cluster_74, 1127 :cluster_2, 845 :cluster_6, 196 :cluster_2, 162 :cluster_2, 393 :cluster_23, 184 :cluster_4, 219 :cluster_4, 999 :cluster_0, 461 :cluster_2, 1032 :cluster_4, 89 :cluster_4, 100 :cluster_4, 426 :cluster_2, 604 :cluster_4, 477 :cluster_4, 844 :cluster_6, 541 :cluster_6, 351 :cluster_6, 243 :cluster_2, 131 :cluster_79, 790 :cluster_6, 963 :cluster_6, 1053 :cluster_9, 629 :cluster_2, 873 :cluster_2, 122 :cluster_2, 933 :cluster_2, 43 :cluster_4, 1067 :cluster_9, 231 :cluster_4, 61 :cluster_6, 654 :cluster_2, 883 :cluster_4, 1003 :cluster_6, 598 :cluster_4, 413 :cluster_4, 29 :cluster_2, 784 :cluster_4, 800 :cluster_6, 151 :cluster_85, 369 :cluster_6, 348 :cluster_6, 1124 :cluster_4, 575 :cluster_6, 693 :cluster_23, 44 :cluster_4, 739 :cluster_59, 258 :cluster_4, 250 :cluster_4, 674 :cluster_6, 539 :cluster_6, 301 :cluster_6, 838 :cluster_9, 424 :cluster_6, 93 :cluster_4, 6 :cluster_4, 684 :cluster_23, 1026 :cluster_4, 951 :cluster_4, 573 :cluster_6, 408 :cluster_23, 563 :cluster_6, 850 :cluster_6, 616 :cluster_2, 866 :cluster_6, 111 :cluster_4, 997 :cluster_6, 689 :cluster_23, 28 :cluster_82, 456 :cluster_2, 374 :cluster_6, 608 :cluster_9, 737 :cluster_59, 1155 :cluster_2, 548 :cluster_6, 538 :cluster_6, 1034 :cluster_4, 895 :cluster_6, 411 :cluster_4, 957 :cluster_4, 134 :cluster_2, 943 :cluster_4, 64 :cluster_2, 623 :cluster_6, 1135 :cluster_2, 1133 :cluster_2, 465 :cluster_62, 816 :cluster_6, 334 :cluster_6, 1150 :cluster_2, 323 :cluster_23, 189 :cluster_4, 280 :cluster_4, 198 :cluster_2, 155 :cluster_23, 295 :cluster_9, 808 :cluster_2, 248 :cluster_4, 587 :cluster_6, 285 :cluster_6, 507 :cluster_4, 227 :cluster_4, 724 :cluster_6, 476 :cluster_4, 941 :cluster_2, 911 :cluster_4, 853 :cluster_6, 494 :cluster_4, 220 :cluster_4, 842 :cluster_6, 103 :cluster_4, 697 :cluster_23, 611 :cluster_9, 1105 :cluster_2, 170 :cluster_2, 1154 :cluster_2, 51 :cluster_4, 25 :cluster_2, 261 :cluster_4, 768 :cluster_6, 822 :cluster_6, 201 :cluster_2, 904 :cluster_62, 590 :cluster_6, 489 :cluster_4, 778 :cluster_6, 166 :cluster_2, 447 :cluster_2, 34 :cluster_4, 252 :cluster_4, 978 :cluster_2, 775 :cluster_6, 325 :cluster_4, 1005 :cluster_4, 594 :cluster_2, 436 :cluster_2, 828 :cluster_6, 535 :cluster_6, 813 :cluster_6, 146 :cluster_4, 741 :cluster_2, 1060 :cluster_6, 876 :cluster_6, 1064 :cluster_2, 228 :cluster_4, 907 :cluster_3, 306 :cluster_4, 125 :cluster_2, 276 :cluster_2, 340 :cluster_6, 148 :cluster_4, 1143 :cluster_2, 482 :cluster_4, 1049 :cluster_4, 622 :cluster_2, 588 :cluster_6, 17 :cluster_2, 312 :cluster_4, 606 :cluster_4, 3 :cluster_4, 1148 :cluster_2, 520 :cluster_2, 1088 :cluster_4, 760 :cluster_6, 720 :cluster_2, 1126 :cluster_2, 286 :cluster_2, 279 :cluster_4, 879 :cluster_6, 1020 :cluster_4, 536 :cluster_6, 1023 :cluster_4, 663 :cluster_2, 12 :cluster_4, 440 :cluster_6, 332 :cluster_2, 330 :cluster_2, 1162 :cluster_4, 382 :cluster_23, 152 :cluster_23, 1112 :cluster_4, 1140 :cluster_2, 544 :cluster_6, 803 :cluster_2, 642 :cluster_4, 435 :cluster_2, 342 :cluster_6, 703 :cluster_23, 783 :cluster_4, 695 :cluster_23, 973 :cluster_4, 2 :cluster_4, 948 :cluster_80, 66 :cluster_2, 484 :cluster_4, 439 :cluster_4, 236 :cluster_6, 556 :cluster_6, 373 :cluster_6, 1083 :cluster_62, 142 :cluster_4, 359 :cluster_6, 727 :cluster_4, 371 :cluster_6, 772 :cluster_6, 444 :cluster_4, 1057 :cluster_4, 570 :cluster_6, 757 :cluster_6, 107 :cluster_2, 1094 :cluster_4, 532 :cluster_6, 984 :cluster_4, 23 :cluster_6, 1079 :cluster_2, 745 :cluster_2, 719 :cluster_2, 230 :cluster_4, 625 :cluster_9, 47 :cluster_4, 526 :cluster_6, 180 :cluster_2, 786 :cluster_4, 1068 :cluster_2, 1166 :cluster_2, 870 :cluster_4, 537 :cluster_6, 659 :cluster_4, 158 :cluster_4, 991 :cluster_6, 350 :cluster_6, 35 :cluster_4, 1116 :cluster_94, 849 :cluster_6, 1120 :cluster_4, 644 :cluster_4, 1069 :cluster_4, 881 :cluster_2, 127 :cluster_2, 927 :cluster_2, 675 :cluster_4, 1055 :cluster_2, 383 :cluster_23, 533 :cluster_6, 1100 :cluster_4, 910 :cluster_4, 302 :cluster_4, 564 :cluster_6, 701 :cluster_23, 1090 :cluster_6, 566 :cluster_6, 821 :cluster_2, 787 :cluster_2, 82 :cluster_4, 76 :cluster_4, 735 :cluster_6, 492 :cluster_4, 718 :cluster_4, 771 :cluster_6, 215 :cluster_2, 97 :cluster_4, 704 :cluster_23, 277 :cluster_4, 926 :cluster_2, 751 :cluster_4, 1114 :cluster_4, 19 :cluster_4, 335 :cluster_6, 597 :cluster_4, 938 :cluster_2, 57 :cluster_4, 609 :cluster_9, 202 :cluster_4, 68 :cluster_4, 452 :cluster_9, 1054 :cluster_2, 200 :cluster_2, 1142 :cluster_2, 868 :cluster_2, 11 :cluster_4, 115 :cluster_4, 946 :cluster_75, 1063 :cluster_2, 983 :cluster_4, 339 :cluster_6, 431 :cluster_4, 462 :cluster_2, 337 :cluster_6, 698 :cluster_23, 255 :cluster_4, 503 :cluster_4, 546 :cluster_6, 9 :cluster_4, 953 :cluster_4, 857 :cluster_78, 706 :cluster_23, 632 :cluster_4, 457 :cluster_2, 427 :cluster_2, 145 :cluster_4, 5 :cluster_2, 733 :cluster_4, 1163 :cluster_4, 1165 :cluster_2, 1152 :cluster_2, 624 :cluster_9, 831 :cluster_6, 244 :cluster_0, 918 :cluster_2, 824 :cluster_4, 289 :cluster_4, 112 :cluster_4, 925 :cluster_2, 1059 :cluster_2, 730 :cluster_4, 699 :cluster_23, 712 :cluster_2, 1076 :cluster_4, 1113 :cluster_4, 414 :cluster_4, 839 :cluster_2, 802 :cluster_6, 1084 :cluster_2, 860 :cluster_78, 1117 :cluster_2, 179 :cluster_0, 344 :cluster_6, 481 :cluster_4, 732 :cluster_4, 661 :cluster_4, 245 :cluster_2, 378 :cluster_6, 913 :cluster_4, 906 :cluster_3, 658 :cluster_4, 266 :cluster_4, 324 :cluster_2, 793 :cluster_6, 1134 :cluster_6, 1132 :cluster_2, 1014 :cluster_4, 680 :cluster_23, 446 :cluster_2, 524 :cluster_6, 254 :cluster_4, 404 :cluster_23, 1025 :cluster_4, 617 :cluster_2, 283 :cluster_4, 1153 :cluster_2, 513 :cluster_4, 572 :cluster_6, 705 :cluster_23, 1098 :cluster_4, 959 :cluster_4, 1074 :cluster_4, 83 :cluster_4, 634 :cluster_4, 138 :cluster_6, 1050 :cluster_4, 346 :cluster_6, 14 :cluster_6, 455 :cluster_4, 265 :cluster_4, 449 :cluster_6, 333 :cluster_6, 650 :cluster_4, 639 :cluster_2, 569 :cluster_6, 326 :cluster_4, 746 :cluster_2, 647 :cluster_62, 45 :cluster_4, 53 :cluster_4, 559 :cluster_6, 78 :cluster_4, 1037 :cluster_4, 924 :cluster_2, 562 :cluster_6, 1119 :cluster_2, 542 :cluster_6, 912 :cluster_4, 664 :cluster_2, 1048 :cluster_4, 315 :cluster_4, 1031 :cluster_4, 914 :cluster_4, 480 :cluster_4, 132 :cluster_4, 753 :cluster_6, 900 :cluster_6, 1013 :cluster_2, 26 :cluster_6, 766 :cluster_6, 123 :cluster_2, 203 :cluster_4, 667 :cluster_4, 392 :cluster_23, 1045 :cluster_66, 577 :cluster_6, 807 :cluster_2, 140 :cluster_2, 321 :cluster_23, 795 :cluster_6, 441 :cluster_2, 700 :cluster_23, 268 :cluster_4, 840 :cluster_6, 16 :cluster_6, 320 :cluster_23, 133 :cluster_2, 288 :cluster_2, 381 :cluster_23, 605 :cluster_6, 163 :cluster_2, 81 :cluster_4, 120 :cluster_2, 643 :cluster_6, 79 :cluster_4, 211 :cluster_4, 38 :cluster_4, 173 :cluster_2, 126 :cluster_2, 981 :cluster_2, 1161 :cluster_4, 421 :cluster_6, 593 :cluster_85, 636 :cluster_2, 1160 :cluster_4, 98 :cluster_4, 422 :cluster_6, 423 :cluster_6, 614 :cluster_4, 762 :cluster_6, 582 :cluster_6, 666 :cluster_4, 1123 :cluster_4, 554 :cluster_6, 409 :cluster_23, 574 :cluster_6, 595 :cluster_2, 124 :cluster_6, 747 :cluster_4, 171 :cluster_2, 87 :cluster_4, 169 :cluster_2, 653 :cluster_4, 679 :cluster_23, 843 :cluster_6, 160 :cluster_2, 30 :cluster_4, 400 :cluster_23, 767 :cluster_6, 896 :cluster_9, 928 :cluster_2, 696 :cluster_23, 1027 :cluster_4, 738 :cluster_59, 809 :cluster_6, 509 :cluster_4, 736 :cluster_2, 207 :cluster_4, 874 :cluster_2, 434 :cluster_2, 1130 :cluster_2, 690 :cluster_23, 194 :cluster_2, 1047 :cluster_4, 511 :cluster_77, 73 :cluster_4, 486 :cluster_4, 336 :cluster_6, 96 :cluster_4, 837 :cluster_9, 1136 :cluster_6, 937 :cluster_2, 10 :cluster_3, 660 :cluster_4, 272 :cluster_4, 499 :cluster_4, 488 :cluster_4, 903 :cluster_4, 386 :cluster_23, 270 :cluster_4, 576 :cluster_6, 717 :cluster_4, 543 :cluster_6, 271 :cluster_4, 18 :cluster_2, 395 :cluster_23, 403 :cluster_23, 469 :cluster_4, 105 :cluster_2, 185 :cluster_4, 52 :cluster_4, 1051 :cluster_4, 545 :cluster_6, 633 :cluster_9, 114 :cluster_2, 1099 :cluster_4, 968 :cluster_6, 253 :cluster_4, 612 :cluster_9, 1151 :cluster_6, 1015 :cluster_4, 628 :cluster_2, 748 :cluster_4, 209 :cluster_4, 147 :cluster_85, 655 :cluster_2, 1022 :cluster_4, 750 :cluster_4, 852 :cluster_6, 425 :cluster_6, 1158 :cluster_4, 864 :cluster_2, 67 :cluster_2, 1108 :cluster_2, 296 :cluster_2, 602 :cluster_4, 318 :cluster_4, 161 :cluster_2, 651 :cluster_4, 725 :cluster_4, 372 :cluster_6, 1092 :cluster_4, 406 :cluster_23, 438 :cluster_2, 780 :cluster_6, 711 :cluster_2, 1041 :cluster_4, 71 :cluster_4, 939 :cluster_2, 579 :cluster_6, 877 :cluster_6, 722 :cluster_2, 42 :cluster_4, 919 :cluster_2, 80 :cluster_4, 885 :cluster_2, 1078 :cluster_2, 986 :cluster_6, 1035 :cluster_4, 714 :cluster_4, 677 :cluster_23, 199 :cluster_6, 841 :cluster_6, 754 :cluster_6, 791 :cluster_6, 1029 :cluster_6, 861 :cluster_78, 591 :cluster_6, 1021 :cluster_4, 744 :cluster_2, 960 :cluster_2, 37 :cluster_4, 183 :cluster_4, 1139 :cluster_2, 965 :cluster_2, 892 :cluster_9, 432 :cluster_4, 379 :cluster_6, 63 :cluster_2, 212 :cluster_3, 94 :cluster_4, 362 :cluster_6, 8 :cluster_4, 686 :cluster_23, 692 :cluster_23, 764 :cluster_6, 246 :cluster_4, 190 :cluster_4, 1004 :cluster_2, 1036 :cluster_2, 549 :cluster_6, 922 :cluster_2, 177 :cluster_2, 915 :cluster_4, 936 :cluster_2, 820 :cluster_85, 49 :cluster_4, 858 :cluster_2, 390 :cluster_23, 84 :cluster_4}}, :assignments {{:Eccentricity 3.2E-4, :Launch_Mass_kg 2081.0, :Apogee_km 35800.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{40}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 5000.0, :Apogee_km 35790.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001570796, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{325}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 2400.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{750}}, {:Eccentricity 4.6E-4, :Launch_Mass_kg 4630.0, :Apogee_km 35805.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{72}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{338}}, {:Eccentricity 0.00104, :Launch_Mass_kg nil, :Apogee_km 829.0, :Perigee_km 814.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{177}}, {:Eccentricity 0.00168, :Launch_Mass_kg 6150.0, :Apogee_km 35856.0, :Perigee_km 35714.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.01, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{275}}, {:Eccentricity 0.01508, :Launch_Mass_kg 1816.0, :Apogee_km 20582.0, :Perigee_km 19781.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.94, :Inclination_radians 0.973544657, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{676}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 270.0, :Apogee_km 1508.0, :Perigee_km 1493.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 116.0, :Inclination_radians 1.4397221, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{423}}, {:Eccentricity 0.00421, :Launch_Mass_kg 1415.0, :Apogee_km 19123.0, :Perigee_km 18909.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 671.2, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{402}}, {:Eccentricity 0.00236, :Launch_Mass_kg 225.0, :Apogee_km 1502.0, :Perigee_km 1465.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.6, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{996}}, {:Eccentricity 0.00448, :Launch_Mass_kg 8000.0, :Apogee_km 35976.0, :Perigee_km 35598.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 1436.13, :Inclination_radians 0.089011792, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{644}}, {:Eccentricity 5.5E-4, :Launch_Mass_kg 2070.0, :Apogee_km 35809.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{469}}, {:Eccentricity 0.00197, :Launch_Mass_kg 280.0, :Apogee_km 1511.0, :Perigee_km 1480.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{842}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 4703.0, :Apogee_km 35790.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1112}}, {:Eccentricity 0.00103, :Launch_Mass_kg 434.0, :Apogee_km 410.0, :Perigee_km 396.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 92.62, :Inclination_radians 0.698131701, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{780}}, {:Eccentricity 0.00156, :Launch_Mass_kg 800.0, :Apogee_km 698.0, :Perigee_km 676.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 98.5, :Inclination_radians 1.713913325, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{616}}, {:Eccentricity 0.00118, :Launch_Mass_kg 1155.0, :Apogee_km 859.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.94, :Inclination_radians 1.726654229, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{198}}, {:Eccentricity 0.00129, :Launch_Mass_kg nil, :Apogee_km 601.0, :Perigee_km 583.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.5, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{922}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 400.0, :Apogee_km 507.0, :Perigee_km 503.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{109}}, {:Eccentricity 0.00103, :Launch_Mass_kg 450.0, :Apogee_km 1422.0, :Perigee_km 1406.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{335}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3100.0, :Apogee_km 35791.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 1436.03, :Inclination_radians 0.488692191, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{901}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 4291.0, :Apogee_km 35801.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 0.021293017, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{326}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 5613.0, :Apogee_km 35800.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{487}}, {:Eccentricity 0.00193, :Launch_Mass_kg nil, :Apogee_km 626.0, :Perigee_km 599.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.438151304, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{26}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 33}, :row-ids #{558 580 571 547 527 550 557 583 540 581 578 553 531 528 541 575 539 573 588 544 556 532 526 533 546 559 562 542 582 554 543 579 549}}, {:Eccentricity 0.07979, :Launch_Mass_kg 490.0, :Apogee_km 1486.0, :Perigee_km 325.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 103.11, :Inclination_radians 1.413716694, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_0 1}, :row-ids #{129}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 4640.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{311}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1414.0, :Perigee_km 1411.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{351}}, {:Eccentricity 0.00268, :Launch_Mass_kg 35.0, :Apogee_km 734.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Research", :Period_minutes 99.1, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{881}}, {:Eccentricity 0.00255, :Launch_Mass_kg 225.0, :Apogee_km 1506.0, :Perigee_km 1466.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.7, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{994}}, {:Eccentricity 0.00108, :Launch_Mass_kg 2380.0, :Apogee_km 35832.0, :Perigee_km 35741.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.12, :Inclination_radians 0.024609142, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{214}}, {:Eccentricity 0.00129, :Launch_Mass_kg 300.0, :Apogee_km 603.0, :Perigee_km 585.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 96.56, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{216}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 5521.0, :Apogee_km 35803.0, :Perigee_km 35789.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.57, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{223}}, {:Eccentricity 0.00118, :Launch_Mass_kg 1630.0, :Apogee_km 20247.0, :Perigee_km 20184.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 719.32, :Inclination_radians 0.961501885, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{688}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg nil, :Apogee_km 35805.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 23.94, :Inclination_radians 0.085695666, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{907}}, {:Eccentricity 0.06917, :Launch_Mass_kg 1.0, :Apogee_km 1297.0, :Perigee_km 305.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 100.9, :Inclination_radians 1.21300383, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_0 1}, :row-ids #{637}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3325.0, :Apogee_km 35796.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.3, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1042}}, {:Eccentricity 9.2E-4, :Launch_Mass_kg 2059.0, :Apogee_km 20209.0, :Perigee_km 20160.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.07, :Inclination_radians 0.962025484, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{707}}, {:Eccentricity 0.00121, :Launch_Mass_kg 120.0, :Apogee_km 692.0, :Perigee_km 675.0, :Type_of_Orbit "Polar", :Purpose "Electronic Intelligence/Technology Development", :Period_minutes 98.43, :Inclination_radians 1.714087858, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1, :cluster_6 1}, :row-ids #{234 236}}, {:Eccentricity 0.00166, :Launch_Mass_kg 5.8, :Apogee_km 582.0, :Perigee_km 559.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.08, :Inclination_radians 1.132369619, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{199}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 117.0, :Apogee_km 624.0, :Perigee_km 622.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.2, :Inclination_radians 1.710422667, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{981}}, {:Eccentricity 0.00115, :Launch_Mass_kg nil, :Apogee_km 602.0, :Perigee_km 586.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{932}}, {:Eccentricity 0.00234, :Launch_Mass_kg 1816.0, :Apogee_km 20244.0, :Perigee_km 20120.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.954695101, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{678}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 3250.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{98}}, {:Eccentricity 0.00169, :Launch_Mass_kg 1415.0, :Apogee_km 19173.0, :Perigee_km 19087.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.73, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{410}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2090.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.09, :Inclination_radians 0.00418879, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{478}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 4710.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{55}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 2600.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.047996554, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{278}}, {:Eccentricity 0.00919, :Launch_Mass_kg 2217.0, :Apogee_km 20426.0, :Perigee_km 19938.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.0, :Inclination_radians 0.95644043, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{692}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35805.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{513}}, {:Eccentricity 0.00114, :Launch_Mass_kg 3.0, :Apogee_km 667.0, :Perigee_km 651.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.92, :Inclination_radians 1.710946266, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{615}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 700.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.08, :Inclination_radians 0.907396678, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{361}}, {:Eccentricity 0.00303, :Launch_Mass_kg 2060.0, :Apogee_km 20311.0, :Perigee_km 20150.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 719.92, :Inclination_radians 0.959232957, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{705}}, {:Eccentricity 8.0E-4, :Launch_Mass_kg 35.0, :Apogee_km 475.0, :Perigee_km 464.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.0, :Inclination_radians 1.699950691, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1052}}, {:Eccentricity 0.00147, :Launch_Mass_kg 500.0, :Apogee_km 803.0, :Perigee_km 782.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 100.7, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{434}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35799.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.15, :Inclination_radians 0.032637657, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{144}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 2750.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{477}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 13}, :row-ids #{521 568 534 523 565 567 538 536 570 537 564 566 569}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 3642.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{731}}, {:Eccentricity 0.00106, :Launch_Mass_kg 120.0, :Apogee_km 692.0, :Perigee_km 677.0, :Type_of_Orbit "Polar", :Purpose "Electronic Intelligence/Technology Development", :Period_minutes 98.46, :Inclination_radians 1.714087858, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{235}}, {:Eccentricity 0.00635, :Launch_Mass_kg 1.0, :Apogee_km 683.0, :Perigee_km 594.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 97.4, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{305}}, {:Eccentricity 0.00135, :Launch_Mass_kg 700.0, :Apogee_km 1391.0, :Perigee_km 1370.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 113.96, :Inclination_radians 0.907745744, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{379}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 1383.0, :Apogee_km 35790.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 0.102799893, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{69}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1700.0, :Apogee_km 623.0, :Perigee_km 622.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 97.2, :Inclination_radians 1.708677338, :Users "Military/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 3}, :row-ids #{168 167 169}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 5456.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{871}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 115.0, :Apogee_km 685.0, :Perigee_km 682.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 98.43, :Inclination_radians 1.712691595, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{1095}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35775.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.22, :Inclination_radians 0.058293997, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1073}}, {:Eccentricity 0.00184, :Launch_Mass_kg 45.0, :Apogee_km 1508.0, :Perigee_km 1479.0, :Type_of_Orbit "Intermediate", :Purpose "Technology Development", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{1151}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4600.0, :Apogee_km 35797.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial/Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{132}}, {:Eccentricity 9.4E-4, :Launch_Mass_kg 215.0, :Apogee_km 583.0, :Perigee_km 570.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 96.2, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{24}}, {:Eccentricity 0.00143, :Launch_Mass_kg 16.0, :Apogee_km 631.0, :Perigee_km 611.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.706932008, :Users "Civil/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{123}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 96.5, :Apogee_km 662.0, :Perigee_km 660.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.0, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1077}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3790.0, :Apogee_km 35794.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{317}}, {:Eccentricity 0.00185, :Launch_Mass_kg 2300.0, :Apogee_km 35864.0, :Perigee_km 35708.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.08, :Inclination_radians 0.962723615, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{143}}, {:Eccentricity 0.74119, :Launch_Mass_kg nil, :Apogee_km 39850.0, :Perigee_km 500.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 717.7, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{904}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 2700.0, :Apogee_km 35805.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001919862, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{249}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 680.0, :Apogee_km 635.0, :Perigee_km 632.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.4, :Inclination_radians 1.692969374, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{126}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 45.0, :Apogee_km 792.0, :Perigee_km 790.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{765}}, {:Eccentricity 0.08154, :Launch_Mass_kg 93.0, :Apogee_km 1482.0, :Perigee_km 298.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 102.77, :Inclination_radians 1.401150324, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Naro Space Center"} {:categories {:cluster_0 1}, :row-ids #{999}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 5396.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{725}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35809.0, :Perigee_km 35765.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.006108652, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{658}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2340.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{37}}, {:Eccentricity 0.00195, :Launch_Mass_kg nil, :Apogee_km 317.0, :Perigee_km 291.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 90.61, :Inclination_radians 1.686686189, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{622}}, {:Eccentricity 5.9E-4, :Launch_Mass_kg 1410.0, :Apogee_km 35811.0, :Perigee_km 35761.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001570796, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_4 1}, :row-ids #{429}}, {:Eccentricity 0.00138, :Launch_Mass_kg 28.7, :Apogee_km 867.0, :Perigee_km 847.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 102.1, :Inclination_radians 0.34906585, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{1090}}, {:Eccentricity 0.00236, :Launch_Mass_kg 315.0, :Apogee_km 633.0, :Perigee_km 600.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 97.0, :Inclination_radians 0.698131701, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{970}}, {:Eccentricity 0.00101, :Launch_Mass_kg nil, :Apogee_km 1081.0, :Perigee_km 1066.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 106.7, :Inclination_radians 2.14675498, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{298}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 5420.0, :Apogee_km 35883.0, :Perigee_km 35834.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1439.76, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{101}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 2894.0, :Apogee_km 35794.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3093.0, :Apogee_km 35796.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications/Navigation", :Period_minutes 1436.23, :Inclination_radians 0.001570796, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{433}}, {:Eccentricity 0.0014, :Launch_Mass_kg 100.0, :Apogee_km 804.0, :Perigee_km 784.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.7, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{135}}, {:Eccentricity 0.00143, :Launch_Mass_kg 3.0, :Apogee_km 627.0, :Perigee_km 607.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{909}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 2000.0, :Apogee_km 35803.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{471}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3600.0, :Apogee_km 35793.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{715}}, {:Eccentricity 0.01437, :Launch_Mass_kg 3.0, :Apogee_km 797.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{746}}, {:Eccentricity 0.0034, :Launch_Mass_kg 825.0, :Apogee_km 1011.0, :Perigee_km 961.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.8, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{792}}, {:Eccentricity 7.1E-4, :Launch_Mass_kg 2417.0, :Apogee_km 35788.0, :Perigee_km 35728.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.6, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{642}}, {:Eccentricity 0.68262, :Launch_Mass_kg 647.6, :Apogee_km 30534.0, :Perigee_km 591.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 539.06, :Inclination_radians 0.175056524, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{1085}}, {:Eccentricity 0.02525, :Launch_Mass_kg 2300.0, :Apogee_km 37872.0, :Perigee_km 35693.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1435.93, :Inclination_radians 1.682497399, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{150}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 5953.0, :Apogee_km 35823.0, :Perigee_km 35743.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.92, :Inclination_radians 6.98132E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1120}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1415.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{343}}, {:Eccentricity 0.00248, :Launch_Mass_kg 100.0, :Apogee_km 696.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 98.3, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{712}}, {:Eccentricity 0.00243, :Launch_Mass_kg 3.5, :Apogee_km 653.0, :Perigee_km 619.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.4, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1155}}, {:Eccentricity 0.00355, :Launch_Mass_kg 2217.0, :Apogee_km 20344.0, :Perigee_km 20155.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 720.71, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{699}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4300.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{187}}, {:Eccentricity 0.00133, :Launch_Mass_kg 100.8, :Apogee_km 804.0, :Perigee_km 785.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.5, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{134}}, {:Eccentricity 0.05288, :Launch_Mass_kg 18000.0, :Apogee_km 997.0, :Perigee_km 257.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.25, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{612}}, {:Eccentricity 7.1E-4, :Launch_Mass_kg 1.0, :Apogee_km 720.0, :Perigee_km 710.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.1, :Inclination_radians 1.715658655, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1013}}, {:Eccentricity 7.5E-4, :Launch_Mass_kg 2500.0, :Apogee_km 35817.0, :Perigee_km 35754.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{252}}, {:Eccentricity 0.00278, :Launch_Mass_kg 770.0, :Apogee_km 486.0, :Perigee_km 448.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.4, :Inclination_radians 1.713215194, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{867}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 4892.0, :Apogee_km 35806.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{262}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 700.0, :Apogee_km 8068.0, :Perigee_km 8064.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 287.94, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_59 1}, :row-ids #{739}}, {:Eccentricity 0.01597, :Launch_Mass_kg 3.0, :Apogee_km 819.0, :Perigee_km 593.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.9, :Inclination_radians 1.705186679, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{327}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 10.0, :Apogee_km 796.0, :Perigee_km 789.0, :Type_of_Orbit "Intermediate", :Purpose "Technology Development/Communications", :Period_minutes 100.7, :Inclination_radians 1.169370599, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_6 1}, :row-ids #{798}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg nil, :Apogee_km 502.0, :Perigee_km 498.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 7}, :row-ids #{812 814 815 811 810 816 813}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 700.0, :Apogee_km 8069.0, :Perigee_km 8062.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 287.93, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_59 1}, :row-ids #{738}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35798.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.19, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{911}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3659.0, :Apogee_km 35792.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.14, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{508}}, {:Eccentricity 0.01798, :Launch_Mass_kg 10.0, :Apogee_km 849.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 99.2, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1105}}, {:Eccentricity 0.86407, :Launch_Mass_kg 126.0, :Apogee_km 87304.0, :Perigee_km 461.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 1868.98, :Inclination_radians 0.274016693, :Users "Government/Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_66 1}, :row-ids #{1043}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{498}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 1500.0, :Apogee_km 454.0, :Perigee_km 444.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 93.6, :Inclination_radians 1.694714704, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1153}}, {:Eccentricity 0.00129, :Launch_Mass_kg 6.5, :Apogee_km 616.0, :Perigee_km 598.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.8, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{181}}, {:Eccentricity 0.00194, :Launch_Mass_kg nil, :Apogee_km 35796.0, :Perigee_km 35633.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1432.0, :Inclination_radians 1.74533E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{52}}, {:Eccentricity 0.00176, :Launch_Mass_kg 110.0, :Apogee_km 760.0, :Perigee_km 735.0, :Type_of_Orbit "Intermediate", :Purpose "Meteorology/Earth Observation", :Period_minutes 99.8, :Inclination_radians 0.436332313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{899}}, {:Eccentricity 0.00388, :Launch_Mass_kg 810.0, :Apogee_km 1011.0, :Perigee_km 954.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.8, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{795}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 14500.0, :Apogee_km 675.0, :Perigee_km 671.0, :Type_of_Orbit "Intermediate", :Purpose "Surveillance", :Period_minutes 98.2, :Inclination_radians 0.994837674, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{624}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 45.0, :Apogee_km 774.0, :Perigee_km 772.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{774 773}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 2650.0, :Apogee_km 504.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1166}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3800.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{190}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3833.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{502}}, {:Eccentricity 5.5E-4, :Launch_Mass_kg 2850.0, :Apogee_km 35809.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.023911011, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{666}}, {:Eccentricity 0.0, :Launch_Mass_kg 18000.0, :Apogee_km 800.0, :Perigee_km 800.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 100.87, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{608}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 450.0, :Apogee_km 1412.0, :Perigee_km 1407.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{333}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 3600.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{73}}, {:Eccentricity 0.00184, :Launch_Mass_kg 280.0, :Apogee_km 1511.0, :Perigee_km 1482.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{856}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 3311.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.14, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{455}}, {:Eccentricity 0.00174, :Launch_Mass_kg 325.0, :Apogee_km 534.0, :Perigee_km 510.0, :Type_of_Orbit nil, :Purpose "Scientific Research", :Period_minutes 95.1, :Inclination_radians 0.043633231, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_6 1}, :row-ids #{23}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 130.0, :Apogee_km 674.0, :Perigee_km 672.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.2, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{31}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 1.0, :Apogee_km 414.0, :Perigee_km 410.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 92.81, :Inclination_radians 0.901462559, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "ISS"} {:categories {:cluster_6 1}, :row-ids #{802}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1060.0, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_4 1}, :row-ids #{606}}, {:Eccentricity 0.00156, :Launch_Mass_kg 166.0, :Apogee_km 703.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{107}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.11, :Inclination_radians 0.112573737, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{883}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 4536.0, :Apogee_km 35768.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.04, :Inclination_radians 0.078539816, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{659}}, {:Eccentricity 0.00193, :Launch_Mass_kg 55.0, :Apogee_km 654.0, :Perigee_km 627.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.54, :Inclination_radians 1.256113463, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{286}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2400.0, :Apogee_km 35797.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.001745329, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{825}}, {:Eccentricity 0.001, :Launch_Mass_kg 2310.0, :Apogee_km 35829.0, :Perigee_km 35745.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.156556034, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{302}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 4900.0, :Apogee_km 35812.0, :Perigee_km 35759.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{273}}, {:Eccentricity 0.00149, :Launch_Mass_kg 409.0, :Apogee_km 690.0, :Perigee_km 669.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.35, :Inclination_radians 1.713215194, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{415}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 850.0, :Apogee_km 492.0, :Perigee_km 484.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.37, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{458}}, {:Eccentricity 0.01562, :Launch_Mass_kg 6.0, :Apogee_km 815.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.8, :Inclination_radians 1.705186679, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 2}, :row-ids #{201 200}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 1040.0, :Apogee_km 1207.0, :Perigee_km 1201.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 109.5, :Inclination_radians 1.74881991, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1131}}, {:Eccentricity 0.00192, :Launch_Mass_kg 1156.0, :Apogee_km 35868.0, :Perigee_km 35706.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 1.74533E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{206}}, {:Eccentricity 0.00156, :Launch_Mass_kg 170.0, :Apogee_km 703.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Research", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{944}}, {:Eccentricity 0.00326, :Launch_Mass_kg 795.0, :Apogee_km 1008.0, :Perigee_km 960.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.8, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{791}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 4060.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{308}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 3.0, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.6, :Inclination_radians 0.706858347, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{986}}, {:Eccentricity 0.00149, :Launch_Mass_kg 64.0, :Apogee_km 690.0, :Perigee_km 669.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.3, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{665}}, {:Eccentricity 7.4E-4, :Launch_Mass_kg nil, :Apogee_km 1090.0, :Perigee_km 1079.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 106.93, :Inclination_radians 1.10618968, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1133}}, {:Eccentricity 0.00391, :Launch_Mass_kg 70.0, :Apogee_km 828.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{165}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 3460.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.002094395, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{19}}, {:Eccentricity 0.01799, :Launch_Mass_kg 300.0, :Apogee_km 589.0, :Perigee_km 343.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 93.91, :Inclination_radians 2.474527813, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Palmachim Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{745}}, {:Eccentricity 0.00233, :Launch_Mass_kg 2217.0, :Apogee_km 20247.0, :Perigee_km 20123.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.09, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{693}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4027.0, :Apogee_km 35789.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{228}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1858.0, :Apogee_km 541.0, :Perigee_km 538.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Surveillance", :Period_minutes 95.4, :Inclination_radians 1.70344135, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{839}}, {:Eccentricity 0.00411, :Launch_Mass_kg nil, :Apogee_km 591.0, :Perigee_km 534.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 95.9, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{933}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 4970.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1034}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 2440.0, :Apogee_km 35794.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001396263, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{159}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4450.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{620}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 1825.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications/Technology Development", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_4 1}, :row-ids #{431}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19141.0, :Perigee_km 19134.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.1, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{381}}, {:Eccentricity 0.02986, :Launch_Mass_kg 1.0, :Apogee_km 890.0, :Perigee_km 469.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.3, :Inclination_radians 2.103121749, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{520}}, {:Eccentricity 0.00696, :Launch_Mass_kg 12.0, :Apogee_km 795.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 99.7, :Inclination_radians 1.712167996, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1078}}, {:Eccentricity 0.00358, :Launch_Mass_kg 1.0, :Apogee_km 640.0, :Perigee_km 590.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{453}}, {:Eccentricity 0.00149, :Launch_Mass_kg 200.0, :Apogee_km 677.0, :Perigee_km 656.0, :Type_of_Orbit nil, :Purpose "Earth Observation/Research", :Period_minutes 98.1, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{882}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1478.0, :Perigee_km 1477.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{340}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg nil, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 14.36, :Inclination_radians 0.085870199, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{906}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 3105.0, :Apogee_km 35803.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications/Research", :Period_minutes 1436.12, :Inclination_radians 0.122696646, :Users "Commercial/Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{75}}, {:Eccentricity 0.00258, :Launch_Mass_kg 700.0, :Apogee_km 1400.0, :Perigee_km 1360.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 113.35, :Inclination_radians 0.907222145, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{375}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5990.0, :Apogee_km 35786.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 3}, :row-ids #{1101 1102 1099}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 3150.0, :Apogee_km 35806.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{270}}, {:Eccentricity 0.00353, :Launch_Mass_kg 12.0, :Apogee_km 747.0, :Perigee_km 697.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.2, :Inclination_radians 1.710422667, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{873}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1800.0, :Apogee_km 512.0, :Perigee_km 511.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.9, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1144}}, {:Eccentricity 0.03149, :Launch_Mass_kg 2.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Civil/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 2}, :row-ids #{299 300}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 2315.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{36}}, {:Eccentricity 0.89688, :Launch_Mass_kg 4000.0, :Apogee_km 152812.0, :Perigee_km 2284.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 4032.86, :Inclination_radians 0.90931654, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_81 1}, :row-ids #{483}}, {:Eccentricity 0.01243, :Launch_Mass_kg 5000.0, :Apogee_km 1203.0, :Perigee_km 1017.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{891}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 45.0, :Apogee_km 792.0, :Perigee_km 791.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{761}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2460.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Earth Observation/Meteorology/Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{157}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 6600.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.100007366, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{231}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 0.009599311, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1161}}, {:Eccentricity 0.00128, :Launch_Mass_kg 200.0, :Apogee_km 680.0, :Perigee_km 662.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.2, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{215}}, {:Eccentricity 0.83044, :Launch_Mass_kg 980.0, :Apogee_km 104552.0, :Perigee_km 3905.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 2474.83, :Inclination_radians 0.389208423, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_93 1}, :row-ids #{331}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 4010.0, :Apogee_km 35801.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1032}}, {:Eccentricity 0.00367, :Launch_Mass_kg 820.0, :Apogee_km 1022.0, :Perigee_km 968.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 105.0, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{797}}, {:Eccentricity 0.0, :Launch_Mass_kg 5000.0, :Apogee_km 35500.0, :Perigee_km 35500.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes nil, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{9}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 45.0, :Apogee_km 793.0, :Perigee_km 789.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{762}}, {:Eccentricity 0.92129, :Launch_Mass_kg 462.0, :Apogee_km 320000.0, :Perigee_km 7000.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 0.22, :Inclination_radians 0.191986218, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Kwajalein Island"} {:categories {:cluster_92 1}, :row-ids #{519}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 5360.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.105766953, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{961}}, {:Eccentricity 0.00193, :Launch_Mass_kg nil, :Apogee_km 651.0, :Perigee_km 624.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.46, :Inclination_radians 1.710248134, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{935}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{509}}, {:Eccentricity 0.0, :Launch_Mass_kg 4745.0, :Apogee_km 35700.0, :Perigee_km 35700.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{717}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg nil, :Apogee_km 35815.0, :Perigee_km 35758.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1436.13, :Inclination_radians 0.044854962, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{902}}, {:Eccentricity 0.03261, :Launch_Mass_kg 2060.0, :Apogee_km 35725.0, :Perigee_km 33066.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1365.61, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{116}}, {:Eccentricity 0.4072, :Launch_Mass_kg nil, :Apogee_km 11600.0, :Perigee_km 1200.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 240.0, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_74 1}, :row-ids #{962}}, {:Eccentricity 8.6E-4, :Launch_Mass_kg nil, :Apogee_km 1205.0, :Perigee_km 1192.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 109.4, :Inclination_radians 1.75056524, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1146}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{524}}, {:Eccentricity 0.01757, :Launch_Mass_kg 700.0, :Apogee_km 1739.0, :Perigee_km 1459.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 118.2, :Inclination_radians 1.291543646, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{371}}, {:Eccentricity 1.0E-4, :Launch_Mass_kg 2130.0, :Apogee_km 37791.0, :Perigee_km 37782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_4 1}, :row-ids #{482}}, {:Eccentricity 7.6E-4, :Launch_Mass_kg 5000.0, :Apogee_km 911.0, :Perigee_km 900.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 103.1, :Inclination_radians 1.172861257, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{633}}, {:Eccentricity 6.4E-4, :Launch_Mass_kg 1.0, :Apogee_km 718.0, :Perigee_km 709.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.0, :Inclination_radians 1.715658655, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{104}}, {:Eccentricity 0.00187, :Launch_Mass_kg 3.0, :Apogee_km 866.0, :Perigee_km 839.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 102.0, :Inclination_radians 0.34906585, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{605}}, {:Eccentricity 0.02191, :Launch_Mass_kg 3.15, :Apogee_km 791.0, :Perigee_km 484.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 97.4, :Inclination_radians 1.127482697, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{138}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5150.0, :Apogee_km 35795.0, :Perigee_km 35793.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.003490659, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{710}}, {:Eccentricity 3.7E-4, :Launch_Mass_kg 4700.0, :Apogee_km 35802.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{956}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 5500.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{191}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 4680.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{70}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1417.0, :Perigee_km 1411.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{341}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 5200.0, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.003316126, :Users "Military/Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1163}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 700.0, :Apogee_km 1414.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 10}, :row-ids #{360 356 363 365 367 366 369 374 372 362}}, {:Eccentricity 0.0012, :Launch_Mass_kg 169.0, :Apogee_km 701.0, :Perigee_km 684.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.6, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{941}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2.5, :Apogee_km 499.0, :Perigee_km 498.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.58, :Inclination_radians 0.706858347, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{623}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 5900.0, :Apogee_km 35822.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{248}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{346}}, {:Eccentricity 9.9E-4, :Launch_Mass_kg 300.0, :Apogee_km 705.0, :Perigee_km 691.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{711}}, {:Eccentricity 0.00241, :Launch_Mass_kg 770.0, :Apogee_km 503.0, :Perigee_km 470.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.34, :Inclination_radians 1.713738793, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{865}}, {:Eccentricity 0.0023, :Launch_Mass_kg 215.0, :Apogee_km 823.0, :Perigee_km 790.0, :Type_of_Orbit "Intermediate", :Purpose "Earth Observation", :Period_minutes 101.0, :Inclination_radians 1.221730476, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{304}}, {:Eccentricity 0.00127, :Launch_Mass_kg nil, :Apogee_km 704.0, :Perigee_km 686.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{919}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3813.0, :Apogee_km 35793.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.17, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{79}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 3635.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{90}}, {:Eccentricity 9.6E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19199.0, :Perigee_km 19150.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 677.5, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{407}}, {:Eccentricity 0.00136, :Launch_Mass_kg 680.0, :Apogee_km 643.0, :Perigee_km 624.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.4, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{127}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 3300.0, :Apogee_km 35803.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{439}}, {:Eccentricity 0.00108, :Launch_Mass_kg 204.0, :Apogee_km 601.0, :Perigee_km 586.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 96.6, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{936}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg 2650.0, :Apogee_km 35814.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.003316126, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{432}}, {:Eccentricity 0.00419, :Launch_Mass_kg 1415.0, :Apogee_km 19135.0, :Perigee_km 18922.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 671.71, :Inclination_radians 1.130798822, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{395}}, {:Eccentricity 0.00104, :Launch_Mass_kg 53.0, :Apogee_km 832.0, :Perigee_km 817.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Astrophysics", :Period_minutes 101.4, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{664}}, {:Eccentricity 0.00762, :Launch_Mass_kg 1.0, :Apogee_km 700.0, :Perigee_km 593.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 97.6, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1084}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 45.0, :Apogee_km 778.0, :Perigee_km 768.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{776}}, {:Eccentricity 0.002, :Launch_Mass_kg 1200.0, :Apogee_km 661.0, :Perigee_km 633.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.710422667, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1140}}, {:Eccentricity 0.00836, :Launch_Mass_kg 1816.0, :Apogee_km 20403.0, :Perigee_km 19959.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.93, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{677}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 6007.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{914}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 6020.0, :Apogee_km 35791.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{951}}, {:Eccentricity 0.0044, :Launch_Mass_kg 12.0, :Apogee_km 714.0, :Perigee_km 652.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.4, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{875}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 4137.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{77}}, {:Eccentricity 0.01506, :Launch_Mass_kg nil, :Apogee_km 1112.0, :Perigee_km 890.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 105.14, :Inclination_radians 1.107760476, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_6 1}, :row-ids #{1137}}, {:Eccentricity 0.00279, :Launch_Mass_kg 1816.0, :Apogee_km 20257.0, :Perigee_km 20109.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.01, :Inclination_radians 0.95644043, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{684}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 1698.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{45}}, {:Eccentricity 0.0023, :Launch_Mass_kg nil, :Apogee_km 599.0, :Perigee_km 567.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 96.34, :Inclination_radians 1.707106541, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{960}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5993.0, :Apogee_km 35787.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{972}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 2982.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{600}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1093}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 3800.0, :Apogee_km 35815.0, :Perigee_km 35756.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{272}}, {:Eccentricity 0.00121, :Launch_Mass_kg 2217.0, :Apogee_km 20213.0, :Perigee_km 20149.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.93, :Inclination_radians 0.95644043, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{704}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 6000.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{95}}, {:Eccentricity 5.9E-4, :Launch_Mass_kg 935.0, :Apogee_km 19146.0, :Perigee_km 19116.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.78, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{380}}, {:Eccentricity 0.00299, :Launch_Mass_kg nil, :Apogee_km 668.0, :Perigee_km 626.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1127}}, {:Eccentricity 0.0, :Launch_Mass_kg 1480.0, :Apogee_km 19130.0, :Perigee_km 19130.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.75, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 3}, :row-ids #{385 384 383}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 5345.0, :Apogee_km 35852.0, :Perigee_km 35804.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1438.2, :Inclination_radians 0.002443461, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{88}}, {:Eccentricity 0.00123, :Launch_Mass_kg 1000.0, :Apogee_km 552.0, :Perigee_km 535.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 95.5, :Inclination_radians 1.70344135, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Yasny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{618}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4400.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{603}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 5540.0, :Apogee_km 35804.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{490}}, {:Eccentricity 7.9E-4, :Launch_Mass_kg nil, :Apogee_km 598.0, :Perigee_km 587.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{926}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3304.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.00122173, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{100}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3100.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{480}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5474.0, :Apogee_km 35795.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commecial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{872}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 5800.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{950}}, {:Eccentricity 0.00187, :Launch_Mass_kg nil, :Apogee_km 607.0, :Perigee_km 581.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.6, :Inclination_radians 1.70344135, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{929}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1700.0, :Apogee_km 623.0, :Perigee_km 622.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Imaging", :Period_minutes 97.2, :Inclination_radians 1.708677338, :Users "Civil/Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{166}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg nil, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{913}}, {:Eccentricity 8.5E-4, :Launch_Mass_kg 50.0, :Apogee_km 673.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.1, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{908}}, {:Eccentricity 6.4E-4, :Launch_Mass_kg 240.0, :Apogee_km 1415.0, :Perigee_km 1405.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 1.441641962, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{417}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5993.0, :Apogee_km 35787.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{973}}, {:Eccentricity 6.4E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35814.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{204}}, {:Eccentricity 6.0E-4, :Launch_Mass_kg nil, :Apogee_km 35812.0, :Perigee_km 35761.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.043807764, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{903}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 0.00296706, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1157}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 3515.0, :Apogee_km 35801.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{315}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3130.0, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1007}}, {:Eccentricity 0.01277, :Launch_Mass_kg 6500.0, :Apogee_km 1203.0, :Perigee_km 1012.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 2}, :row-ids #{897 896}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 4685.0, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{515}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1560.0, :Apogee_km 619.0, :Perigee_km 618.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.1, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{125}}, {:Eccentricity 0.00122, :Launch_Mass_kg nil, :Apogee_km 616.0, :Perigee_km 599.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.85, :Inclination_radians 1.308647873, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{924}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 400.0, :Apogee_km 505.0, :Perigee_km 501.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{120}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35790.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.11, :Inclination_radians 0.112573737, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{884}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5000.0, :Apogee_km 35796.0, :Perigee_km 35794.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.005235988, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{945}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 1.0, :Apogee_km 504.0, :Perigee_km 494.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.6, :Inclination_radians 0.706858347, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{1089}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.506219144, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{572}}, {:Eccentricity 0.72382, :Launch_Mass_kg 2500.0, :Apogee_km 39388.0, :Perigee_km 961.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 645.98, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{646}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2648.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{41}}, {:Eccentricity 0.04729, :Launch_Mass_kg 2900.0, :Apogee_km 37768.0, :Perigee_km 33782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.52, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{602}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg nil, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{555}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3631.0, :Apogee_km 35792.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.001745329, :Users "Military/Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1118}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.05, :Inclination_radians 0.031939525, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{145}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2300.0, :Apogee_km 828.0, :Perigee_km 827.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 101.5, :Inclination_radians 1.724385301, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{293}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 6094.0, :Apogee_km 35790.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{494}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 2500.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.052359878, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{42}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{49}}, {:Eccentricity 0.00235, :Launch_Mass_kg 3.5, :Apogee_km 653.0, :Perigee_km 620.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.5, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1156}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 764.0, :Apogee_km 893.0, :Perigee_km 890.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 102.8, :Inclination_radians 1.727875959, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{303}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 1415.0, :Apogee_km 19133.0, :Perigee_km 19131.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.81, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{398}}, {:Eccentricity 0.01011, :Launch_Mass_kg 1816.0, :Apogee_km 20449.0, :Perigee_km 19912.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.91, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{683}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35798.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{87}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 4200.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.104545222, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{501}}, {:Eccentricity 0.00352, :Launch_Mass_kg 2217.0, :Apogee_km 20276.0, :Perigee_km 20089.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.98, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{690}}, {:Eccentricity 0.68969, :Launch_Mass_kg 1200.0, :Apogee_km 120923.0, :Perigee_km 17007.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3430.28, :Inclination_radians 1.579522973, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{861}}, {:Eccentricity 0.00203, :Launch_Mass_kg 280.0, :Apogee_km 1509.0, :Perigee_km 1477.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{843}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 140.0, :Apogee_km 820.0, :Perigee_km 813.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.21, :Inclination_radians 1.72316357, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{808}}, {:Eccentricity 0.00456, :Launch_Mass_kg 825.0, :Apogee_km 1016.0, :Perigee_km 949.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.74, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{788}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 6052.0, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001919862, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{94}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 4193.0, :Apogee_km 821.0, :Perigee_km 820.0, :Type_of_Orbit "Polar", :Purpose "Earth Science/Meteorology", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{654}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 6650.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications/Technology Development", :Period_minutes 1436.09, :Inclination_radians 3.49066E-4, :Users "Commercial/Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{30}}, {:Eccentricity 0.00173, :Launch_Mass_kg 1.0, :Apogee_km 579.0, :Perigee_km 555.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.01, :Inclination_radians 1.130973355, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{105}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35808.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.2, :Inclination_radians 0.015707963, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1027}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 280.0, :Apogee_km 1506.0, :Perigee_km 1495.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 116.0, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{847}}, {:Eccentricity 0.27883, :Launch_Mass_kg 3727.0, :Apogee_km 47100.0, :Perigee_km 23783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1418.5, :Inclination_radians 1.104793417, :Users "Commercial", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_75 1}, :row-ids #{946}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 658.0, :Apogee_km 760.0, :Perigee_km 759.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.0, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{967}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 689.0, :Apogee_km 753.0, :Perigee_km 744.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{585}}, {:Eccentricity 0.00236, :Launch_Mass_kg 175.0, :Apogee_km 646.0, :Perigee_km 613.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{827}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 2064.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{468}}, {:Eccentricity 5.0E-4, :Launch_Mass_kg 6650.0, :Apogee_km 571.0, :Perigee_km 564.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 96.0, :Inclination_radians 1.219985147, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{837}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 5}, :row-ids #{529 552 522 563 545}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4200.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{38}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4735.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1103}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 3535.0, :Apogee_km 35810.0, :Perigee_km 35761.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{246}}, {:Eccentricity 0.00143, :Launch_Mass_kg 0.85, :Apogee_km 634.0, :Perigee_km 614.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.2, :Inclination_radians 1.710422667, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1004}}, {:Eccentricity nil, :Launch_Mass_kg nil, :Apogee_km nil, :Perigee_km nil, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes nil, :Inclination_radians nil, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{463}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35807.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1162}}, {:Eccentricity 0.0, :Launch_Mass_kg 3820.0, :Apogee_km 400.0, :Perigee_km 400.0, :Type_of_Orbit "Intermediate", :Purpose "Earth Observation", :Period_minutes 92.6, :Inclination_radians 0.610865238, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_9 1}, :row-ids #{1065}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2000.0, :Apogee_km 35795.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.0, :Inclination_radians 0.005061455, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{653}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4545.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{32}}, {:Eccentricity 0.0062, :Launch_Mass_kg 1816.0, :Apogee_km 20315.0, :Perigee_km 19986.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 716.69, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{680}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3760.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{78}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4850.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{614}}, {:Eccentricity 7.2E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35817.0, :Perigee_km 35756.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.080110613, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{209}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 1630.0, :Apogee_km 20464.0, :Perigee_km 20451.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 729.18, :Inclination_radians 0.960454687, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{686}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{261}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 1360.0, :Apogee_km 823.0, :Perigee_km 817.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 101.3, :Inclination_radians 1.724385301, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{594}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 1600.0, :Apogee_km 492.0, :Perigee_km 484.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.37, :Inclination_radians 1.698379895, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{459}}, {:Eccentricity 6.1E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19129.0, :Perigee_km 19098.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.08, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{400}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 726.0, :Apogee_km 680.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.3, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{464}}, {:Eccentricity 0.00414, :Launch_Mass_kg 2217.0, :Apogee_km 20292.0, :Perigee_km 20072.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.96, :Inclination_radians 0.966388807, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{691}}, {:Eccentricity 0.00173, :Launch_Mass_kg 53.0, :Apogee_km 582.0, :Perigee_km 558.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.06, :Inclination_radians 1.132369619, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{27}}, {:Eccentricity 0.0025, :Launch_Mass_kg 42.5, :Apogee_km 636.0, :Perigee_km 601.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 97.1, :Inclination_radians 1.70344135, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{436}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 11110.0, :Apogee_km 559.0, :Perigee_km 555.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics/Planetary Science", :Period_minutes 95.8, :Inclination_radians 0.497418837, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{452}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 6658.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{224}}, {:Eccentricity 0.00432, :Launch_Mass_kg 70.0, :Apogee_km 831.0, :Perigee_km 769.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{162}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 4715.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{58}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg nil, :Apogee_km 513.0, :Perigee_km 509.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.84, :Inclination_radians 1.702394152, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1138}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 6265.0, :Apogee_km 35791.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{34}}, {:Eccentricity 0.29184, :Launch_Mass_kg nil, :Apogee_km 5732.0, :Perigee_km 264.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 150.4, :Inclination_radians 1.310742268, :Users "Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_82 1}, :row-ids #{28}}, {:Eccentricity 3.5E-4, :Launch_Mass_kg 2780.0, :Apogee_km 705.0, :Perigee_km 700.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{628}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 120.0, :Apogee_km 505.0, :Perigee_km 501.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1039}}, {:Eccentricity 0.00106, :Launch_Mass_kg nil, :Apogee_km 703.0, :Perigee_km 688.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{920}}, {:Eccentricity 0.00105, :Launch_Mass_kg 148.0, :Apogee_km 787.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Observation", :Period_minutes 100.4, :Inclination_radians 1.720894642, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{862}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 46.0, :Apogee_km 540.0, :Perigee_km 538.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.4, :Inclination_radians 0.617846555, :Users "Civil/Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{285}}, {:Eccentricity 0.00371, :Launch_Mass_kg 470.0, :Apogee_km 673.0, :Perigee_km 621.0, :Type_of_Orbit "Polar", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{447}}, {:Eccentricity 7.9E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35820.0, :Perigee_km 35753.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.060213859, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{660}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19162.0, :Perigee_km 19130.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.38, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{409}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 1430.0, :Apogee_km 35795.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.127932634, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{675}}, {:Eccentricity 4.5E-4, :Launch_Mass_kg 5471.0, :Apogee_km 35806.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{97}}, {:Eccentricity 0.00134, :Launch_Mass_kg 7000.0, :Apogee_km 733.0, :Perigee_km 714.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 99.2, :Inclination_radians 1.715658655, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{799}}, {:Eccentricity 0.00219, :Launch_Mass_kg 3180.0, :Apogee_km 35878.0, :Perigee_km 35693.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.201236463, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1023}}, {:Eccentricity 0.79904, :Launch_Mass_kg 3764.0, :Apogee_km 114027.0, :Perigee_km 7079.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 2872.15, :Inclination_radians 0.670206433, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_94 1}, :row-ids #{1116}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3500.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{4}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 6}, :row-ids #{584 561 551 560 548 577}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35796.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{514}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 1625.0, :Apogee_km 35799.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{734}}, {:Eccentricity 0.00131, :Launch_Mass_kg 1420.0, :Apogee_km 864.0, :Perigee_km 845.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Meteorology", :Period_minutes 102.0, :Inclination_radians 1.72613063, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{722}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 280.0, :Apogee_km 1509.0, :Perigee_km 1498.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 116.0, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{845}}, {:Eccentricity 6.9E-4, :Launch_Mass_kg 2915.0, :Apogee_km 35815.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{264}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg nil, :Apogee_km 1207.0, :Perigee_km 1201.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 109.51, :Inclination_radians 1.753706832, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1139}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 2783.0, :Apogee_km 35800.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{35}}, {:Eccentricity 0.71556, :Launch_Mass_kg 117.0, :Apogee_km 35717.0, :Perigee_km 608.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 637.65, :Inclination_radians 0.033859387, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_62 1}, :row-ids #{976}}, {:Eccentricity 0.68635, :Launch_Mass_kg 1200.0, :Apogee_km 120961.0, :Perigee_km 17313.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3442.0, :Inclination_radians 1.583013632, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{1019}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 494.0, :Apogee_km 405.0, :Perigee_km 398.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.6, :Inclination_radians 0.841248699, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{709}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4200.0, :Apogee_km 682.0, :Perigee_km 679.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 98.37, :Inclination_radians 1.712167996, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{438}}, {:Eccentricity 0.00109, :Launch_Mass_kg 240.0, :Apogee_km 1415.0, :Perigee_km 1398.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 113.9, :Inclination_radians 1.441641962, :Users "Commercial/Government/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{416}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 700.0, :Apogee_km 1418.0, :Perigee_km 1409.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.08, :Inclination_radians 0.907222145, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{377}}, {:Eccentricity 0.00109, :Launch_Mass_kg 3000.0, :Apogee_km 35892.0, :Perigee_km 35800.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1439.15, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{517}}, {:Eccentricity 0.03149, :Launch_Mass_kg nil, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{968}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 5090.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{982}}, {:Eccentricity 0.00111, :Launch_Mass_kg 700.0, :Apogee_km 23306.0, :Perigee_km 23240.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 846.88, :Inclination_radians 0.954346035, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{321}}, {:Eccentricity 0.00618, :Launch_Mass_kg 3400.0, :Apogee_km 35940.0, :Perigee_km 35420.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1430.6, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{284}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 553.0, :Apogee_km 1344.0, :Perigee_km 1332.0, :Type_of_Orbit "Intermediate", :Purpose "Earth Science", :Period_minutes 112.4, :Inclination_radians 1.151917306, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{596}}, {:Eccentricity 0.00121, :Launch_Mass_kg 1415.0, :Apogee_km 19204.0, :Perigee_km 19142.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 677.46, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{406}}, {:Eccentricity 0.02184, :Launch_Mass_kg 3.0, :Apogee_km 789.0, :Perigee_km 483.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.4, :Inclination_radians 1.127482697, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{964}}, {:Eccentricity 0.86413, :Launch_Mass_kg 126.0, :Apogee_km 87526.0, :Perigee_km 474.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 1875.53, :Inclination_radians 0.274016693, :Users "Government/Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_66 1}, :row-ids #{1045}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg 1630.0, :Apogee_km 20224.0, :Perigee_km 20188.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.94, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{685}}, {:Eccentricity 0.00145, :Launch_Mass_kg 2223.0, :Apogee_km 864.0, :Perigee_km 843.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Meteorology", :Period_minutes 102.0, :Inclination_radians 1.729621289, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{721}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 750.0, :Apogee_km 826.0, :Perigee_km 824.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.4, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1046}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{271}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 3643.0, :Apogee_km 35804.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{92}}, {:Eccentricity 0.00683, :Launch_Mass_kg 70.0, :Apogee_km 849.0, :Perigee_km 751.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{164}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2730.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{500}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 700.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 3}, :row-ids #{370 364 359}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 240.0, :Apogee_km 1417.0, :Perigee_km 1408.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 1.441641962, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{418}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 1900.0, :Apogee_km 704.0, :Perigee_km 701.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{332}}, {:Eccentricity 5.1E-4, :Launch_Mass_kg 5250.0, :Apogee_km 35807.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.052185345, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1050}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35787.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.7, :Inclination_radians 0.152541777, :Users "Government/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1025}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 270.0, :Apogee_km 1509.0, :Perigee_km 1494.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 116.02, :Inclination_radians 1.614255025, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{424}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 1383.0, :Apogee_km 35795.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.21, :Inclination_radians 0.113446401, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{68}}, {:Eccentricity 6.9E-4, :Launch_Mass_kg 700.0, :Apogee_km 928.0, :Perigee_km 918.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 103.48, :Inclination_radians 0.907745744, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{378}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 3750.0, :Apogee_km 35813.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1056}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 5900.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{183}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3901.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{46}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1600.0, :Apogee_km 591.0, :Perigee_km 588.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.47, :Inclination_radians 1.705012146, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{460}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 4900.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{641}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1750.0, :Apogee_km 670.0, :Perigee_km 668.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.1, :Inclination_radians 1.712167996, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{427}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 1600.0, :Apogee_km 514.0, :Perigee_km 509.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.85, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{462}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 2885.0, :Apogee_km 35810.0, :Perigee_km 35762.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{251}}, {:Eccentricity 0.00179, :Launch_Mass_kg 175.0, :Apogee_km 642.0, :Perigee_km 617.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{831}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 45.0, :Apogee_km 774.0, :Perigee_km 771.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{775}}, {:Eccentricity 0.00468, :Launch_Mass_kg 4500.0, :Apogee_km 35984.0, :Perigee_km 35589.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1436.1, :Inclination_radians 0.055850536, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{7}}, {:Eccentricity 0.00414, :Launch_Mass_kg nil, :Apogee_km 668.0, :Perigee_km 610.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 97.5, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{630}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 2704.0, :Apogee_km 35802.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{21}}, {:Eccentricity 8.3E-4, :Launch_Mass_kg 270.0, :Apogee_km 1510.0, :Perigee_km 1497.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 116.1, :Inclination_radians 1.439896633, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{419}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 2276.0, :Apogee_km 35794.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.012915436, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{869}}, {:Eccentricity 0.00524, :Launch_Mass_kg 12.0, :Apogee_km 725.0, :Perigee_km 651.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.5, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{877}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 1450.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.019024089, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{640}}, {:Eccentricity 0.00294, :Launch_Mass_kg 1816.0, :Apogee_km 20260.0, :Perigee_km 20104.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{679}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 3400.0, :Apogee_km 35805.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{103}}, {:Eccentricity 0.00488, :Launch_Mass_kg 45.0, :Apogee_km 838.0, :Perigee_km 768.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.9, :Inclination_radians 1.884955592, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{772}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3124.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{499}}, {:Eccentricity 0.0018, :Launch_Mass_kg nil, :Apogee_km 603.0, :Perigee_km 578.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.70344135, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{930}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 696.0, :Apogee_km 35797.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1435.96, :Inclination_radians 0.082205008, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{651}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3400.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{428}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 5100.0, :Apogee_km 35803.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.24, :Inclination_radians 0.01134464, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1158}}, {:Eccentricity 0.00193, :Launch_Mass_kg nil, :Apogee_km 650.0, :Perigee_km 623.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.44, :Inclination_radians 1.710248134, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{934}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 4463.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1125}}, {:Eccentricity 0.00174, :Launch_Mass_kg 3800.0, :Apogee_km 21574.0, :Perigee_km 21477.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.1, :Inclination_radians 0.959931089, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{156}}, {:Eccentricity 0.01668, :Launch_Mass_kg nil, :Apogee_km 2165.0, :Perigee_km 1885.0, :Type_of_Orbit nil, :Purpose "Amateur Radio", :Period_minutes 127.45, :Inclination_radians 1.127308164, :Users "Civil", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{822}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 3050.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{833}}, {:Eccentricity 5.0E-4, :Launch_Mass_kg 2750.0, :Apogee_km 35807.0, :Perigee_km 35765.0, :Type_of_Orbit nil, :Purpose "Communications/Earth Science", :Period_minutes 1436.08, :Inclination_radians 0.002094395, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{479}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 5102.0, :Apogee_km 35797.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{265}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 4500.0, :Apogee_km 494.0, :Perigee_km 491.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 94.5, :Inclination_radians 1.698205362, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1106}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 1452.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{110}}, {:Eccentricity 0.06, :Launch_Mass_kg 18000.0, :Apogee_km 1041.0, :Perigee_km 202.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.13, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{609}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 700.0, :Apogee_km 23233.0, :Perigee_km 23214.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 844.76, :Inclination_radians 0.965865208, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{322}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 1320.0, :Apogee_km 35796.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1123}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 350.0, :Apogee_km 514.0, :Perigee_km 508.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.8, :Inclination_radians 1.699950691, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Svobodny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{243}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 5120.0, :Apogee_km 35800.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001745329, :Users "Government/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{783}}, {:Eccentricity 0.00115, :Launch_Mass_kg 3200.0, :Apogee_km 35835.0, :Perigee_km 35738.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.066147979, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1075}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 720.0, :Apogee_km 724.0, :Perigee_km 713.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 99.2, :Inclination_radians 1.605702912, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{170}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 3}, :row-ids #{337 344 336}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg nil, :Apogee_km 672.0, :Perigee_km 668.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.15, :Inclination_radians 1.711469865, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{940}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 2910.0, :Apogee_km 35787.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{117}}, {:Eccentricity 4.5E-4, :Launch_Mass_kg 5465.0, :Apogee_km 35805.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{33}}, {:Eccentricity 0.06675, :Launch_Mass_kg 1.0, :Apogee_km 1261.0, :Perigee_km 306.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 100.5, :Inclination_radians 1.21300383, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_0 1}, :row-ids #{1110}}, {:Eccentricity 9.6E-4, :Launch_Mass_kg 3680.0, :Apogee_km 35826.0, :Perigee_km 35745.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{974}}, {:Eccentricity 3.5E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 775.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 1}, :row-ids #{530}}, {:Eccentricity 0.00143, :Launch_Mass_kg 1415.0, :Apogee_km 19212.0, :Perigee_km 19139.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 677.54, :Inclination_radians 1.130624289, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{408}}, {:Eccentricity 0.01367, :Launch_Mass_kg 348.0, :Apogee_km 1155.0, :Perigee_km 952.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 106.27, :Inclination_radians 0.541052068, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_6 1}, :row-ids #{442}}, {:Eccentricity 9.0E-4, :Launch_Mass_kg 1134.0, :Apogee_km 855.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.9, :Inclination_radians 1.72613063, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{194}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5900.0, :Apogee_km 35786.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{185}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 5350.0, :Apogee_km 35780.0, :Perigee_km 35715.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.1, :Inclination_radians 0.002094395, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{89}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 5576.0, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{485}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 3674.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{226}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2924.0, :Apogee_km 793.0, :Perigee_km 791.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.7, :Inclination_radians 1.720894642, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{821}}, {:Eccentricity 0.0, :Launch_Mass_kg 2128.0, :Apogee_km 827.0, :Perigee_km 827.0, :Type_of_Orbit "Polar", :Purpose "Meteorology", :Period_minutes 101.4, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{723}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 4000.0, :Apogee_km 35794.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{604}}, {:Eccentricity 0.00143, :Launch_Mass_kg 7.0, :Apogee_km 629.0, :Perigee_km 609.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{121}}, {:Eccentricity 0.00606, :Launch_Mass_kg 2060.0, :Apogee_km 20342.0, :Perigee_km 20020.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.93, :Inclination_radians 0.958883891, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{702}}, {:Eccentricity 0.05739, :Launch_Mass_kg 18000.0, :Apogee_km 1000.0, :Perigee_km 200.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{611}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 225.0, :Apogee_km 1419.0, :Perigee_km 1415.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.2, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{992}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 1390.0, :Apogee_km 35791.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 1436.0, :Inclination_radians 0.013439035, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{289}}, {:Eccentricity 0.07902, :Launch_Mass_kg 50.0, :Apogee_km 1475.0, :Perigee_km 326.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 103.0, :Inclination_radians 1.413716694, :Users "Civil/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_0 1}, :row-ids #{179}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 1760.0, :Apogee_km 35796.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{307}}, {:Eccentricity 0.72223, :Launch_Mass_kg nil, :Apogee_km 39362.0, :Perigee_km 1006.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 718.04, :Inclination_radians 1.09484504, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{648}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1500.0, :Apogee_km 967.0, :Perigee_km 965.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 104.4, :Inclination_radians 1.734857276, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{435}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 4850.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{716}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2744.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{627}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{491}}, {:Eccentricity 0.00123, :Launch_Mass_kg 240.0, :Apogee_km 547.0, :Perigee_km 530.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 95.4, :Inclination_radians 1.70344135, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Svobodny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{242}}, {:Eccentricity 0.00705, :Launch_Mass_kg 10.0, :Apogee_km 702.0, :Perigee_km 603.0, :Type_of_Orbit "Intermediate", :Purpose "Scientific Research", :Period_minutes 97.8, :Inclination_radians 1.127482697, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{880}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 3454.0, :Apogee_km 35785.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.88, :Inclination_radians 0.121998515, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1022}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg nil, :Apogee_km 628.0, :Perigee_km 625.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.2, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1126}}, {:Eccentricity 0.00159, :Launch_Mass_kg 270.0, :Apogee_km 1507.0, :Perigee_km 1482.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 115.86, :Inclination_radians 1.4397221, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{421}}, {:Eccentricity 0.00308, :Launch_Mass_kg 70.0, :Apogee_km 638.0, :Perigee_km 595.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.0, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{835}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 25.06467339, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_32 1}, :row-ids #{510}}, {:Eccentricity 8.7E-4, :Launch_Mass_kg nil, :Apogee_km 501.0, :Perigee_km 489.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.51, :Inclination_radians 1.699078027, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1111}}, {:Eccentricity 0.00122, :Launch_Mass_kg 6.0, :Apogee_km 632.0, :Perigee_km 615.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Maritime Tracking/Technology Development", :Period_minutes 97.2, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{25}}, {:Eccentricity 0.00313, :Launch_Mass_kg 795.0, :Apogee_km 1013.0, :Perigee_km 967.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.9, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{790}}, {:Eccentricity 0.0019, :Launch_Mass_kg 2217.0, :Apogee_km 20234.0, :Perigee_km 20133.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.03, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{695}}, {:Eccentricity 0.00141, :Launch_Mass_kg 130.0, :Apogee_km 728.0, :Perigee_km 708.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Demonstration", :Period_minutes 99.2, :Inclination_radians 1.715658655, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{807}}, {:Eccentricity 8.8E-4, :Launch_Mass_kg nil, :Apogee_km 481.0, :Perigee_km 469.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.1, :Inclination_radians 1.698205362, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1130}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 2596.0, :Apogee_km 35802.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.017627825, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{942}}, {:Eccentricity 0.00391, :Launch_Mass_kg 10.0, :Apogee_km 694.0, :Perigee_km 639.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.1, :Inclination_radians 1.713913325, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{232}}, {:Eccentricity 0.00367, :Launch_Mass_kg nil, :Apogee_km 606.0, :Perigee_km 555.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.3, :Inclination_radians 1.696460033, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1154}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 2000.0, :Apogee_km 35791.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.15, :Inclination_radians 0.031415927, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{650}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{281}}, {:Eccentricity 0.00136, :Launch_Mass_kg nil, :Apogee_km 603.0, :Perigee_km 584.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{931}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 950.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.8, :Inclination_radians 0.084648469, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{634}}, {:Eccentricity 0.05012, :Launch_Mass_kg 8000.0, :Apogee_km 37900.0, :Perigee_km 33674.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 1436.12, :Inclination_radians 0.127932634, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{645}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 6000.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.0, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1121}}, {:Eccentricity 0.00102, :Launch_Mass_kg 890.0, :Apogee_km 503.0, :Perigee_km 489.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.53, :Inclination_radians 1.699078027, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{448}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 689.0, :Apogee_km 778.0, :Perigee_km 777.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{590}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 468.0, :Apogee_km 496.0, :Perigee_km 486.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 94.0, :Inclination_radians 1.527163095, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1011}}, {:Eccentricity 0.00203, :Launch_Mass_kg 2300.0, :Apogee_km 35879.0, :Perigee_km 35708.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1435.1, :Inclination_radians 0.963421747, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{151}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 1300.0, :Apogee_km 35788.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{607}}, {:Eccentricity 0.00285, :Launch_Mass_kg 1480.0, :Apogee_km 19126.0, :Perigee_km 18981.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 672.7, :Inclination_radians 1.128355361, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{389}}, {:Eccentricity 0.00182, :Launch_Mass_kg 587.0, :Apogee_km 525.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.9, :Inclination_radians 1.699950691, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{668}}, {:Eccentricity 0.00208, :Launch_Mass_kg nil, :Apogee_km 1111.0, :Perigee_km 1080.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 107.13, :Inclination_radians 1.106887812, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_6 1}, :row-ids #{1136}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 960.0, :Apogee_km 724.0, :Perigee_km 722.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 99.2, :Inclination_radians 1.715658655, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{741}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19135.0, :Perigee_km 19128.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.81, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{401}}, {:Eccentricity 0.00134, :Launch_Mass_kg 100.0, :Apogee_km 748.0, :Perigee_km 729.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 99.6, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{133}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2380.0, :Apogee_km 35800.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.27, :Inclination_radians 0.001745329, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{211}}, {:Eccentricity 0.00104, :Launch_Mass_kg 2223.0, :Apogee_km 857.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.9, :Inclination_radians 1.729621289, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{720}}, {:Eccentricity 7.2E-4, :Launch_Mass_kg 1600.0, :Apogee_km 558.0, :Perigee_km 548.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 95.7, :Inclination_radians 0.548033385, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_6 1}, :row-ids #{1008}}, {:Eccentricity 0.00114, :Launch_Mass_kg 3200.0, :Apogee_km 35834.0, :Perigee_km 35738.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.034382986, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1070}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 2240.0, :Apogee_km 1352.0, :Perigee_km 1347.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 112.68, :Inclination_radians 1.012290966, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{1002}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2700.0, :Apogee_km 627.0, :Perigee_km 625.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.2, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1141}}, {:Eccentricity 0.0125, :Launch_Mass_kg 5000.0, :Apogee_km 1203.0, :Perigee_km 1016.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{890}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 4682.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1114}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3206.0, :Apogee_km 35794.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.94, :Inclination_radians 0.091455253, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1076}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{450}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 5193.0, :Apogee_km 35787.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1113}}, {:Eccentricity 0.0012, :Launch_Mass_kg nil, :Apogee_km 703.0, :Perigee_km 686.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 98.7, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{918}}, {:Eccentricity 0.07013, :Launch_Mass_kg nil, :Apogee_km 1313.0, :Perigee_km 306.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 101.08, :Inclination_radians 1.212654764, :Users "Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_0 1}, :row-ids #{244}}, {:Eccentricity 0.00242, :Launch_Mass_kg 2200.0, :Apogee_km 21595.0, :Perigee_km 21460.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.19, :Inclination_radians 0.962723615, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{153}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 468.0, :Apogee_km 476.0, :Perigee_km 473.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 93.9, :Inclination_radians 1.523672437, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1, :cluster_6 1}, :row-ids #{1009 1010}}, {:Eccentricity 0.00308, :Launch_Mass_kg 2.0, :Apogee_km 639.0, :Perigee_km 596.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{217}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 1400.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 8.72665E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{50}}, {:Eccentricity 0.00121, :Launch_Mass_kg 175.0, :Apogee_km 638.0, :Perigee_km 621.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1, :cluster_6 1}, :row-ids #{830 828}}, {:Eccentricity 0.00264, :Launch_Mass_kg 470.0, :Apogee_km 665.0, :Perigee_km 628.0, :Type_of_Orbit "Polar", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{446}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 3.5, :Apogee_km 504.0, :Perigee_km 499.0, :Type_of_Orbit nil, :Purpose "Radar Calibration", :Period_minutes 94.65, :Inclination_radians 0.70703288, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{449}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 2066.0, :Apogee_km 35642.0, :Perigee_km 35609.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1427.91, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{470}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1414.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 2}, :row-ids #{345 350}}, {:Eccentricity 0.01237, :Launch_Mass_kg 5000.0, :Apogee_km 1200.0, :Perigee_km 1015.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{892}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 1510.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.08709193, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{954}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3420.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{507}}, {:Eccentricity 0.00199, :Launch_Mass_kg 810.0, :Apogee_km 945.0, :Perigee_km 916.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 103.6, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{796}}, {:Eccentricity 0.00162, :Launch_Mass_kg 1156.0, :Apogee_km 35855.0, :Perigee_km 35718.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{208}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 4051.0, :Apogee_km 35793.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1006}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 485.0, :Apogee_km 704.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Research", :Period_minutes 98.8, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{858}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 2242.0, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{454}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 4488.0, :Apogee_km 35795.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{306}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35803.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.185004901, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1026}}, {:Eccentricity 0.01237, :Launch_Mass_kg 5000.0, :Apogee_km 1201.0, :Perigee_km 1016.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{893}}, {:Eccentricity 0.00151, :Launch_Mass_kg 1480.0, :Apogee_km 19171.0, :Perigee_km 19094.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.83, :Inclination_radians 1.132718685, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{386}}, {:Eccentricity 0.0, :Launch_Mass_kg 1156.0, :Apogee_km 35784.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{210}}, {:Eccentricity 0.00213, :Launch_Mass_kg 113.0, :Apogee_km 697.0, :Perigee_km 667.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.4, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{832}}, {:Eccentricity 0.0, :Launch_Mass_kg 5900.0, :Apogee_km 35786.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{184}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 5585.0, :Apogee_km 35788.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{137}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 5600.0, :Apogee_km 35801.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.01, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{492}}, {:Eccentricity 9.0E-4, :Launch_Mass_kg 1154.0, :Apogee_km 855.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.89, :Inclination_radians 1.724210768, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{197}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg 3225.0, :Apogee_km 35848.0, :Perigee_km 35791.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1437.78, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{985}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 4400.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.020769418, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{597}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3690.0, :Apogee_km 35794.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{85}}, {:Eccentricity 0.00106, :Launch_Mass_kg nil, :Apogee_km 704.0, :Perigee_km 689.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{921}}, {:Eccentricity 8.3E-4, :Launch_Mass_kg nil, :Apogee_km 879.0, :Perigee_km 867.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 102.41, :Inclination_radians 1.726654229, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1001}}, {:Eccentricity 9.2E-4, :Launch_Mass_kg 970.0, :Apogee_km 691.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.45, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{804}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1031.0, :Apogee_km 541.0, :Perigee_km 538.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 95.43, :Inclination_radians 1.710248134, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{885}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1350.0, :Apogee_km 510.0, :Perigee_km 507.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 94.8, :Inclination_radians 1.699950691, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1018}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 5984.0, :Apogee_km 35811.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.39, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{495}}, {:Eccentricity 8.4E-4, :Launch_Mass_kg 5.0, :Apogee_km 783.0, :Perigee_km 771.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 100.3, :Inclination_radians 1.720894642, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{122}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19133.0, :Perigee_km 19124.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.67, :Inclination_radians 1.132718685, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{387}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 2440.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{158}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 120.0, :Apogee_km 694.0, :Perigee_km 692.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.6, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{787}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 689.0, :Apogee_km 750.0, :Perigee_km 748.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{591}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 1360.0, :Apogee_km 35800.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1122}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 4050.0, :Apogee_km 35805.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{266}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg nil, :Apogee_km 450.0, :Perigee_km 448.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 93.6, :Inclination_radians 1.696460033, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{819}}, {:Eccentricity 0.00985, :Launch_Mass_kg nil, :Apogee_km 1164.0, :Perigee_km 1017.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 107.1, :Inclination_radians 1.106538746, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 3}, :row-ids #{1147 1149 1148}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 4860.0, :Apogee_km 35788.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{319}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2967.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{240}}, {:Eccentricity 0.00143, :Launch_Mass_kg 1.0, :Apogee_km 631.0, :Perigee_km 611.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.710422667, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1061}}, {:Eccentricity 0.00119, :Launch_Mass_kg 4990.0, :Apogee_km 358.0, :Perigee_km 342.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 91.54, :Inclination_radians 0.759218225, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{1109}}, {:Eccentricity 5.0E-4, :Launch_Mass_kg nil, :Apogee_km 35767.0, :Perigee_km 35725.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.03, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{255}}, {:Eccentricity 0.03149, :Launch_Mass_kg 5.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 3}, :row-ids #{966 29 965}}, {:Eccentricity 0.00748, :Launch_Mass_kg 1.0, :Apogee_km 699.0, :Perigee_km 594.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.6, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1087}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.002094395, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1005}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 6070.0, :Apogee_km 35790.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{475}}, {:Eccentricity 0.00116, :Launch_Mass_kg 293.0, :Apogee_km 551.0, :Perigee_km 535.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 95.5, :Inclination_radians 0.663225116, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{440}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 2491.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{486}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 5180.0, :Apogee_km 35807.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.101927228, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1051}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5400.0, :Apogee_km 35795.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.003490659, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{250}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4007.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{916}}, {:Eccentricity 0.00149, :Launch_Mass_kg 2217.0, :Apogee_km 20221.0, :Perigee_km 20142.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.95, :Inclination_radians 0.961327352, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{701}}, {:Eccentricity 0.00564, :Launch_Mass_kg 1360.0, :Apogee_km 586.0, :Perigee_km 508.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.6, :Inclination_radians 1.125737368, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Yasny Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{329}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 150.0, :Apogee_km 729.0, :Perigee_km 725.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Solar Physics", :Period_minutes 99.3, :Inclination_radians 1.715658655, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{801}}, {:Eccentricity 0.05593, :Launch_Mass_kg 18000.0, :Apogee_km 1050.0, :Perigee_km 264.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.0, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{610}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35813.0, :Perigee_km 35795.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.23, :Inclination_radians 8.72665E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{714}}, {:Eccentricity 0.00133, :Launch_Mass_kg 3454.0, :Apogee_km 35844.0, :Perigee_km 35732.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.18, :Inclination_radians 0.122173048, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1021}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 2500.0, :Apogee_km 35788.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 1.74533E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{824}}, {:Eccentricity 0.00163, :Launch_Mass_kg 120.0, :Apogee_km 704.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1063}}, {:Eccentricity 8.8E-4, :Launch_Mass_kg 93.0, :Apogee_km 427.0, :Perigee_km 415.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 41.2, :Inclination_radians 0.719424718, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_6 1}, :row-ids #{840}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4300.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{188}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 2542.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{280}}, {:Eccentricity 0.00155, :Launch_Mass_kg nil, :Apogee_km 422.0, :Perigee_km 401.0, :Type_of_Orbit "Intermediate", :Purpose "Scientific Research", :Period_minutes 92.8, :Inclination_radians 0.900589894, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{518}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3010.0, :Apogee_km 35797.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{83}}, {:Eccentricity 0.00203, :Launch_Mass_kg 280.0, :Apogee_km 1510.0, :Perigee_km 1478.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{844}}, {:Eccentricity 0.0098, :Launch_Mass_kg 12.0, :Apogee_km 640.0, :Perigee_km 504.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1079}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 50.0, :Apogee_km 665.0, :Perigee_km 657.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 1.712167996, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{969}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35807.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.144338729, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1072}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4905.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{59}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4085.0, :Apogee_km 822.0, :Perigee_km 819.0, :Type_of_Orbit "Polar", :Purpose "Earth Science/Meteorology", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{655}}, {:Eccentricity 0.6916, :Launch_Mass_kg 1200.0, :Apogee_km 120768.0, :Perigee_km 16809.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3418.2, :Inclination_radians 1.583013632, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{860}}, {:Eccentricity 0.00861, :Launch_Mass_kg 2.0, :Apogee_km 715.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.8, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{172}}, {:Eccentricity 0.00261, :Launch_Mass_kg nil, :Apogee_km 1107.0, :Perigee_km 1068.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 107.0, :Inclination_radians 2.14675498, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{297}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 2015.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{48}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 700.0, :Apogee_km 8069.0, :Perigee_km 8063.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 287.93, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_59 2}, :row-ids #{740 737}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 5514.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{818}}, {:Eccentricity 0.00236, :Launch_Mass_kg 150.0, :Apogee_km 626.0, :Perigee_km 593.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.88, :Inclination_radians 1.707106541, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1000}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3138.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{917}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{785}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2000.0, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.1, :Inclination_radians 0.008028515, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{652}}, {:Eccentricity 6.2E-4, :Launch_Mass_kg 3400.0, :Apogee_km 35812.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.139102741, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Kennedy Space Center"} {:categories {:cluster_4 1}, :row-ids #{632}}, {:Eccentricity 9.7E-4, :Launch_Mass_kg 3200.0, :Apogee_km 858.0, :Perigee_km 844.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance", :Period_minutes 102.0, :Inclination_radians 1.239183769, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{1067}}, {:Eccentricity 0.00598, :Launch_Mass_kg 12.0, :Apogee_km 694.0, :Perigee_km 610.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.8, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{64}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 587.0, :Apogee_km 613.0, :Perigee_km 612.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 97.0, :Inclination_radians 1.293288976, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{1060}}, {:Eccentricity 0.00184, :Launch_Mass_kg 65.0, :Apogee_km 1510.0, :Perigee_km 1481.0, :Type_of_Orbit nil, :Purpose "Earth Observation/Technology Development", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{662}}, {:Eccentricity 0.07838, :Launch_Mass_kg nil, :Apogee_km 1465.0, :Perigee_km 326.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 102.89, :Inclination_radians 1.413542161, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_0 1}, :row-ids #{176}}, {:Eccentricity 0.00111, :Launch_Mass_kg 2223.0, :Apogee_km 816.0, :Perigee_km 800.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.0, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{719}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1411.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 3}, :row-ids #{352 348 342}}, {:Eccentricity 0.00177, :Launch_Mass_kg 1.0, :Apogee_km 703.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{174}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19145.0, :Perigee_km 19134.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.1, :Inclination_radians 1.130798822, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{392}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5983.0, :Apogee_km 35795.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{952}}, {:Eccentricity 0.00283, :Launch_Mass_kg 115.0, :Apogee_km 710.0, :Perigee_km 670.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Solar Physics", :Period_minutes 98.6, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{5}}, {:Eccentricity 0.70905, :Launch_Mass_kg 4200.0, :Apogee_km 37580.0, :Perigee_km 1112.0, :Type_of_Orbit "Molniya", :Purpose "Electronic Surveillance", :Period_minutes 684.0, :Inclination_radians 1.109331273, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_62 1}, :row-ids #{466}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 3190.0, :Apogee_km 35806.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{259}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1930.0, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1031}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 45.0, :Apogee_km 796.0, :Perigee_km 787.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{769 759}}, {:Eccentricity 0.00191, :Launch_Mass_kg 280.0, :Apogee_km 1507.0, :Perigee_km 1477.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{855}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1000.0, :Apogee_km 699.0, :Perigee_km 697.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{803}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 1400.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1047}}, {:Eccentricity 0.00686, :Launch_Mass_kg 2217.0, :Apogee_km 20327.0, :Perigee_km 19963.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 716.47, :Inclination_radians 0.961676418, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{689}}, {:Eccentricity 0.00422, :Launch_Mass_kg 110.0, :Apogee_km 776.0, :Perigee_km 716.0, :Type_of_Orbit "Intermediate", :Purpose "Meteorology/Earth Observation", :Period_minutes 99.7, :Inclination_radians 0.436332313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{898}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2532.0, :Apogee_km 35995.0, :Perigee_km 35987.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1446.57, :Inclination_radians 0.001919862, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{283}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{277}}, {:Eccentricity 0.68665, :Launch_Mass_kg 1200.0, :Apogee_km 120715.0, :Perigee_km 17240.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3431.1, :Inclination_radians 1.584758961, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{857}}, {:Eccentricity 0.00273, :Launch_Mass_kg 6169.0, :Apogee_km 36103.0, :Perigee_km 35872.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1446.36, :Inclination_radians 0.076096355, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{11}}, {:Eccentricity 0.00422, :Launch_Mass_kg 12.0, :Apogee_km 653.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.17, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{66}}, {:Eccentricity 0.00811, :Launch_Mass_kg nil, :Apogee_km 717.0, :Perigee_km 603.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 97.9, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{631}}, {:Eccentricity 8.7E-4, :Launch_Mass_kg nil, :Apogee_km 500.0, :Perigee_km 488.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.49, :Inclination_radians 1.699078027, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 2}, :row-ids #{287 288}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 700.0, :Apogee_km 1415.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 4}, :row-ids #{357 358 368 373}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 3.0, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{301}}, {:Eccentricity 0.00197, :Launch_Mass_kg 280.0, :Apogee_km 1509.0, :Perigee_km 1478.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{854}}, {:Eccentricity 0.00234, :Launch_Mass_kg nil, :Apogee_km 1111.0, :Perigee_km 1076.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 107.12, :Inclination_radians 1.106713279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1135}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3050.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1049}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 4.5, :Apogee_km 504.0, :Perigee_km 499.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.6, :Inclination_radians 0.706858347, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 3}, :row-ids #{779 781 778}}, {:Eccentricity 0.00193, :Launch_Mass_kg 5.0, :Apogee_km 627.0, :Perigee_km 600.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 97.0, :Inclination_radians 1.713913325, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{805}}, {:Eccentricity 8.0E-4, :Launch_Mass_kg 29.0, :Apogee_km 490.0, :Perigee_km 479.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 94.3, :Inclination_radians 1.701696021, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1091}}, {:Eccentricity 0.00544, :Launch_Mass_kg 70.0, :Apogee_km 746.0, :Perigee_km 669.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{163}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1600.0, :Apogee_km 655.0, :Perigee_km 653.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 97.8, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{859}}, {:Eccentricity 0.44297, :Launch_Mass_kg 450.0, :Apogee_km 11836.0, :Perigee_km 658.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 235.16, :Inclination_radians 1.110727536, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_74 1}, :row-ids #{1016}}, {:Eccentricity 0.0011, :Launch_Mass_kg 700.0, :Apogee_km 23307.0, :Perigee_km 23242.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 846.98, :Inclination_radians 0.954171502, :Users "Commerical", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{320}}, {:Eccentricity 0.0019, :Launch_Mass_kg 1425.0, :Apogee_km 35872.0, :Perigee_km 35712.0, :Type_of_Orbit nil, :Purpose "Navigation", :Period_minutes 1436.0, :Inclination_radians 0.472984227, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_85 1}, :row-ids #{593}}, {:Eccentricity 0.01251, :Launch_Mass_kg 5000.0, :Apogee_km 1200.0, :Perigee_km 1013.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{888}}, {:Eccentricity 3.7E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35802.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{203}}, {:Eccentricity 0.00119, :Launch_Mass_kg 2200.0, :Apogee_km 35817.0, :Perigee_km 35717.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.12, :Inclination_radians 0.963945346, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{149}}, {:Eccentricity 0.00729, :Launch_Mass_kg 14500.0, :Apogee_km 676.0, :Perigee_km 574.0, :Type_of_Orbit "Intermediate", :Purpose "Surveillance", :Period_minutes 97.21, :Inclination_radians 1.186823891, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{625}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 1980.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{115}}, {:Eccentricity 0.00417, :Launch_Mass_kg 825.0, :Apogee_km 968.0, :Perigee_km 907.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 103.8, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{794}}, {:Eccentricity 0.68335, :Launch_Mass_kg 666.0, :Apogee_km 30657.0, :Perigee_km 595.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 541.4, :Inclination_radians 0.175231057, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{1086}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3720.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{732}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 1.0, :Apogee_km 507.0, :Perigee_km 499.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{800}}, {:Eccentricity 0.0, :Launch_Mass_kg 180.0, :Apogee_km 650.0, :Perigee_km 650.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.73, :Inclination_radians 1.256637061, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{987}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3725.0, :Apogee_km 35792.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1014}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 689.0, :Apogee_km 782.0, :Perigee_km 773.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{587}}, {:Eccentricity 0.00537, :Launch_Mass_kg 4500.0, :Apogee_km 36013.0, :Perigee_km 35560.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1436.14, :Inclination_radians 0.134739418, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{6}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2800.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1041}}, {:Eccentricity 0.72377, :Launch_Mass_kg 2500.0, :Apogee_km 39396.0, :Perigee_km 964.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 717.88, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{647}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 6505.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1040}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4333.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{219}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 6100.0, :Apogee_km 35794.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{225}}, {:Eccentricity 0.00248, :Launch_Mass_kg 250.0, :Apogee_km 1514.0, :Perigee_km 1475.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.86, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{853}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 5900.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1097}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 2024.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1048}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 1420.0, :Apogee_km 35802.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{93}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 4.3, :Apogee_km 783.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 100.4, :Inclination_radians 1.720894642, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{989}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 45.0, :Apogee_km 795.0, :Perigee_km 788.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 6}, :row-ids #{770 755 760 757 771 767}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4690.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{314}}, {:Eccentricity 0.00601, :Launch_Mass_kg 2217.0, :Apogee_km 20498.0, :Perigee_km 20177.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 724.28, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{697}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5987.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1098}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35797.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.21, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{497}}, {:Eccentricity 0.02938, :Launch_Mass_kg 384.0, :Apogee_km 813.0, :Perigee_km 403.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.85, :Inclination_radians 0.226892803, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "L-1011 Aircraft"} {:categories {:cluster_6 1}, :row-ids #{118}}, {:Eccentricity 9.7E-4, :Launch_Mass_kg 1152.0, :Apogee_km 851.0, :Perigee_km 837.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.8, :Inclination_radians 1.72613063, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{195}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2900.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Meteorology/Navigation", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{669}}, {:Eccentricity 0.00101, :Launch_Mass_kg 3200.0, :Apogee_km 35829.0, :Perigee_km 35744.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.071733032, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1074}}, {:Eccentricity 8.5E-4, :Launch_Mass_kg nil, :Apogee_km 673.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.08, :Inclination_radians 1.711469865, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{923}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 20.0, :Apogee_km 659.0, :Perigee_km 654.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 97.9, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_6 1}, :row-ids #{673}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 1525.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{258}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 3531.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{598}}, {:Eccentricity 0.00117, :Launch_Mass_kg 2500.0, :Apogee_km 504.0, :Perigee_km 488.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 94.5, :Inclination_radians 1.699950691, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1054}}, {:Eccentricity 9.0E-4, :Launch_Mass_kg 225.0, :Apogee_km 1431.0, :Perigee_km 1417.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.3, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{990}}, {:Eccentricity 0.00141, :Launch_Mass_kg 45.0, :Apogee_km 732.0, :Perigee_km 712.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 99.2, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{192}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 6910.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.103672558, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1037}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 4400.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{949}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 3775.0, :Apogee_km 35802.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{22}}, {:Eccentricity 9.6E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19141.0, :Perigee_km 19092.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.2, :Inclination_radians 1.130798822, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{391}}, {:Eccentricity 0.00336, :Launch_Mass_kg 2.5, :Apogee_km 640.0, :Perigee_km 593.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.3, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1108}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19146.0, :Perigee_km 19119.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.85, :Inclination_radians 1.130275224, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{397}}, {:Eccentricity 0.00134, :Launch_Mass_kg 225.0, :Apogee_km 1505.0, :Perigee_km 1484.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{849}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 6140.0, :Apogee_km 35816.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{915}}, {:Eccentricity 0.00197, :Launch_Mass_kg 270.0, :Apogee_km 1511.0, :Perigee_km 1480.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{422}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35801.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.0, :Inclination_radians 0.004886922, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{411}}, {:Eccentricity 0.0033, :Launch_Mass_kg nil, :Apogee_km 1081.0, :Perigee_km 1032.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 106.33, :Inclination_radians 1.10618968, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_6 1}, :row-ids #{1134}}, {:Eccentricity 0.709, :Launch_Mass_kg 4000.0, :Apogee_km 37564.0, :Perigee_km 1111.0, :Type_of_Orbit "Molniya", :Purpose "Electronic Surveillance", :Period_minutes 684.0, :Inclination_radians 1.099557429, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_62 1}, :row-ids #{465}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 1510.0, :Apogee_km 35801.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 0.056374135, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{955}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2934.0, :Apogee_km 704.0, :Perigee_km 701.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{241}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 90.0, :Apogee_km 662.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.0, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{180}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 1206.0, :Apogee_km 823.0, :Perigee_km 817.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{836}}, {:Eccentricity 0.00273, :Launch_Mass_kg 250.0, :Apogee_km 1516.0, :Perigee_km 1473.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.86, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 2}, :row-ids #{851 852}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 1630.0, :Apogee_km 20191.0, :Perigee_km 20174.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.0, :Inclination_radians 0.959058424, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{687}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 4143.0, :Apogee_km 35793.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{3}}, {:Eccentricity 1.0E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19141.0, :Perigee_km 19136.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.07, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{393}}, {:Eccentricity 0.0, :Launch_Mass_kg 5000.0, :Apogee_km 1100.0, :Perigee_km 1100.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.26, :Inclination_radians 1.099557429, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 2}, :row-ids #{887 886}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3582.0, :Apogee_km 35798.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{726}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 225.0, :Apogee_km 1448.0, :Perigee_km 1436.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.7, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{841}}, {:Eccentricity 0.8639, :Launch_Mass_kg 126.0, :Apogee_km 87260.0, :Perigee_km 467.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 1867.91, :Inclination_radians 0.274016693, :Users "Government/Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_66 1}, :row-ids #{1044}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2858.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{748}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2500.0, :Apogee_km 35794.0, :Perigee_km 35788.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{601}}, {:Eccentricity 8.2E-4, :Launch_Mass_kg 700.0, :Apogee_km 927.0, :Perigee_km 915.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 103.44, :Inclination_radians 0.907745744, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{376}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{749}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 1825.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{713}}, {:Eccentricity 0.00536, :Launch_Mass_kg 12.0, :Apogee_km 669.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.99, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{67}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 2490.0, :Apogee_km 35802.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{254}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 3288.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 3.49066E-4, :Users "Commercial/Gov/Mil", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{444}}, {:Eccentricity 0.00137, :Launch_Mass_kg 1463.0, :Apogee_km 590.0, :Perigee_km 571.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 96.3, :Inclination_radians 0.359537826, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{1012}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 5250.0, :Apogee_km 35800.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.28, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{268}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 350.0, :Apogee_km 1202.0, :Perigee_km 1199.0, :Type_of_Orbit "Polar", :Purpose "Technology Development", :Period_minutes 109.42, :Inclination_radians 1.570796327, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{826}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2800.0, :Apogee_km 767.0, :Perigee_km 765.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.2, :Inclination_radians 1.719149313, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1107}}, {:Eccentricity 0.00125, :Launch_Mass_kg 480.0, :Apogee_km 451.0, :Perigee_km 434.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 93.4, :Inclination_radians 1.553343034, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{426}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 150.0, :Apogee_km 649.0, :Perigee_km 638.0, :Type_of_Orbit "Intermediate", :Purpose "Space Science", :Period_minutes 97.6, :Inclination_radians 1.289798317, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{900}}, {:Eccentricity 0.00153, :Launch_Mass_kg 92.0, :Apogee_km 824.0, :Perigee_km 802.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 101.2, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1150}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 711.0, :Perigee_km 708.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.0, :Inclination_radians 1.509709803, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 1}, :row-ids #{525}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 4328.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{221}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 3175.0, :Apogee_km 35788.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.14, :Inclination_radians 0.007330383, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{413}}, {:Eccentricity 0.00118, :Launch_Mass_kg 6804.0, :Apogee_km 35900.0, :Perigee_km 35800.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians nil, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{672}}, {:Eccentricity 0.00502, :Launch_Mass_kg 70.0, :Apogee_km 836.0, :Perigee_km 764.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{161}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 3200.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.037699112, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1071}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 4600.0, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.009250245, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{958}}, {:Eccentricity 0.00305, :Launch_Mass_kg 2217.0, :Apogee_km 20266.0, :Perigee_km 20104.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.09, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{698}}, {:Eccentricity 0.00121, :Launch_Mass_kg 29.0, :Apogee_km 1459.0, :Perigee_km 1440.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Amateur Radio", :Period_minutes 114.9, :Inclination_radians 1.769763862, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{54}}, {:Eccentricity 0.02053, :Launch_Mass_kg 10.0, :Apogee_km 886.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 99.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{114}}, {:Eccentricity 0.00264, :Launch_Mass_kg 2700.0, :Apogee_km 665.0, :Perigee_km 628.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1145}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 2850.0, :Apogee_km 35794.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{621}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{355}}, {:Eccentricity 0.00175, :Launch_Mass_kg 1816.0, :Apogee_km 20227.0, :Perigee_km 20134.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.91, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{682}}, {:Eccentricity 0.00188, :Launch_Mass_kg 1415.0, :Apogee_km 19175.0, :Perigee_km 19079.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.61, :Inclination_radians 1.131671487, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{404}}, {:Eccentricity 0.00591, :Launch_Mass_kg 12.0, :Apogee_km 780.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.6, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{874}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{312}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg nil, :Apogee_km 35812.0, :Perigee_km 35759.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1164}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 5900.0, :Apogee_km 472.0, :Perigee_km 459.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 93.9, :Inclination_radians 1.696460033, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{838}}, {:Eccentricity 0.0034, :Launch_Mass_kg 1360.0, :Apogee_km 569.0, :Perigee_km 522.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.6, :Inclination_radians 1.125737368, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_6 1}, :row-ids #{328}}, {:Eccentricity 9.8E-4, :Launch_Mass_kg 74.0, :Apogee_km 786.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Observation", :Period_minutes 100.4, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{708}}, {:Eccentricity 0.003, :Launch_Mass_kg 2060.0, :Apogee_km 20366.0, :Perigee_km 20206.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 722.19, :Inclination_radians 0.960280154, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{703}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 6000.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.1, :Inclination_radians 0.024958208, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{146}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 2900.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{670}}, {:Eccentricity 0.01277, :Launch_Mass_kg 5000.0, :Apogee_km 1202.0, :Perigee_km 1011.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{889}}, {:Eccentricity 8.5E-4, :Launch_Mass_kg 572.0, :Apogee_km 690.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Research", :Period_minutes 98.4, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{238}}, {:Eccentricity 0.00686, :Launch_Mass_kg 12.0, :Apogee_km 746.0, :Perigee_km 649.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.7, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{876}}, {:Eccentricity 0.00479, :Launch_Mass_kg 12.0, :Apogee_km 764.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications (experimental)", :Period_minutes 99.4, :Inclination_radians 1.710422667, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{60}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2950.0, :Apogee_km 35794.0, :Perigee_km 35788.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{257}}, {:Eccentricity 5.6E-4, :Launch_Mass_kg 45.0, :Apogee_km 777.0, :Perigee_km 769.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{777 753}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg nil, :Apogee_km 507.0, :Perigee_km 506.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.8, :Inclination_radians 1.699950691, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1129}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 587.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{119}}, {:Eccentricity 0.61976, :Launch_Mass_kg 3727.0, :Apogee_km 47086.0, :Perigee_km 6179.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 994.83, :Inclination_radians 1.106538746, :Users "Commercial", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_80 1}, :row-ids #{948}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 14500.0, :Apogee_km 716.0, :Perigee_km 713.0, :Type_of_Orbit "Intermediate", :Purpose "Surveillance", :Period_minutes 99.08, :Inclination_radians 0.995012207, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{626}}, {:Eccentricity 0.00195, :Launch_Mass_kg 1.0, :Apogee_km 581.0, :Perigee_km 554.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.01, :Inclination_radians 1.130973355, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{106}}, {:Eccentricity 0.02562, :Launch_Mass_kg 2.0, :Apogee_km 816.0, :Perigee_km 457.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.45, :Inclination_radians 1.774999849, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{638}}, {:Eccentricity 0.0012, :Launch_Mass_kg 1000.0, :Apogee_km 696.0, :Perigee_km 679.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.5, :Inclination_radians 1.713913325, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{617}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2086.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{309}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19125.0, :Perigee_km 19118.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.39, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{382}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 4642.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{313}}, {:Eccentricity 0.00974, :Launch_Mass_kg 3.0, :Apogee_km 731.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 98.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{139}}, {:Eccentricity 0.00164, :Launch_Mass_kg 2700.0, :Apogee_km 658.0, :Perigee_km 635.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1142}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 2200.0, :Apogee_km 21545.0, :Perigee_km 21519.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.39, :Inclination_radians 0.964468945, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{152}}, {:Eccentricity 6.0E-4, :Launch_Mass_kg nil, :Apogee_km 1089.0, :Perigee_km 1080.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 106.93, :Inclination_radians 1.10618968, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1132}}, {:Eccentricity 0.0011, :Launch_Mass_kg 480.0, :Apogee_km 450.0, :Perigee_km 435.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 93.4, :Inclination_radians 1.553343034, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{425}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg nil, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.67, :Inclination_radians 0.70703288, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{124}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 720.0, :Apogee_km 699.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.73, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{979}}, {:Eccentricity 0.03149, :Launch_Mass_kg 1.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 2}, :row-ids #{175 639}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 3592.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{506}}, {:Eccentricity 0.00104, :Launch_Mass_kg 1000.0, :Apogee_km 868.0, :Perigee_km 853.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 102.2, :Inclination_radians 0.34906585, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{643}}, {:Eccentricity 0.00104, :Launch_Mass_kg nil, :Apogee_km 830.0, :Perigee_km 815.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{173}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3642.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{503}}, {:Eccentricity 0.00137, :Launch_Mass_kg 4303.0, :Apogee_km 556.0, :Perigee_km 537.0, :Type_of_Orbit nil, :Purpose "Astrophysics", :Period_minutes 95.6, :Inclination_radians 0.446804289, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{295}}, {:Eccentricity 0.00159, :Launch_Mass_kg 280.0, :Apogee_km 1507.0, :Perigee_km 1482.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{846}}, {:Eccentricity 9.8E-4, :Launch_Mass_kg 14.0, :Apogee_km 784.0, :Perigee_km 770.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 100.3, :Inclination_radians 1.720894642, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{1068}}, {:Eccentricity 0.03408, :Launch_Mass_kg 450.0, :Apogee_km 1413.0, :Perigee_km 900.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{339}}, {:Eccentricity 0.00136, :Launch_Mass_kg nil, :Apogee_km 628.0, :Perigee_km 609.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{178}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 3014.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{82}}, {:Eccentricity 9.2E-4, :Launch_Mass_kg 1.0, :Apogee_km 671.0, :Perigee_km 658.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.03, :Inclination_radians 1.712691595, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{245}}, {:Eccentricity 0.00488, :Launch_Mass_kg 1600.0, :Apogee_km 36007.0, :Perigee_km 35595.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001570796, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{53}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2763.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1030}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 2550.0, :Apogee_km 35798.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{488}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 4312.0, :Apogee_km 35793.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{39}}, {:Eccentricity 0.00143, :Launch_Mass_kg 60.0, :Apogee_km 637.0, :Perigee_km 617.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 97.2, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{629}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35799.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{253}}, {:Eccentricity 0.00104, :Launch_Mass_kg 2300.0, :Apogee_km 835.0, :Perigee_km 820.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 101.5, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{292}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.004712389, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1062}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 6740.0, :Apogee_km 35796.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1092}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 3700.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{227}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg nil, :Apogee_km 35793.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{727}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 751.0, :Perigee_km 747.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.509709803, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{574}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 689.0, :Apogee_km 754.0, :Perigee_km 745.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.521927108, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{589}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3100.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1069}}, {:Eccentricity 0.00351, :Launch_Mass_kg 1.0, :Apogee_km 639.0, :Perigee_km 590.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{456}}, {:Eccentricity 0.00265, :Launch_Mass_kg 2200.0, :Apogee_km 35893.0, :Perigee_km 35670.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1435.82, :Inclination_radians 0.961501885, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{147}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 627.0, :Apogee_km 35800.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.249582083, :Users "Civil", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{414}}, {:Eccentricity 8.9E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35778.0, :Perigee_km 35703.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{983}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 1459.0, :Apogee_km 35789.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.032463124, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{2}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{56}}, {:Eccentricity 0.73961, :Launch_Mass_kg 2400.0, :Apogee_km 39807.0, :Perigee_km 542.0, :Type_of_Orbit "Molniya", :Purpose "Early Warning", :Period_minutes 717.66, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{1081}}, {:Eccentricity 6.0E-4, :Launch_Mass_kg 3028.0, :Apogee_km 35811.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{481}}, {:Eccentricity 0.00126, :Launch_Mass_kg 300.0, :Apogee_km 802.0, :Perigee_km 784.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Research", :Period_minutes 100.7, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{938}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{984}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3379.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{84}}, {:Eccentricity 0.79737, :Launch_Mass_kg 4742.0, :Apogee_km 138825.0, :Perigee_km 9999.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Astrophysics", :Period_minutes 3808.92, :Inclination_radians 0.497418837, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_79 1}, :row-ids #{131}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 2240.0, :Apogee_km 1351.0, :Perigee_km 1339.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 112.58, :Inclination_radians 1.012290966, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{1003}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 6.98132E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{207}}, {:Eccentricity 0.00197, :Launch_Mass_kg 280.0, :Apogee_km 1512.0, :Perigee_km 1481.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{850}}, {:Eccentricity 0.00271, :Launch_Mass_kg 2200.0, :Apogee_km 21603.0, :Perigee_km 21452.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.21, :Inclination_radians 0.961676418, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{154}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3642.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{504}}, {:Eccentricity 0.97287, :Launch_Mass_kg 1200.0, :Apogee_km 470310.0, :Perigee_km 186.0, :Type_of_Orbit "Cislunar", :Purpose "Astrophysics", :Period_minutes 19700.45, :Inclination_radians 0.500909495, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_73 1}, :row-ids #{1104}}, {:Eccentricity 0.00204, :Launch_Mass_kg 1640.0, :Apogee_km 35866.0, :Perigee_km 35694.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.76, :Inclination_radians 0.002443461, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1124}}, {:Eccentricity 5.6E-4, :Launch_Mass_kg 45.0, :Apogee_km 796.0, :Perigee_km 788.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{766}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35803.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.05, :Inclination_radians 0.031066861, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{142}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 3014.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{784}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3765.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{316}}, {:Eccentricity 0.00119, :Launch_Mass_kg 0.8, :Apogee_km 787.0, :Perigee_km 770.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 100.42, :Inclination_radians 1.721418241, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{0}}, {:Eccentricity 0.00194, :Launch_Mass_kg nil, :Apogee_km 606.0, :Perigee_km 579.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{925}}, {:Eccentricity 0.00168, :Launch_Mass_kg 770.0, :Apogee_km 496.0, :Perigee_km 473.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.3, :Inclination_radians 1.713389727, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{866}}, {:Eccentricity 0.00228, :Launch_Mass_kg 880.0, :Apogee_km 654.0, :Perigee_km 622.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 97.48, :Inclination_radians 1.710946266, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1096}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19158.0, :Perigee_km 19126.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.2, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{405}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 4745.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{718}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2700.0, :Apogee_km 820.0, :Perigee_km 818.0, :Type_of_Orbit "Polar", :Purpose "Meteorology", :Period_minutes 101.3, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{649}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 9.3, :Apogee_km 459.0, :Perigee_km 456.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 93.7, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1059}}, {:Eccentricity 0.03149, :Launch_Mass_kg nil, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1017}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 5054.0, :Apogee_km 35874.0, :Perigee_km 35864.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1440.31, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{71}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5600.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{260}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4680.0, :Apogee_km 35789.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{512}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2924.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.020071286, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{81}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 5910.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{57}}, {:Eccentricity 0.00365, :Launch_Mass_kg 1.0, :Apogee_km 640.0, :Perigee_km 589.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{817}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 1450.0, :Apogee_km 35787.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.019547688, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{20}}, {:Eccentricity 0.00204, :Launch_Mass_kg 47.0, :Apogee_km 1014.0, :Perigee_km 984.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 105.1, :Inclination_radians 1.731366618, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{636}}, {:Eccentricity 0.00324, :Launch_Mass_kg 2217.0, :Apogee_km 20268.0, :Perigee_km 20096.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.925024504, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{694}}, {:Eccentricity 0.00231, :Launch_Mass_kg 3800.0, :Apogee_km 21591.0, :Perigee_km 21462.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.1, :Inclination_radians 0.959931089, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{155}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 4300.0, :Apogee_km 35802.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{269}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4800.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{747}}, {:Eccentricity 0.95712, :Launch_Mass_kg 3660.0, :Apogee_km 330000.0, :Perigee_km 1000.0, :Type_of_Orbit nil, :Purpose "Astrophysics", :Period_minutes 0.22, :Inclination_radians 0.898146433, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_92 1}, :row-ids #{975}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35802.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.0286234, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1020}}, {:Eccentricity 0.0027, :Launch_Mass_kg 770.0, :Apogee_km 505.0, :Perigee_km 468.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.3, :Inclination_radians 1.713913325, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{864}}, {:Eccentricity 5.9E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19142.0, :Perigee_km 19112.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.62, :Inclination_radians 1.131496954, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{394}}, {:Eccentricity 0.00204, :Launch_Mass_kg 70.0, :Apogee_km 1014.0, :Perigee_km 984.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Technology Development", :Period_minutes 105.1, :Inclination_radians 1.731366618, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{99}}, {:Eccentricity 0.00136, :Launch_Mass_kg 360.0, :Apogee_km 632.0, :Perigee_km 613.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 97.2, :Inclination_radians 0.104719755, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Kwajalein Island"} {:categories {:cluster_6 1}, :row-ids #{735}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 1230.0, :Apogee_km 509.0, :Perigee_km 507.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.8, :Inclination_radians 1.701696021, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1036}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 1780.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.014660766, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{111}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5990.0, :Apogee_km 35786.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1100}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 1600.0, :Apogee_km 514.0, :Perigee_km 512.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.89, :Inclination_radians 1.700997889, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{461}}, {:Eccentricity 0.00104, :Launch_Mass_kg 100.0, :Apogee_km 821.0, :Perigee_km 806.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Maritime Tracking", :Period_minutes 101.2, :Inclination_radians 1.727875959, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{276}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg nil, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{809}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 2217.0, :Apogee_km 20152.0, :Perigee_km 20135.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 716.4, :Inclination_radians 0.961676418, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{706}}, {:Eccentricity 0.73497, :Launch_Mass_kg 2400.0, :Apogee_km 39697.0, :Perigee_km 667.0, :Type_of_Orbit "Molniya", :Purpose "Early Warning", :Period_minutes 717.9, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{1082}}, {:Eccentricity 6.6E-4, :Launch_Mass_kg 1390.0, :Apogee_km 35816.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 1436.19, :Inclination_radians 0.038222711, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{291}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 2380.0, :Apogee_km 35810.0, :Perigee_km 35765.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.14, :Inclination_radians 0.064228116, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{213}}, {:Eccentricity 0.01275, :Launch_Mass_kg 300.0, :Apogee_km 580.0, :Perigee_km 405.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 94.5, :Inclination_radians 0.716108592, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{1029}}, {:Eccentricity 0.00695, :Launch_Mass_kg 2217.0, :Apogee_km 20433.0, :Perigee_km 20063.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 720.65, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{700}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 159.0, :Apogee_km 544.0, :Perigee_km 538.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.5, :Inclination_radians 0.617846555, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{130}}, {:Eccentricity 0.00106, :Launch_Mass_kg 120.0, :Apogee_km 692.0, :Perigee_km 677.0, :Type_of_Orbit "Polar", :Purpose "Electronic Intelligence/Technology Development", :Period_minutes 98.45, :Inclination_radians 1.714087858, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{237}}, {:Eccentricity 0.00635, :Launch_Mass_kg 1.0, :Apogee_km 683.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.4, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1152}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 5200.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.005235988, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1160}}, {:Eccentricity 5.6E-4, :Launch_Mass_kg 1982.0, :Apogee_km 35810.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.004014257, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_4 1}, :row-ids #{430}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 4640.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1035}}, {:Eccentricity 6.5E-4, :Launch_Mass_kg 12.0, :Apogee_km 572.0, :Perigee_km 563.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.0, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{62}}, {:Eccentricity 0.0, :Launch_Mass_kg 3200.0, :Apogee_km 35170.0, :Perigee_km 35170.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.0, :Inclination_radians 0.0, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{412}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2845.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{43}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2501.0, :Apogee_km 35795.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{751}}, {:Eccentricity 0.00177, :Launch_Mass_kg 180.0, :Apogee_km 688.0, :Perigee_km 663.0, :Type_of_Orbit "Intermediate", :Purpose "Remote Sensing", :Period_minutes 98.3, :Inclination_radians 0.157079633, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Kwajalein Island"} {:categories {:cluster_6 1}, :row-ids #{834}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3909.0, :Apogee_km 35791.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{44}}, {:Eccentricity 0.00515, :Launch_Mass_kg 1415.0, :Apogee_km 19380.0, :Perigee_km 19116.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 680.43, :Inclination_radians 1.131671487, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{403}}, {:Eccentricity 0.00314, :Launch_Mass_kg 236.0, :Apogee_km 664.0, :Perigee_km 620.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 97.5, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{592}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 4854.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{239}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 4000.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{230}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 5100.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.003665191, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1088}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 2250.0, :Apogee_km 37794.0, :Perigee_km 37778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.017453293, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1057}}, {:Eccentricity 0.00146, :Launch_Mass_kg 817.0, :Apogee_km 841.0, :Perigee_km 820.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth/Space Science", :Period_minutes 101.5, :Inclination_radians 1.724385301, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{160}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35802.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.035604717, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1058}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 1150.0, :Apogee_km 501.0, :Perigee_km 497.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 94.6, :Inclination_radians 1.30428455, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{619}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35809.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1028}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 2775.0, :Apogee_km 35801.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{80}}, {:Eccentricity 0.00455, :Launch_Mass_kg 2217.0, :Apogee_km 20427.0, :Perigee_km 20184.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 722.98, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{696}}, {:Eccentricity 0.00498, :Launch_Mass_kg 1108.0, :Apogee_km 598.0, :Perigee_km 529.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 95.9, :Inclination_radians 1.706932008, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1038}}, {:Eccentricity 0.00146, :Launch_Mass_kg 2500.0, :Apogee_km 505.0, :Perigee_km 485.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 94.5, :Inclination_radians 1.699950691, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1055}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 5483.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{189}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 250.0, :Apogee_km 573.0, :Perigee_km 569.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Astrophysics/Earth Science", :Period_minutes 96.1, :Inclination_radians 1.70344135, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Svobodny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{742}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4940.0, :Apogee_km 35623.0, :Perigee_km 35605.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1427.27, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{102}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 5800.0, :Apogee_km 35792.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 1436.04, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{613}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg nil, :Apogee_km 1107.0, :Perigee_km 1101.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 107.35, :Inclination_radians 2.146580447, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{296}}, {:Eccentricity 0.74504, :Launch_Mass_kg nil, :Apogee_km 39966.0, :Perigee_km 400.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 718.0, :Inclination_radians 1.047197551, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{905}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{282}}, {:Eccentricity 0.00124, :Launch_Mass_kg 10.9, :Apogee_km 868.0, :Perigee_km 850.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 102.1, :Inclination_radians 0.34906585, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{980}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 850.0, :Apogee_km 491.0, :Perigee_km 485.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.36, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{457}}, {:Eccentricity 0.01243, :Launch_Mass_kg nil, :Apogee_km 1205.0, :Perigee_km 1019.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.5, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{895}}, {:Eccentricity 0.0125, :Launch_Mass_kg 5000.0, :Apogee_km 1201.0, :Perigee_km 1014.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{894}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 3878.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1033}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 848.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{141}}, {:Eccentricity 4.5E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35806.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.0143117, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{661}}, {:Eccentricity 6.9E-4, :Launch_Mass_kg 1134.0, :Apogee_km 855.0, :Perigee_km 845.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.93, :Inclination_radians 1.724385301, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{193}}, {:Eccentricity 0.02213, :Launch_Mass_kg 3.0, :Apogee_km 790.0, :Perigee_km 480.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.4, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{14}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{599}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 3800.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.11, :Inclination_radians 0.032114058, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{148}}, {:Eccentricity 0.00242, :Launch_Mass_kg 225.0, :Apogee_km 1506.0, :Perigee_km 1468.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.7, :Inclination_radians 0.148352986, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{993}}, {:Eccentricity 0.03149, :Launch_Mass_kg 5.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 2}, :row-ids #{17 18}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3287.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{218}}, {:Eccentricity 0.00401, :Launch_Mass_kg 825.0, :Apogee_km 1008.0, :Perigee_km 949.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.7, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{793}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 2970.0, :Apogee_km 35776.0, :Perigee_km 35742.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.69, :Inclination_radians 0.001396263, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1094}}, {:Eccentricity 0.00214, :Launch_Mass_kg 5.5, :Apogee_km 654.0, :Perigee_km 624.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.48, :Inclination_radians 1.256113463, :Users "Civil/Government", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{736}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 689.0, :Apogee_km 778.0, :Perigee_km 777.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{586}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 6199.0, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{496}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2238.0, :Apogee_km 35792.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.17, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{733}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3412.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{728}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 5493.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{318}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 5500.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{220}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 3315.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{91}}, {:Eccentricity 0.79307, :Launch_Mass_kg 4723.0, :Apogee_km 358802.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_77 1}, :row-ids #{511}}, {:Eccentricity 0.00319, :Launch_Mass_kg 820.0, :Apogee_km 1016.0, :Perigee_km 969.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 105.0, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{789}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1414.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{347}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3038.0, :Apogee_km 35802.0, :Perigee_km 35788.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.52, :Inclination_radians 6.98132E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{943}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 5960.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.05253441, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{474}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 5404.0, :Apogee_km 35794.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.21, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{263}}, {:Eccentricity 0.00229, :Launch_Mass_kg 225.0, :Apogee_km 1503.0, :Perigee_km 1467.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.7, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{995}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 5500.0, :Apogee_km 35807.0, :Perigee_km 35759.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.92, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1159}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 2495.0, :Apogee_km 35800.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{113}}, {:Eccentricity 0.0, :Launch_Mass_kg 6169.0, :Apogee_km 35700.0, :Perigee_km 35700.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1306.29, :Inclination_radians 0.355872634, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 2}, :row-ids #{13 12}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4575.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{729}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2300.0, :Apogee_km 828.0, :Perigee_km 827.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 101.45, :Inclination_radians 1.724559834, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{294}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3480.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{76}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 2550.0, :Apogee_km 35804.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.003141593, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{516}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3653.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{505}}, {:Eccentricity 0.01435, :Launch_Mass_kg 60.6, :Apogee_km 839.0, :Perigee_km 635.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 99.5, :Inclination_radians 1.684242728, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{782}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 1474.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.164584548, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{953}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg nil, :Apogee_km 594.0, :Perigee_km 591.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{927}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 3750.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1015}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 1282.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.003839724, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{635}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg nil, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{51}}, {:Eccentricity 0.01318, :Launch_Mass_kg 4.5, :Apogee_km 780.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.5, :Inclination_radians 1.705186679, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{182}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35796.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.99, :Inclination_radians 0.16406095, :Users "Government/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1024}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2650.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{202}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 4667.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1115}}, {:Eccentricity 0.07511, :Launch_Mass_kg 4000.0, :Apogee_km 38950.0, :Perigee_km 32618.0, :Type_of_Orbit nil, :Purpose "Navigation", :Period_minutes 1436.0, :Inclination_radians 0.698131701, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_85 1}, :row-ids #{820}}, {:Eccentricity 0.00264, :Launch_Mass_kg 5000.0, :Apogee_km 35937.0, :Perigee_km 35714.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1438.8, :Inclination_radians 0.050440015, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{8}}, {:Eccentricity 0.01728, :Launch_Mass_kg 300.0, :Apogee_km 576.0, :Perigee_km 340.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 93.75, :Inclination_radians 2.474178748, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Palmachim Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{744}}, {:Eccentricity 0.00171, :Launch_Mass_kg 1000.0, :Apogee_km 654.0, :Perigee_km 630.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 97.56, :Inclination_radians 1.711644397, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{324}}, {:Eccentricity 0.00609, :Launch_Mass_kg 12.0, :Apogee_km 736.0, :Perigee_km 650.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.6, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{879}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 3542.0, :Apogee_km 35792.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{870}}, {:Eccentricity 0.00134, :Launch_Mass_kg 225.0, :Apogee_km 1495.0, :Perigee_km 1474.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.6, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{998}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 2900.0, :Apogee_km 35791.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 0.00122173, :Users "Government/Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{656}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3030.0, :Apogee_km 826.0, :Perigee_km 824.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.4, :Inclination_radians 1.720894642, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{978}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 45.0, :Apogee_km 776.0, :Perigee_km 770.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{752 754}}, {:Eccentricity 0.00881, :Launch_Mass_kg 100.0, :Apogee_km 676.0, :Perigee_km 553.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Demonstration", :Period_minutes 96.98, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{806}}, {:Eccentricity 0.02088, :Launch_Mass_kg 4.5, :Apogee_km 792.0, :Perigee_km 499.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.6, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{16}}, {:Eccentricity 0.73554, :Launch_Mass_kg 2400.0, :Apogee_km 39128.0, :Perigee_km 563.0, :Type_of_Orbit "Molniya", :Purpose "Early Warning", :Period_minutes 704.3, :Inclination_radians 1.095892237, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{1083}}, {:Eccentricity 0.00778, :Launch_Mass_kg 12.0, :Apogee_km 758.0, :Perigee_km 648.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.8, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{878}}, {:Eccentricity 0.01087, :Launch_Mass_kg 3.0, :Apogee_km 747.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 98.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{140}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 1500.0, :Apogee_km 773.0, :Perigee_km 763.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.2, :Inclination_radians 1.720196511, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1165}}, {:Eccentricity 0.47082, :Launch_Mass_kg 3792.0, :Apogee_km 47048.0, :Perigee_km 12849.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1148.43, :Inclination_radians 1.104793417, :Users "Commercial", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_76 1}, :row-ids #{947}}, {:Eccentricity 0.00384, :Launch_Mass_kg 1816.0, :Apogee_km 20284.0, :Perigee_km 20080.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.954695101, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{681}}, {:Eccentricity 0.00114, :Launch_Mass_kg 175.0, :Apogee_km 637.0, :Perigee_km 621.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{829}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 1500.0, :Apogee_km 35804.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{96}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 700.0, :Apogee_km 23227.0, :Perigee_km 23217.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 844.69, :Inclination_radians 0.965167076, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{323}}, {:Eccentricity 0.71228, :Launch_Mass_kg 8000.0, :Apogee_km 38740.0, :Perigee_km 1210.0, :Type_of_Orbit "Molniya", :Purpose "Electronic Surveillance", :Period_minutes 709.61, :Inclination_radians 1.129228026, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{1066}}, {:Eccentricity 0.00122, :Launch_Mass_kg 4635.0, :Apogee_km 35803.0, :Perigee_km 35700.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{957}}, {:Eccentricity 0.00153, :Launch_Mass_kg 225.0, :Apogee_km 1495.0, :Perigee_km 1471.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.5, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{997}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{279}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 1390.0, :Apogee_km 35803.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 1436.04, :Inclination_radians 0.045553093, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{290}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2450.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.19, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{489}}, {:Eccentricity 0.00636, :Launch_Mass_kg 20.0, :Apogee_km 672.0, :Perigee_km 583.0, :Type_of_Orbit "Polar", :Purpose "Communications/Technology Development", :Period_minutes 97.3, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{674}}, {:Eccentricity 5.1E-4, :Launch_Mass_kg 225.0, :Apogee_km 1425.0, :Perigee_km 1417.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.2, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{991}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 137.0, :Apogee_km 507.0, :Perigee_km 497.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.66, :Inclination_radians 0.70703288, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{988}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 225.0, :Apogee_km 1496.0, :Perigee_km 1493.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{848}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2033.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{310}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 6384.0, :Apogee_km 35789.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{222}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3420.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{186}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2850.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.070162236, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{667}}, {:Eccentricity 0.00203, :Launch_Mass_kg 270.0, :Apogee_km 1510.0, :Perigee_km 1478.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{420}}, {:Eccentricity 0.00153, :Launch_Mass_kg 92.0, :Apogee_km 521.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Technology Development", :Period_minutes 94.8, :Inclination_radians 1.708677338, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{108}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4638.0, :Apogee_km 35793.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.24, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{959}}, {:Eccentricity 7.9E-4, :Launch_Mass_kg 60.0, :Apogee_km 1205.0, :Perigee_km 1193.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 109.4, :Inclination_radians 1.75056524, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1119}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3170.0, :Apogee_km 35790.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{256}}, {:Eccentricity 6.6E-4, :Launch_Mass_kg nil, :Apogee_km 496.0, :Perigee_km 487.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.4, :Inclination_radians 1.699950691, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1128}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1.0, :Apogee_km 502.0, :Perigee_km 499.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.63, :Inclination_radians 0.706858347, :Users "Governmnet", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{724}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 5320.0, :Apogee_km 35786.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.95, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{445}}, {:Eccentricity 0.00476, :Launch_Mass_kg 12.0, :Apogee_km 694.0, :Perigee_km 627.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 98.0, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{65}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 2950.0, :Apogee_km 35793.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{476}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2380.0, :Apogee_km 35909.0, :Perigee_km 35897.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 142.08, :Inclination_radians 0.071209433, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{212}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 1935.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{47}}, {:Eccentricity 0.00499, :Launch_Mass_kg 12.0, :Apogee_km 674.0, :Perigee_km 604.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.5, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{63}}, {:Eccentricity 0.00524, :Launch_Mass_kg 1415.0, :Apogee_km 19130.0, :Perigee_km 18864.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 670.47, :Inclination_radians 1.130624289, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{399}}, {:Eccentricity 0.00126, :Launch_Mass_kg 300.0, :Apogee_km 803.0, :Perigee_km 785.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Research", :Period_minutes 100.8, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{937}}, {:Eccentricity 0.00121, :Launch_Mass_kg 83.0, :Apogee_km 637.0, :Perigee_km 620.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.3, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{467}}, {:Eccentricity 0.01206, :Launch_Mass_kg 2.5, :Apogee_km 764.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.1, :Inclination_radians 1.705186679, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1064}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 3112.0, :Apogee_km 35852.0, :Perigee_km 35850.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1439.41, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{912}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 4600.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{267}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg nil, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{786}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 8506.0, :Apogee_km 361.0, :Perigee_km 360.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 91.8, :Inclination_radians 0.74700092, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_9 1}, :row-ids #{1053}}, {:Eccentricity 0.00135, :Launch_Mass_kg 7.1, :Apogee_km 669.0, :Perigee_km 650.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.9, :Inclination_radians 1.713913325, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{451}}, {:Eccentricity 0.0, :Launch_Mass_kg 6804.0, :Apogee_km 35800.0, :Perigee_km 35800.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians nil, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{671}}, {:Eccentricity 6.2E-4, :Launch_Mass_kg 1154.0, :Apogee_km 852.0, :Perigee_km 843.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.87, :Inclination_radians 1.72613063, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{196}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 407.0, :Apogee_km 785.0, :Perigee_km 782.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 100.53, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{863}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 4793.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{493}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 2700.0, :Apogee_km 450.0, :Perigee_km 440.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 93.5, :Inclination_radians 1.696460033, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1143}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 45.0, :Apogee_km 794.0, :Perigee_km 788.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{763 764}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 3112.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Commercial/Gov/Mil", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{443}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg nil, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{910}}, {:Eccentricity 0.00112, :Launch_Mass_kg 204.0, :Apogee_km 755.0, :Perigee_km 739.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Research", :Period_minutes 99.7, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{939}}, {:Eccentricity 0.00338, :Launch_Mass_kg 200.0, :Apogee_km 611.0, :Perigee_km 564.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.43, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{136}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 45.0, :Apogee_km 796.0, :Perigee_km 786.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{768}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 1.0, :Apogee_km 415.0, :Perigee_km 410.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 92.81, :Inclination_radians 0.901462559, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "ISS"} {:categories {:cluster_6 1}, :row-ids #{74}}, {:Eccentricity 0.00111, :Launch_Mass_kg 110.0, :Apogee_km 821.0, :Perigee_km 805.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Earth Science", :Period_minutes 101.2, :Inclination_radians 1.72613063, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{663}}, {:Eccentricity 0.00204, :Launch_Mass_kg 770.0, :Apogee_km 502.0, :Perigee_km 474.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.37, :Inclination_radians 1.713215194, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{868}}, {:Eccentricity 3.5E-4, :Launch_Mass_kg 45.0, :Apogee_km 794.0, :Perigee_km 789.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{756 758}}, {:Eccentricity 0.00153, :Launch_Mass_kg 91.0, :Apogee_km 823.0, :Perigee_km 801.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.1, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1117}}, {:Eccentricity 0.00106, :Launch_Mass_kg 1955.0, :Apogee_km 686.0, :Perigee_km 671.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.3, :Inclination_radians 1.712167996, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{330}}, {:Eccentricity 7.1E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35817.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.044331363, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{205}}, {:Eccentricity 0.71478, :Launch_Mass_kg 117.0, :Apogee_km 35697.0, :Perigee_km 627.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 637.64, :Inclination_radians 0.033510322, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_62 1}, :row-ids #{977}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 4332.0, :Apogee_km 35807.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{86}}, {:Eccentricity 0.00184, :Launch_Mass_kg 700.0, :Apogee_km 696.0, :Perigee_km 670.0, :Type_of_Orbit nil, :Purpose "Solar Physics", :Period_minutes 98.4, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_2 1}, :row-ids #{441}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{334}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4200.0, :Apogee_km 683.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 98.0, :Inclination_radians 1.712167996, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{437}}, {:Eccentricity 0.00509, :Launch_Mass_kg 1766.0, :Apogee_km 35750.0, :Perigee_km 35323.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1423.35, :Inclination_radians 0.008028515, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{233}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 1780.0, :Apogee_km 35803.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{112}}, {:Eccentricity 0.00425, :Launch_Mass_kg 1480.0, :Apogee_km 19365.0, :Perigee_km 19147.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 680.75, :Inclination_radians 1.128704427, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{390}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35805.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 23.94, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{10}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{730}}, {:Eccentricity 0.00247, :Launch_Mass_kg 2400.0, :Apogee_km 35904.0, :Perigee_km 35696.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.39, :Inclination_radians 0.039444441, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1080}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 3}, :row-ids #{354 349 353}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3739.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{484}}, {:Eccentricity 0.0046, :Launch_Mass_kg 1480.0, :Apogee_km 19378.0, :Perigee_km 19142.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 680.91, :Inclination_radians 1.128529894, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{388}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35819.0, :Perigee_km 35754.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.104545222, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{657}}, {:Eccentricity 0.00164, :Launch_Mass_kg 2.0, :Apogee_km 653.0, :Perigee_km 630.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.55, :Inclination_radians 1.711295332, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{171}}, {:Eccentricity 0.0056, :Launch_Mass_kg 1415.0, :Apogee_km 19419.0, :Perigee_km 19132.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 681.53, :Inclination_radians 1.131147888, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{396}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg nil, :Apogee_km 595.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{928}}, {:Eccentricity 0.004, :Launch_Mass_kg 2400.0, :Apogee_km 35949.0, :Perigee_km 35612.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.79, :Inclination_radians 0.025132741, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{823}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 4880.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{274}}, {:Eccentricity 0.00164, :Launch_Mass_kg 694.0, :Apogee_km 645.0, :Perigee_km 622.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.4, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{128}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 2}, :row-ids #{535 576}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 4660.0, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{229}}, {:Eccentricity 0.0211, :Launch_Mass_kg 4.5, :Apogee_km 791.0, :Perigee_km 495.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.5, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{15}}, {:Eccentricity 0.02862, :Launch_Mass_kg 300.0, :Apogee_km 764.0, :Perigee_km 367.0, :Type_of_Orbit "Retrograde", :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 95.97, :Inclination_radians 2.502802147, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Palmachim Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{743}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4167.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{247}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 6100.0, :Apogee_km 35787.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{971}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 5458.0, :Apogee_km 35800.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.040666172, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{473}}, {:Eccentricity 0.0211, :Launch_Mass_kg 4.5, :Apogee_km 791.0, :Perigee_km 495.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.5, :Inclination_radians 1.127482697, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{963}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 5959.0, :Apogee_km 35799.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.040142573, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{472}}, {:Eccentricity 0.01092, :Launch_Mass_kg 12.0, :Apogee_km 850.0, :Perigee_km 694.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications (experimental)", :Period_minutes 100.3, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{61}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 1.0, :Apogee_km 721.0, :Perigee_km 710.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.1, :Inclination_radians 1.717403984, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{595}}}}}, :latents {:alpha 0.16539558986648006, :counts {:view_1 1, :view_0 11}, :z {:Country_of_Operator :view_1, :Eccentricity :view_0, :Launch_Mass_kg :view_0, :Apogee_km :view_0, :Perigee_km :view_0, :Type_of_Orbit :view_0, :Purpose :view_0, :Period_minutes :view_0, :Inclination_radians :view_0, :Users :view_0, :Class_of_Orbit :view_0, :Launch_Site :view_0}}}}} +#:gensql{:tables {satellites [{Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Denmark", Eccentricity 0.00119, Launch_Mass_kg 0.8, Apogee_km 787, Perigee_km 770, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 100.42, Inclination_radians 1.721418241, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "International", Eccentricity 2.0E-4, Launch_Mass_kg 2894.0, Apogee_km 35794, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "International", Eccentricity 5.0E-5, Launch_Mass_kg 1459.0, Apogee_km 35789, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.032463124, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "China (PR)", Eccentricity 1.5E-4, Launch_Mass_kg 4143.0, Apogee_km 35793, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "International", Eccentricity 1.3E-4, Launch_Mass_kg 3500.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00283, Launch_Mass_kg 115.0, Apogee_km 710, Perigee_km 670, Type_of_Orbit "Sun-Synchronous", Purpose "Solar Physics", Period_minutes 98.6, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00537, Launch_Mass_kg 4500.0, Apogee_km 36013, Perigee_km 35560, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1436.14, Inclination_radians 0.134739418, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00468, Launch_Mass_kg 4500.0, Apogee_km 35984, Perigee_km 35589, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1436.1, Inclination_radians 0.055850536, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00264, Launch_Mass_kg 5000.0, Apogee_km 35937, Perigee_km 35714, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1438.8, Inclination_radians 0.050440015, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5000.0, Apogee_km 35500, Perigee_km 35500, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes nil, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg 5000.0, Apogee_km 35805, Perigee_km 35771, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 23.94, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00273, Launch_Mass_kg 6169.0, Apogee_km 36103, Perigee_km 35872, Type_of_Orbit "", Purpose "Communications", Period_minutes 1446.36, Inclination_radians 0.076096355, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 6169.0, Apogee_km 35700, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1306.29, Inclination_radians 0.355872634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 6169.0, Apogee_km 35700, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1306.29, Inclination_radians 0.355872634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02213, Launch_Mass_kg 3.0, Apogee_km 790, Perigee_km 480, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.4, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0211, Launch_Mass_kg 4.5, Apogee_km 791, Perigee_km 495, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.5, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02088, Launch_Mass_kg 4.5, Apogee_km 792, Perigee_km 499, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.6, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 5.2E-4, Launch_Mass_kg 3460.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.002094395, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Malaysia", Eccentricity 4.0E-5, Launch_Mass_kg 1450.0, Apogee_km 35787, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.019547688, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.8E-4, Launch_Mass_kg 2704.0, Apogee_km 35802, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "International", Eccentricity 3.9E-4, Launch_Mass_kg 3775.0, Apogee_km 35802, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Italy", Eccentricity 0.00174, Launch_Mass_kg 325.0, Apogee_km 534, Perigee_km 510, Type_of_Orbit "", Purpose "Scientific Research", Period_minutes 95.1, Inclination_radians 0.043633231, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.4E-4, Launch_Mass_kg 215.0, Apogee_km 583, Perigee_km 570, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 96.2, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Norway", Eccentricity 0.00122, Launch_Mass_kg 6.0, Apogee_km 632, Perigee_km 615, Type_of_Orbit "Sun-Synchronous", Purpose "Maritime Tracking/Technology Development", Period_minutes 97.2, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00193, Launch_Mass_kg nil, Apogee_km 626, Perigee_km 599, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.438151304, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00173, Launch_Mass_kg 53.0, Apogee_km 582, Perigee_km 558, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.06, Inclination_radians 1.132369619, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Japan", Eccentricity 0.29184, Launch_Mass_kg nil, Apogee_km 5732, Perigee_km 264, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 150.4, Inclination_radians 1.310742268, Users "Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "UK/ESA", Eccentricity 1.0E-5, Launch_Mass_kg 6650.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications/Technology Development", Period_minutes 1436.09, Inclination_radians 3.49066E-4, Users "Commercial/Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Algeria", Eccentricity 1.4E-4, Launch_Mass_kg 130.0, Apogee_km 674, Perigee_km 672, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.2, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Brazil", Eccentricity 2.5E-4, Launch_Mass_kg 4545.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 4.5E-4, Launch_Mass_kg 5465.0, Apogee_km 35805, Perigee_km 35767, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 1.2E-4, Launch_Mass_kg 6265.0, Apogee_km 35791, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.3E-4, Launch_Mass_kg 2783.0, Apogee_km 35800, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 2315.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 2340.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 4200.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.5E-4, Launch_Mass_kg 4312.0, Apogee_km 35793, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 2081.0, Apogee_km 35800, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 2648.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 2500.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.052359878, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 2845.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 3909.0, Apogee_km 35791, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 1698.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 3901.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 1935.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 2015.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 4100.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 1.9E-4, Launch_Mass_kg 1400.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 8.72665E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 7.0E-5, Launch_Mass_kg nil, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 0.00194, Launch_Mass_kg nil, Apogee_km 35796, Perigee_km 35633, Type_of_Orbit "", Purpose "Communications", Period_minutes 1432.0, Inclination_radians 1.74533E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Israel", Eccentricity 0.00488, Launch_Mass_kg 1600.0, Apogee_km 36007, Perigee_km 35595, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001570796, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00121, Launch_Mass_kg 29.0, Apogee_km 1459, Perigee_km 1440, Type_of_Orbit "Sun-Synchronous", Purpose "Amateur Radio", Period_minutes 114.9, Inclination_radians 1.769763862, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Canada", Eccentricity 1.8E-4, Launch_Mass_kg 4710.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 2.1E-4, Launch_Mass_kg 4500.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Canada", Eccentricity 1.1E-4, Launch_Mass_kg 5910.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.9E-4, Launch_Mass_kg 4715.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 3.1E-4, Launch_Mass_kg 4905.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.00479, Launch_Mass_kg 12.0, Apogee_km 764, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Communications (experimental)", Period_minutes 99.4, Inclination_radians 1.710422667, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.01092, Launch_Mass_kg 12.0, Apogee_km 850, Perigee_km 694, Type_of_Orbit "Sun-Synchronous", Purpose "Communications (experimental)", Period_minutes 100.3, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA/Argentina", Eccentricity 6.5E-4, Launch_Mass_kg 12.0, Apogee_km 572, Perigee_km 563, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.0, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA/Argentina", Eccentricity 0.00499, Launch_Mass_kg 12.0, Apogee_km 674, Perigee_km 604, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.5, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00598, Launch_Mass_kg 12.0, Apogee_km 694, Perigee_km 610, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.8, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00476, Launch_Mass_kg 12.0, Apogee_km 694, Perigee_km 627, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 98.0, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00422, Launch_Mass_kg 12.0, Apogee_km 653, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.17, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA/Argentina", Eccentricity 0.00536, Launch_Mass_kg 12.0, Apogee_km 669, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 97.99, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.5E-4, Launch_Mass_kg 1383.0, Apogee_km 35795, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.21, Inclination_radians 0.113446401, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.3E-4, Launch_Mass_kg 1383.0, Apogee_km 35790, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 0.102799893, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.9E-4, Launch_Mass_kg 4680.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.2E-4, Launch_Mass_kg 5054.0, Apogee_km 35874, Perigee_km 35864, Type_of_Orbit "", Purpose "Communications", Period_minutes 1440.31, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.6E-4, Launch_Mass_kg 4630.0, Apogee_km 35805, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.9E-4, Launch_Mass_kg 3600.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "ISS", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 1.0, Apogee_km 415, Perigee_km 410, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 92.81, Inclination_radians 0.901462559, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 3.8E-4, Launch_Mass_kg 3105.0, Apogee_km 35803, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications/Research", Period_minutes 1436.12, Inclination_radians 0.122696646, Users "Commercial/Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 1.4E-4, Launch_Mass_kg 3480.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "China (PR)", Eccentricity 6.0E-5, Launch_Mass_kg 4137.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 2.0E-4, Launch_Mass_kg 3760.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 1.3E-4, Launch_Mass_kg 3813.0, Apogee_km 35793, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.17, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.3E-4, Launch_Mass_kg 2775.0, Apogee_km 35801, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 2.3E-4, Launch_Mass_kg 2924.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.020071286, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.0E-4, Launch_Mass_kg 3014.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 2.3E-4, Launch_Mass_kg 3010.0, Apogee_km 35797, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 1.3E-4, Launch_Mass_kg 3379.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 2.1E-4, Launch_Mass_kg 3690.0, Apogee_km 35794, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Luxembourg", Eccentricity 4.9E-4, Launch_Mass_kg 4332.0, Apogee_km 35807, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.1E-4, Launch_Mass_kg 4500.0, Apogee_km 35798, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 5.7E-4, Launch_Mass_kg 5345.0, Apogee_km 35852, Perigee_km 35804, Type_of_Orbit "", Purpose "Communications", Period_minutes 1438.2, Inclination_radians 0.002443461, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 7.7E-4, Launch_Mass_kg 5350.0, Apogee_km 35780, Perigee_km 35715, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.1, Inclination_radians 0.002094395, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 2.5E-4, Launch_Mass_kg 3635.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.4E-4, Launch_Mass_kg 3315.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 4.3E-4, Launch_Mass_kg 3643.0, Apogee_km 35804, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 3.8E-4, Launch_Mass_kg 1420.0, Apogee_km 35802, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Luxembourg", Eccentricity 1.4E-4, Launch_Mass_kg 6052.0, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001919862, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 2.1E-4, Launch_Mass_kg 6000.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 4.0E-4, Launch_Mass_kg 1500.0, Apogee_km 35804, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Luxembourg", Eccentricity 4.5E-4, Launch_Mass_kg 5471.0, Apogee_km 35806, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Azerbaijan", Eccentricity 1.9E-4, Launch_Mass_kg 3250.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Pakistan", Eccentricity 0.00204, Launch_Mass_kg 70.0, Apogee_km 1014, Perigee_km 984, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Technology Development", Period_minutes 105.1, Inclination_radians 1.731366618, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.3E-4, Launch_Mass_kg 3304.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.00122173, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 5.8E-4, Launch_Mass_kg 5420.0, Apogee_km 35883, Perigee_km 35834, Type_of_Orbit "", Purpose "Communications", Period_minutes 1439.76, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.1E-4, Launch_Mass_kg 4940.0, Apogee_km 35623, Perigee_km 35605, Type_of_Orbit "", Purpose "Communications", Period_minutes 1427.27, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.4E-4, Launch_Mass_kg 3400.0, Apogee_km 35805, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Germany", Eccentricity 6.4E-4, Launch_Mass_kg 1.0, Apogee_km 718, Perigee_km 709, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.0, Inclination_radians 1.715658655, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00173, Launch_Mass_kg 1.0, Apogee_km 579, Perigee_km 555, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.01, Inclination_radians 1.130973355, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00195, Launch_Mass_kg 1.0, Apogee_km 581, Perigee_km 554, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.01, Inclination_radians 1.130973355, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "China (PR)", Eccentricity 0.00156, Launch_Mass_kg 166.0, Apogee_km 703, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Germany", Eccentricity 0.00153, Launch_Mass_kg 92.0, Apogee_km 521, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Technology Development", Period_minutes 94.8, Inclination_radians 1.708677338, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Belarus", Eccentricity 2.9E-4, Launch_Mass_kg 400.0, Apogee_km 507, Perigee_km 503, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Russia", Eccentricity 2.1E-4, Launch_Mass_kg 1452.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 2.5E-4, Launch_Mass_kg 1780.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.014660766, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 4.0E-4, Launch_Mass_kg 1780.0, Apogee_km 35803, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 3.3E-4, Launch_Mass_kg 2495.0, Apogee_km 35800, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Multinational", Eccentricity 0.02053, Launch_Mass_kg 10.0, Apogee_km 886, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 99.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.9E-4, Launch_Mass_kg 1980.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 0.03261, Launch_Mass_kg 2060.0, Apogee_km 35725, Perigee_km 33066, Type_of_Orbit "", Purpose "Communications", Period_minutes 1365.61, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 4.0E-5, Launch_Mass_kg 2910.0, Apogee_km 35787, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "L-1011 Aircraft", Country_of_Operator "USA", Eccentricity 0.02938, Launch_Mass_kg 384.0, Apogee_km 813, Perigee_km 403, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.85, Inclination_radians 0.226892803, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "France/USA", Eccentricity 7.0E-5, Launch_Mass_kg 587.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.9E-4, Launch_Mass_kg 400.0, Apogee_km 505, Perigee_km 501, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Canada", Eccentricity 0.00143, Launch_Mass_kg 7.0, Apogee_km 629, Perigee_km 609, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Canada", Eccentricity 8.4E-4, Launch_Mass_kg 5.0, Apogee_km 783, Perigee_km 771, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 100.3, Inclination_radians 1.720894642, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Canada", Eccentricity 0.00143, Launch_Mass_kg 16.0, Apogee_km 631, Perigee_km 611, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.706932008, Users "Civil/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg nil, Apogee_km 506, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.67, Inclination_radians 0.70703288, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 7.0E-5, Launch_Mass_kg 1560.0, Apogee_km 619, Perigee_km 618, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.1, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 2.1E-4, Launch_Mass_kg 680.0, Apogee_km 635, Perigee_km 632, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.4, Inclination_radians 1.692969374, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00136, Launch_Mass_kg 680.0, Apogee_km 643, Perigee_km 624, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.4, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00164, Launch_Mass_kg 694.0, Apogee_km 645, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.4, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Canada", Eccentricity 0.07979, Launch_Mass_kg 490.0, Apogee_km 1486, Perigee_km 325, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 103.11, Inclination_radians 1.413716694, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.3E-4, Launch_Mass_kg 159.0, Apogee_km 544, Perigee_km 538, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.5, Inclination_radians 0.617846555, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.79737, Launch_Mass_kg 4742.0, Apogee_km 138825, Perigee_km 9999, Type_of_Orbit "Deep Highly Eccentric", Purpose "Astrophysics", Period_minutes 3808.92, Inclination_radians 0.497418837, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.4E-4, Launch_Mass_kg 4600.0, Apogee_km 35797, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial/Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00134, Launch_Mass_kg 100.0, Apogee_km 748, Perigee_km 729, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 99.6, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00133, Launch_Mass_kg 100.8, Apogee_km 804, Perigee_km 785, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.5, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0014, Launch_Mass_kg 100.0, Apogee_km 804, Perigee_km 784, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.7, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00338, Launch_Mass_kg 200.0, Apogee_km 611, Perigee_km 564, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.43, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 7.0E-5, Launch_Mass_kg 5585.0, Apogee_km 35788, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02191, Launch_Mass_kg 3.15, Apogee_km 791, Perigee_km 484, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 97.4, Inclination_radians 1.127482697, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.00974, Launch_Mass_kg 3.0, Apogee_km 731, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.01087, Launch_Mass_kg 3.0, Apogee_km 747, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 848.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.2E-4, Launch_Mass_kg 2200.0, Apogee_km 35803, Perigee_km 35768, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.05, Inclination_radians 0.031066861, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00185, Launch_Mass_kg 2300.0, Apogee_km 35864, Perigee_km 35708, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.08, Inclination_radians 0.962723615, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.7E-4, Launch_Mass_kg 2300.0, Apogee_km 35799, Perigee_km 35776, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.15, Inclination_radians 0.032637657, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.7E-4, Launch_Mass_kg 2200.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.05, Inclination_radians 0.031939525, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 5.3E-4, Launch_Mass_kg 6000.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.1, Inclination_radians 0.024958208, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00265, Launch_Mass_kg 2200.0, Apogee_km 35893, Perigee_km 35670, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1435.82, Inclination_radians 0.961501885, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.8E-4, Launch_Mass_kg 3800.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.11, Inclination_radians 0.032114058, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00119, Launch_Mass_kg 2200.0, Apogee_km 35817, Perigee_km 35717, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1436.12, Inclination_radians 0.963945346, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.02525, Launch_Mass_kg 2300.0, Apogee_km 37872, Perigee_km 35693, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1435.93, Inclination_radians 1.682497399, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00203, Launch_Mass_kg 2300.0, Apogee_km 35879, Perigee_km 35708, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 1435.1, Inclination_radians 0.963421747, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.7E-4, Launch_Mass_kg 2200.0, Apogee_km 21545, Perigee_km 21519, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.39, Inclination_radians 0.964468945, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00242, Launch_Mass_kg 2200.0, Apogee_km 21595, Perigee_km 21460, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.19, Inclination_radians 0.962723615, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00271, Launch_Mass_kg 2200.0, Apogee_km 21603, Perigee_km 21452, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.21, Inclination_radians 0.961676418, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00231, Launch_Mass_kg 3800.0, Apogee_km 21591, Perigee_km 21462, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.1, Inclination_radians 0.959931089, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00174, Launch_Mass_kg 3800.0, Apogee_km 21574, Perigee_km 21477, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 773.1, Inclination_radians 0.959931089, Users "Military", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "South Korea", Eccentricity 9.0E-5, Launch_Mass_kg 2460.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Earth Observation/Meteorology/Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Germany", Eccentricity 3.1E-4, Launch_Mass_kg 2440.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Germany", Eccentricity 1.7E-4, Launch_Mass_kg 2440.0, Apogee_km 35794, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001396263, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00146, Launch_Mass_kg 817.0, Apogee_km 841, Perigee_km 820, Type_of_Orbit "Sun-Synchronous", Purpose "Earth/Space Science", Period_minutes 101.5, Inclination_radians 1.724385301, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00502, Launch_Mass_kg 70.0, Apogee_km 836, Perigee_km 764, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00432, Launch_Mass_kg 70.0, Apogee_km 831, Perigee_km 769, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00544, Launch_Mass_kg 70.0, Apogee_km 746, Perigee_km 669, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00683, Launch_Mass_kg 70.0, Apogee_km 849, Perigee_km 751, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan/USA", Eccentricity 0.00391, Launch_Mass_kg 70.0, Apogee_km 828, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 100.9, Inclination_radians 1.256637061, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Imaging", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Civil/Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military/Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military/Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Italy", Eccentricity 7.0E-5, Launch_Mass_kg 1700.0, Apogee_km 623, Perigee_km 622, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military/Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 7.8E-4, Launch_Mass_kg 720.0, Apogee_km 724, Perigee_km 713, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 99.2, Inclination_radians 1.605702912, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "Argentina", Eccentricity 0.00164, Launch_Mass_kg 2.0, Apogee_km 653, Perigee_km 630, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.55, Inclination_radians 1.711295332, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Argentina", Eccentricity 0.00861, Launch_Mass_kg 2.0, Apogee_km 715, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.8, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00104, Launch_Mass_kg nil, Apogee_km 830, Perigee_km 815, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00177, Launch_Mass_kg 1.0, Apogee_km 703, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 1.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.07838, Launch_Mass_kg nil, Apogee_km 1465, Perigee_km 326, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 102.89, Inclination_radians 1.413542161, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00104, Launch_Mass_kg nil, Apogee_km 829, Perigee_km 814, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Japan", Eccentricity 0.00136, Launch_Mass_kg nil, Apogee_km 628, Perigee_km 609, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.07902, Launch_Mass_kg 50.0, Apogee_km 1475, Perigee_km 326, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 103.0, Inclination_radians 1.413716694, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Spain", Eccentricity 7.0E-5, Launch_Mass_kg 90.0, Apogee_km 662, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.0, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Netherlands", Eccentricity 0.00129, Launch_Mass_kg 6.5, Apogee_km 616, Perigee_km 598, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.8, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Netherlands", Eccentricity 0.01318, Launch_Mass_kg 4.5, Apogee_km 780, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.5, Inclination_radians 1.705186679, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 5900.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5900.0, Apogee_km 35786, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5900.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Russia", Eccentricity 2.0E-4, Launch_Mass_kg 3420.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 4300.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.1E-4, Launch_Mass_kg 4300.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 5483.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 3800.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 5500.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Germany", Eccentricity 0.00141, Launch_Mass_kg 45.0, Apogee_km 732, Perigee_km 712, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 99.2, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.9E-4, Launch_Mass_kg 1134.0, Apogee_km 855, Perigee_km 845, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.93, Inclination_radians 1.724385301, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.0E-4, Launch_Mass_kg 1134.0, Apogee_km 855, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.9, Inclination_radians 1.72613063, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.7E-4, Launch_Mass_kg 1152.0, Apogee_km 851, Perigee_km 837, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.8, Inclination_radians 1.72613063, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.2E-4, Launch_Mass_kg 1154.0, Apogee_km 852, Perigee_km 843, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.87, Inclination_radians 1.72613063, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 9.0E-4, Launch_Mass_kg 1154.0, Apogee_km 855, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.89, Inclination_radians 1.724210768, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00118, Launch_Mass_kg 1155.0, Apogee_km 859, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.94, Inclination_radians 1.726654229, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00166, Launch_Mass_kg 5.8, Apogee_km 582, Perigee_km 559, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.08, Inclination_radians 1.132369619, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.01562, Launch_Mass_kg 6.0, Apogee_km 815, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.8, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.01562, Launch_Mass_kg 6.0, Apogee_km 815, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.8, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.8E-4, Launch_Mass_kg 2650.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.7E-4, Launch_Mass_kg 1156.0, Apogee_km 35802, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.4E-4, Launch_Mass_kg 1156.0, Apogee_km 35814, Perigee_km 35760, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.1E-4, Launch_Mass_kg 1156.0, Apogee_km 35817, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.044331363, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00192, Launch_Mass_kg 1156.0, Apogee_km 35868, Perigee_km 35706, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 1.74533E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 1156.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 6.98132E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00162, Launch_Mass_kg 1156.0, Apogee_km 35855, Perigee_km 35718, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.2E-4, Launch_Mass_kg 1156.0, Apogee_km 35817, Perigee_km 35756, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.080110613, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 1156.0, Apogee_km 35784, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 2380.0, Apogee_km 35800, Perigee_km 35780, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.27, Inclination_radians 0.001745329, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 2380.0, Apogee_km 35909, Perigee_km 35897, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 142.08, Inclination_radians 0.071209433, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 5.3E-4, Launch_Mass_kg 2380.0, Apogee_km 35810, Perigee_km 35765, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.14, Inclination_radians 0.064228116, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00108, Launch_Mass_kg 2380.0, Apogee_km 35832, Perigee_km 35741, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.12, Inclination_radians 0.024609142, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "UAE", Eccentricity 0.00128, Launch_Mass_kg 200.0, Apogee_km 680, Perigee_km 662, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.2, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "UAE", Eccentricity 0.00129, Launch_Mass_kg 300.0, Apogee_km 603, Perigee_km 585, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 96.56, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.00308, Launch_Mass_kg 2.0, Apogee_km 639, Perigee_km 596, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Mexico", Eccentricity 2.3E-4, Launch_Mass_kg 3287.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 4333.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 5500.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.1E-4, Launch_Mass_kg 4328.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 5.0E-5, Launch_Mass_kg 6384.0, Apogee_km 35789, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.7E-4, Launch_Mass_kg 5521.0, Apogee_km 35803, Perigee_km 35789, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.57, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 6658.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.5E-4, Launch_Mass_kg 6100.0, Apogee_km 35794, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 3674.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 3700.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 4027.0, Apogee_km 35789, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 4660.0, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 4000.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.1E-4, Launch_Mass_kg 6600.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.100007366, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Italy", Eccentricity 0.00391, Launch_Mass_kg 10.0, Apogee_km 694, Perigee_km 639, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.1, Inclination_radians 1.713913325, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00509, Launch_Mass_kg 1766.0, Apogee_km 35750, Perigee_km 35323, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1423.35, Inclination_radians 0.008028515, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00121, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 675, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.43, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00106, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 677, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.46, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00121, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 675, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.43, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.00106, Launch_Mass_kg 120.0, Apogee_km 692, Perigee_km 677, Type_of_Orbit "Polar", Purpose "Electronic Intelligence/Technology Development", Period_minutes 98.45, Inclination_radians 1.714087858, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 8.5E-4, Launch_Mass_kg 572.0, Apogee_km 690, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Research", Period_minutes 98.4, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA/Canada/Japan", Eccentricity 7.0E-5, Launch_Mass_kg 4854.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 2967.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA/Japan/Brazil", Eccentricity 2.1E-4, Launch_Mass_kg 2934.0, Apogee_km 704, Perigee_km 701, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Svobodny Cosmodrome", Country_of_Operator "Israel", Eccentricity 0.00123, Launch_Mass_kg 240.0, Apogee_km 547, Perigee_km 530, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 95.4, Inclination_radians 1.70344135, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Svobodny Cosmodrome", Country_of_Operator "Israel", Eccentricity 4.4E-4, Launch_Mass_kg 350.0, Apogee_km 514, Perigee_km 508, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.8, Inclination_radians 1.699950691, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Italy", Eccentricity 0.07013, Launch_Mass_kg nil, Apogee_km 1313, Perigee_km 306, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 101.08, Inclination_radians 1.212654764, Users "Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "Estonia", Eccentricity 9.2E-4, Launch_Mass_kg 1.0, Apogee_km 671, Perigee_km 658, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.03, Inclination_radians 1.712691595, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Turkey/France", Eccentricity 5.8E-4, Launch_Mass_kg 3535.0, Apogee_km 35810, Perigee_km 35761, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 4167.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 4.9E-4, Launch_Mass_kg 5900.0, Apogee_km 35822, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.4E-4, Launch_Mass_kg 2700.0, Apogee_km 35805, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001919862, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Multinational", Eccentricity 1.9E-4, Launch_Mass_kg 5400.0, Apogee_km 35795, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.003490659, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 5.7E-4, Launch_Mass_kg 2885.0, Apogee_km 35810, Perigee_km 35762, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 7.5E-4, Launch_Mass_kg 2500.0, Apogee_km 35817, Perigee_km 35754, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 3.2E-4, Launch_Mass_kg 5000.0, Apogee_km 35799, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 3.8E-4, Launch_Mass_kg 2490.0, Apogee_km 35802, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 5.0E-4, Launch_Mass_kg nil, Apogee_km 35767, Perigee_km 35725, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.03, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 1.2E-4, Launch_Mass_kg 3170.0, Apogee_km 35790, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 7.0E-5, Launch_Mass_kg 2950.0, Apogee_km 35794, Perigee_km 35788, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.1E-4, Launch_Mass_kg 1525.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 4.7E-4, Launch_Mass_kg 3190.0, Apogee_km 35806, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.0E-5, Launch_Mass_kg 5600.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Multinational", Eccentricity 1.8E-4, Launch_Mass_kg 2200.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.7E-4, Launch_Mass_kg 4892.0, Apogee_km 35806, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 1.2E-4, Launch_Mass_kg 5404.0, Apogee_km 35794, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.21, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 6.9E-4, Launch_Mass_kg 2915.0, Apogee_km 35815, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 5102.0, Apogee_km 35797, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.3E-4, Launch_Mass_kg 4050.0, Apogee_km 35805, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Multinational", Eccentricity 3.0E-4, Launch_Mass_kg 4600.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 5250.0, Apogee_km 35800, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.28, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 3.9E-4, Launch_Mass_kg 4300.0, Apogee_km 35802, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 4.7E-4, Launch_Mass_kg 3150.0, Apogee_km 35806, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.8E-4, Launch_Mass_kg 4100.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 7.0E-4, Launch_Mass_kg 3800.0, Apogee_km 35815, Perigee_km 35756, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 6.3E-4, Launch_Mass_kg 4900.0, Apogee_km 35812, Perigee_km 35759, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.0E-5, Launch_Mass_kg 4880.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 0.00168, Launch_Mass_kg 6150.0, Apogee_km 35856, Perigee_km 35714, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.01, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 0.00104, Launch_Mass_kg 100.0, Apogee_km 821, Perigee_km 806, Type_of_Orbit "Sun-Synchronous", Purpose "Maritime Tracking", Period_minutes 101.2, Inclination_radians 1.727875959, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia/Multinational", Eccentricity 1.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 8.0E-5, Launch_Mass_kg 2600.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.047996554, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.8E-4, Launch_Mass_kg 2600.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 4.0E-5, Launch_Mass_kg 2542.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.0E-5, Launch_Mass_kg 2532.0, Apogee_km 35995, Perigee_km 35987, Type_of_Orbit "", Purpose "Communications", Period_minutes 1446.57, Inclination_radians 0.001919862, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00618, Launch_Mass_kg 3400.0, Apogee_km 35940, Perigee_km 35420, Type_of_Orbit "", Purpose "Communications", Period_minutes 1430.6, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 46.0, Apogee_km 540, Perigee_km 538, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.4, Inclination_radians 0.617846555, Users "Civil/Military", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.00193, Launch_Mass_kg 55.0, Apogee_km 654, Perigee_km 627, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.54, Inclination_radians 1.256113463, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.7E-4, Launch_Mass_kg nil, Apogee_km 500, Perigee_km 488, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.49, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.7E-4, Launch_Mass_kg nil, Apogee_km 500, Perigee_km 488, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.49, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.7E-4, Launch_Mass_kg 1390.0, Apogee_km 35791, Perigee_km 35777, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 1436.0, Inclination_radians 0.013439035, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.3E-4, Launch_Mass_kg 1390.0, Apogee_km 35803, Perigee_km 35767, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 1436.04, Inclination_radians 0.045553093, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.6E-4, Launch_Mass_kg 1390.0, Apogee_km 35816, Perigee_km 35760, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 1436.19, Inclination_radians 0.038222711, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00104, Launch_Mass_kg 2300.0, Apogee_km 835, Perigee_km 820, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 101.5, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 2300.0, Apogee_km 828, Perigee_km 827, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 101.5, Inclination_radians 1.724385301, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 2300.0, Apogee_km 828, Perigee_km 827, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 101.45, Inclination_radians 1.724559834, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00137, Launch_Mass_kg 4303.0, Apogee_km 556, Perigee_km 537, Type_of_Orbit "", Purpose "Astrophysics", Period_minutes 95.6, Inclination_radians 0.446804289, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg nil, Apogee_km 1107, Perigee_km 1101, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 107.35, Inclination_radians 2.146580447, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00261, Launch_Mass_kg nil, Apogee_km 1107, Perigee_km 1068, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 107.0, Inclination_radians 2.14675498, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00101, Launch_Mass_kg nil, Apogee_km 1081, Perigee_km 1066, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 106.7, Inclination_radians 2.14675498, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 2.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 2.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Space Science", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 3.0, Apogee_km 506, Perigee_km 500, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.001, Launch_Mass_kg 2310.0, Apogee_km 35829, Perigee_km 35745, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.156556034, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Taiwan", Eccentricity 2.1E-4, Launch_Mass_kg 764.0, Apogee_km 893, Perigee_km 890, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 102.8, Inclination_radians 1.727875959, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0023, Launch_Mass_kg 215.0, Apogee_km 823, Perigee_km 790, Type_of_Orbit "Intermediate", Purpose "Earth Observation", Period_minutes 101.0, Inclination_radians 1.221730476, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Netherlands", Eccentricity 0.00635, Launch_Mass_kg 1.0, Apogee_km 683, Perigee_km 594, Type_of_Orbit "", Purpose "Communications", Period_minutes 97.4, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 4488.0, Apogee_km 35795, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.5E-4, Launch_Mass_kg 1760.0, Apogee_km 35796, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA/Japan", Eccentricity 1.1E-4, Launch_Mass_kg 4060.0, Apogee_km 35790, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 2086.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 2033.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 4640.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.0E-4, Launch_Mass_kg 4100.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 4642.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 4690.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 3515.0, Apogee_km 35801, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 3765.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 3790.0, Apogee_km 35794, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 5493.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 5.0E-5, Launch_Mass_kg 4860.0, Apogee_km 35788, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 0.0011, Launch_Mass_kg 700.0, Apogee_km 23307, Perigee_km 23242, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 846.98, Inclination_radians 0.954171502, Users "Commerical", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 0.00111, Launch_Mass_kg 700.0, Apogee_km 23306, Perigee_km 23240, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 846.88, Inclination_radians 0.954346035, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 3.2E-4, Launch_Mass_kg 700.0, Apogee_km 23233, Perigee_km 23214, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 844.76, Inclination_radians 0.965865208, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 1.7E-4, Launch_Mass_kg 700.0, Apogee_km 23227, Perigee_km 23217, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 844.69, Inclination_radians 0.965167076, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00171, Launch_Mass_kg 1000.0, Apogee_km 654, Perigee_km 630, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 97.56, Inclination_radians 1.711644397, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.0E-5, Launch_Mass_kg 5000.0, Apogee_km 35790, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001570796, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Indonesia/Philippines/Thailand", Eccentricity 3.2E-4, Launch_Mass_kg 4291.0, Apogee_km 35801, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 0.021293017, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Denmark", Eccentricity 0.01597, Launch_Mass_kg 3.0, Apogee_km 819, Perigee_km 593, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.9, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.0034, Launch_Mass_kg 1360.0, Apogee_km 569, Perigee_km 522, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.6, Inclination_radians 1.125737368, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Yasny Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00564, Launch_Mass_kg 1360.0, Apogee_km 586, Perigee_km 508, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 95.6, Inclination_radians 1.125737368, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00106, Launch_Mass_kg 1955.0, Apogee_km 686, Perigee_km 671, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.3, Inclination_radians 1.712167996, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.83044, Launch_Mass_kg 980.0, Apogee_km 104552, Perigee_km 3905, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 2474.83, Inclination_radians 0.389208423, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "USA/Japan", Eccentricity 2.1E-4, Launch_Mass_kg 1900.0, Apogee_km 704, Perigee_km 701, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1412, Perigee_km 1407, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00103, Launch_Mass_kg 450.0, Apogee_km 1422, Perigee_km 1406, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.03408, Launch_Mass_kg 450.0, Apogee_km 1413, Perigee_km 900, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1478, Perigee_km 1477, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 450.0, Apogee_km 1417, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1415, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1414, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1411, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 450.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 450.0, Apogee_km 1416, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.08, Inclination_radians 0.907396678, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1412, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.01757, Launch_Mass_kg 700.0, Apogee_km 1739, Perigee_km 1459, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 118.2, Inclination_radians 1.291543646, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 700.0, Apogee_km 1415, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 700.0, Apogee_km 1414, Perigee_km 1413, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.1, Inclination_radians 0.907571211, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00258, Launch_Mass_kg 700.0, Apogee_km 1400, Perigee_km 1360, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 113.35, Inclination_radians 0.907222145, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 8.2E-4, Launch_Mass_kg 700.0, Apogee_km 927, Perigee_km 915, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 103.44, Inclination_radians 0.907745744, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 5.8E-4, Launch_Mass_kg 700.0, Apogee_km 1418, Perigee_km 1409, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.08, Inclination_radians 0.907222145, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 6.9E-4, Launch_Mass_kg 700.0, Apogee_km 928, Perigee_km 918, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 103.48, Inclination_radians 0.907745744, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.00135, Launch_Mass_kg 700.0, Apogee_km 1391, Perigee_km 1370, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 113.96, Inclination_radians 0.907745744, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.9E-4, Launch_Mass_kg 935.0, Apogee_km 19146, Perigee_km 19116, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.78, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 1480.0, Apogee_km 19141, Perigee_km 19134, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.1, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 1480.0, Apogee_km 19125, Perigee_km 19118, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.39, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0, Launch_Mass_kg 1480.0, Apogee_km 19130, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.75, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0, Launch_Mass_kg 1480.0, Apogee_km 19130, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.75, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0, Launch_Mass_kg 1480.0, Apogee_km 19130, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.75, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00151, Launch_Mass_kg 1480.0, Apogee_km 19171, Perigee_km 19094, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.83, Inclination_radians 1.132718685, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.8E-4, Launch_Mass_kg 1480.0, Apogee_km 19133, Perigee_km 19124, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.67, Inclination_radians 1.132718685, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0046, Launch_Mass_kg 1480.0, Apogee_km 19378, Perigee_km 19142, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 680.91, Inclination_radians 1.128529894, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00285, Launch_Mass_kg 1480.0, Apogee_km 19126, Perigee_km 18981, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 672.7, Inclination_radians 1.128355361, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00425, Launch_Mass_kg 1480.0, Apogee_km 19365, Perigee_km 19147, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 680.75, Inclination_radians 1.128704427, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.6E-4, Launch_Mass_kg 1480.0, Apogee_km 19141, Perigee_km 19092, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.2, Inclination_radians 1.130798822, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.2E-4, Launch_Mass_kg 1480.0, Apogee_km 19145, Perigee_km 19134, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.1, Inclination_radians 1.130798822, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.0E-4, Launch_Mass_kg 1480.0, Apogee_km 19141, Perigee_km 19136, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.07, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.9E-4, Launch_Mass_kg 1415.0, Apogee_km 19142, Perigee_km 19112, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.62, Inclination_radians 1.131496954, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00419, Launch_Mass_kg 1415.0, Apogee_km 19135, Perigee_km 18922, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 671.71, Inclination_radians 1.130798822, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0056, Launch_Mass_kg 1415.0, Apogee_km 19419, Perigee_km 19132, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 681.53, Inclination_radians 1.131147888, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.3E-4, Launch_Mass_kg 1415.0, Apogee_km 19146, Perigee_km 19119, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.85, Inclination_radians 1.130275224, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 4.0E-5, Launch_Mass_kg 1415.0, Apogee_km 19133, Perigee_km 19131, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.81, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00524, Launch_Mass_kg 1415.0, Apogee_km 19130, Perigee_km 18864, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 670.47, Inclination_radians 1.130624289, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.1E-4, Launch_Mass_kg 1415.0, Apogee_km 19129, Perigee_km 19098, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.08, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 1415.0, Apogee_km 19135, Perigee_km 19128, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.81, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00421, Launch_Mass_kg 1415.0, Apogee_km 19123, Perigee_km 18909, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 671.2, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00515, Launch_Mass_kg 1415.0, Apogee_km 19380, Perigee_km 19116, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 680.43, Inclination_radians 1.131671487, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00188, Launch_Mass_kg 1415.0, Apogee_km 19175, Perigee_km 19079, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.61, Inclination_radians 1.131671487, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.3E-4, Launch_Mass_kg 1415.0, Apogee_km 19158, Perigee_km 19126, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.2, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00121, Launch_Mass_kg 1415.0, Apogee_km 19204, Perigee_km 19142, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 677.46, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.6E-4, Launch_Mass_kg 1415.0, Apogee_km 19199, Perigee_km 19150, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 677.5, Inclination_radians 1.130973355, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00143, Launch_Mass_kg 1415.0, Apogee_km 19212, Perigee_km 19139, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 677.54, Inclination_radians 1.130624289, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.3E-4, Launch_Mass_kg 1415.0, Apogee_km 19162, Perigee_km 19130, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 676.38, Inclination_radians 1.131322421, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00169, Launch_Mass_kg 1415.0, Apogee_km 19173, Perigee_km 19087, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 675.73, Inclination_radians 1.130449757, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 3200.0, Apogee_km 35801, Perigee_km 35768, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.0, Inclination_radians 0.004886922, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 3200.0, Apogee_km 35170, Perigee_km 35170, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.0, Inclination_radians 0.0, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 3175.0, Apogee_km 35788, Perigee_km 35786, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.14, Inclination_radians 0.007330383, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.3E-4, Launch_Mass_kg 627.0, Apogee_km 35800, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.249582083, Users "Civil", Class_of_Orbit "GEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "Turkey", Eccentricity 0.00149, Launch_Mass_kg 409.0, Apogee_km 690, Perigee_km 669, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.35, Inclination_radians 1.713215194, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00109, Launch_Mass_kg 240.0, Apogee_km 1415, Perigee_km 1398, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 113.9, Inclination_radians 1.441641962, Users "Commercial/Government/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.4E-4, Launch_Mass_kg 240.0, Apogee_km 1415, Perigee_km 1405, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 1.441641962, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.8E-4, Launch_Mass_kg 240.0, Apogee_km 1417, Perigee_km 1408, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.0, Inclination_radians 1.441641962, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 8.3E-4, Launch_Mass_kg 270.0, Apogee_km 1510, Perigee_km 1497, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 116.1, Inclination_radians 1.439896633, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00203, Launch_Mass_kg 270.0, Apogee_km 1510, Perigee_km 1478, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00159, Launch_Mass_kg 270.0, Apogee_km 1507, Perigee_km 1482, Type_of_Orbit "", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.4397221, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 270.0, Apogee_km 1511, Perigee_km 1480, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.5E-4, Launch_Mass_kg 270.0, Apogee_km 1508, Perigee_km 1493, Type_of_Orbit "", Purpose "Communications", Period_minutes 116.0, Inclination_radians 1.4397221, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.5E-4, Launch_Mass_kg 270.0, Apogee_km 1509, Perigee_km 1494, Type_of_Orbit "", Purpose "Communications", Period_minutes 116.02, Inclination_radians 1.614255025, Users "Commercial/Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany/USA", Eccentricity 0.0011, Launch_Mass_kg 480.0, Apogee_km 450, Perigee_km 435, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.4, Inclination_radians 1.553343034, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany/USA", Eccentricity 0.00125, Launch_Mass_kg 480.0, Apogee_km 451, Perigee_km 434, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.4, Inclination_radians 1.553343034, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 1.4E-4, Launch_Mass_kg 1750.0, Apogee_km 670, Perigee_km 668, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.1, Inclination_radians 1.712167996, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 2.1E-4, Launch_Mass_kg 3400.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 5.9E-4, Launch_Mass_kg 1410.0, Apogee_km 35811, Perigee_km 35761, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001570796, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 5.6E-4, Launch_Mass_kg 1982.0, Apogee_km 35810, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.004014257, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 2.4E-4, Launch_Mass_kg 1825.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications/Technology Development", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 6.8E-4, Launch_Mass_kg 2650.0, Apogee_km 35814, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.003316126, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 1.7E-4, Launch_Mass_kg 3093.0, Apogee_km 35796, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications/Navigation", Period_minutes 1436.23, Inclination_radians 0.001570796, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00147, Launch_Mass_kg 500.0, Apogee_km 803, Perigee_km 782, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 100.7, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.4E-4, Launch_Mass_kg 1500.0, Apogee_km 967, Perigee_km 965, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 104.4, Inclination_radians 1.734857276, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 0.0025, Launch_Mass_kg 42.5, Apogee_km 636, Perigee_km 601, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 97.1, Inclination_radians 1.70344135, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Italy/Belgium/Spain/Greece", Eccentricity 1.4E-4, Launch_Mass_kg 4200.0, Apogee_km 683, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 98.0, Inclination_radians 1.712167996, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Italy/Belgium/Spain/Greece", Eccentricity 2.1E-4, Launch_Mass_kg 4200.0, Apogee_km 682, Perigee_km 679, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 98.37, Inclination_radians 1.712167996, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Greece", Eccentricity 4.0E-4, Launch_Mass_kg 3300.0, Apogee_km 35803, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00116, Launch_Mass_kg 293.0, Apogee_km 551, Perigee_km 535, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 95.5, Inclination_radians 0.663225116, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Multinational", Eccentricity 0.00184, Launch_Mass_kg 700.0, Apogee_km 696, Perigee_km 670, Type_of_Orbit "", Purpose "Solar Physics", Period_minutes 98.4, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Japan", Eccentricity 0.01367, Launch_Mass_kg 348.0, Apogee_km 1155, Perigee_km 952, Type_of_Orbit "", Purpose "Space Science", Period_minutes 106.27, Inclination_radians 0.541052068, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "Spain", Eccentricity 5.2E-4, Launch_Mass_kg 3112.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Commercial/Gov/Mil", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Spain", Eccentricity 5.3E-4, Launch_Mass_kg 3288.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 3.49066E-4, Users "Commercial/Gov/Mil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 5.0E-5, Launch_Mass_kg 5320.0, Apogee_km 35786, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.95, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00264, Launch_Mass_kg 470.0, Apogee_km 665, Perigee_km 628, Type_of_Orbit "Polar", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00371, Launch_Mass_kg 470.0, Apogee_km 673, Perigee_km 621, Type_of_Orbit "Polar", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00102, Launch_Mass_kg 890.0, Apogee_km 503, Perigee_km 489, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.53, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 3.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "", Purpose "Radar Calibration", Period_minutes 94.65, Inclination_radians 0.70703288, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA/Japan", Eccentricity 2.3E-4, Launch_Mass_kg 2300.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.00135, Launch_Mass_kg 7.1, Apogee_km 669, Perigee_km 650, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.9, Inclination_radians 1.713913325, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "ESA/USA", Eccentricity 2.9E-4, Launch_Mass_kg 11110.0, Apogee_km 559, Perigee_km 555, Type_of_Orbit "Intermediate", Purpose "Astrophysics/Planetary Science", Period_minutes 95.8, Inclination_radians 0.497418837, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Spain", Eccentricity 0.00358, Launch_Mass_kg 1.0, Apogee_km 640, Perigee_km 590, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.9E-4, Launch_Mass_kg 2242.0, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.8E-4, Launch_Mass_kg 3311.0, Apogee_km 35799, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.14, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Pakistan", Eccentricity 0.00351, Launch_Mass_kg 1.0, Apogee_km 639, Perigee_km 590, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 4.4E-4, Launch_Mass_kg 850.0, Apogee_km 491, Perigee_km 485, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.36, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 5.8E-4, Launch_Mass_kg 850.0, Apogee_km 492, Perigee_km 484, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.37, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 5.8E-4, Launch_Mass_kg 1600.0, Apogee_km 492, Perigee_km 484, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.37, Inclination_radians 1.698379895, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.2E-4, Launch_Mass_kg 1600.0, Apogee_km 591, Perigee_km 588, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.47, Inclination_radians 1.705012146, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 1.5E-4, Launch_Mass_kg 1600.0, Apogee_km 514, Perigee_km 512, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.89, Inclination_radians 1.700997889, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 3.6E-4, Launch_Mass_kg 1600.0, Apogee_km 514, Perigee_km 509, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 94.85, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity nil, Launch_Mass_kg nil, Apogee_km nil, Perigee_km nil, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes nil, Inclination_radians nil, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 726.0, Apogee_km 680, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 98.3, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.709, Launch_Mass_kg 4000.0, Apogee_km 37564, Perigee_km 1111, Type_of_Orbit "Molniya", Purpose "Electronic Surveillance", Period_minutes 684.0, Inclination_radians 1.099557429, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.70905, Launch_Mass_kg 4200.0, Apogee_km 37580, Perigee_km 1112, Type_of_Orbit "Molniya", Purpose "Electronic Surveillance", Period_minutes 684.0, Inclination_radians 1.109331273, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00121, Launch_Mass_kg 83.0, Apogee_km 637, Perigee_km 620, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.3, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "United Kingdom", Eccentricity 5.2E-4, Launch_Mass_kg 2064.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 5.5E-4, Launch_Mass_kg 2070.0, Apogee_km 35809, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.9E-4, Launch_Mass_kg 2066.0, Apogee_km 35642, Perigee_km 35609, Type_of_Orbit "", Purpose "Communications", Period_minutes 1427.91, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 4.0E-4, Launch_Mass_kg 2000.0, Apogee_km 35803, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "United Kingdom", Eccentricity 3.2E-4, Launch_Mass_kg 5959.0, Apogee_km 35799, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.040142573, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "United Kingdom", Eccentricity 3.2E-4, Launch_Mass_kg 5458.0, Apogee_km 35800, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.040666172, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 2.7E-4, Launch_Mass_kg 5960.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.05253441, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 7.0E-5, Launch_Mass_kg 6070.0, Apogee_km 35790, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 1.5E-4, Launch_Mass_kg 2950.0, Apogee_km 35793, Perigee_km 35780, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.1, Inclination_radians 0.0, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 5.3E-4, Launch_Mass_kg 2750.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 1.1E-4, Launch_Mass_kg 2090.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.09, Inclination_radians 0.00418879, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 5.0E-4, Launch_Mass_kg 2750.0, Apogee_km 35807, Perigee_km 35765, Type_of_Orbit "", Purpose "Communications/Earth Science", Period_minutes 1436.08, Inclination_radians 0.002094395, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 2.3E-4, Launch_Mass_kg 3100.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "India", Eccentricity 6.0E-4, Launch_Mass_kg 3028.0, Apogee_km 35811, Perigee_km 35760, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 1.0E-4, Launch_Mass_kg 2130.0, Apogee_km 37791, Perigee_km 37782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA/USA/Russia", Eccentricity 0.89688, Launch_Mass_kg 4000.0, Apogee_km 152812, Perigee_km 2284, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 4032.86, Inclination_radians 0.90931654, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 3739.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 5576.0, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 2491.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.4E-4, Launch_Mass_kg 5613.0, Apogee_km 35800, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 2550.0, Apogee_km 35798, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 2450.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.19, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg 5540.0, Apogee_km 35804, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3200.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 5600.0, Apogee_km 35801, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.01, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 4793.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 6094.0, Apogee_km 35790, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 5984.0, Apogee_km 35811, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.39, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg 6199.0, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 3200.0, Apogee_km 35797, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.21, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 4100.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.8E-4, Launch_Mass_kg 3124.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 2730.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 4200.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.104545222, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3833.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3642.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 3642.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.3E-4, Launch_Mass_kg 3653.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 3592.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3420.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 1.2E-4, Launch_Mass_kg 3659.0, Apogee_km 35792, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.14, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 4723.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 4723.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 25.06467339, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 0.79307, Launch_Mass_kg 4723.0, Apogee_km 358802, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 4680.0, Apogee_km 35789, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 4723.0, Apogee_km 35805, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.5E-4, Launch_Mass_kg 4723.0, Apogee_km 35796, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg 4685.0, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 2550.0, Apogee_km 35804, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.003141593, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 0.00109, Launch_Mass_kg 3000.0, Apogee_km 35892, Perigee_km 35800, Type_of_Orbit "", Purpose "Communications", Period_minutes 1439.15, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 0.00155, Launch_Mass_kg nil, Apogee_km 422, Perigee_km 401, Type_of_Orbit "Intermediate", Purpose "Scientific Research", Period_minutes 92.8, Inclination_radians 0.900589894, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Kwajalein Island", Country_of_Operator "USA", Eccentricity 0.92129, Launch_Mass_kg 462.0, Apogee_km 320000, Perigee_km 7000, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 0.22, Inclination_radians 0.191986218, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02986, Launch_Mass_kg 1.0, Apogee_km 890, Perigee_km 469, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.3, Inclination_radians 2.103121749, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 711, Perigee_km 708, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.0, Inclination_radians 1.509709803, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 775, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg nil, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.506219144, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 751, Perigee_km 747, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.509709803, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 689.0, Apogee_km 780, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 689.0, Apogee_km 753, Perigee_km 744, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 689.0, Apogee_km 778, Perigee_km 777, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 689.0, Apogee_km 782, Perigee_km 773, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 689.0, Apogee_km 779, Perigee_km 776, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 689.0, Apogee_km 754, Perigee_km 745, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.521927108, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 689.0, Apogee_km 778, Perigee_km 777, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 100.4, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 689.0, Apogee_km 750, Perigee_km 748, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 99.8, Inclination_radians 1.507964474, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00314, Launch_Mass_kg 236.0, Apogee_km 664, Perigee_km 620, Type_of_Orbit "Sun-Synchronous", Purpose "Space Science", Period_minutes 97.5, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.0019, Launch_Mass_kg 1425.0, Apogee_km 35872, Perigee_km 35712, Type_of_Orbit "", Purpose "Navigation", Period_minutes 1436.0, Inclination_radians 0.472984227, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 4.2E-4, Launch_Mass_kg 1360.0, Apogee_km 823, Perigee_km 817, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 101.3, Inclination_radians 1.724385301, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Turkey", Eccentricity 7.8E-4, Launch_Mass_kg 1.0, Apogee_km 721, Perigee_km 710, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.1, Inclination_radians 1.717403984, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA/France", Eccentricity 7.8E-4, Launch_Mass_kg 553.0, Apogee_km 1344, Perigee_km 1332, Type_of_Orbit "Intermediate", Purpose "Earth Science", Period_minutes 112.4, Inclination_radians 1.151917306, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 3.4E-4, Launch_Mass_kg 4400.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.020769418, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 6.0E-5, Launch_Mass_kg 3531.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.3E-4, Launch_Mass_kg 4500.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.03, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.9E-4, Launch_Mass_kg 2982.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 7.0E-5, Launch_Mass_kg 2500.0, Apogee_km 35794, Perigee_km 35788, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Japan", Eccentricity 0.04729, Launch_Mass_kg 2900.0, Apogee_km 37768, Perigee_km 33782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.52, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Japan", Eccentricity 2.5E-4, Launch_Mass_kg 4400.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.7E-4, Launch_Mass_kg 4000.0, Apogee_km 35794, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00187, Launch_Mass_kg 3.0, Apogee_km 866, Perigee_km 839, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 102.0, Inclination_radians 0.34906585, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 7.0E-5, Launch_Mass_kg 1060.0, Apogee_km 35789, Perigee_km 35783, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.08, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Kazakhstan", Eccentricity 2.0E-5, Launch_Mass_kg 1300.0, Apogee_km 35788, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 18000.0, Apogee_km 800, Perigee_km 800, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 100.87, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.06, Launch_Mass_kg 18000.0, Apogee_km 1041, Perigee_km 202, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.13, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.05593, Launch_Mass_kg 18000.0, Apogee_km 1050, Perigee_km 264, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.0, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.05739, Launch_Mass_kg 18000.0, Apogee_km 1000, Perigee_km 200, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.05288, Launch_Mass_kg 18000.0, Apogee_km 997, Perigee_km 257, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 97.25, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 1.7E-4, Launch_Mass_kg 5800.0, Apogee_km 35792, Perigee_km 35778, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 1436.04, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.4E-4, Launch_Mass_kg 4850.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.00114, Launch_Mass_kg 3.0, Apogee_km 667, Perigee_km 651, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.92, Inclination_radians 1.710946266, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "South Korea", Eccentricity 0.00156, Launch_Mass_kg 800.0, Apogee_km 698, Perigee_km 676, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 98.5, Inclination_radians 1.713913325, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "South Korea", Eccentricity 0.0012, Launch_Mass_kg 1000.0, Apogee_km 696, Perigee_km 679, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.5, Inclination_radians 1.713913325, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Yasny Cosmodrome", Country_of_Operator "South Korea", Eccentricity 0.00123, Launch_Mass_kg 1000.0, Apogee_km 552, Perigee_km 535, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 95.5, Inclination_radians 1.70344135, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.9E-4, Launch_Mass_kg 1150.0, Apogee_km 501, Perigee_km 497, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 94.6, Inclination_radians 1.30428455, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "South Korea", Eccentricity 1.4E-4, Launch_Mass_kg 4450.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "South Korea", Eccentricity 1.7E-4, Launch_Mass_kg 2850.0, Apogee_km 35794, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00195, Launch_Mass_kg nil, Apogee_km 317, Perigee_km 291, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 90.61, Inclination_radians 1.686686189, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 2.5, Apogee_km 499, Perigee_km 498, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.58, Inclination_radians 0.706858347, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 14500.0, Apogee_km 675, Perigee_km 671, Type_of_Orbit "Intermediate", Purpose "Surveillance", Period_minutes 98.2, Inclination_radians 0.994837674, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00729, Launch_Mass_kg 14500.0, Apogee_km 676, Perigee_km 574, Type_of_Orbit "Intermediate", Purpose "Surveillance", Period_minutes 97.21, Inclination_radians 1.186823891, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 14500.0, Apogee_km 716, Perigee_km 713, Type_of_Orbit "Intermediate", Purpose "Surveillance", Period_minutes 99.08, Inclination_radians 0.995012207, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 2744.0, Apogee_km 703, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 2780.0, Apogee_km 705, Perigee_km 700, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.8, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Indonesia", Eccentricity 0.00143, Launch_Mass_kg 60.0, Apogee_km 637, Perigee_km 617, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 97.2, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.00414, Launch_Mass_kg nil, Apogee_km 668, Perigee_km 610, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 97.5, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Argentina", Eccentricity 0.00811, Launch_Mass_kg nil, Apogee_km 717, Perigee_km 603, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 97.9, Inclination_radians 1.127482697, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Kennedy Space Center", Country_of_Operator "USA/Australia", Eccentricity 6.2E-4, Launch_Mass_kg 3400.0, Apogee_km 35812, Perigee_km 35760, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.139102741, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.6E-4, Launch_Mass_kg 5000.0, Apogee_km 911, Perigee_km 900, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 103.1, Inclination_radians 1.172861257, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.8E-4, Launch_Mass_kg 950.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.8, Inclination_radians 0.084648469, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 3.4E-4, Launch_Mass_kg 1282.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.003839724, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Morocco/Germany", Eccentricity 0.00204, Launch_Mass_kg 47.0, Apogee_km 1014, Perigee_km 984, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 105.1, Inclination_radians 1.731366618, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Hungary", Eccentricity 0.06917, Launch_Mass_kg 1.0, Apogee_km 1297, Perigee_km 305, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 100.9, Inclination_radians 1.21300383, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02562, Launch_Mass_kg 2.0, Apogee_km 816, Perigee_km 457, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.45, Inclination_radians 1.774999849, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 1.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Malaysia", Eccentricity 1.1E-4, Launch_Mass_kg 1450.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.019024089, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Malaysia", Eccentricity 1.9E-4, Launch_Mass_kg 4900.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Malaysia", Eccentricity 7.1E-4, Launch_Mass_kg 2417.0, Apogee_km 35788, Perigee_km 35728, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.6, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India/France", Eccentricity 0.00104, Launch_Mass_kg 1000.0, Apogee_km 868, Perigee_km 853, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 102.2, Inclination_radians 0.34906585, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00448, Launch_Mass_kg 8000.0, Apogee_km 35976, Perigee_km 35598, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 1436.13, Inclination_radians 0.089011792, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.05012, Launch_Mass_kg 8000.0, Apogee_km 37900, Perigee_km 33674, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 1436.12, Inclination_radians 0.127932634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.72382, Launch_Mass_kg 2500.0, Apogee_km 39388, Perigee_km 961, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 645.98, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.72377, Launch_Mass_kg 2500.0, Apogee_km 39396, Perigee_km 964, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 717.88, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.72223, Launch_Mass_kg nil, Apogee_km 39362, Perigee_km 1006, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 718.04, Inclination_radians 1.09484504, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.4E-4, Launch_Mass_kg 2700.0, Apogee_km 820, Perigee_km 818, Type_of_Orbit "Polar", Purpose "Meteorology", Period_minutes 101.3, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 8.0E-5, Launch_Mass_kg 2000.0, Apogee_km 35791, Perigee_km 35784, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.15, Inclination_radians 0.031415927, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 3.2E-4, Launch_Mass_kg 696.0, Apogee_km 35797, Perigee_km 35770, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1435.96, Inclination_radians 0.082205008, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.4E-4, Launch_Mass_kg 2000.0, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.1, Inclination_radians 0.008028515, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 2.4E-4, Launch_Mass_kg 2000.0, Apogee_km 35795, Perigee_km 35775, Type_of_Orbit "", Purpose "Earth Science/Meteorology", Period_minutes 1436.0, Inclination_radians 0.005061455, Users "Government/Civil", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 7.0E-5, Launch_Mass_kg 4193.0, Apogee_km 821, Perigee_km 820, Type_of_Orbit "Polar", Purpose "Earth Science/Meteorology", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 2.1E-4, Launch_Mass_kg 4085.0, Apogee_km 822, Perigee_km 819, Type_of_Orbit "Polar", Purpose "Earth Science/Meteorology", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 8.0E-5, Launch_Mass_kg 2900.0, Apogee_km 35791, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 0.00122173, Users "Government/Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.7E-4, Launch_Mass_kg 4536.0, Apogee_km 35819, Perigee_km 35754, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.104545222, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 5.2E-4, Launch_Mass_kg 4536.0, Apogee_km 35809, Perigee_km 35765, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.006108652, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 5.0E-5, Launch_Mass_kg 4536.0, Apogee_km 35768, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.04, Inclination_radians 0.078539816, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.9E-4, Launch_Mass_kg 4536.0, Apogee_km 35820, Perigee_km 35753, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.060213859, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.5E-4, Launch_Mass_kg 4536.0, Apogee_km 35806, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.0143117, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00184, Launch_Mass_kg 65.0, Apogee_km 1510, Perigee_km 1481, Type_of_Orbit "", Purpose "Earth Observation/Technology Development", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00111, Launch_Mass_kg 110.0, Apogee_km 821, Perigee_km 805, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Earth Science", Period_minutes 101.2, Inclination_radians 1.72613063, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Canada", Eccentricity 0.00104, Launch_Mass_kg 53.0, Apogee_km 832, Perigee_km 817, Type_of_Orbit "Sun-Synchronous", Purpose "Astrophysics", Period_minutes 101.4, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00149, Launch_Mass_kg 64.0, Apogee_km 690, Perigee_km 669, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.3, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA/Canada", Eccentricity 5.5E-4, Launch_Mass_kg 2850.0, Apogee_km 35809, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.023911011, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA/Canada", Eccentricity 2.4E-4, Launch_Mass_kg 2850.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.070162236, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00182, Launch_Mass_kg 587.0, Apogee_km 525, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.9, Inclination_radians 1.699950691, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.1E-4, Launch_Mass_kg 2900.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Meteorology/Navigation", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 2.5E-4, Launch_Mass_kg 2900.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Meteorology", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 6804.0, Apogee_km 35800, Perigee_km 35800, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians nil, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00118, Launch_Mass_kg 6804.0, Apogee_km 35900, Perigee_km 35800, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians nil, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 3.6E-4, Launch_Mass_kg 20.0, Apogee_km 659, Perigee_km 654, Type_of_Orbit "Polar", Purpose "Communications", Period_minutes 97.9, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Spain", Eccentricity 0.00636, Launch_Mass_kg 20.0, Apogee_km 672, Perigee_km 583, Type_of_Orbit "Polar", Purpose "Communications/Technology Development", Period_minutes 97.3, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "United Kingdom", Eccentricity 2.4E-4, Launch_Mass_kg 1430.0, Apogee_km 35795, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.127932634, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01508, Launch_Mass_kg 1816.0, Apogee_km 20582, Perigee_km 19781, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.94, Inclination_radians 0.973544657, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00836, Launch_Mass_kg 1816.0, Apogee_km 20403, Perigee_km 19959, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.93, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00234, Launch_Mass_kg 1816.0, Apogee_km 20244, Perigee_km 20120, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.954695101, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00294, Launch_Mass_kg 1816.0, Apogee_km 20260, Perigee_km 20104, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0062, Launch_Mass_kg 1816.0, Apogee_km 20315, Perigee_km 19986, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 716.69, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00384, Launch_Mass_kg 1816.0, Apogee_km 20284, Perigee_km 20080, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.954695101, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00175, Launch_Mass_kg 1816.0, Apogee_km 20227, Perigee_km 20134, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.91, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01011, Launch_Mass_kg 1816.0, Apogee_km 20449, Perigee_km 19912, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.91, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00279, Launch_Mass_kg 1816.0, Apogee_km 20257, Perigee_km 20109, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.01, Inclination_radians 0.95644043, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.8E-4, Launch_Mass_kg 1630.0, Apogee_km 20224, Perigee_km 20188, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.94, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 1630.0, Apogee_km 20464, Perigee_km 20451, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 729.18, Inclination_radians 0.960454687, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 1630.0, Apogee_km 20191, Perigee_km 20174, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.0, Inclination_radians 0.959058424, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00118, Launch_Mass_kg 1630.0, Apogee_km 20247, Perigee_km 20184, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 719.32, Inclination_radians 0.961501885, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00686, Launch_Mass_kg 2217.0, Apogee_km 20327, Perigee_km 19963, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 716.47, Inclination_radians 0.961676418, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00352, Launch_Mass_kg 2217.0, Apogee_km 20276, Perigee_km 20089, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.98, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00414, Launch_Mass_kg 2217.0, Apogee_km 20292, Perigee_km 20072, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.96, Inclination_radians 0.966388807, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00919, Launch_Mass_kg 2217.0, Apogee_km 20426, Perigee_km 19938, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.0, Inclination_radians 0.95644043, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00233, Launch_Mass_kg 2217.0, Apogee_km 20247, Perigee_km 20123, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.09, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00324, Launch_Mass_kg 2217.0, Apogee_km 20268, Perigee_km 20096, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.97, Inclination_radians 0.925024504, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0019, Launch_Mass_kg 2217.0, Apogee_km 20234, Perigee_km 20133, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.03, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00455, Launch_Mass_kg 2217.0, Apogee_km 20427, Perigee_km 20184, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 722.98, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00601, Launch_Mass_kg 2217.0, Apogee_km 20498, Perigee_km 20177, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 724.28, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00305, Launch_Mass_kg 2217.0, Apogee_km 20266, Perigee_km 20104, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.09, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00355, Launch_Mass_kg 2217.0, Apogee_km 20344, Perigee_km 20155, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 720.71, Inclination_radians 0.959931089, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00695, Launch_Mass_kg 2217.0, Apogee_km 20433, Perigee_km 20063, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 720.65, Inclination_radians 0.958185759, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00149, Launch_Mass_kg 2217.0, Apogee_km 20221, Perigee_km 20142, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.95, Inclination_radians 0.961327352, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00606, Launch_Mass_kg 2060.0, Apogee_km 20342, Perigee_km 20020, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.93, Inclination_radians 0.958883891, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.003, Launch_Mass_kg 2060.0, Apogee_km 20366, Perigee_km 20206, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 722.19, Inclination_radians 0.960280154, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00121, Launch_Mass_kg 2217.0, Apogee_km 20213, Perigee_km 20149, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 717.93, Inclination_radians 0.95644043, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00303, Launch_Mass_kg 2060.0, Apogee_km 20311, Perigee_km 20150, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 719.92, Inclination_radians 0.959232957, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 2217.0, Apogee_km 20152, Perigee_km 20135, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 716.4, Inclination_radians 0.961676418, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 9.2E-4, Launch_Mass_kg 2059.0, Apogee_km 20209, Perigee_km 20160, Type_of_Orbit "", Purpose "Navigation/Global Positioning", Period_minutes 718.07, Inclination_radians 0.962025484, Users "Military/Commercial", Class_of_Orbit "MEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Canada", Eccentricity 9.8E-4, Launch_Mass_kg 74.0, Apogee_km 786, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Space Observation", Period_minutes 100.4, Inclination_radians 1.720894642, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.2E-4, Launch_Mass_kg 494.0, Apogee_km 405, Perigee_km 398, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.6, Inclination_radians 0.841248699, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Nigeria", Eccentricity 2.0E-5, Launch_Mass_kg 5150.0, Apogee_km 35795, Perigee_km 35793, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.003490659, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Nigeria", Eccentricity 9.9E-4, Launch_Mass_kg 300.0, Apogee_km 705, Perigee_km 691, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Nigeria", Eccentricity 0.00248, Launch_Mass_kg 100.0, Apogee_km 696, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 98.3, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Egypt", Eccentricity 5.2E-4, Launch_Mass_kg 1825.0, Apogee_km 35808, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Egypt", Eccentricity 2.1E-4, Launch_Mass_kg 3200.0, Apogee_km 35813, Perigee_km 35795, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.23, Inclination_radians 8.72665E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.7E-4, Launch_Mass_kg 3600.0, Apogee_km 35793, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.8E-4, Launch_Mass_kg 4850.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 0.0, Launch_Mass_kg 4745.0, Apogee_km 35700, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 5.3E-4, Launch_Mass_kg 4745.0, Apogee_km 35809, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00111, Launch_Mass_kg 2223.0, Apogee_km 816, Perigee_km 800, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.0, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00104, Launch_Mass_kg 2223.0, Apogee_km 857, Perigee_km 842, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science/Meteorology", Period_minutes 101.9, Inclination_radians 1.729621289, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00145, Launch_Mass_kg 2223.0, Apogee_km 864, Perigee_km 843, Type_of_Orbit "Sun-Synchronous", Purpose "Meteorology", Period_minutes 102.0, Inclination_radians 1.729621289, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00131, Launch_Mass_kg 1420.0, Apogee_km 864, Perigee_km 845, Type_of_Orbit "Sun-Synchronous", Purpose "Meteorology", Period_minutes 102.0, Inclination_radians 1.72613063, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 2128.0, Apogee_km 827, Perigee_km 827, Type_of_Orbit "Polar", Purpose "Meteorology", Period_minutes 101.4, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.2E-4, Launch_Mass_kg 1.0, Apogee_km 502, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.63, Inclination_radians 0.706858347, Users "Governmnet", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Netherlands", Eccentricity 2.0E-4, Launch_Mass_kg 5396.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Netherlands", Eccentricity 2.6E-4, Launch_Mass_kg 3582.0, Apogee_km 35798, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 1.7E-4, Launch_Mass_kg nil, Apogee_km 35793, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 2.4E-4, Launch_Mass_kg 3412.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 2.5E-4, Launch_Mass_kg 4575.0, Apogee_km 35797, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 2.7E-4, Launch_Mass_kg 4500.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 3.0E-4, Launch_Mass_kg 3642.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 1.8E-4, Launch_Mass_kg 3720.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Netherlands", Eccentricity 9.0E-5, Launch_Mass_kg 2238.0, Apogee_km 35792, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.17, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 3.2E-4, Launch_Mass_kg 1625.0, Apogee_km 35799, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Kwajalein Island", Country_of_Operator "USA", Eccentricity 0.00136, Launch_Mass_kg 360.0, Apogee_km 632, Perigee_km 613, Type_of_Orbit "", Purpose "Space Science", Period_minutes 97.2, Inclination_radians 0.104719755, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.00214, Launch_Mass_kg 5.5, Apogee_km 654, Perigee_km 624, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.48, Inclination_radians 1.256113463, Users "Civil/Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.1E-4, Launch_Mass_kg 700.0, Apogee_km 8069, Perigee_km 8063, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.93, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.4E-4, Launch_Mass_kg 700.0, Apogee_km 8069, Perigee_km 8062, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.93, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 1.4E-4, Launch_Mass_kg 700.0, Apogee_km 8068, Perigee_km 8064, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.94, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.1E-4, Launch_Mass_kg 700.0, Apogee_km 8069, Perigee_km 8063, Type_of_Orbit "", Purpose "Communications", Period_minutes 287.93, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "MEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 1.4E-4, Launch_Mass_kg 960.0, Apogee_km 724, Perigee_km 722, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 99.2, Inclination_radians 1.715658655, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Svobodny Cosmodrome", Country_of_Operator "Sweden", Eccentricity 2.9E-4, Launch_Mass_kg 250.0, Apogee_km 573, Perigee_km 569, Type_of_Orbit "Sun-Synchronous", Purpose "Astrophysics/Earth Science", Period_minutes 96.1, Inclination_radians 1.70344135, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Palmachim Launch Complex", Country_of_Operator "Israel", Eccentricity 0.02862, Launch_Mass_kg 300.0, Apogee_km 764, Perigee_km 367, Type_of_Orbit "Retrograde", Purpose "Remote Sensing/Reconnaissance", Period_minutes 95.97, Inclination_radians 2.502802147, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Palmachim Launch Complex", Country_of_Operator "Israel", Eccentricity 0.01728, Launch_Mass_kg 300.0, Apogee_km 576, Perigee_km 340, Type_of_Orbit "", Purpose "Remote Sensing/Reconnaissance", Period_minutes 93.75, Inclination_radians 2.474178748, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Palmachim Launch Complex", Country_of_Operator "Israel", Eccentricity 0.01799, Launch_Mass_kg 300.0, Apogee_km 589, Perigee_km 343, Type_of_Orbit "", Purpose "Remote Sensing/Reconnaissance", Period_minutes 93.91, Inclination_radians 2.474527813, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Spain", Eccentricity 0.01437, Launch_Mass_kg 3.0, Apogee_km 797, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 3.1E-4, Launch_Mass_kg 4800.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Australia", Eccentricity 2.1E-4, Launch_Mass_kg 2858.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 2.7E-4, Launch_Mass_kg 2300.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 3.0E-4, Launch_Mass_kg 2400.0, Apogee_km 35799, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Australia", Eccentricity 2.4E-4, Launch_Mass_kg 2501.0, Apogee_km 35795, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 776, Perigee_km 770, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.6E-4, Launch_Mass_kg 45.0, Apogee_km 777, Perigee_km 769, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 776, Perigee_km 770, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.5E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 787, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 45.0, Apogee_km 792, Perigee_km 791, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 45.0, Apogee_km 793, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.2E-4, Launch_Mass_kg 45.0, Apogee_km 794, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 45.0, Apogee_km 792, Perigee_km 790, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.6E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 786, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 6.3E-4, Launch_Mass_kg 45.0, Apogee_km 796, Perigee_km 787, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 45.0, Apogee_km 795, Perigee_km 788, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.7, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.00488, Launch_Mass_kg 45.0, Apogee_km 838, Perigee_km 768, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.9, Inclination_radians 1.884955592, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 45.0, Apogee_km 774, Perigee_km 772, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 45.0, Apogee_km 774, Perigee_km 772, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 45.0, Apogee_km 774, Perigee_km 771, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.0E-4, Launch_Mass_kg 45.0, Apogee_km 778, Perigee_km 768, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.6E-4, Launch_Mass_kg 45.0, Apogee_km 777, Perigee_km 769, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 100.3, Inclination_radians 0.785398163, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 4.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 4.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 0.00103, Launch_Mass_kg 434.0, Apogee_km 410, Perigee_km 396, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 92.62, Inclination_radians 0.698131701, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 3.6E-4, Launch_Mass_kg 4.5, Apogee_km 504, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Denmark", Eccentricity 0.01435, Launch_Mass_kg 60.6, Apogee_km 839, Perigee_km 635, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 99.5, Inclination_radians 1.684242728, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Pakistan", Eccentricity 1.7E-4, Launch_Mass_kg 5120.0, Apogee_km 35800, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001745329, Users "Government/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Indonesia", Eccentricity 6.0E-5, Launch_Mass_kg 3014.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Indonesia", Eccentricity 1.4E-4, Launch_Mass_kg 4100.0, Apogee_km 35792, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg nil, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 1.4E-4, Launch_Mass_kg 120.0, Apogee_km 694, Perigee_km 692, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 98.6, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00456, Launch_Mass_kg 825.0, Apogee_km 1016, Perigee_km 949, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.74, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00319, Launch_Mass_kg 820.0, Apogee_km 1016, Perigee_km 969, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 105.0, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00313, Launch_Mass_kg 795.0, Apogee_km 1013, Perigee_km 967, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.9, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00326, Launch_Mass_kg 795.0, Apogee_km 1008, Perigee_km 960, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.8, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.0034, Launch_Mass_kg 825.0, Apogee_km 1011, Perigee_km 961, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.8, Inclination_radians 1.44687795, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00401, Launch_Mass_kg 825.0, Apogee_km 1008, Perigee_km 949, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.7, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00417, Launch_Mass_kg 825.0, Apogee_km 968, Perigee_km 907, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 103.8, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00388, Launch_Mass_kg 810.0, Apogee_km 1011, Perigee_km 954, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 104.8, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00199, Launch_Mass_kg 810.0, Apogee_km 945, Perigee_km 916, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 103.6, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00367, Launch_Mass_kg 820.0, Apogee_km 1022, Perigee_km 968, Type_of_Orbit "Intermediate", Purpose "Navigation", Period_minutes 105.0, Inclination_radians 1.448623279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 10.0, Apogee_km 796, Perigee_km 789, Type_of_Orbit "Intermediate", Purpose "Technology Development/Communications", Period_minutes 100.7, Inclination_radians 1.169370599, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00134, Launch_Mass_kg 7000.0, Apogee_km 733, Perigee_km 714, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 99.2, Inclination_radians 1.715658655, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 5.8E-4, Launch_Mass_kg 1.0, Apogee_km 507, Perigee_km 499, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "France", Eccentricity 2.8E-4, Launch_Mass_kg 150.0, Apogee_km 729, Perigee_km 725, Type_of_Orbit "Sun-Synchronous", Purpose "Solar Physics", Period_minutes 99.3, Inclination_radians 1.715658655, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "ISS", Country_of_Operator "Vietnam", Eccentricity 2.9E-4, Launch_Mass_kg 1.0, Apogee_km 414, Perigee_km 410, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 92.81, Inclination_radians 0.901462559, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Italy", Eccentricity 1.4E-4, Launch_Mass_kg 1000.0, Apogee_km 699, Perigee_km 697, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 9.2E-4, Launch_Mass_kg 970.0, Apogee_km 691, Perigee_km 678, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.45, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.00193, Launch_Mass_kg 5.0, Apogee_km 627, Perigee_km 600, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.0, Inclination_radians 1.713913325, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "ESA", Eccentricity 0.00881, Launch_Mass_kg 100.0, Apogee_km 676, Perigee_km 553, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Demonstration", Period_minutes 96.98, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.00141, Launch_Mass_kg 130.0, Apogee_km 728, Perigee_km 708, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Demonstration", Period_minutes 99.2, Inclination_radians 1.715658655, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 4.9E-4, Launch_Mass_kg 140.0, Apogee_km 820, Perigee_km 813, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.21, Inclination_radians 1.72316357, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg nil, Apogee_km 506, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 502, Perigee_km 498, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.68, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Peru", Eccentricity 0.00365, Launch_Mass_kg 1.0, Apogee_km 640, Perigee_km 589, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.9, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 5514.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 1.5E-4, Launch_Mass_kg nil, Apogee_km 450, Perigee_km 448, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 93.6, Inclination_radians 1.696460033, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 0.07511, Launch_Mass_kg 4000.0, Apogee_km 38950, Perigee_km 32618, Type_of_Orbit "", Purpose "Navigation", Period_minutes 1436.0, Inclination_radians 0.698131701, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 1.4E-4, Launch_Mass_kg 2924.0, Apogee_km 793, Perigee_km 791, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.7, Inclination_radians 1.720894642, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.01668, Launch_Mass_kg nil, Apogee_km 2165, Perigee_km 1885, Type_of_Orbit "", Purpose "Amateur Radio", Period_minutes 127.45, Inclination_radians 1.127308164, Users "Civil", Class_of_Orbit "MEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.004, Launch_Mass_kg 2400.0, Apogee_km 35949, Perigee_km 35612, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.79, Inclination_radians 0.025132741, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.0E-5, Launch_Mass_kg 2500.0, Apogee_km 35788, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 1.74533E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.4E-4, Launch_Mass_kg 2400.0, Apogee_km 35797, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.001745329, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 350.0, Apogee_km 1202, Perigee_km 1199, Type_of_Orbit "Polar", Purpose "Technology Development", Period_minutes 109.42, Inclination_radians 1.570796327, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00236, Launch_Mass_kg 175.0, Apogee_km 646, Perigee_km 613, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00121, Launch_Mass_kg 175.0, Apogee_km 638, Perigee_km 621, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00114, Launch_Mass_kg 175.0, Apogee_km 637, Perigee_km 621, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00121, Launch_Mass_kg 175.0, Apogee_km 638, Perigee_km 621, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00179, Launch_Mass_kg 175.0, Apogee_km 642, Perigee_km 617, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.3, Inclination_radians 1.708677338, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Turkey", Eccentricity 0.00213, Launch_Mass_kg 113.0, Apogee_km 697, Perigee_km 667, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.4, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 1.0E-5, Launch_Mass_kg 3050.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Kwajalein Island", Country_of_Operator "Malaysia", Eccentricity 0.00177, Launch_Mass_kg 180.0, Apogee_km 688, Perigee_km 663, Type_of_Orbit "Intermediate", Purpose "Remote Sensing", Period_minutes 98.3, Inclination_radians 0.157079633, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Japan", Eccentricity 0.00308, Launch_Mass_kg 70.0, Apogee_km 638, Perigee_km 595, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.0, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 4.2E-4, Launch_Mass_kg 1206.0, Apogee_km 823, Perigee_km 817, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.3, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.0E-4, Launch_Mass_kg 6650.0, Apogee_km 571, Perigee_km 564, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 96.0, Inclination_radians 1.219985147, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.5E-4, Launch_Mass_kg 5900.0, Apogee_km 472, Perigee_km 459, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 93.9, Inclination_radians 1.696460033, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 2.2E-4, Launch_Mass_kg 1858.0, Apogee_km 541, Perigee_km 538, Type_of_Orbit "Sun-Synchronous", Purpose "Surveillance", Period_minutes 95.4, Inclination_radians 1.70344135, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India", Eccentricity 8.8E-4, Launch_Mass_kg 93.0, Apogee_km 427, Perigee_km 415, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 41.2, Inclination_radians 0.719424718, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.7E-4, Launch_Mass_kg 225.0, Apogee_km 1448, Perigee_km 1436, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.7, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 280.0, Apogee_km 1511, Perigee_km 1480, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00203, Launch_Mass_kg 280.0, Apogee_km 1509, Perigee_km 1477, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00203, Launch_Mass_kg 280.0, Apogee_km 1510, Perigee_km 1478, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.0E-4, Launch_Mass_kg 280.0, Apogee_km 1509, Perigee_km 1498, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 116.0, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00159, Launch_Mass_kg 280.0, Apogee_km 1507, Perigee_km 1482, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 7.0E-4, Launch_Mass_kg 280.0, Apogee_km 1506, Perigee_km 1495, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 116.0, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 1.9E-4, Launch_Mass_kg 225.0, Apogee_km 1496, Perigee_km 1493, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00134, Launch_Mass_kg 225.0, Apogee_km 1505, Perigee_km 1484, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 280.0, Apogee_km 1512, Perigee_km 1481, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00273, Launch_Mass_kg 250.0, Apogee_km 1516, Perigee_km 1473, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00273, Launch_Mass_kg 250.0, Apogee_km 1516, Perigee_km 1473, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00248, Launch_Mass_kg 250.0, Apogee_km 1514, Perigee_km 1475, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.86, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00197, Launch_Mass_kg 280.0, Apogee_km 1509, Perigee_km 1478, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.9, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00191, Launch_Mass_kg 280.0, Apogee_km 1507, Perigee_km 1477, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00184, Launch_Mass_kg 280.0, Apogee_km 1511, Perigee_km 1482, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.68665, Launch_Mass_kg 1200.0, Apogee_km 120715, Perigee_km 17240, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3431.1, Inclination_radians 1.584758961, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Multinational", Eccentricity 1.4E-4, Launch_Mass_kg 485.0, Apogee_km 704, Perigee_km 702, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Research", Period_minutes 98.8, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Argentina/USA", Eccentricity 1.4E-4, Launch_Mass_kg 1600.0, Apogee_km 655, Perigee_km 653, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 97.8, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.6916, Launch_Mass_kg 1200.0, Apogee_km 120768, Perigee_km 16809, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3418.2, Inclination_radians 1.583013632, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.68969, Launch_Mass_kg 1200.0, Apogee_km 120923, Perigee_km 17007, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3430.28, Inclination_radians 1.579522973, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Canada", Eccentricity 0.00105, Launch_Mass_kg 148.0, Apogee_km 787, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Space Observation", Period_minutes 100.4, Inclination_radians 1.720894642, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "India/France", Eccentricity 2.1E-4, Launch_Mass_kg 407.0, Apogee_km 785, Perigee_km 782, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Science", Period_minutes 100.53, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.0027, Launch_Mass_kg 770.0, Apogee_km 505, Perigee_km 468, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.3, Inclination_radians 1.713913325, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00241, Launch_Mass_kg 770.0, Apogee_km 503, Perigee_km 470, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.34, Inclination_radians 1.713738793, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00168, Launch_Mass_kg 770.0, Apogee_km 496, Perigee_km 473, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.3, Inclination_radians 1.713389727, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00278, Launch_Mass_kg 770.0, Apogee_km 486, Perigee_km 448, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.4, Inclination_radians 1.713215194, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Germany", Eccentricity 0.00204, Launch_Mass_kg 770.0, Apogee_km 502, Perigee_km 474, Type_of_Orbit "", Purpose "Surveillance", Period_minutes 94.37, Inclination_radians 1.713215194, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 2.0E-4, Launch_Mass_kg 2276.0, Apogee_km 35794, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.012915436, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 1.5E-4, Launch_Mass_kg 3542.0, Apogee_km 35792, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Mexico", Eccentricity 2.4E-4, Launch_Mass_kg 5456.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Mexico", Eccentricity 1.9E-4, Launch_Mass_kg 5474.0, Apogee_km 35795, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commecial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00353, Launch_Mass_kg 12.0, Apogee_km 747, Perigee_km 697, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.2, Inclination_radians 1.710422667, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00591, Launch_Mass_kg 12.0, Apogee_km 780, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.6, Inclination_radians 1.712167996, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.0044, Launch_Mass_kg 12.0, Apogee_km 714, Perigee_km 652, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.4, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00686, Launch_Mass_kg 12.0, Apogee_km 746, Perigee_km 649, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.7, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00524, Launch_Mass_kg 12.0, Apogee_km 725, Perigee_km 651, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.5, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00778, Launch_Mass_kg 12.0, Apogee_km 758, Perigee_km 648, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.8, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00609, Launch_Mass_kg 12.0, Apogee_km 736, Perigee_km 650, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 98.6, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00705, Launch_Mass_kg 10.0, Apogee_km 702, Perigee_km 603, Type_of_Orbit "Intermediate", Purpose "Scientific Research", Period_minutes 97.8, Inclination_radians 1.127482697, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00268, Launch_Mass_kg 35.0, Apogee_km 734, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Research", Period_minutes 99.1, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Saudi Arabia", Eccentricity 0.00149, Launch_Mass_kg 200.0, Apogee_km 677, Perigee_km 656, Type_of_Orbit "", Purpose "Earth Observation/Research", Period_minutes 98.1, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.0E-4, Launch_Mass_kg 4500.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.11, Inclination_radians 0.112573737, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 4500.0, Apogee_km 35790, Perigee_km 35770, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.11, Inclination_radians 0.112573737, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.2E-4, Launch_Mass_kg 1031.0, Apogee_km 541, Perigee_km 538, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 95.43, Inclination_radians 1.710248134, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5000.0, Apogee_km 1100, Perigee_km 1100, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.26, Inclination_radians 1.099557429, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 5000.0, Apogee_km 1100, Perigee_km 1100, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.26, Inclination_radians 1.099557429, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01251, Launch_Mass_kg 5000.0, Apogee_km 1200, Perigee_km 1013, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01277, Launch_Mass_kg 5000.0, Apogee_km 1202, Perigee_km 1011, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.0125, Launch_Mass_kg 5000.0, Apogee_km 1203, Perigee_km 1016, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01243, Launch_Mass_kg 5000.0, Apogee_km 1203, Perigee_km 1017, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01237, Launch_Mass_kg 5000.0, Apogee_km 1200, Perigee_km 1015, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.01237, Launch_Mass_kg 5000.0, Apogee_km 1201, Perigee_km 1016, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0125, Launch_Mass_kg 5000.0, Apogee_km 1201, Perigee_km 1014, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01243, Launch_Mass_kg nil, Apogee_km 1205, Perigee_km 1019, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.5, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01277, Launch_Mass_kg 6500.0, Apogee_km 1203, Perigee_km 1012, Type_of_Orbit "", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.01277, Launch_Mass_kg 6500.0, Apogee_km 1203, Perigee_km 1012, Type_of_Orbit "", Purpose "Electronic Surveillance/Ocean", Period_minutes 107.4, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Brazil", Eccentricity 0.00422, Launch_Mass_kg 110.0, Apogee_km 776, Perigee_km 716, Type_of_Orbit "Intermediate", Purpose "Meteorology/Earth Observation", Period_minutes 99.7, Inclination_radians 0.436332313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Brazil", Eccentricity 0.00176, Launch_Mass_kg 110.0, Apogee_km 760, Perigee_km 735, Type_of_Orbit "Intermediate", Purpose "Meteorology/Earth Observation", Period_minutes 99.8, Inclination_radians 0.436332313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "Canada", Eccentricity 7.8E-4, Launch_Mass_kg 150.0, Apogee_km 649, Perigee_km 638, Type_of_Orbit "Intermediate", Purpose "Space Science", Period_minutes 97.6, Inclination_radians 1.289798317, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 3100.0, Apogee_km 35791, Perigee_km 35779, Type_of_Orbit "", Purpose "Space Science", Period_minutes 1436.03, Inclination_radians 0.488692191, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.8E-4, Launch_Mass_kg nil, Apogee_km 35815, Perigee_km 35758, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 1436.13, Inclination_radians 0.044854962, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.0E-4, Launch_Mass_kg nil, Apogee_km 35812, Perigee_km 35761, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.043807764, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.74119, Launch_Mass_kg nil, Apogee_km 39850, Perigee_km 500, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 717.7, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.74504, Launch_Mass_kg nil, Apogee_km 39966, Perigee_km 400, Type_of_Orbit "Molniya", Purpose "Communications", Period_minutes 718.0, Inclination_radians 1.047197551, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.9E-4, Launch_Mass_kg nil, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 14.36, Inclination_radians 0.085870199, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg nil, Apogee_km 35805, Perigee_km 35771, Type_of_Orbit "", Purpose "Electronic Surveillance", Period_minutes 23.94, Inclination_radians 0.085695666, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 8.5E-4, Launch_Mass_kg 50.0, Apogee_km 673, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.1, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Japan", Eccentricity 0.00143, Launch_Mass_kg 3.0, Apogee_km 627, Perigee_km 607, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg nil, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 3200.0, Apogee_km 35798, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.19, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 3112.0, Apogee_km 35852, Perigee_km 35850, Type_of_Orbit "", Purpose "Communications", Period_minutes 1439.41, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.3E-4, Launch_Mass_kg nil, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 6007.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-4, Launch_Mass_kg 6140.0, Apogee_km 35816, Perigee_km 35757, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.002268928, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 4007.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.1E-4, Launch_Mass_kg 3138.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0012, Launch_Mass_kg nil, Apogee_km 703, Perigee_km 686, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 98.7, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00127, Launch_Mass_kg nil, Apogee_km 704, Perigee_km 686, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00106, Launch_Mass_kg nil, Apogee_km 703, Perigee_km 688, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00106, Launch_Mass_kg nil, Apogee_km 704, Perigee_km 689, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.7, Inclination_radians 1.712167996, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00129, Launch_Mass_kg nil, Apogee_km 601, Perigee_km 583, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.5, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.5E-4, Launch_Mass_kg nil, Apogee_km 673, Perigee_km 661, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.08, Inclination_radians 1.711469865, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00122, Launch_Mass_kg nil, Apogee_km 616, Perigee_km 599, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 96.85, Inclination_radians 1.308647873, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00194, Launch_Mass_kg nil, Apogee_km 606, Perigee_km 579, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.9E-4, Launch_Mass_kg nil, Apogee_km 598, Perigee_km 587, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.2E-4, Launch_Mass_kg nil, Apogee_km 594, Perigee_km 591, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg nil, Apogee_km 595, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00187, Launch_Mass_kg nil, Apogee_km 607, Perigee_km 581, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.6, Inclination_radians 1.70344135, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0018, Launch_Mass_kg nil, Apogee_km 603, Perigee_km 578, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 96.5, Inclination_radians 1.70344135, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00136, Launch_Mass_kg nil, Apogee_km 603, Perigee_km 584, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00115, Launch_Mass_kg nil, Apogee_km 602, Perigee_km 586, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.6, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00411, Launch_Mass_kg nil, Apogee_km 591, Perigee_km 534, Type_of_Orbit "Sun-Synchronous", Purpose "Space Physics", Period_minutes 95.9, Inclination_radians 1.705186679, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00193, Launch_Mass_kg nil, Apogee_km 650, Perigee_km 623, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.44, Inclination_radians 1.710248134, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00193, Launch_Mass_kg nil, Apogee_km 651, Perigee_km 624, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.46, Inclination_radians 1.710248134, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00108, Launch_Mass_kg 204.0, Apogee_km 601, Perigee_km 586, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 96.6, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00126, Launch_Mass_kg 300.0, Apogee_km 803, Perigee_km 785, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Research", Period_minutes 100.8, Inclination_radians 1.719149313, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00126, Launch_Mass_kg 300.0, Apogee_km 802, Perigee_km 784, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing/Research", Period_minutes 100.7, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00112, Launch_Mass_kg 204.0, Apogee_km 755, Perigee_km 739, Type_of_Orbit "", Purpose "Remote Sensing/Research", Period_minutes 99.7, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.8E-4, Launch_Mass_kg nil, Apogee_km 672, Perigee_km 668, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.15, Inclination_radians 1.711469865, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Ukraine", Eccentricity 0.0012, Launch_Mass_kg 169.0, Apogee_km 701, Perigee_km 684, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.6, Inclination_radians 1.713913325, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Italy", Eccentricity 3.9E-4, Launch_Mass_kg 2596.0, Apogee_km 35802, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.017627825, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Italy", Eccentricity 1.7E-4, Launch_Mass_kg 3038.0, Apogee_km 35802, Perigee_km 35788, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.52, Inclination_radians 6.98132E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Iran", Eccentricity 0.00156, Launch_Mass_kg 170.0, Apogee_km 703, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Research", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.0E-5, Launch_Mass_kg 5000.0, Apogee_km 35796, Perigee_km 35794, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.005235988, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.27883, Launch_Mass_kg 3727.0, Apogee_km 47100, Perigee_km 23783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1418.5, Inclination_radians 1.104793417, Users "Commercial", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.47082, Launch_Mass_kg 3792.0, Apogee_km 47048, Perigee_km 12849, Type_of_Orbit "", Purpose "Communications", Period_minutes 1148.43, Inclination_radians 1.104793417, Users "Commercial", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 0.61976, Launch_Mass_kg 3727.0, Apogee_km 47086, Perigee_km 6179, Type_of_Orbit "", Purpose "Communications", Period_minutes 994.83, Inclination_radians 1.106538746, Users "Commercial", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Sweden", Eccentricity 2.3E-4, Launch_Mass_kg 4400.0, Apogee_km 35795, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.8E-4, Launch_Mass_kg 5800.0, Apogee_km 35798, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 6020.0, Apogee_km 35791, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.16, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.9E-4, Launch_Mass_kg 5983.0, Apogee_km 35795, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.6E-4, Launch_Mass_kg 1474.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.164584548, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 2.7E-4, Launch_Mass_kg 1510.0, Apogee_km 35797, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.08709193, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.3E-4, Launch_Mass_kg 1510.0, Apogee_km 35801, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.15, Inclination_radians 0.056374135, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.7E-4, Launch_Mass_kg 4700.0, Apogee_km 35802, Perigee_km 35771, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 0.00122, Launch_Mass_kg 4635.0, Apogee_km 35803, Perigee_km 35700, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 3.9E-4, Launch_Mass_kg 4600.0, Apogee_km 35803, Perigee_km 35770, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.009250245, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Kingdom", Eccentricity 8.0E-5, Launch_Mass_kg 4638.0, Apogee_km 35793, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.24, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "USA", Eccentricity 0.0023, Launch_Mass_kg nil, Apogee_km 599, Perigee_km 567, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 96.34, Inclination_radians 1.707106541, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 1.1E-4, Launch_Mass_kg 5360.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.105766953, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.4072, Launch_Mass_kg nil, Apogee_km 11600, Perigee_km 1200, Type_of_Orbit "", Purpose "Communications", Period_minutes 240.0, Inclination_radians 1.106538746, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.0211, Launch_Mass_kg 4.5, Apogee_km 791, Perigee_km 495, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.5, Inclination_radians 1.127482697, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.02184, Launch_Mass_kg 3.0, Apogee_km 789, Perigee_km 483, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.4, Inclination_radians 1.127482697, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg 5.0, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 7.0E-5, Launch_Mass_kg 658.0, Apogee_km 760, Perigee_km 759, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.0, Inclination_radians 1.717403984, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg nil, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Communications", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan", Eccentricity 5.7E-4, Launch_Mass_kg 50.0, Apogee_km 665, Perigee_km 657, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 1.712167996, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00236, Launch_Mass_kg 315.0, Apogee_km 633, Perigee_km 600, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 97.0, Inclination_radians 0.698131701, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 6100.0, Apogee_km 35787, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 5993.0, Apogee_km 35787, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.0E-5, Launch_Mass_kg 5993.0, Apogee_km 35787, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 9.6E-4, Launch_Mass_kg 3680.0, Apogee_km 35826, Perigee_km 35745, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Multinational", Eccentricity 0.95712, Launch_Mass_kg 3660.0, Apogee_km 330000, Perigee_km 1000, Type_of_Orbit "", Purpose "Astrophysics", Period_minutes 0.22, Inclination_radians 0.898146433, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.71556, Launch_Mass_kg 117.0, Apogee_km 35717, Perigee_km 608, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 637.65, Inclination_radians 0.033859387, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 0.71478, Launch_Mass_kg 117.0, Apogee_km 35697, Perigee_km 627, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 637.64, Inclination_radians 0.033510322, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Guiana Space Center", Country_of_Operator "France/Belgium/Sweden", Eccentricity 1.4E-4, Launch_Mass_kg 3030.0, Apogee_km 826, Perigee_km 824, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.4, Inclination_radians 1.720894642, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "France/Belgium/Sweden", Eccentricity 2.1E-4, Launch_Mass_kg 720.0, Apogee_km 699, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.73, Inclination_radians 1.713913325, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00124, Launch_Mass_kg 10.9, Apogee_km 868, Perigee_km 850, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 102.1, Inclination_radians 0.34906585, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Chile", Eccentricity 1.4E-4, Launch_Mass_kg 117.0, Apogee_km 624, Perigee_km 622, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 97.2, Inclination_radians 1.710422667, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Singapore/Taiwan", Eccentricity 9.0E-5, Launch_Mass_kg 5090.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 8.9E-4, Launch_Mass_kg 4100.0, Apogee_km 35778, Perigee_km 35703, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 2.4E-4, Launch_Mass_kg 4100.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Brazil", Eccentricity 6.8E-4, Launch_Mass_kg 3225.0, Apogee_km 35848, Perigee_km 35791, Type_of_Orbit "", Purpose "Communications", Period_minutes 1437.78, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 4.4E-4, Launch_Mass_kg 3.0, Apogee_km 506, Perigee_km 500, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.0, Launch_Mass_kg 180.0, Apogee_km 650, Perigee_km 650, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.73, Inclination_radians 1.256637061, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.3E-4, Launch_Mass_kg 137.0, Apogee_km 507, Perigee_km 497, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.66, Inclination_radians 0.70703288, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "United Kingdom", Eccentricity 7.7E-4, Launch_Mass_kg 4.3, Apogee_km 783, Perigee_km 772, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 100.4, Inclination_radians 1.720894642, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.0E-4, Launch_Mass_kg 225.0, Apogee_km 1431, Perigee_km 1417, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.3, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 5.1E-4, Launch_Mass_kg 225.0, Apogee_km 1425, Perigee_km 1417, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.2, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.6E-4, Launch_Mass_kg 225.0, Apogee_km 1419, Perigee_km 1415, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 114.2, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00242, Launch_Mass_kg 225.0, Apogee_km 1506, Perigee_km 1468, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.7, Inclination_radians 0.148352986, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00255, Launch_Mass_kg 225.0, Apogee_km 1506, Perigee_km 1466, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.7, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00229, Launch_Mass_kg 225.0, Apogee_km 1503, Perigee_km 1467, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.7, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00236, Launch_Mass_kg 225.0, Apogee_km 1502, Perigee_km 1465, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.6, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00153, Launch_Mass_kg 225.0, Apogee_km 1495, Perigee_km 1471, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.5, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00134, Launch_Mass_kg 225.0, Apogee_km 1495, Perigee_km 1474, Type_of_Orbit "Intermediate", Purpose "Communications", Period_minutes 115.6, Inclination_radians 1.439896633, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Naro Space Center", Country_of_Operator "South Korea", Eccentricity 0.08154, Launch_Mass_kg 93.0, Apogee_km 1482, Perigee_km 298, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 102.77, Inclination_radians 1.401150324, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "South Korea", Eccentricity 0.00236, Launch_Mass_kg 150.0, Apogee_km 626, Perigee_km 593, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 96.88, Inclination_radians 1.707106541, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 8.3E-4, Launch_Mass_kg nil, Apogee_km 879, Perigee_km 867, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 102.41, Inclination_radians 1.726654229, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 3.2E-4, Launch_Mass_kg 2240.0, Apogee_km 1352, Perigee_km 1347, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 112.68, Inclination_radians 1.012290966, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 7.8E-4, Launch_Mass_kg 2240.0, Apogee_km 1351, Perigee_km 1339, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 112.58, Inclination_radians 1.012290966, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00143, Launch_Mass_kg 0.85, Apogee_km 634, Perigee_km 614, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.2, Inclination_radians 1.710422667, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.9E-4, Launch_Mass_kg 5000.0, Apogee_km 35794, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.002094395, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Japan", Eccentricity 1.7E-4, Launch_Mass_kg 4051.0, Apogee_km 35793, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Japan", Eccentricity 1.3E-4, Launch_Mass_kg 3130.0, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Uchinoura Space Center", Country_of_Operator "Japan/USA", Eccentricity 7.2E-4, Launch_Mass_kg 1600.0, Apogee_km 558, Perigee_km 548, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 95.7, Inclination_radians 0.548033385, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 2.2E-4, Launch_Mass_kg 468.0, Apogee_km 476, Perigee_km 473, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.9, Inclination_radians 1.523672437, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 2.2E-4, Launch_Mass_kg 468.0, Apogee_km 476, Perigee_km 473, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 93.9, Inclination_radians 1.523672437, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "ESA", Eccentricity 7.3E-4, Launch_Mass_kg 468.0, Apogee_km 496, Perigee_km 486, Type_of_Orbit "Polar", Purpose "Earth Science", Period_minutes 94.0, Inclination_radians 1.527163095, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA/United Kingdom/Italy", Eccentricity 0.00137, Launch_Mass_kg 1463.0, Apogee_km 590, Perigee_km 571, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 96.3, Inclination_radians 0.359537826, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Switzerland", Eccentricity 7.1E-4, Launch_Mass_kg 1.0, Apogee_km 720, Perigee_km 710, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 99.1, Inclination_radians 1.715658655, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 1.7E-4, Launch_Mass_kg 3725.0, Apogee_km 35792, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "France", Eccentricity 3.4E-4, Launch_Mass_kg 3750.0, Apogee_km 35801, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Kodiak Launch Complex", Country_of_Operator "USA", Eccentricity 0.44297, Launch_Mass_kg 450.0, Apogee_km 11836, Perigee_km 658, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 235.16, Inclination_radians 1.110727536, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 0.03149, Launch_Mass_kg nil, Apogee_km 886, Perigee_km 443, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 98.0, Inclination_radians 2.09963109, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 2.2E-4, Launch_Mass_kg 1350.0, Apogee_km 510, Perigee_km 507, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 94.8, Inclination_radians 1.699950691, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "ESA", Eccentricity 0.68635, Launch_Mass_kg 1200.0, Apogee_km 120961, Perigee_km 17313, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 3442.0, Inclination_radians 1.583013632, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.0E-4, Launch_Mass_kg 3180.0, Apogee_km 35802, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.0286234, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00133, Launch_Mass_kg 3454.0, Apogee_km 35844, Perigee_km 35732, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.18, Inclination_radians 0.122173048, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 3454.0, Apogee_km 35785, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.88, Inclination_radians 0.121998515, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00219, Launch_Mass_kg 3180.0, Apogee_km 35878, Perigee_km 35693, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.201236463, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.7E-4, Launch_Mass_kg 3180.0, Apogee_km 35796, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.99, Inclination_radians 0.16406095, Users "Government/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.7E-4, Launch_Mass_kg 3180.0, Apogee_km 35787, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.7, Inclination_radians 0.152541777, Users "Government/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.3E-4, Launch_Mass_kg 3180.0, Apogee_km 35803, Perigee_km 35767, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.04, Inclination_radians 0.185004901, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.7E-4, Launch_Mass_kg 3180.0, Apogee_km 35808, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.2, Inclination_radians 0.015707963, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 3180.0, Apogee_km 35809, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Israel", Eccentricity 0.01275, Launch_Mass_kg 300.0, Apogee_km 580, Perigee_km 405, Type_of_Orbit "", Purpose "Reconnaissance", Period_minutes 94.5, Inclination_radians 0.716108592, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Indonesia", Eccentricity 2.1E-4, Launch_Mass_kg 2763.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Indonesia", Eccentricity 1.4E-4, Launch_Mass_kg 1930.0, Apogee_km 35793, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Canada", Eccentricity 3.2E-4, Launch_Mass_kg 4010.0, Apogee_km 35801, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Multinational", Eccentricity 3.1E-4, Launch_Mass_kg 3878.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Canada", Eccentricity 9.0E-5, Launch_Mass_kg 4970.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "Multinational", Eccentricity 2.0E-4, Launch_Mass_kg 4640.0, Apogee_km 35795, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 1.5E-4, Launch_Mass_kg 1230.0, Apogee_km 509, Perigee_km 507, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 94.8, Inclination_radians 1.701696021, Users "Government/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 6910.0, Apogee_km 35791, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.103672558, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00498, Launch_Mass_kg 1108.0, Apogee_km 598, Perigee_km 529, Type_of_Orbit "", Purpose "Remote Sensing/Reconnaissance", Period_minutes 95.9, Inclination_radians 1.706932008, Users "Government/Military", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Germany", Eccentricity 2.9E-4, Launch_Mass_kg 120.0, Apogee_km 505, Perigee_km 501, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Thailand", Eccentricity 2.7E-4, Launch_Mass_kg 6505.0, Apogee_km 35798, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Thailand", Eccentricity 2.3E-4, Launch_Mass_kg 2800.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Thailand", Eccentricity 1.2E-4, Launch_Mass_kg 3325.0, Apogee_km 35796, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.3, Inclination_radians 8.72665E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.86407, Launch_Mass_kg 126.0, Apogee_km 87304, Perigee_km 461, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 1868.98, Inclination_radians 0.274016693, Users "Government/Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.8639, Launch_Mass_kg 126.0, Apogee_km 87260, Perigee_km 467, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 1867.91, Inclination_radians 0.274016693, Users "Government/Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.86413, Launch_Mass_kg 126.0, Apogee_km 87526, Perigee_km 474, Type_of_Orbit "", Purpose "Space Physics", Period_minutes 1875.53, Inclination_radians 0.274016693, Users "Government/Civil", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Thailand", Eccentricity 1.4E-4, Launch_Mass_kg 750.0, Apogee_km 826, Perigee_km 824, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.4, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Norway", Eccentricity 2.1E-4, Launch_Mass_kg 1400.0, Apogee_km 35795, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.00122173, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Norway", Eccentricity 3.0E-4, Launch_Mass_kg 2024.0, Apogee_km 35798, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Norway", Eccentricity 1.8E-4, Launch_Mass_kg 3050.0, Apogee_km 35794, Perigee_km 35779, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "United Arab Emirates", Eccentricity 5.1E-4, Launch_Mass_kg 5250.0, Apogee_km 35807, Perigee_km 35764, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.052185345, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "United Arab Emirates", Eccentricity 4.9E-4, Launch_Mass_kg 5180.0, Apogee_km 35807, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.101927228, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.0E-4, Launch_Mass_kg 35.0, Apogee_km 475, Perigee_km 464, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.0, Inclination_radians 1.699950691, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 8506.0, Apogee_km 361, Perigee_km 360, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 91.8, Inclination_radians 0.74700092, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00117, Launch_Mass_kg 2500.0, Apogee_km 504, Perigee_km 488, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 94.5, Inclination_radians 1.699950691, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00146, Launch_Mass_kg 2500.0, Apogee_km 505, Perigee_km 485, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 94.5, Inclination_radians 1.699950691, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 5.2E-4, Launch_Mass_kg 3750.0, Apogee_km 35813, Perigee_km 35769, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.08, Inclination_radians 0.001047198, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.8E-4, Launch_Mass_kg 2250.0, Apogee_km 37794, Perigee_km 37778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.017453293, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.0E-4, Launch_Mass_kg 2200.0, Apogee_km 35802, Perigee_km 35768, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.0, Inclination_radians 0.035604717, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.2E-4, Launch_Mass_kg 9.3, Apogee_km 459, Perigee_km 456, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 93.7, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 7.0E-5, Launch_Mass_kg 587.0, Apogee_km 613, Perigee_km 612, Type_of_Orbit "Intermediate", Purpose "Astrophysics", Period_minutes 97.0, Inclination_radians 1.293288976, Users "Government/Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Switzerland", Eccentricity 0.00143, Launch_Mass_kg 1.0, Apogee_km 631, Perigee_km 611, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.1, Inclination_radians 1.710422667, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Bolivia", Eccentricity 3.1E-4, Launch_Mass_kg 5000.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.004712389, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 0.00163, Launch_Mass_kg 120.0, Apogee_km 704, Perigee_km 681, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation/Technology Development", Period_minutes 98.6, Inclination_radians 1.708677338, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Netherlands", Eccentricity 0.01206, Launch_Mass_kg 2.5, Apogee_km 764, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 98.1, Inclination_radians 1.705186679, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Tanegashima Space Center", Country_of_Operator "Japan/USA", Eccentricity 0.0, Launch_Mass_kg 3820.0, Apogee_km 400, Perigee_km 400, Type_of_Orbit "Intermediate", Purpose "Earth Observation", Period_minutes 92.6, Inclination_radians 0.610865238, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.71228, Launch_Mass_kg 8000.0, Apogee_km 38740, Perigee_km 1210, Type_of_Orbit "Molniya", Purpose "Electronic Surveillance", Period_minutes 709.61, Inclination_radians 1.129228026, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 9.7E-4, Launch_Mass_kg 3200.0, Apogee_km 858, Perigee_km 844, Type_of_Orbit "Intermediate", Purpose "Electronic Surveillance", Period_minutes 102.0, Inclination_radians 1.239183769, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Satish Dhawan Space Center", Country_of_Operator "Austria", Eccentricity 9.8E-4, Launch_Mass_kg 14.0, Apogee_km 784, Perigee_km 770, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 100.3, Inclination_radians 1.720894642, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Turkey", Eccentricity 1.8E-4, Launch_Mass_kg 3100.0, Apogee_km 35793, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00114, Launch_Mass_kg 3200.0, Apogee_km 35834, Perigee_km 35738, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.034382986, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 3200.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.037699112, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 4.9E-4, Launch_Mass_kg 3200.0, Apogee_km 35807, Perigee_km 35766, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.144338729, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 3200.0, Apogee_km 35775, Perigee_km 35763, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.22, Inclination_radians 0.058293997, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00101, Launch_Mass_kg 3200.0, Apogee_km 35829, Perigee_km 35744, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 0.071733032, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00115, Launch_Mass_kg 3200.0, Apogee_km 35835, Perigee_km 35738, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.066147979, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 2.6E-4, Launch_Mass_kg 3206.0, Apogee_km 35794, Perigee_km 35772, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.94, Inclination_radians 0.091455253, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Kingdom", Eccentricity 1.4E-4, Launch_Mass_kg 96.5, Apogee_km 662, Perigee_km 660, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 98.0, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Italy", Eccentricity 0.00696, Launch_Mass_kg 12.0, Apogee_km 795, Perigee_km 696, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 99.7, Inclination_radians 1.712167996, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Italy", Eccentricity 0.0098, Launch_Mass_kg 12.0, Apogee_km 640, Perigee_km 504, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.0, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00247, Launch_Mass_kg 2400.0, Apogee_km 35904, Perigee_km 35696, Type_of_Orbit "", Purpose "Early Warning", Period_minutes 1436.39, Inclination_radians 0.039444441, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.73961, Launch_Mass_kg 2400.0, Apogee_km 39807, Perigee_km 542, Type_of_Orbit "Molniya", Purpose "Early Warning", Period_minutes 717.66, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.73497, Launch_Mass_kg 2400.0, Apogee_km 39697, Perigee_km 667, Type_of_Orbit "Molniya", Purpose "Early Warning", Period_minutes 717.9, Inclination_radians 1.09606677, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.73554, Launch_Mass_kg 2400.0, Apogee_km 39128, Perigee_km 563, Type_of_Orbit "Molniya", Purpose "Early Warning", Period_minutes 704.3, Inclination_radians 1.095892237, Users "Military", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Germany", Eccentricity 0.00762, Launch_Mass_kg 1.0, Apogee_km 700, Perigee_km 593, Type_of_Orbit "", Purpose "Communications", Period_minutes 97.6, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.68262, Launch_Mass_kg 647.6, Apogee_km 30534, Perigee_km 591, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 539.06, Inclination_radians 0.175056524, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.68335, Launch_Mass_kg 666.0, Apogee_km 30657, Perigee_km 595, Type_of_Orbit "", Purpose "Earth Science", Period_minutes 541.4, Inclination_radians 0.175231057, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Singapore", Eccentricity 0.00748, Launch_Mass_kg 1.0, Apogee_km 699, Perigee_km 594, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 97.6, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "Venezuela", Eccentricity 2.3E-4, Launch_Mass_kg 5100.0, Apogee_km 35796, Perigee_km 35777, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.003665191, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Wallops Island Flight Facility", Country_of_Operator "USA", Eccentricity 7.3E-4, Launch_Mass_kg 1.0, Apogee_km 504, Perigee_km 494, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.6, Inclination_radians 0.706858347, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "USA", Eccentricity 0.00138, Launch_Mass_kg 28.7, Apogee_km 867, Perigee_km 847, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 102.1, Inclination_radians 0.34906585, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "USA", Eccentricity 8.0E-4, Launch_Mass_kg 29.0, Apogee_km 490, Perigee_km 479, Type_of_Orbit "Sun-Synchronous", Purpose "Communications/Maritime Tracking", Period_minutes 94.3, Inclination_radians 1.701696021, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "USA", Eccentricity 2.5E-4, Launch_Mass_kg 6740.0, Apogee_km 35796, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Vietnam", Eccentricity 1.1E-4, Launch_Mass_kg 2600.0, Apogee_km 35791, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 3.49066E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Vietnam", Eccentricity 4.0E-4, Launch_Mass_kg 2970.0, Apogee_km 35776, Perigee_km 35742, Type_of_Orbit "", Purpose "Communications", Period_minutes 1434.69, Inclination_radians 0.001396263, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Vietnam", Eccentricity 2.1E-4, Launch_Mass_kg 115.0, Apogee_km 685, Perigee_km 682, Type_of_Orbit "", Purpose "Earth Observation", Period_minutes 98.43, Inclination_radians 1.712691595, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "Venezuela", Eccentricity 0.00228, Launch_Mass_kg 880.0, Apogee_km 654, Perigee_km 622, Type_of_Orbit "", Purpose "Remote Sensing", Period_minutes 97.48, Inclination_radians 1.710946266, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 8.0E-5, Launch_Mass_kg 5900.0, Apogee_km 35790, Perigee_km 35783, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5987.0, Apogee_km 35787, Perigee_km 35786, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.12, Inclination_radians 5.23599E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 1.0E-5, Launch_Mass_kg 5990.0, Apogee_km 35786, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.0, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "USA", Eccentricity 2.4E-4, Launch_Mass_kg 4735.0, Apogee_km 35796, Perigee_km 35776, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "Multinational", Eccentricity 0.97287, Launch_Mass_kg 1200.0, Apogee_km 470310, Perigee_km 186, Type_of_Orbit "Cislunar", Purpose "Astrophysics", Period_minutes 19700.45, Inclination_radians 0.500909495, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Japan", Eccentricity 0.01798, Launch_Mass_kg 10.0, Apogee_km 849, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 99.2, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 2.2E-4, Launch_Mass_kg 4500.0, Apogee_km 494, Perigee_km 491, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 94.5, Inclination_radians 1.698205362, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Vandenberg AFB", Country_of_Operator "USA", Eccentricity 1.4E-4, Launch_Mass_kg 2800.0, Apogee_km 767, Perigee_km 765, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.2, Inclination_radians 1.719149313, Users "Military/Commercial", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "Germany", Eccentricity 0.00336, Launch_Mass_kg 2.5, Apogee_km 640, Perigee_km 593, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 97.3, Inclination_radians 1.706932008, Users "Commercial", Class_of_Orbit "LEO"} {Launch_Site "Cape Canaveral", Country_of_Operator "USA", Eccentricity 0.00119, Launch_Mass_kg 4990.0, Apogee_km 358, Perigee_km 342, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 91.54, Inclination_radians 0.759218225, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 0.06675, Launch_Mass_kg 1.0, Apogee_km 1261, Perigee_km 306, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 100.5, Inclination_radians 1.21300383, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.7E-4, Launch_Mass_kg nil, Apogee_km 501, Perigee_km 489, Type_of_Orbit "", Purpose "Technology Development", Period_minutes 94.51, Inclination_radians 1.699078027, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 9.0E-5, Launch_Mass_kg 4703.0, Apogee_km 35790, Perigee_km 35782, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 5193.0, Apogee_km 35787, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 1.74533E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 6.0E-5, Launch_Mass_kg 4682.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.001396263, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Sea Launch (Odyssey)", Country_of_Operator "USA", Eccentricity 4.0E-5, Launch_Mass_kg 4667.0, Apogee_km 35788, Perigee_km 35785, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001570796, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "ESA", Eccentricity 0.79904, Launch_Mass_kg 3764.0, Apogee_km 114027, Perigee_km 7079, Type_of_Orbit "Deep Highly Eccentric", Purpose "Space Physics", Period_minutes 2872.15, Inclination_radians 0.670206433, Users "Government", Class_of_Orbit "Elliptical"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "Singapore", Eccentricity 0.00153, Launch_Mass_kg 91.0, Apogee_km 823, Perigee_km 801, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 101.1, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "Spain", Eccentricity 1.7E-4, Launch_Mass_kg 3631.0, Apogee_km 35792, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 0.001745329, Users "Military/Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.9E-4, Launch_Mass_kg 60.0, Apogee_km 1205, Perigee_km 1193, Type_of_Orbit "Sun-Synchronous", Purpose "Communications", Period_minutes 109.4, Inclination_radians 1.75056524, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Guiana Space Center", Country_of_Operator "United Arab Emirates", Eccentricity 9.5E-4, Launch_Mass_kg 5953.0, Apogee_km 35823, Perigee_km 35743, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.92, Inclination_radians 6.98132E-4, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "United Arab Emirates", Eccentricity 1.3E-4, Launch_Mass_kg 6000.0, Apogee_km 35791, Perigee_km 35780, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.07, Inclination_radians 0.0, Users "Military/Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 3.2E-4, Launch_Mass_kg 1360.0, Apogee_km 35800, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 2.6E-4, Launch_Mass_kg 1320.0, Apogee_km 35796, Perigee_km 35774, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.06, Inclination_radians 6.98132E-4, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00204, Launch_Mass_kg 1640.0, Apogee_km 35866, Perigee_km 35694, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.76, Inclination_radians 0.002443461, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Baikonur Cosmodrome", Country_of_Operator "Russia", Eccentricity 6.0E-5, Launch_Mass_kg 4463.0, Apogee_km 35789, Perigee_km 35784, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.11, Inclination_radians 0.001047198, Users "Commercial", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.1E-4, Launch_Mass_kg nil, Apogee_km 628, Perigee_km 625, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.2, Inclination_radians 1.706932008, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00299, Launch_Mass_kg nil, Apogee_km 668, Perigee_km 626, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.6E-4, Launch_Mass_kg nil, Apogee_km 496, Perigee_km 487, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.4, Inclination_radians 1.699950691, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg nil, Apogee_km 507, Perigee_km 506, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.8, Inclination_radians 1.699950691, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.8E-4, Launch_Mass_kg nil, Apogee_km 481, Perigee_km 469, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.1, Inclination_radians 1.698205362, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.0E-4, Launch_Mass_kg 1040.0, Apogee_km 1207, Perigee_km 1201, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 109.5, Inclination_radians 1.74881991, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.0E-4, Launch_Mass_kg nil, Apogee_km 1089, Perigee_km 1080, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 106.93, Inclination_radians 1.10618968, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.4E-4, Launch_Mass_kg nil, Apogee_km 1090, Perigee_km 1079, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 106.93, Inclination_radians 1.10618968, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.0033, Launch_Mass_kg nil, Apogee_km 1081, Perigee_km 1032, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 106.33, Inclination_radians 1.10618968, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00234, Launch_Mass_kg nil, Apogee_km 1111, Perigee_km 1076, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.12, Inclination_radians 1.106713279, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00208, Launch_Mass_kg nil, Apogee_km 1111, Perigee_km 1080, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.13, Inclination_radians 1.106887812, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.01506, Launch_Mass_kg nil, Apogee_km 1112, Perigee_km 890, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 105.14, Inclination_radians 1.107760476, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.9E-4, Launch_Mass_kg nil, Apogee_km 513, Perigee_km 509, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.84, Inclination_radians 1.702394152, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.0E-4, Launch_Mass_kg nil, Apogee_km 1207, Perigee_km 1201, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 109.51, Inclination_radians 1.753706832, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.002, Launch_Mass_kg 1200.0, Apogee_km 661, Perigee_km 633, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.710422667, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.4E-4, Launch_Mass_kg 2700.0, Apogee_km 627, Perigee_km 625, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.2, Inclination_radians 1.708677338, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00164, Launch_Mass_kg 2700.0, Apogee_km 658, Perigee_km 635, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.706932008, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.3E-4, Launch_Mass_kg 2700.0, Apogee_km 450, Perigee_km 440, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 93.5, Inclination_radians 1.696460033, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-5, Launch_Mass_kg 1800.0, Apogee_km 512, Perigee_km 511, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 94.9, Inclination_radians 1.698205362, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00264, Launch_Mass_kg 2700.0, Apogee_km 665, Perigee_km 628, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 97.7, Inclination_radians 1.710422667, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 8.6E-4, Launch_Mass_kg nil, Apogee_km 1205, Perigee_km 1192, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 109.4, Inclination_radians 1.75056524, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00985, Launch_Mass_kg nil, Apogee_km 1164, Perigee_km 1017, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.1, Inclination_radians 1.106538746, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00985, Launch_Mass_kg nil, Apogee_km 1164, Perigee_km 1017, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.1, Inclination_radians 1.106538746, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00985, Launch_Mass_kg nil, Apogee_km 1164, Perigee_km 1017, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 107.1, Inclination_radians 1.106538746, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Sriharikota Launch Station", Country_of_Operator "India", Eccentricity 0.00153, Launch_Mass_kg 92.0, Apogee_km 824, Perigee_km 802, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 101.2, Inclination_radians 1.722639972, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Plesetsk Cosmodrome", Country_of_Operator "Russia", Eccentricity 0.00184, Launch_Mass_kg 45.0, Apogee_km 1508, Perigee_km 1479, Type_of_Orbit "Intermediate", Purpose "Technology Development", Period_minutes 115.8, Inclination_radians 1.439896633, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Dombarovsky Launch Facility", Country_of_Operator "South Africa", Eccentricity 0.00635, Launch_Mass_kg 1.0, Apogee_km 683, Perigee_km 594, Type_of_Orbit "Sun-Synchronous", Purpose "Technology Development", Period_minutes 94.4, Inclination_radians 1.706932008, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.3E-4, Launch_Mass_kg 1500.0, Apogee_km 454, Perigee_km 444, Type_of_Orbit "Sun-Synchronous", Purpose "Remote Sensing", Period_minutes 93.6, Inclination_radians 1.694714704, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00367, Launch_Mass_kg nil, Apogee_km 606, Perigee_km 555, Type_of_Orbit "Sun-Synchronous", Purpose "Reconnaissance", Period_minutes 96.3, Inclination_radians 1.696460033, Users "Military", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00243, Launch_Mass_kg 3.5, Apogee_km 653, Perigee_km 619, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.4, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Jiuquan Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 0.00235, Launch_Mass_kg 3.5, Apogee_km 653, Perigee_km 620, Type_of_Orbit "Sun-Synchronous", Purpose "Scientific Research", Period_minutes 97.5, Inclination_radians 1.708677338, Users "Civil", Class_of_Orbit "LEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.6E-4, Launch_Mass_kg 5000.0, Apogee_km 35797, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 0.00296706, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 3.3E-4, Launch_Mass_kg 5100.0, Apogee_km 35803, Perigee_km 35775, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.24, Inclination_radians 0.01134464, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 5.7E-4, Launch_Mass_kg 5500.0, Apogee_km 35807, Perigee_km 35759, Type_of_Orbit "", Purpose "Communications", Period_minutes 1435.92, Inclination_radians 6.98132E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.1E-4, Launch_Mass_kg 5200.0, Apogee_km 35796, Perigee_km 35778, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.13, Inclination_radians 0.005235988, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 3.1E-4, Launch_Mass_kg 2300.0, Apogee_km 35799, Perigee_km 35773, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.05, Inclination_radians 0.009599311, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 4.7E-4, Launch_Mass_kg 2300.0, Apogee_km 35807, Perigee_km 35767, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 0.00122173, Users "Military", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 1.3E-4, Launch_Mass_kg 5200.0, Apogee_km 35792, Perigee_km 35781, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.09, Inclination_radians 0.003316126, Users "Military/Government", Class_of_Orbit "GEO"} {Launch_Site "Xichang Satellite Launch Center", Country_of_Operator "China (PR)", Eccentricity 6.3E-4, Launch_Mass_kg nil, Apogee_km 35812, Perigee_km 35759, Type_of_Orbit "", Purpose "Communications", Period_minutes 1436.1, Inclination_radians 5.23599E-4, Users "Government", Class_of_Orbit "GEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 7.0E-4, Launch_Mass_kg 1500.0, Apogee_km 773, Perigee_km 763, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 100.2, Inclination_radians 1.720196511, Users "Government", Class_of_Orbit "LEO"} {Launch_Site "Taiyuan Launch Center", Country_of_Operator "China (PR)", Eccentricity 2.9E-4, Launch_Mass_kg 2650.0, Apogee_km 504, Perigee_km 500, Type_of_Orbit "Sun-Synchronous", Purpose "Earth Observation", Period_minutes 94.7, Inclination_radians 1.701696021, Users "Government", Class_of_Orbit "LEO"}]}, :models {satellites_model #gensql.inference.gpm.crosscat.XCat{:views {:view_1 #gensql.inference.gpm.view.View{:columns {:Country_of_Operator #gensql.inference.gpm.column.Column{:var-name :Country_of_Operator, :stattype :categorical, :categories {:cluster_0 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Country_of_Operator, :suff-stats {:n 1167, :counts {"USA/France" 1, "Pakistan" 3, "Belarus" 1, "Australia" 5, "Argentina" 6, "Hungary" 1, "Japan/USA" 2, "ESA" 18, "Germany/USA" 2, "France/USA" 1, "United Kingdom" 25, "France/Italy/Belgium/Spain/Greece" 2, "Argentina/USA" 1, "Morocco/Germany" 1, "Malaysia" 5, "Chile" 1, "ESA/USA/Russia" 1, "Brazil" 9, "USA/Canada/Japan" 1, "Kazakhstan" 1, "Indonesia/Philippines/Thailand" 1, "Bolivia" 1, "UAE" 2, "Russia/Multinational" 1, "Sweden" 2, "Ukraine" 1, "Canada" 22, "South Africa" 1, "Mexico" 6, "Multinational" 55, "Taiwan/USA" 5, "Azerbaijan" 1, "Egypt" 2, "Estonia" 1, "Vietnam" 4, "Japan" 43, "Nigeria" 3, "Indonesia" 5, "India/France" 2, "Singapore/Taiwan" 1, "Greece" 1, "Russia" 117, "Italy" 11, "France" 11, "Turkey/France" 1, "Iran" 1, "Venezuela" 2, "China (PR)" 117, "Norway" 4, "Algeria" 1, "South Korea" 8, "France/Italy" 1, "Taiwan" 1, "USA/Japan" 3, "Denmark" 3, "Peru" 1, "Luxembourg" 17, "Switzerland" 2, "Netherlands" 13, "Thailand" 4, "Spain" 13, "Germany" 22, "Turkey" 4, "USA" 486, "Singapore" 2, "United Arab Emirates" 4, "UK/ESA" 1, "USA/United Kingdom/Italy" 1, "International" 4, "USA/Australia" 1, "India" 31, "Austria" 1, "France/Belgium/Sweden" 2, "ESA/USA" 1, "USA/Canada" 2, "USA/Japan/Brazil" 1, "USA/Argentina" 6, "Saudi Arabia" 10, "Israel" 10}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Country_of_Operator "Singapore"} {:cluster_0 2}, {:Country_of_Operator "Chile"} {:cluster_0 1}, {:Country_of_Operator "Brazil"} {:cluster_0 9}, {:Country_of_Operator "Peru"} {:cluster_0 1}, {:Country_of_Operator "Germany/USA"} {:cluster_0 2}, {:Country_of_Operator "Greece"} {:cluster_0 1}, {:Country_of_Operator "USA/Canada/Japan"} {:cluster_0 1}, {:Country_of_Operator "United Arab Emirates"} {:cluster_0 4}, {:Country_of_Operator "Mexico"} {:cluster_0 6}, {:Country_of_Operator "Canada"} {:cluster_0 22}, {:Country_of_Operator "Switzerland"} {:cluster_0 2}, {:Country_of_Operator "Venezuela"} {:cluster_0 2}, {:Country_of_Operator "ESA/USA"} {:cluster_0 1}, {:Country_of_Operator "Indonesia/Philippines/Thailand"} {:cluster_0 1}, {:Country_of_Operator "USA/Australia"} {:cluster_0 1}, {:Country_of_Operator "Egypt"} {:cluster_0 2}, {:Country_of_Operator "Kazakhstan"} {:cluster_0 1}, {:Country_of_Operator "Saudi Arabia"} {:cluster_0 10}, {:Country_of_Operator "USA/Japan/Brazil"} {:cluster_0 1}, {:Country_of_Operator "Russia"} {:cluster_0 117}, {:Country_of_Operator "Argentina"} {:cluster_0 6}, {:Country_of_Operator "Denmark"} {:cluster_0 3}, {:Country_of_Operator "France/Italy/Belgium/Spain/Greece"} {:cluster_0 2}, {:Country_of_Operator "International"} {:cluster_0 4}, {:Country_of_Operator "ESA/USA/Russia"} {:cluster_0 1}, {:Country_of_Operator "Thailand"} {:cluster_0 4}, {:Country_of_Operator "USA/United Kingdom/Italy"} {:cluster_0 1}, {:Country_of_Operator "Singapore/Taiwan"} {:cluster_0 1}, {:Country_of_Operator "Argentina/USA"} {:cluster_0 1}, {:Country_of_Operator "Morocco/Germany"} {:cluster_0 1}, {:Country_of_Operator "Estonia"} {:cluster_0 1}, {:Country_of_Operator "Vietnam"} {:cluster_0 4}, {:Country_of_Operator "Japan"} {:cluster_0 43}, {:Country_of_Operator "Netherlands"} {:cluster_0 13}, {:Country_of_Operator "Japan/USA"} {:cluster_0 2}, {:Country_of_Operator "Norway"} {:cluster_0 4}, {:Country_of_Operator "Israel"} {:cluster_0 10}, {:Country_of_Operator "France/Italy"} {:cluster_0 1}, {:Country_of_Operator "USA/Japan"} {:cluster_0 3}, {:Country_of_Operator "Indonesia"} {:cluster_0 5}, {:Country_of_Operator "Iran"} {:cluster_0 1}, {:Country_of_Operator "USA"} {:cluster_0 486}, {:Country_of_Operator "Turkey/France"} {:cluster_0 1}, {:Country_of_Operator "India"} {:cluster_0 31}, {:Country_of_Operator "Germany"} {:cluster_0 22}, {:Country_of_Operator "Spain"} {:cluster_0 13}, {:Country_of_Operator "Russia/Multinational"} {:cluster_0 1}, {:Country_of_Operator "Nigeria"} {:cluster_0 3}, {:Country_of_Operator "Hungary"} {:cluster_0 1}, {:Country_of_Operator "Sweden"} {:cluster_0 2}, {:Country_of_Operator "USA/Argentina"} {:cluster_0 6}, {:Country_of_Operator "UAE"} {:cluster_0 2}, {:Country_of_Operator "Italy"} {:cluster_0 11}, {:Country_of_Operator "ESA"} {:cluster_0 18}, {:Country_of_Operator "France/Belgium/Sweden"} {:cluster_0 2}, {:Country_of_Operator "France/USA"} {:cluster_0 1}, {:Country_of_Operator "Turkey"} {:cluster_0 4}, {:Country_of_Operator "China (PR)"} {:cluster_0 117}, {:Country_of_Operator "South Korea"} {:cluster_0 8}, {:Country_of_Operator "Taiwan/USA"} {:cluster_0 5}, {:Country_of_Operator "Belarus"} {:cluster_0 1}, {:Country_of_Operator "Ukraine"} {:cluster_0 1}, {:Country_of_Operator "Multinational"} {:cluster_0 55}, {:Country_of_Operator "Australia"} {:cluster_0 5}, {:Country_of_Operator "Pakistan"} {:cluster_0 3}, {:Country_of_Operator "France"} {:cluster_0 11}, {:Country_of_Operator "Malaysia"} {:cluster_0 5}, {:Country_of_Operator "USA/Canada"} {:cluster_0 2}, {:Country_of_Operator "UK/ESA"} {:cluster_0 1}, {:Country_of_Operator "Bolivia"} {:cluster_0 1}, {:Country_of_Operator "Austria"} {:cluster_0 1}, {:Country_of_Operator "Algeria"} {:cluster_0 1}, {:Country_of_Operator "Azerbaijan"} {:cluster_0 1}, {:Country_of_Operator "USA/France"} {:cluster_0 1}, {:Country_of_Operator "South Africa"} {:cluster_0 1}, {:Country_of_Operator "Taiwan"} {:cluster_0 1}, {:Country_of_Operator "Luxembourg"} {:cluster_0 17}, {:Country_of_Operator "United Kingdom"} {:cluster_0 25}, {:Country_of_Operator "India/France"} {:cluster_0 2}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Denmark" "International" "China (PR)" "USA" "Multinational" "Malaysia" "Italy" "Norway" "Russia" "Japan" "UK/ESA" "Algeria" "Brazil" "Spain" "Israel" "Canada" "Argentina" "USA/Argentina" "ESA" "Luxembourg" "Azerbaijan" "Pakistan" "Germany" "Belarus" "France/USA" "India" "South Korea" "Taiwan/USA" "Netherlands" "UAE" "Mexico" "France" "USA/Canada/Japan" "USA/Japan/Brazil" "Estonia" "Turkey/France" "Russia/Multinational" "Taiwan" "USA/Japan" "Indonesia/Philippines/Thailand" "Turkey" "Germany/USA" "France/Italy/Belgium/Spain/Greece" "Greece" "ESA/USA" "United Kingdom" "ESA/USA/Russia" "USA/France" "Kazakhstan" "Indonesia" "USA/Australia" "Morocco/Germany" "Hungary" "India/France" "USA/Canada" "Nigeria" "Egypt" "Sweden" "Australia" "Vietnam" "France/Italy" "Peru" "Argentina/USA" "Saudi Arabia" "Ukraine" "Iran" "France/Belgium/Sweden" "Chile" "Singapore/Taiwan" "Japan/USA" "USA/United Kingdom/Italy" "Switzerland" "Thailand" "United Arab Emirates" "Bolivia" "Austria" "Singapore" "Venezuela" "South Africa"], :data {0 "Denmark", 893 "USA", 920 "China (PR)", 558 "USA", 453 "Spain", 584 "USA", 487 "USA", 637 "Hungary", 972 "USA", 519 "USA", 1097 "USA", 357 "USA", 716 "Canada", 950 "USA", 275 "Multinational", 530 "USA", 929 "China (PR)", 789 "Russia", 389 "Russia", 586 "USA", 410 "Russia", 433 "India", 765 "USA", 521 "USA", 451 "Japan", 291 "China (PR)", 443 "Spain", 798 "USA", 779 "USA", 970 "USA", 249 "Multinational", 638 "USA", 299 "USA", 1101 "USA", 121 "Canada", 734 "Japan", 287 "China (PR)", 65 "USA/Argentina", 1086 "USA", 702 "USA", 70 "China (PR)", 949 "Sweden", 218 "Mexico", 648 "Russia", 1070 "USA", 812 "USA", 62 "USA/Argentina", 74 "USA", 774 "USA", 475 "United Kingdom", 497 "USA", 1009 "ESA", 580 "USA", 1138 "China (PR)", 891 "USA", 164 "Taiwan/USA", 1040 "Thailand", 282 "Russia", 769 "USA", 799 "Russia", 273 "Multinational", 1147 "China (PR)", 186 "Russia", 430 "India", 641 "Malaysia", 529 "USA", 898 "Brazil", 370 "USA", 834 "Malaysia", 233 "Russia", 298 "USA", 188 "USA", 240 "USA", 110 "Russia", 130 "USA", 982 "Singapore/Taiwan", 620 "South Korea", 311 "USA", 931 "China (PR)", 882 "Saudi Arabia", 128 "India", 399 "Russia", 989 "United Kingdom", 377 "USA", 468 "United Kingdom", 259 "Multinational", 210 "USA", 229 "USA", 153 "China (PR)", 621 "South Korea", 213 "USA", 670 "Japan", 977 "France", 343 "USA", 958 "United Kingdom", 887 "USA", 472 "United Kingdom", 7 "USA", 894 "USA", 59 "Canada", 934 "China (PR)", 473 "United Kingdom", 1010 "ESA", 86 "Luxembourg", 756 "USA", 830 "Germany", 613 "Japan", 491 "USA", 154 "China (PR)", 20 "Malaysia", 224 "USA", 355 "USA", 592 "USA", 1146 "China (PR)", 610 "USA", 806 "ESA", 571 "USA", 466 "USA", 72 "Multinational", 454 "United Kingdom", 888 "USA", 463 "Japan", 851 "Russia", 770 "USA", 814 "USA", 859 "Argentina/USA", 58 "Canada", 964 "USA", 980 "India", 1001 "USA", 205 "USA", 555 "USA", 552 "USA", 60 "Argentina", 1102 "USA", 835 "Japan", 459 "Japan", 175 "USA", 322 "ESA", 510 "USA", 1052 "China (PR)", 1121 "United Arab Emirates", 662 "Russia", 27 "Russia", 352 "USA", 493 "USA", 899 "Brazil", 416 "Russia", 777 "USA", 694 "USA", 1 "International", 631 "Argentina", 854 "Russia", 69 "China (PR)", 101 "Multinational", 24 "USA", 901 "USA", 547 "USA", 102 "Multinational", 788 "Russia", 1106 "USA", 713 "Egypt", 1110 "Spain", 385 "Russia", 988 "USA", 135 "China (PR)", 1065 "Japan/USA", 397 "Russia", 1011 "ESA", 1006 "Japan", 773 "USA", 490 "USA", 752 "USA", 354 "USA", 884 "USA", 360 "USA", 998 "Russia", 961 "USA", 55 "Canada", 568 "USA", 797 "Russia", 688 "USA", 763 "USA", 269 "Multinational", 676 "USA", 448 "China (PR)", 527 "USA", 206 "USA", 1075 "USA", 966 "USA", 165 "Taiwan/USA", 715 "Canada", 387 "Russia", 652 "Multinational", 683 "USA", 85 "Luxembourg", 721 "USA", 862 "Canada", 615 "Japan", 681 "USA", 225 "USA", 865 "Germany", 297 "USA", 39 "USA", 805 "Japan", 274 "Multinational", 88 "Luxembourg", 217 "USA", 1128 "China (PR)", 46 "USA", 682 "USA", 508 "USA", 1157 "China (PR)", 149 "China (PR)", 415 "Turkey", 239 "USA/Canada/Japan", 478 "India", 878 "Saudi Arabia", 157 "South Korea", 345 "USA", 300 "USA", 743 "Israel", 921 "China (PR)", 1039 "Germany", 4 "International", 550 "USA", 1115 "USA", 204 "USA", 470 "United Kingdom", 1164 "China (PR)", 646 "Russia", 77 "China (PR)", 106 "Germany", 197 "USA", 405 "Russia", 897 "USA", 726 "Netherlands", 776 "USA", 940 "China (PR)", 755 "USA", 902 "USA", 518 "Multinational", 232 "Italy", 260 "Multinational", 823 "Russia", 1125 "Russia", 267 "Multinational", 119 "France/USA", 319 "USA", 534 "USA", 222 "USA", 603 "Japan", 293 "China (PR)", 95 "Luxembourg", 450 "USA/Japan", 329 "USA", 144 "China (PR)", 1087 "Singapore", 504 "USA", 819 "USA", 818 "USA", 505 "USA", 723 "USA", 1071 "USA", 1008 "Japan/USA", 992 "Russia", 176 "USA", 863 "India/France", 471 "United Kingdom", 349 "USA", 512 "USA", 710 "Nigeria", 1058 "China (PR)", 192 "Germany", 54 "USA", 92 "Luxembourg", 221 "USA", 141 "USA", 502 "USA", 871 "Mexico", 464 "USA", 801 "France", 307 "USA", 935 "China (PR)", 758 "USA", 290 "China (PR)", 1156 "China (PR)", 1144 "China (PR)", 627 "USA", 517 "USA", 1122 "Russia", 361 "USA", 264 "Multinational", 137 "Canada", 356 "USA", 728 "Netherlands", 976 "France", 678 "USA", 327 "Denmark", 234 "France", 856 "Russia", 817 "Peru", 1017 "USA", 104 "Germany", 353 "USA", 1145 "China (PR)", 15 "USA", 48 "USA", 945 "China (PR)", 759 "USA", 1066 "USA", 242 "Israel", 832 "Turkey", 969 "Japan", 50 "Israel", 956 "United Kingdom", 917 "USA", 1030 "Indonesia", 557 "USA", 251 "Multinational", 394 "Russia", 116 "Japan", 585 "USA", 583 "USA", 75 "ESA", 437 "France/Italy/Belgium/Spain/Greece", 516 "USA", 1062 "Bolivia", 994 "Russia", 930 "China (PR)", 967 "ESA", 687 "USA", 159 "Germany", 848 "Russia", 995 "Russia", 1096 "Venezuela", 1159 "China (PR)", 709 "USA", 99 "Pakistan", 540 "USA", 645 "USA", 749 "Australia", 479 "India", 1081 "Russia", 890 "USA", 1046 "Thailand", 630 "Argentina", 916 "USA", 815 "USA", 1080 "Russia", 281 "Russia", 402 "Russia", 669 "Japan", 781 "USA", 740 "United Kingdom", 1012 "USA/United Kingdom/Italy", 975 "Multinational", 429 "India", 309 "USA", 458 "Japan", 21 "USA", 388 "Russia", 495 "USA", 952 "USA", 626 "USA", 875 "Saudi Arabia", 31 "Algeria", 113 "Brazil", 32 "Brazil", 811 "USA", 827 "Germany", 407 "Russia", 398 "Russia", 136 "China (PR)", 691 "USA", 847 "Russia", 825 "Russia", 139 "USA", 506 "USA", 396 "Russia", 460 "Japan", 483 "ESA/USA/Russia", 589 "USA", 581 "USA", 932 "China (PR)", 174 "Japan", 578 "USA", 855 "Russia", 331 "Multinational", 363 "USA", 1038 "India", 284 "Russia", 208 "USA", 305 "Netherlands", 1019 "ESA", 955 "United Kingdom", 796 "Russia", 708 "Canada", 182 "Netherlands", 256 "Multinational", 1107 "USA", 1109 "USA", 657 "USA", 514 "USA", 1103 "USA", 731 "Netherlands", 619 "Russia", 985 "Brazil", 485 "USA", 214 "USA", 193 "USA", 685 "USA", 804 "France", 869 "Mexico", 1002 "USA", 1104 "Multinational", 836 "India", 1131 "China (PR)", 785 "Indonesia", 635 "Russia", 442 "Japan", 1073 "USA", 561 "USA", 954 "United Kingdom", 656 "Mexico", 607 "Kazakhstan", 241 "USA/Japan/Brazil", 314 "USA", 782 "Denmark", 226 "USA", 235 "France", 672 "USA", 420 "Russia", 418 "Russia", 262 "Multinational", 1016 "USA", 263 "Multinational", 304 "USA", 401 "Russia", 673 "Spain", 40 "USA", 129 "Canada", 600 "Japan", 729 "Netherlands", 1042 "Thailand", 467 "India", 1033 "Multinational", 1149 "China (PR)", 445 "Spain", 317 "USA", 1091 "USA", 1028 "USA", 294 "China (PR)", 91 "Luxembourg", 1044 "Multinational", 810 "USA", 1137 "China (PR)", 364 "USA", 987 "USA", 880 "Saudi Arabia", 515 "USA", 412 "USA", 553 "USA", 974 "Spain", 341 "USA", 117 "Japan", 1000 "South Korea", 1095 "Vietnam", 665 "Russia", 523 "USA", 172 "Argentina", 601 "Japan", 108 "Germany", 156 "China (PR)", 358 "USA", 308 "USA/Japan", 908 "Japan", 649 "Russia", 531 "USA", 1085 "USA", 923 "China (PR)", 1111 "China (PR)", 223 "USA", 419 "Russia", 365 "USA", 944 "Iran", 181 "Netherlands", 417 "Russia", 1082 "Russia", 979 "France/Belgium/Sweden", 278 "Russia", 56 "Canada", 942 "Italy", 33 "Spain", 13 "USA", 1043 "Multinational", 867 "Germany", 22 "International", 618 "South Korea", 1141 "China (PR)", 1093 "Vietnam", 380 "Russia", 257 "Multinational", 1061 "Switzerland", 338 "USA", 1024 "USA", 500 "USA", 909 "Japan", 1018 "Germany", 993 "Russia", 1089 "USA", 168 "Italy", 833 "Multinational", 496 "USA", 1056 "China (PR)", 1129 "China (PR)", 947 "USA", 347 "USA", 501 "USA", 1007 "Japan", 1077 "United Kingdom", 596 "USA/France", 872 "Mexico", 792 "Russia", 90 "Luxembourg", 237 "France", 826 "USA", 292 "China (PR)", 109 "Belarus", 216 "UAE", 191 "USA", 498 "USA", 829 "Germany", 761 "USA", 1072 "USA", 375 "USA", 525 "USA", 367 "USA", 143 "China (PR)", 742 "Sweden", 178 "Japan", 640 "Malaysia", 247 "Multinational", 328 "USA", 391 "Russia", 990 "Russia", 167 "Italy", 707 "USA", 36 "USA", 41 "USA", 474 "United Kingdom", 187 "USA", 551 "USA", 1118 "Spain", 996 "Russia", 528 "USA", 971 "USA", 599 "Japan", 376 "USA", 195 "USA", 889 "USA", 316 "USA", 668 "USA", 428 "India", 303 "Taiwan", 671 "USA", 794 "Russia", 905 "USA", 368 "USA", 560 "USA", 565 "USA", 310 "USA", 366 "USA", 118 "USA", 522 "USA", 150 "China (PR)", 886 "USA", 313 "USA", 384 "Russia", 567 "USA", 238 "USA", 846 "Russia", 962 "USA", 1127 "China (PR)", 845 "Russia", 196 "USA", 162 "Taiwan/USA", 393 "Russia", 184 "USA", 219 "USA", 999 "South Korea", 461 "Japan", 1032 "Canada", 89 "Luxembourg", 100 "Multinational", 426 "Germany/USA", 604 "Japan", 477 "India", 844 "Russia", 541 "USA", 351 "USA", 243 "Israel", 131 "USA", 790 "Russia", 963 "USA", 1053 "China (PR)", 629 "Indonesia", 873 "Saudi Arabia", 122 "Canada", 933 "China (PR)", 43 "USA", 1067 "Russia", 231 "USA", 61 "Argentina", 654 "Multinational", 883 "USA", 1003 "USA", 598 "Japan", 413 "USA", 29 "USA", 784 "Indonesia", 800 "USA", 151 "China (PR)", 369 "USA", 348 "USA", 1124 "Russia", 575 "USA", 693 "USA", 44 "USA", 739 "United Kingdom", 258 "Multinational", 250 "Multinational", 674 "Spain", 539 "USA", 301 "USA", 838 "Russia", 424 "Russia", 93 "Luxembourg", 6 "USA", 684 "USA", 1026 "USA", 951 "USA", 573 "USA", 408 "Russia", 563 "USA", 850 "Russia", 616 "South Korea", 866 "Germany", 111 "Brazil", 997 "Russia", 689 "USA", 28 "Japan", 456 "Pakistan", 374 "USA", 608 "USA", 737 "United Kingdom", 1155 "China (PR)", 548 "USA", 538 "USA", 1034 "Canada", 895 "USA", 411 "USA", 957 "United Kingdom", 134 "China (PR)", 943 "Italy", 64 "USA/Argentina", 623 "USA", 1135 "China (PR)", 1133 "China (PR)", 465 "USA", 816 "USA", 334 "USA", 1150 "India", 323 "ESA", 189 "USA", 280 "Russia", 198 "USA", 155 "China (PR)", 295 "USA", 808 "ESA", 248 "Multinational", 587 "USA", 285 "USA", 507 "USA", 227 "USA", 724 "USA", 476 "India", 941 "Ukraine", 911 "USA", 853 "Russia", 494 "USA", 220 "USA", 842 "Russia", 103 "Multinational", 697 "USA", 611 "USA", 1105 "Japan", 170 "ESA", 1154 "China (PR)", 51 "Israel", 25 "Norway", 261 "Multinational", 768 "USA", 822 "Russia", 201 "USA", 904 "USA", 590 "USA", 489 "USA", 778 "USA", 166 "Italy", 447 "China (PR)", 34 "Spain", 252 "Multinational", 978 "France/Belgium/Sweden", 775 "USA", 325 "Russia", 1005 "Japan", 594 "India", 436 "India", 828 "Germany", 535 "USA", 813 "USA", 146 "China (PR)", 741 "India", 1060 "USA", 876 "Saudi Arabia", 1064 "Netherlands", 228 "USA", 907 "USA", 306 "USA", 125 "India", 276 "Canada", 340 "USA", 148 "China (PR)", 1143 "China (PR)", 482 "India", 1049 "Norway", 622 "China (PR)", 588 "USA", 17 "USA", 312 "USA", 606 "India", 3 "China (PR)", 1148 "China (PR)", 520 "USA", 1088 "Venezuela", 760 "USA", 720 "USA", 1126 "China (PR)", 286 "USA", 279 "Russia", 879 "Saudi Arabia", 1020 "USA", 536 "USA", 1023 "USA", 663 "Russia", 12 "USA", 440 "USA", 332 "USA/Japan", 330 "USA", 1162 "China (PR)", 382 "Russia", 152 "China (PR)", 1112 "USA", 1140 "China (PR)", 544 "USA", 803 "France/Italy", 642 "Malaysia", 435 "China (PR)", 342 "USA", 703 "USA", 783 "Pakistan", 695 "USA", 973 "USA", 2 "International", 948 "USA", 66 "USA/Argentina", 484 "USA", 439 "Greece", 236 "France", 556 "USA", 373 "USA", 1083 "Russia", 142 "China (PR)", 359 "USA", 727 "Netherlands", 371 "USA", 772 "USA", 444 "Spain", 1057 "China (PR)", 570 "USA", 757 "USA", 107 "China (PR)", 1094 "Vietnam", 532 "USA", 984 "Brazil", 23 "Italy", 1079 "Italy", 745 "Israel", 719 "USA", 230 "USA", 625 "USA", 47 "USA", 526 "USA", 180 "Spain", 786 "USA", 1068 "Austria", 1166 "China (PR)", 870 "Mexico", 537 "USA", 659 "USA", 158 "Germany", 991 "Russia", 350 "USA", 35 "USA", 1116 "ESA", 849 "Russia", 1120 "United Arab Emirates", 644 "USA", 1069 "Turkey", 881 "Saudi Arabia", 127 "India", 927 "China (PR)", 675 "United Kingdom", 1055 "China (PR)", 383 "Russia", 533 "USA", 1100 "USA", 910 "USA", 302 "USA", 564 "USA", 701 "USA", 1090 "USA", 566 "USA", 821 "Canada", 787 "France", 82 "Luxembourg", 76 "China (PR)", 735 "USA", 492 "USA", 718 "Canada", 771 "USA", 215 "UAE", 97 "Luxembourg", 704 "USA", 277 "Russia/Multinational", 926 "China (PR)", 751 "Australia", 1114 "USA", 19 "Multinational", 335 "USA", 597 "Japan", 938 "China (PR)", 57 "Canada", 609 "USA", 202 "Japan", 68 "China (PR)", 452 "ESA/USA", 1054 "China (PR)", 200 "USA", 1142 "China (PR)", 868 "Germany", 11 "USA", 115 "Japan", 946 "USA", 1063 "United Kingdom", 983 "Brazil", 339 "USA", 431 "India", 462 "Japan", 337 "USA", 698 "USA", 255 "Multinational", 503 "USA", 546 "USA", 9 "USA", 953 "United Kingdom", 857 "ESA", 706 "USA", 632 "USA/Australia", 457 "Japan", 427 "Japan", 145 "China (PR)", 5 "USA", 733 "Netherlands", 1163 "China (PR)", 1165 "China (PR)", 1152 "South Africa", 624 "USA", 831 "Germany", 244 "Italy", 918 "China (PR)", 824 "Russia", 289 "China (PR)", 112 "Brazil", 925 "China (PR)", 1059 "China (PR)", 730 "Netherlands", 699 "USA", 712 "Nigeria", 1076 "USA", 1113 "USA", 414 "USA", 839 "India", 802 "Vietnam", 1084 "Germany", 860 "ESA", 1117 "Singapore", 179 "USA", 344 "USA", 481 "India", 732 "Netherlands", 661 "USA", 245 "Estonia", 378 "USA", 913 "USA", 906 "USA", 658 "USA", 266 "Multinational", 324 "China (PR)", 793 "Russia", 1134 "China (PR)", 1132 "China (PR)", 1014 "France", 680 "USA", 446 "China (PR)", 524 "USA", 254 "Multinational", 404 "Russia", 1025 "USA", 617 "South Korea", 283 "Russia", 1153 "China (PR)", 513 "USA", 572 "USA", 705 "USA", 1098 "USA", 959 "United Kingdom", 1074 "USA", 83 "Luxembourg", 634 "Russia", 138 "USA", 1050 "United Arab Emirates", 346 "USA", 14 "USA", 455 "United Kingdom", 265 "Multinational", 449 "USA", 333 "USA", 650 "Multinational", 639 "USA", 569 "USA", 326 "Indonesia/Philippines/Thailand", 746 "Spain", 647 "Russia", 45 "USA", 53 "Israel", 559 "USA", 78 "China (PR)", 1037 "USA", 924 "China (PR)", 562 "USA", 1119 "China (PR)", 542 "USA", 912 "USA", 664 "Canada", 1048 "Norway", 315 "USA", 1031 "Indonesia", 914 "USA", 480 "India", 132 "China (PR)", 753 "USA", 900 "Canada", 1013 "Switzerland", 26 "Russia", 766 "USA", 123 "Canada", 203 "USA", 667 "USA/Canada", 392 "Russia", 1045 "Multinational", 577 "USA", 807 "ESA", 140 "USA", 321 "ESA", 795 "Russia", 441 "Multinational", 700 "USA", 268 "Multinational", 840 "India", 16 "USA", 320 "ESA", 133 "China (PR)", 288 "China (PR)", 381 "Russia", 605 "India", 163 "Taiwan/USA", 81 "Luxembourg", 120 "Russia", 643 "India/France", 79 "China (PR)", 211 "USA", 38 "USA", 173 "Japan", 126 "India", 981 "Chile", 1161 "China (PR)", 421 "Russia", 593 "India", 636 "Morocco/Germany", 1160 "China (PR)", 98 "Azerbaijan", 422 "Russia", 423 "Russia", 614 "Japan", 762 "USA", 582 "USA", 666 "USA/Canada", 1123 "Russia", 554 "USA", 409 "Russia", 574 "USA", 595 "Turkey", 124 "USA", 747 "Australia", 171 "Argentina", 87 "Luxembourg", 169 "Italy", 653 "Multinational", 679 "USA", 843 "Russia", 160 "USA", 30 "UK/ESA", 400 "Russia", 767 "USA", 896 "USA", 928 "China (PR)", 696 "USA", 1027 "USA", 738 "United Kingdom", 809 "USA", 509 "USA", 736 "USA", 207 "USA", 874 "Saudi Arabia", 434 "China (PR)", 1130 "China (PR)", 690 "USA", 194 "USA", 1047 "Norway", 511 "USA", 73 "Multinational", 486 "USA", 336 "USA", 96 "Luxembourg", 837 "Russia", 1136 "China (PR)", 937 "China (PR)", 10 "USA", 660 "USA", 272 "Multinational", 499 "USA", 488 "USA", 903 "USA", 386 "Russia", 270 "Multinational", 576 "USA", 717 "Canada", 543 "USA", 271 "Multinational", 18 "USA", 395 "Russia", 403 "Russia", 469 "United Kingdom", 105 "Germany", 185 "USA", 52 "Israel", 1051 "United Arab Emirates", 545 "USA", 633 "Russia", 114 "Multinational", 1099 "USA", 968 "USA", 253 "Multinational", 612 "USA", 1151 "Russia", 1015 "France", 628 "USA", 748 "Australia", 209 "USA", 147 "China (PR)", 655 "Multinational", 1022 "USA", 750 "Australia", 852 "Russia", 425 "Germany/USA", 1158 "China (PR)", 864 "Germany", 67 "USA/Argentina", 1108 "Germany", 296 "USA", 602 "Japan", 318 "USA", 161 "Taiwan/USA", 651 "Multinational", 725 "Netherlands", 372 "USA", 1092 "USA", 406 "Russia", 438 "France/Italy/Belgium/Spain/Greece", 780 "USA", 711 "Nigeria", 1041 "Thailand", 71 "China (PR)", 939 "China (PR)", 579 "USA", 877 "Saudi Arabia", 722 "USA", 42 "USA", 919 "China (PR)", 80 "USA", 885 "USA", 1078 "Italy", 986 "USA", 1035 "Multinational", 714 "Egypt", 677 "USA", 199 "USA", 841 "Russia", 754 "USA", 791 "Russia", 1029 "Israel", 861 "ESA", 591 "USA", 1021 "USA", 744 "Israel", 960 "USA", 37 "USA", 183 "USA", 1139 "China (PR)", 965 "USA", 892 "USA", 432 "India", 379 "USA", 63 "USA/Argentina", 212 "USA", 94 "Luxembourg", 362 "USA", 8 "USA", 686 "USA", 692 "USA", 764 "USA", 246 "Turkey/France", 190 "USA", 1004 "India", 1036 "Germany", 549 "USA", 922 "China (PR)", 177 "Japan", 915 "USA", 936 "China (PR)", 820 "Japan", 49 "USA", 858 "Multinational", 390 "Russia", 84 "Luxembourg"}}}, :latents {:alpha 0.006011981783176934, :counts {:cluster_0 1167}, :y {0 :cluster_0, 893 :cluster_0, 920 :cluster_0, 558 :cluster_0, 453 :cluster_0, 584 :cluster_0, 487 :cluster_0, 637 :cluster_0, 972 :cluster_0, 519 :cluster_0, 1097 :cluster_0, 357 :cluster_0, 716 :cluster_0, 950 :cluster_0, 275 :cluster_0, 530 :cluster_0, 929 :cluster_0, 789 :cluster_0, 389 :cluster_0, 586 :cluster_0, 410 :cluster_0, 433 :cluster_0, 765 :cluster_0, 521 :cluster_0, 451 :cluster_0, 291 :cluster_0, 443 :cluster_0, 798 :cluster_0, 779 :cluster_0, 970 :cluster_0, 249 :cluster_0, 638 :cluster_0, 299 :cluster_0, 1101 :cluster_0, 121 :cluster_0, 734 :cluster_0, 287 :cluster_0, 65 :cluster_0, 1086 :cluster_0, 702 :cluster_0, 70 :cluster_0, 949 :cluster_0, 218 :cluster_0, 648 :cluster_0, 1070 :cluster_0, 812 :cluster_0, 62 :cluster_0, 74 :cluster_0, 774 :cluster_0, 475 :cluster_0, 497 :cluster_0, 1009 :cluster_0, 580 :cluster_0, 1138 :cluster_0, 891 :cluster_0, 164 :cluster_0, 1040 :cluster_0, 282 :cluster_0, 769 :cluster_0, 799 :cluster_0, 273 :cluster_0, 1147 :cluster_0, 186 :cluster_0, 430 :cluster_0, 641 :cluster_0, 529 :cluster_0, 898 :cluster_0, 370 :cluster_0, 834 :cluster_0, 233 :cluster_0, 298 :cluster_0, 188 :cluster_0, 240 :cluster_0, 110 :cluster_0, 130 :cluster_0, 982 :cluster_0, 620 :cluster_0, 311 :cluster_0, 931 :cluster_0, 882 :cluster_0, 128 :cluster_0, 399 :cluster_0, 989 :cluster_0, 377 :cluster_0, 468 :cluster_0, 259 :cluster_0, 210 :cluster_0, 229 :cluster_0, 153 :cluster_0, 621 :cluster_0, 213 :cluster_0, 670 :cluster_0, 977 :cluster_0, 343 :cluster_0, 958 :cluster_0, 887 :cluster_0, 472 :cluster_0, 7 :cluster_0, 894 :cluster_0, 59 :cluster_0, 934 :cluster_0, 473 :cluster_0, 1010 :cluster_0, 86 :cluster_0, 756 :cluster_0, 830 :cluster_0, 613 :cluster_0, 491 :cluster_0, 154 :cluster_0, 20 :cluster_0, 224 :cluster_0, 355 :cluster_0, 592 :cluster_0, 1146 :cluster_0, 610 :cluster_0, 806 :cluster_0, 571 :cluster_0, 466 :cluster_0, 72 :cluster_0, 454 :cluster_0, 888 :cluster_0, 463 :cluster_0, 851 :cluster_0, 770 :cluster_0, 814 :cluster_0, 859 :cluster_0, 58 :cluster_0, 964 :cluster_0, 980 :cluster_0, 1001 :cluster_0, 205 :cluster_0, 555 :cluster_0, 552 :cluster_0, 60 :cluster_0, 1102 :cluster_0, 835 :cluster_0, 459 :cluster_0, 175 :cluster_0, 322 :cluster_0, 510 :cluster_0, 1052 :cluster_0, 1121 :cluster_0, 662 :cluster_0, 27 :cluster_0, 352 :cluster_0, 493 :cluster_0, 899 :cluster_0, 416 :cluster_0, 777 :cluster_0, 694 :cluster_0, 1 :cluster_0, 631 :cluster_0, 854 :cluster_0, 69 :cluster_0, 101 :cluster_0, 24 :cluster_0, 901 :cluster_0, 547 :cluster_0, 102 :cluster_0, 788 :cluster_0, 1106 :cluster_0, 713 :cluster_0, 1110 :cluster_0, 385 :cluster_0, 988 :cluster_0, 135 :cluster_0, 1065 :cluster_0, 397 :cluster_0, 1011 :cluster_0, 1006 :cluster_0, 773 :cluster_0, 490 :cluster_0, 752 :cluster_0, 354 :cluster_0, 884 :cluster_0, 360 :cluster_0, 998 :cluster_0, 961 :cluster_0, 55 :cluster_0, 568 :cluster_0, 797 :cluster_0, 688 :cluster_0, 763 :cluster_0, 269 :cluster_0, 676 :cluster_0, 448 :cluster_0, 527 :cluster_0, 206 :cluster_0, 1075 :cluster_0, 966 :cluster_0, 165 :cluster_0, 715 :cluster_0, 387 :cluster_0, 652 :cluster_0, 683 :cluster_0, 85 :cluster_0, 721 :cluster_0, 862 :cluster_0, 615 :cluster_0, 681 :cluster_0, 225 :cluster_0, 865 :cluster_0, 297 :cluster_0, 39 :cluster_0, 805 :cluster_0, 274 :cluster_0, 88 :cluster_0, 217 :cluster_0, 1128 :cluster_0, 46 :cluster_0, 682 :cluster_0, 508 :cluster_0, 1157 :cluster_0, 149 :cluster_0, 415 :cluster_0, 239 :cluster_0, 478 :cluster_0, 878 :cluster_0, 157 :cluster_0, 345 :cluster_0, 300 :cluster_0, 743 :cluster_0, 921 :cluster_0, 1039 :cluster_0, 4 :cluster_0, 550 :cluster_0, 1115 :cluster_0, 204 :cluster_0, 470 :cluster_0, 1164 :cluster_0, 646 :cluster_0, 77 :cluster_0, 106 :cluster_0, 197 :cluster_0, 405 :cluster_0, 897 :cluster_0, 726 :cluster_0, 776 :cluster_0, 940 :cluster_0, 755 :cluster_0, 902 :cluster_0, 518 :cluster_0, 232 :cluster_0, 260 :cluster_0, 823 :cluster_0, 1125 :cluster_0, 267 :cluster_0, 119 :cluster_0, 319 :cluster_0, 534 :cluster_0, 222 :cluster_0, 603 :cluster_0, 293 :cluster_0, 95 :cluster_0, 450 :cluster_0, 329 :cluster_0, 144 :cluster_0, 1087 :cluster_0, 504 :cluster_0, 819 :cluster_0, 818 :cluster_0, 505 :cluster_0, 723 :cluster_0, 1071 :cluster_0, 1008 :cluster_0, 992 :cluster_0, 176 :cluster_0, 863 :cluster_0, 471 :cluster_0, 349 :cluster_0, 512 :cluster_0, 710 :cluster_0, 1058 :cluster_0, 192 :cluster_0, 54 :cluster_0, 92 :cluster_0, 221 :cluster_0, 141 :cluster_0, 502 :cluster_0, 871 :cluster_0, 464 :cluster_0, 801 :cluster_0, 307 :cluster_0, 935 :cluster_0, 758 :cluster_0, 290 :cluster_0, 1156 :cluster_0, 1144 :cluster_0, 627 :cluster_0, 517 :cluster_0, 1122 :cluster_0, 361 :cluster_0, 264 :cluster_0, 137 :cluster_0, 356 :cluster_0, 728 :cluster_0, 976 :cluster_0, 678 :cluster_0, 327 :cluster_0, 234 :cluster_0, 856 :cluster_0, 817 :cluster_0, 1017 :cluster_0, 104 :cluster_0, 353 :cluster_0, 1145 :cluster_0, 15 :cluster_0, 48 :cluster_0, 945 :cluster_0, 759 :cluster_0, 1066 :cluster_0, 242 :cluster_0, 832 :cluster_0, 969 :cluster_0, 50 :cluster_0, 956 :cluster_0, 917 :cluster_0, 1030 :cluster_0, 557 :cluster_0, 251 :cluster_0, 394 :cluster_0, 116 :cluster_0, 585 :cluster_0, 583 :cluster_0, 75 :cluster_0, 437 :cluster_0, 516 :cluster_0, 1062 :cluster_0, 994 :cluster_0, 930 :cluster_0, 967 :cluster_0, 687 :cluster_0, 159 :cluster_0, 848 :cluster_0, 995 :cluster_0, 1096 :cluster_0, 1159 :cluster_0, 709 :cluster_0, 99 :cluster_0, 540 :cluster_0, 645 :cluster_0, 749 :cluster_0, 479 :cluster_0, 1081 :cluster_0, 890 :cluster_0, 1046 :cluster_0, 630 :cluster_0, 916 :cluster_0, 815 :cluster_0, 1080 :cluster_0, 281 :cluster_0, 402 :cluster_0, 669 :cluster_0, 781 :cluster_0, 740 :cluster_0, 1012 :cluster_0, 975 :cluster_0, 429 :cluster_0, 309 :cluster_0, 458 :cluster_0, 21 :cluster_0, 388 :cluster_0, 495 :cluster_0, 952 :cluster_0, 626 :cluster_0, 875 :cluster_0, 31 :cluster_0, 113 :cluster_0, 32 :cluster_0, 811 :cluster_0, 827 :cluster_0, 407 :cluster_0, 398 :cluster_0, 136 :cluster_0, 691 :cluster_0, 847 :cluster_0, 825 :cluster_0, 139 :cluster_0, 506 :cluster_0, 396 :cluster_0, 460 :cluster_0, 483 :cluster_0, 589 :cluster_0, 581 :cluster_0, 932 :cluster_0, 174 :cluster_0, 578 :cluster_0, 855 :cluster_0, 331 :cluster_0, 363 :cluster_0, 1038 :cluster_0, 284 :cluster_0, 208 :cluster_0, 305 :cluster_0, 1019 :cluster_0, 955 :cluster_0, 796 :cluster_0, 708 :cluster_0, 182 :cluster_0, 256 :cluster_0, 1107 :cluster_0, 1109 :cluster_0, 657 :cluster_0, 514 :cluster_0, 1103 :cluster_0, 731 :cluster_0, 619 :cluster_0, 985 :cluster_0, 485 :cluster_0, 214 :cluster_0, 193 :cluster_0, 685 :cluster_0, 804 :cluster_0, 869 :cluster_0, 1002 :cluster_0, 1104 :cluster_0, 836 :cluster_0, 1131 :cluster_0, 785 :cluster_0, 635 :cluster_0, 442 :cluster_0, 1073 :cluster_0, 561 :cluster_0, 954 :cluster_0, 656 :cluster_0, 607 :cluster_0, 241 :cluster_0, 314 :cluster_0, 782 :cluster_0, 226 :cluster_0, 235 :cluster_0, 672 :cluster_0, 420 :cluster_0, 418 :cluster_0, 262 :cluster_0, 1016 :cluster_0, 263 :cluster_0, 304 :cluster_0, 401 :cluster_0, 673 :cluster_0, 40 :cluster_0, 129 :cluster_0, 600 :cluster_0, 729 :cluster_0, 1042 :cluster_0, 467 :cluster_0, 1033 :cluster_0, 1149 :cluster_0, 445 :cluster_0, 317 :cluster_0, 1091 :cluster_0, 1028 :cluster_0, 294 :cluster_0, 91 :cluster_0, 1044 :cluster_0, 810 :cluster_0, 1137 :cluster_0, 364 :cluster_0, 987 :cluster_0, 880 :cluster_0, 515 :cluster_0, 412 :cluster_0, 553 :cluster_0, 974 :cluster_0, 341 :cluster_0, 117 :cluster_0, 1000 :cluster_0, 1095 :cluster_0, 665 :cluster_0, 523 :cluster_0, 172 :cluster_0, 601 :cluster_0, 108 :cluster_0, 156 :cluster_0, 358 :cluster_0, 308 :cluster_0, 908 :cluster_0, 649 :cluster_0, 531 :cluster_0, 1085 :cluster_0, 923 :cluster_0, 1111 :cluster_0, 223 :cluster_0, 419 :cluster_0, 365 :cluster_0, 944 :cluster_0, 181 :cluster_0, 417 :cluster_0, 1082 :cluster_0, 979 :cluster_0, 278 :cluster_0, 56 :cluster_0, 942 :cluster_0, 33 :cluster_0, 13 :cluster_0, 1043 :cluster_0, 867 :cluster_0, 22 :cluster_0, 618 :cluster_0, 1141 :cluster_0, 1093 :cluster_0, 380 :cluster_0, 257 :cluster_0, 1061 :cluster_0, 338 :cluster_0, 1024 :cluster_0, 500 :cluster_0, 909 :cluster_0, 1018 :cluster_0, 993 :cluster_0, 1089 :cluster_0, 168 :cluster_0, 833 :cluster_0, 496 :cluster_0, 1056 :cluster_0, 1129 :cluster_0, 947 :cluster_0, 347 :cluster_0, 501 :cluster_0, 1007 :cluster_0, 1077 :cluster_0, 596 :cluster_0, 872 :cluster_0, 792 :cluster_0, 90 :cluster_0, 237 :cluster_0, 826 :cluster_0, 292 :cluster_0, 109 :cluster_0, 216 :cluster_0, 191 :cluster_0, 498 :cluster_0, 829 :cluster_0, 761 :cluster_0, 1072 :cluster_0, 375 :cluster_0, 525 :cluster_0, 367 :cluster_0, 143 :cluster_0, 742 :cluster_0, 178 :cluster_0, 640 :cluster_0, 247 :cluster_0, 328 :cluster_0, 391 :cluster_0, 990 :cluster_0, 167 :cluster_0, 707 :cluster_0, 36 :cluster_0, 41 :cluster_0, 474 :cluster_0, 187 :cluster_0, 551 :cluster_0, 1118 :cluster_0, 996 :cluster_0, 528 :cluster_0, 971 :cluster_0, 599 :cluster_0, 376 :cluster_0, 195 :cluster_0, 889 :cluster_0, 316 :cluster_0, 668 :cluster_0, 428 :cluster_0, 303 :cluster_0, 671 :cluster_0, 794 :cluster_0, 905 :cluster_0, 368 :cluster_0, 560 :cluster_0, 565 :cluster_0, 310 :cluster_0, 366 :cluster_0, 118 :cluster_0, 522 :cluster_0, 150 :cluster_0, 886 :cluster_0, 313 :cluster_0, 384 :cluster_0, 567 :cluster_0, 238 :cluster_0, 846 :cluster_0, 962 :cluster_0, 1127 :cluster_0, 845 :cluster_0, 196 :cluster_0, 162 :cluster_0, 393 :cluster_0, 184 :cluster_0, 219 :cluster_0, 999 :cluster_0, 461 :cluster_0, 1032 :cluster_0, 89 :cluster_0, 100 :cluster_0, 426 :cluster_0, 604 :cluster_0, 477 :cluster_0, 844 :cluster_0, 541 :cluster_0, 351 :cluster_0, 243 :cluster_0, 131 :cluster_0, 790 :cluster_0, 963 :cluster_0, 1053 :cluster_0, 629 :cluster_0, 873 :cluster_0, 122 :cluster_0, 933 :cluster_0, 43 :cluster_0, 1067 :cluster_0, 231 :cluster_0, 61 :cluster_0, 654 :cluster_0, 883 :cluster_0, 1003 :cluster_0, 598 :cluster_0, 413 :cluster_0, 29 :cluster_0, 784 :cluster_0, 800 :cluster_0, 151 :cluster_0, 369 :cluster_0, 348 :cluster_0, 1124 :cluster_0, 575 :cluster_0, 693 :cluster_0, 44 :cluster_0, 739 :cluster_0, 258 :cluster_0, 250 :cluster_0, 674 :cluster_0, 539 :cluster_0, 301 :cluster_0, 838 :cluster_0, 424 :cluster_0, 93 :cluster_0, 6 :cluster_0, 684 :cluster_0, 1026 :cluster_0, 951 :cluster_0, 573 :cluster_0, 408 :cluster_0, 563 :cluster_0, 850 :cluster_0, 616 :cluster_0, 866 :cluster_0, 111 :cluster_0, 997 :cluster_0, 689 :cluster_0, 28 :cluster_0, 456 :cluster_0, 374 :cluster_0, 608 :cluster_0, 737 :cluster_0, 1155 :cluster_0, 548 :cluster_0, 538 :cluster_0, 1034 :cluster_0, 895 :cluster_0, 411 :cluster_0, 957 :cluster_0, 134 :cluster_0, 943 :cluster_0, 64 :cluster_0, 623 :cluster_0, 1135 :cluster_0, 1133 :cluster_0, 465 :cluster_0, 816 :cluster_0, 334 :cluster_0, 1150 :cluster_0, 323 :cluster_0, 189 :cluster_0, 280 :cluster_0, 198 :cluster_0, 155 :cluster_0, 295 :cluster_0, 808 :cluster_0, 248 :cluster_0, 587 :cluster_0, 285 :cluster_0, 507 :cluster_0, 227 :cluster_0, 724 :cluster_0, 476 :cluster_0, 941 :cluster_0, 911 :cluster_0, 853 :cluster_0, 494 :cluster_0, 220 :cluster_0, 842 :cluster_0, 103 :cluster_0, 697 :cluster_0, 611 :cluster_0, 1105 :cluster_0, 170 :cluster_0, 1154 :cluster_0, 51 :cluster_0, 25 :cluster_0, 261 :cluster_0, 768 :cluster_0, 822 :cluster_0, 201 :cluster_0, 904 :cluster_0, 590 :cluster_0, 489 :cluster_0, 778 :cluster_0, 166 :cluster_0, 447 :cluster_0, 34 :cluster_0, 252 :cluster_0, 978 :cluster_0, 775 :cluster_0, 325 :cluster_0, 1005 :cluster_0, 594 :cluster_0, 436 :cluster_0, 828 :cluster_0, 535 :cluster_0, 813 :cluster_0, 146 :cluster_0, 741 :cluster_0, 1060 :cluster_0, 876 :cluster_0, 1064 :cluster_0, 228 :cluster_0, 907 :cluster_0, 306 :cluster_0, 125 :cluster_0, 276 :cluster_0, 340 :cluster_0, 148 :cluster_0, 1143 :cluster_0, 482 :cluster_0, 1049 :cluster_0, 622 :cluster_0, 588 :cluster_0, 17 :cluster_0, 312 :cluster_0, 606 :cluster_0, 3 :cluster_0, 1148 :cluster_0, 520 :cluster_0, 1088 :cluster_0, 760 :cluster_0, 720 :cluster_0, 1126 :cluster_0, 286 :cluster_0, 279 :cluster_0, 879 :cluster_0, 1020 :cluster_0, 536 :cluster_0, 1023 :cluster_0, 663 :cluster_0, 12 :cluster_0, 440 :cluster_0, 332 :cluster_0, 330 :cluster_0, 1162 :cluster_0, 382 :cluster_0, 152 :cluster_0, 1112 :cluster_0, 1140 :cluster_0, 544 :cluster_0, 803 :cluster_0, 642 :cluster_0, 435 :cluster_0, 342 :cluster_0, 703 :cluster_0, 783 :cluster_0, 695 :cluster_0, 973 :cluster_0, 2 :cluster_0, 948 :cluster_0, 66 :cluster_0, 484 :cluster_0, 439 :cluster_0, 236 :cluster_0, 556 :cluster_0, 373 :cluster_0, 1083 :cluster_0, 142 :cluster_0, 359 :cluster_0, 727 :cluster_0, 371 :cluster_0, 772 :cluster_0, 444 :cluster_0, 1057 :cluster_0, 570 :cluster_0, 757 :cluster_0, 107 :cluster_0, 1094 :cluster_0, 532 :cluster_0, 984 :cluster_0, 23 :cluster_0, 1079 :cluster_0, 745 :cluster_0, 719 :cluster_0, 230 :cluster_0, 625 :cluster_0, 47 :cluster_0, 526 :cluster_0, 180 :cluster_0, 786 :cluster_0, 1068 :cluster_0, 1166 :cluster_0, 870 :cluster_0, 537 :cluster_0, 659 :cluster_0, 158 :cluster_0, 991 :cluster_0, 350 :cluster_0, 35 :cluster_0, 1116 :cluster_0, 849 :cluster_0, 1120 :cluster_0, 644 :cluster_0, 1069 :cluster_0, 881 :cluster_0, 127 :cluster_0, 927 :cluster_0, 675 :cluster_0, 1055 :cluster_0, 383 :cluster_0, 533 :cluster_0, 1100 :cluster_0, 910 :cluster_0, 302 :cluster_0, 564 :cluster_0, 701 :cluster_0, 1090 :cluster_0, 566 :cluster_0, 821 :cluster_0, 787 :cluster_0, 82 :cluster_0, 76 :cluster_0, 735 :cluster_0, 492 :cluster_0, 718 :cluster_0, 771 :cluster_0, 215 :cluster_0, 97 :cluster_0, 704 :cluster_0, 277 :cluster_0, 926 :cluster_0, 751 :cluster_0, 1114 :cluster_0, 19 :cluster_0, 335 :cluster_0, 597 :cluster_0, 938 :cluster_0, 57 :cluster_0, 609 :cluster_0, 202 :cluster_0, 68 :cluster_0, 452 :cluster_0, 1054 :cluster_0, 200 :cluster_0, 1142 :cluster_0, 868 :cluster_0, 11 :cluster_0, 115 :cluster_0, 946 :cluster_0, 1063 :cluster_0, 983 :cluster_0, 339 :cluster_0, 431 :cluster_0, 462 :cluster_0, 337 :cluster_0, 698 :cluster_0, 255 :cluster_0, 503 :cluster_0, 546 :cluster_0, 9 :cluster_0, 953 :cluster_0, 857 :cluster_0, 706 :cluster_0, 632 :cluster_0, 457 :cluster_0, 427 :cluster_0, 145 :cluster_0, 5 :cluster_0, 733 :cluster_0, 1163 :cluster_0, 1165 :cluster_0, 1152 :cluster_0, 624 :cluster_0, 831 :cluster_0, 244 :cluster_0, 918 :cluster_0, 824 :cluster_0, 289 :cluster_0, 112 :cluster_0, 925 :cluster_0, 1059 :cluster_0, 730 :cluster_0, 699 :cluster_0, 712 :cluster_0, 1076 :cluster_0, 1113 :cluster_0, 414 :cluster_0, 839 :cluster_0, 802 :cluster_0, 1084 :cluster_0, 860 :cluster_0, 1117 :cluster_0, 179 :cluster_0, 344 :cluster_0, 481 :cluster_0, 732 :cluster_0, 661 :cluster_0, 245 :cluster_0, 378 :cluster_0, 913 :cluster_0, 906 :cluster_0, 658 :cluster_0, 266 :cluster_0, 324 :cluster_0, 793 :cluster_0, 1134 :cluster_0, 1132 :cluster_0, 1014 :cluster_0, 680 :cluster_0, 446 :cluster_0, 524 :cluster_0, 254 :cluster_0, 404 :cluster_0, 1025 :cluster_0, 617 :cluster_0, 283 :cluster_0, 1153 :cluster_0, 513 :cluster_0, 572 :cluster_0, 705 :cluster_0, 1098 :cluster_0, 959 :cluster_0, 1074 :cluster_0, 83 :cluster_0, 634 :cluster_0, 138 :cluster_0, 1050 :cluster_0, 346 :cluster_0, 14 :cluster_0, 455 :cluster_0, 265 :cluster_0, 449 :cluster_0, 333 :cluster_0, 650 :cluster_0, 639 :cluster_0, 569 :cluster_0, 326 :cluster_0, 746 :cluster_0, 647 :cluster_0, 45 :cluster_0, 53 :cluster_0, 559 :cluster_0, 78 :cluster_0, 1037 :cluster_0, 924 :cluster_0, 562 :cluster_0, 1119 :cluster_0, 542 :cluster_0, 912 :cluster_0, 664 :cluster_0, 1048 :cluster_0, 315 :cluster_0, 1031 :cluster_0, 914 :cluster_0, 480 :cluster_0, 132 :cluster_0, 753 :cluster_0, 900 :cluster_0, 1013 :cluster_0, 26 :cluster_0, 766 :cluster_0, 123 :cluster_0, 203 :cluster_0, 667 :cluster_0, 392 :cluster_0, 1045 :cluster_0, 577 :cluster_0, 807 :cluster_0, 140 :cluster_0, 321 :cluster_0, 795 :cluster_0, 441 :cluster_0, 700 :cluster_0, 268 :cluster_0, 840 :cluster_0, 16 :cluster_0, 320 :cluster_0, 133 :cluster_0, 288 :cluster_0, 381 :cluster_0, 605 :cluster_0, 163 :cluster_0, 81 :cluster_0, 120 :cluster_0, 643 :cluster_0, 79 :cluster_0, 211 :cluster_0, 38 :cluster_0, 173 :cluster_0, 126 :cluster_0, 981 :cluster_0, 1161 :cluster_0, 421 :cluster_0, 593 :cluster_0, 636 :cluster_0, 1160 :cluster_0, 98 :cluster_0, 422 :cluster_0, 423 :cluster_0, 614 :cluster_0, 762 :cluster_0, 582 :cluster_0, 666 :cluster_0, 1123 :cluster_0, 554 :cluster_0, 409 :cluster_0, 574 :cluster_0, 595 :cluster_0, 124 :cluster_0, 747 :cluster_0, 171 :cluster_0, 87 :cluster_0, 169 :cluster_0, 653 :cluster_0, 679 :cluster_0, 843 :cluster_0, 160 :cluster_0, 30 :cluster_0, 400 :cluster_0, 767 :cluster_0, 896 :cluster_0, 928 :cluster_0, 696 :cluster_0, 1027 :cluster_0, 738 :cluster_0, 809 :cluster_0, 509 :cluster_0, 736 :cluster_0, 207 :cluster_0, 874 :cluster_0, 434 :cluster_0, 1130 :cluster_0, 690 :cluster_0, 194 :cluster_0, 1047 :cluster_0, 511 :cluster_0, 73 :cluster_0, 486 :cluster_0, 336 :cluster_0, 96 :cluster_0, 837 :cluster_0, 1136 :cluster_0, 937 :cluster_0, 10 :cluster_0, 660 :cluster_0, 272 :cluster_0, 499 :cluster_0, 488 :cluster_0, 903 :cluster_0, 386 :cluster_0, 270 :cluster_0, 576 :cluster_0, 717 :cluster_0, 543 :cluster_0, 271 :cluster_0, 18 :cluster_0, 395 :cluster_0, 403 :cluster_0, 469 :cluster_0, 105 :cluster_0, 185 :cluster_0, 52 :cluster_0, 1051 :cluster_0, 545 :cluster_0, 633 :cluster_0, 114 :cluster_0, 1099 :cluster_0, 968 :cluster_0, 253 :cluster_0, 612 :cluster_0, 1151 :cluster_0, 1015 :cluster_0, 628 :cluster_0, 748 :cluster_0, 209 :cluster_0, 147 :cluster_0, 655 :cluster_0, 1022 :cluster_0, 750 :cluster_0, 852 :cluster_0, 425 :cluster_0, 1158 :cluster_0, 864 :cluster_0, 67 :cluster_0, 1108 :cluster_0, 296 :cluster_0, 602 :cluster_0, 318 :cluster_0, 161 :cluster_0, 651 :cluster_0, 725 :cluster_0, 372 :cluster_0, 1092 :cluster_0, 406 :cluster_0, 438 :cluster_0, 780 :cluster_0, 711 :cluster_0, 1041 :cluster_0, 71 :cluster_0, 939 :cluster_0, 579 :cluster_0, 877 :cluster_0, 722 :cluster_0, 42 :cluster_0, 919 :cluster_0, 80 :cluster_0, 885 :cluster_0, 1078 :cluster_0, 986 :cluster_0, 1035 :cluster_0, 714 :cluster_0, 677 :cluster_0, 199 :cluster_0, 841 :cluster_0, 754 :cluster_0, 791 :cluster_0, 1029 :cluster_0, 861 :cluster_0, 591 :cluster_0, 1021 :cluster_0, 744 :cluster_0, 960 :cluster_0, 37 :cluster_0, 183 :cluster_0, 1139 :cluster_0, 965 :cluster_0, 892 :cluster_0, 432 :cluster_0, 379 :cluster_0, 63 :cluster_0, 212 :cluster_0, 94 :cluster_0, 362 :cluster_0, 8 :cluster_0, 686 :cluster_0, 692 :cluster_0, 764 :cluster_0, 246 :cluster_0, 190 :cluster_0, 1004 :cluster_0, 1036 :cluster_0, 549 :cluster_0, 922 :cluster_0, 177 :cluster_0, 915 :cluster_0, 936 :cluster_0, 820 :cluster_0, 49 :cluster_0, 858 :cluster_0, 390 :cluster_0, 84 :cluster_0}}, :assignments {{:Country_of_Operator "Singapore"} {:categories {:cluster_0 2}, :row-ids #{1087 1117}}, {:Country_of_Operator "Chile"} {:categories {:cluster_0 1}, :row-ids #{981}}, {:Country_of_Operator "Brazil"} {:categories {:cluster_0 9}, :row-ids #{898 899 113 32 985 111 984 983 112}}, {:Country_of_Operator "Peru"} {:categories {:cluster_0 1}, :row-ids #{817}}, {:Country_of_Operator "Germany/USA"} {:categories {:cluster_0 2}, :row-ids #{426 425}}, {:Country_of_Operator "Greece"} {:categories {:cluster_0 1}, :row-ids #{439}}, {:Country_of_Operator "USA/Canada/Japan"} {:categories {:cluster_0 1}, :row-ids #{239}}, {:Country_of_Operator "United Arab Emirates"} {:categories {:cluster_0 4}, :row-ids #{1121 1120 1050 1051}}, {:Country_of_Operator "Mexico"} {:categories {:cluster_0 6}, :row-ids #{218 871 869 656 872 870}}, {:Country_of_Operator "Canada"} {:categories {:cluster_0 22}, :row-ids #{716 121 59 58 55 715 862 137 708 129 56 1032 122 1034 276 821 718 57 664 900 123 717}}, {:Country_of_Operator "Switzerland"} {:categories {:cluster_0 2}, :row-ids #{1061 1013}}, {:Country_of_Operator "Venezuela"} {:categories {:cluster_0 2}, :row-ids #{1096 1088}}, {:Country_of_Operator "ESA/USA"} {:categories {:cluster_0 1}, :row-ids #{452}}, {:Country_of_Operator "Indonesia/Philippines/Thailand"} {:categories {:cluster_0 1}, :row-ids #{326}}, {:Country_of_Operator "USA/Australia"} {:categories {:cluster_0 1}, :row-ids #{632}}, {:Country_of_Operator "Egypt"} {:categories {:cluster_0 2}, :row-ids #{713 714}}, {:Country_of_Operator "Kazakhstan"} {:categories {:cluster_0 1}, :row-ids #{607}}, {:Country_of_Operator "Saudi Arabia"} {:categories {:cluster_0 10}, :row-ids #{882 878 875 880 873 876 879 881 874 877}}, {:Country_of_Operator "USA/Japan/Brazil"} {:categories {:cluster_0 1}, :row-ids #{241}}, {:Country_of_Operator "Russia"} {:categories {:cluster_0 117}, :row-ids #{789 389 410 648 282 799 186 233 110 399 851 662 27 416 854 788 385 397 998 797 387 646 405 823 1125 992 1122 856 394 994 848 995 1081 1080 281 402 388 407 398 847 825 396 855 284 796 619 635 420 418 401 665 649 419 417 1082 278 380 993 792 391 990 996 794 384 846 845 393 844 790 1067 1124 838 424 408 850 997 280 853 842 822 325 279 663 382 1083 991 849 383 824 793 404 283 634 647 26 392 795 381 120 421 422 423 1123 409 843 400 837 386 395 403 633 1151 852 406 841 791 390}}, {:Country_of_Operator "Argentina"} {:categories {:cluster_0 6}, :row-ids #{60 631 630 172 61 171}}, {:Country_of_Operator "Denmark"} {:categories {:cluster_0 3}, :row-ids #{0 327 782}}, {:Country_of_Operator "France/Italy/Belgium/Spain/Greece"} {:categories {:cluster_0 2}, :row-ids #{437 438}}, {:Country_of_Operator "International"} {:categories {:cluster_0 4}, :row-ids #{1 4 22 2}}, {:Country_of_Operator "ESA/USA/Russia"} {:categories {:cluster_0 1}, :row-ids #{483}}, {:Country_of_Operator "Thailand"} {:categories {:cluster_0 4}, :row-ids #{1040 1046 1042 1041}}, {:Country_of_Operator "USA/United Kingdom/Italy"} {:categories {:cluster_0 1}, :row-ids #{1012}}, {:Country_of_Operator "Singapore/Taiwan"} {:categories {:cluster_0 1}, :row-ids #{982}}, {:Country_of_Operator "Argentina/USA"} {:categories {:cluster_0 1}, :row-ids #{859}}, {:Country_of_Operator "Morocco/Germany"} {:categories {:cluster_0 1}, :row-ids #{636}}, {:Country_of_Operator "Estonia"} {:categories {:cluster_0 1}, :row-ids #{245}}, {:Country_of_Operator "Vietnam"} {:categories {:cluster_0 4}, :row-ids #{1095 1093 1094 802}}, {:Country_of_Operator "Japan"} {:categories {:cluster_0 43}, :row-ids #{451 734 670 613 463 835 459 1006 615 805 603 969 116 669 458 460 174 442 600 117 601 908 909 1007 178 599 461 604 598 28 1105 1005 597 202 115 462 457 427 173 614 602 177 820}}, {:Country_of_Operator "Netherlands"} {:categories {:cluster_0 13}, :row-ids #{726 728 305 182 731 729 181 1064 727 733 730 732 725}}, {:Country_of_Operator "Japan/USA"} {:categories {:cluster_0 2}, :row-ids #{1065 1008}}, {:Country_of_Operator "Norway"} {:categories {:cluster_0 4}, :row-ids #{25 1049 1048 1047}}, {:Country_of_Operator "Israel"} {:categories {:cluster_0 10}, :row-ids #{743 242 50 243 51 745 53 52 1029 744}}, {:Country_of_Operator "France/Italy"} {:categories {:cluster_0 1}, :row-ids #{803}}, {:Country_of_Operator "USA/Japan"} {:categories {:cluster_0 3}, :row-ids #{450 308 332}}, {:Country_of_Operator "Indonesia"} {:categories {:cluster_0 5}, :row-ids #{1030 785 629 784 1031}}, {:Country_of_Operator "Iran"} {:categories {:cluster_0 1}, :row-ids #{944}}, {:Country_of_Operator "USA"} {:categories {:cluster_0 486}, :row-ids #{893 558 584 487 972 519 1097 357 950 530 586 765 521 798 779 970 638 299 1101 1086 702 1070 812 74 774 497 580 891 769 529 370 298 188 240 130 311 377 210 229 213 343 887 7 894 756 491 224 355 592 610 571 466 888 770 814 964 1001 205 555 552 1102 175 510 352 493 777 694 24 901 547 1106 988 773 490 752 354 884 360 961 568 688 763 676 527 206 1075 966 683 721 681 225 297 39 217 46 682 508 345 300 550 1115 204 197 897 776 755 902 319 534 222 329 504 819 818 505 723 1071 176 349 512 54 221 141 502 464 307 758 627 517 361 356 678 1017 353 15 48 759 1066 917 557 585 583 516 687 709 540 645 890 916 815 781 309 21 495 952 626 811 691 139 506 589 581 578 363 208 1107 1109 657 514 1103 485 214 193 685 1002 1073 561 314 226 672 1016 304 40 317 1091 1028 810 364 987 515 412 553 341 523 358 531 1085 223 365 13 338 1024 500 1089 496 947 347 501 826 191 498 761 1072 375 525 367 328 707 36 41 187 551 528 971 376 195 889 316 668 671 905 368 560 565 310 366 118 522 886 313 567 238 962 196 184 219 541 351 131 963 43 231 883 1003 413 29 800 369 348 575 693 44 539 301 6 684 1026 951 573 563 689 374 608 548 538 895 411 623 465 816 334 189 198 295 587 285 507 227 724 911 494 220 697 611 768 201 904 590 489 778 775 535 813 1060 228 907 306 340 588 17 312 520 760 720 286 1020 536 1023 12 440 330 1112 544 342 703 695 973 948 484 556 373 359 371 772 570 757 532 719 230 625 47 526 786 537 659 350 35 644 533 1100 910 302 564 701 1090 566 735 492 771 704 1114 335 609 200 11 946 339 337 698 503 546 9 706 5 624 699 1076 1113 414 179 344 661 378 913 906 658 680 524 1025 513 572 705 1098 1074 138 346 14 449 333 639 569 45 559 1037 562 542 912 315 914 753 766 203 577 140 700 16 211 38 762 582 554 574 124 679 160 767 896 696 1027 809 509 736 207 690 194 511 486 336 10 660 499 488 903 576 543 18 185 545 1099 968 612 628 209 1022 296 318 372 1092 780 579 722 42 80 885 986 677 199 754 591 1021 960 37 183 965 892 379 212 362 8 686 692 764 190 549 915 49}}, {:Country_of_Operator "Turkey/France"} {:categories {:cluster_0 1}, :row-ids #{246}}, {:Country_of_Operator "India"} {:categories {:cluster_0 31}, :row-ids #{433 430 128 980 478 479 429 1038 836 467 428 477 1150 476 594 436 741 125 482 606 127 431 839 481 480 840 605 126 593 432 1004}}, {:Country_of_Operator "Germany"} {:categories {:cluster_0 22}, :row-ids #{830 865 1039 106 192 104 159 827 108 867 1018 829 866 828 158 868 831 1084 105 864 1108 1036}}, {:Country_of_Operator "Spain"} {:categories {:cluster_0 13}, :row-ids #{453 443 1110 673 445 974 33 1118 674 34 444 180 746}}, {:Country_of_Operator "Russia/Multinational"} {:categories {:cluster_0 1}, :row-ids #{277}}, {:Country_of_Operator "Nigeria"} {:categories {:cluster_0 3}, :row-ids #{710 712 711}}, {:Country_of_Operator "Hungary"} {:categories {:cluster_0 1}, :row-ids #{637}}, {:Country_of_Operator "Sweden"} {:categories {:cluster_0 2}, :row-ids #{949 742}}, {:Country_of_Operator "USA/Argentina"} {:categories {:cluster_0 6}, :row-ids #{65 62 64 66 67 63}}, {:Country_of_Operator "UAE"} {:categories {:cluster_0 2}, :row-ids #{216 215}}, {:Country_of_Operator "Italy"} {:categories {:cluster_0 11}, :row-ids #{232 942 168 167 943 166 23 1079 244 169 1078}}, {:Country_of_Operator "ESA"} {:categories {:cluster_0 18}, :row-ids #{1009 1010 806 322 1011 75 967 1019 323 808 170 1116 857 860 807 321 320 861}}, {:Country_of_Operator "France/Belgium/Sweden"} {:categories {:cluster_0 2}, :row-ids #{979 978}}, {:Country_of_Operator "France/USA"} {:categories {:cluster_0 1}, :row-ids #{119}}, {:Country_of_Operator "Turkey"} {:categories {:cluster_0 4}, :row-ids #{415 832 1069 595}}, {:Country_of_Operator "China (PR)"} {:categories {:cluster_0 117}, :row-ids #{920 929 291 287 70 1138 1147 931 153 934 154 1146 1052 69 135 448 1128 1157 149 921 1164 77 940 293 144 1058 935 290 1156 1144 1145 945 930 1159 136 932 1131 1149 294 1137 156 923 1111 1141 1056 1129 292 143 150 1127 1053 933 151 1155 134 1135 1133 155 1154 447 146 148 1143 622 3 1148 1126 1162 152 1140 435 142 1057 107 1166 927 1055 76 926 938 68 1054 1142 145 1163 1165 918 289 925 1059 324 1134 1132 446 1153 78 924 1119 132 133 288 79 1161 1160 928 434 1130 1136 937 147 1158 71 939 919 1139 922 936}}, {:Country_of_Operator "South Korea"} {:categories {:cluster_0 8}, :row-ids #{620 621 157 1000 618 999 616 617}}, {:Country_of_Operator "Taiwan/USA"} {:categories {:cluster_0 5}, :row-ids #{164 165 162 163 161}}, {:Country_of_Operator "Belarus"} {:categories {:cluster_0 1}, :row-ids #{109}}, {:Country_of_Operator "Ukraine"} {:categories {:cluster_0 1}, :row-ids #{941}}, {:Country_of_Operator "Multinational"} {:categories {:cluster_0 55}, :row-ids #{275 249 273 259 72 101 102 269 652 274 518 260 267 264 251 975 331 256 1104 262 263 1033 1044 1043 257 833 247 100 654 258 250 248 103 261 252 19 255 266 254 265 650 1045 441 268 653 73 272 270 271 114 253 655 651 1035 858}}, {:Country_of_Operator "Australia"} {:categories {:cluster_0 5}, :row-ids #{749 751 747 748 750}}, {:Country_of_Operator "Pakistan"} {:categories {:cluster_0 3}, :row-ids #{99 456 783}}, {:Country_of_Operator "France"} {:categories {:cluster_0 11}, :row-ids #{977 801 976 234 804 235 237 236 787 1014 1015}}, {:Country_of_Operator "Malaysia"} {:categories {:cluster_0 5}, :row-ids #{641 834 20 640 642}}, {:Country_of_Operator "USA/Canada"} {:categories {:cluster_0 2}, :row-ids #{667 666}}, {:Country_of_Operator "UK/ESA"} {:categories {:cluster_0 1}, :row-ids #{30}}, {:Country_of_Operator "Bolivia"} {:categories {:cluster_0 1}, :row-ids #{1062}}, {:Country_of_Operator "Austria"} {:categories {:cluster_0 1}, :row-ids #{1068}}, {:Country_of_Operator "Algeria"} {:categories {:cluster_0 1}, :row-ids #{31}}, {:Country_of_Operator "Azerbaijan"} {:categories {:cluster_0 1}, :row-ids #{98}}, {:Country_of_Operator "USA/France"} {:categories {:cluster_0 1}, :row-ids #{596}}, {:Country_of_Operator "South Africa"} {:categories {:cluster_0 1}, :row-ids #{1152}}, {:Country_of_Operator "Taiwan"} {:categories {:cluster_0 1}, :row-ids #{303}}, {:Country_of_Operator "Luxembourg"} {:categories {:cluster_0 17}, :row-ids #{86 85 88 95 92 91 90 89 93 82 97 83 81 87 96 94 84}}, {:Country_of_Operator "United Kingdom"} {:categories {:cluster_0 25}, :row-ids #{475 989 468 958 472 473 454 470 471 956 740 955 954 1077 474 739 737 957 675 1063 953 959 455 738 469}}, {:Country_of_Operator "India/France"} {:categories {:cluster_0 2}, :row-ids #{863 643}}}}, :view_0 #gensql.inference.gpm.view.View{:columns {:Eccentricity #gensql.inference.gpm.column.Column{:var-name :Eccentricity, :stattype :gaussian, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.61976, :sum-x-sq 0.38410245759999995}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 3, :sum-x 2.5921, :sum-x-sq 2.2396608317999998}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 2.6E-4, :sum-x-sq 6.759999999999998E-8}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.27883, :sum-x-sq 0.07774616890000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.89688, :sum-x-sq 0.8043937344000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.83044, :sum-x-sq 0.6896305935999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 7, :sum-x 0.5247799999999999, :sum-x-sq 0.03956106880000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.47082, :sum-x-sq 0.2216714724}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 15, :sum-x 10.79281, :sum-x-sq 7.7706942903}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 2, :sum-x 1.8784100000000001, :sum-x-sq 1.7648539585}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.29184, :sum-x-sq 0.08517058559999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 4, :sum-x 0.00133, :sum-x-sq 4.917E-7}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.97287, :sum-x-sq 0.9464760369}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.79904, :sum-x-sq 0.6384649215999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 4, :sum-x 2.75429, :sum-x-sq 1.8965474010999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 278, :sum-x 0.5878899999999998, :sum-x-sq 0.008024084299999994}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.79307, :sum-x-sq 0.6289600249000001}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 7, :sum-x 0.10998, :sum-x-sq 0.006298666599999999}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 1, :sum-x 0.79737, :sum-x-sq 0.6357989169}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 4, :sum-x 7.999999999999999E-4, :sum-x-sq 1.6539999999999999E-7}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 434, :sum-x 0.29901999999999995, :sum-x-sq 0.0060806646}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 29, :sum-x 0.35441, :sum-x-sq 0.014297944100000005}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 294, :sum-x 1.0222800000000007, :sum-x-sq 0.016965326599999983}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 72, :sum-x 0.18977000000000002, :sum-x-sq 0.0010554649000000002}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Eccentricity, :suff-stats {:n 2, :sum-x 0.85017, :sum-x-sq 0.3620342609}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}}}, :assignments {{:Eccentricity 0.00324} {:cluster_23 1}, {:Eccentricity 0.00185} {:cluster_85 1}, {:Eccentricity 0.709} {:cluster_62 1}, {:Eccentricity 6.8E-4} {:cluster_4 3, :cluster_23 1}, {:Eccentricity 0.01597} {:cluster_2 1}, {:Eccentricity 0.05739} {:cluster_9 1}, {:Eccentricity 0.00114} {:cluster_4 1, :cluster_2 2}, {:Eccentricity 8.2E-4} {:cluster_6 1}, {:Eccentricity 0.06917} {:cluster_0 1}, {:Eccentricity 0.89688} {:cluster_81 1}, {:Eccentricity 0.00609} {:cluster_6 1}, {:Eccentricity 0.0056} {:cluster_23 1}, {:Eccentricity 0.00683} {:cluster_2 1}, {:Eccentricity 0.00176} {:cluster_6 1}, {:Eccentricity 0.0046} {:cluster_23 1}, {:Eccentricity 9.0E-5} {:cluster_4 10}, {:Eccentricity 0.00175} {:cluster_23 1}, {:Eccentricity 5.2E-4} {:cluster_4 6, :cluster_6 1}, {:Eccentricity 0.00103} {:cluster_6 2}, {:Eccentricity 9.6E-4} {:cluster_23 2, :cluster_4 1}, {:Eccentricity 6.0E-4} {:cluster_4 2, :cluster_2 1}, {:Eccentricity 0.00455} {:cluster_23 1}, {:Eccentricity 0.01318} {:cluster_2 1}, {:Eccentricity 4.4E-4} {:cluster_4 4, :cluster_2 2, :cluster_6 4}, {:Eccentricity 0.68635} {:cluster_78 1}, {:Eccentricity 0.00303} {:cluster_23 1}, {:Eccentricity 0.79904} {:cluster_94 1}, {:Eccentricity 3.3E-4} {:cluster_4 6}, {:Eccentricity 0.71228} {:cluster_62 1}, {:Eccentricity 0.06} {:cluster_9 1}, {:Eccentricity 0.00149} {:cluster_2 3, :cluster_23 1}, {:Eccentricity 8.6E-4} {:cluster_2 1}, {:Eccentricity 2.5E-4} {:cluster_4 9}, {:Eccentricity 0.00231} {:cluster_23 1}, {:Eccentricity 0.00268} {:cluster_2 1}, {:Eccentricity 4.7E-4} {:cluster_4 5, :cluster_23 1}, {:Eccentricity 8.0E-5} {:cluster_4 9}, {:Eccentricity 0.07902} {:cluster_0 1}, {:Eccentricity 1.9E-4} {:cluster_4 13, :cluster_6 13}, {:Eccentricity 2.1E-4} {:cluster_6 55, :cluster_4 17, :cluster_2 10, :cluster_59 2, :cluster_9 1}, {:Eccentricity 0.02053} {:cluster_2 1}, {:Eccentricity 0.02862} {:cluster_2 1}, {:Eccentricity 0.01243} {:cluster_9 1, :cluster_6 1}, {:Eccentricity 0.73961} {:cluster_62 1}, {:Eccentricity 0.86407} {:cluster_66 1}, {:Eccentricity 0.95712} {:cluster_92 1}, {:Eccentricity 0.00118} {:cluster_23 1, :cluster_4 1, :cluster_2 1}, {:Eccentricity 0.00279} {:cluster_23 1}, {:Eccentricity 0.004} {:cluster_4 1}, {:Eccentricity 0.00102} {:cluster_2 1}, {:Eccentricity 5.9E-4} {:cluster_23 2, :cluster_4 1}, {:Eccentricity 0.00138} {:cluster_6 1}, {:Eccentricity 0.02986} {:cluster_2 1}, {:Eccentricity 0.00116} {:cluster_6 1}, {:Eccentricity 2.7E-4} {:cluster_4 14}, {:Eccentricity 0.00355} {:cluster_23 1}, {:Eccentricity 0.00101} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 6.2E-4} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 0.07511} {:cluster_85 1}, {:Eccentricity 0.00228} {:cluster_2 1}, {:Eccentricity 2.0E-4} {:cluster_4 11, :cluster_2 1}, {:Eccentricity 2.4E-4} {:cluster_4 22, :cluster_59 1, :cluster_23 1}, {:Eccentricity 0.00618} {:cluster_4 1}, {:Eccentricity 0.00125} {:cluster_2 1}, {:Eccentricity 0.00509} {:cluster_4 1}, {:Eccentricity 0.00326} {:cluster_6 1}, {:Eccentricity 0.0034} {:cluster_6 2}, {:Eccentricity 7.8E-4} {:cluster_6 3, :cluster_2 2}, {:Eccentricity 0.001} {:cluster_4 1}, {:Eccentricity 0.02213} {:cluster_6 1}, {:Eccentricity 0.79307} {:cluster_77 1}, {:Eccentricity 0.74504} {:cluster_62 1}, {:Eccentricity 0.29184} {:cluster_82 1}, {:Eccentricity 3.5E-4} {:cluster_6 3, :cluster_2 1}, {:Eccentricity 0.002} {:cluster_2 1}, {:Eccentricity 0.86413} {:cluster_66 1}, {:Eccentricity 0.00184} {:cluster_2 2, :cluster_6 2}, {:Eccentricity 0.0062} {:cluster_23 1}, {:Eccentricity 0.00313} {:cluster_6 1}, {:Eccentricity 0.00147} {:cluster_2 1}, {:Eccentricity 0.00182} {:cluster_2 1}, {:Eccentricity 0.00365} {:cluster_2 1}, {:Eccentricity 0.00606} {:cluster_23 1}, {:Eccentricity 0.00108} {:cluster_4 1, :cluster_2 1}, {:Eccentricity 0.00336} {:cluster_2 1}, {:Eccentricity 0.0011} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.0} {:cluster_4 8, :cluster_9 4, :cluster_23 3, :cluster_2 2}, {:Eccentricity nil} {:cluster_2 1}, {:Eccentricity 0.00187} {:cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00524} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 1.0E-4} {:cluster_23 1, :cluster_4 1}, {:Eccentricity 7.4E-4} {:cluster_2 1}, {:Eccentricity 0.07838} {:cluster_0 1}, {:Eccentricity 0.92129} {:cluster_92 1}, {:Eccentricity 0.01435} {:cluster_2 1}, {:Eccentricity 0.01508} {:cluster_23 1}, {:Eccentricity 0.8639} {:cluster_66 1}, {:Eccentricity 0.00134} {:cluster_9 1, :cluster_6 2, :cluster_2 1}, {:Eccentricity 0.00131} {:cluster_2 1}, {:Eccentricity 0.00264} {:cluster_2 2, :cluster_4 1}, {:Eccentricity 0.0014} {:cluster_2 1}, {:Eccentricity 6.0E-5} {:cluster_6 15, :cluster_4 6}, {:Eccentricity 3.0E-4} {:cluster_4 10}, {:Eccentricity 2.2E-4} {:cluster_2 8, :cluster_6 2, :cluster_23 1}, {:Eccentricity 0.00421} {:cluster_23 1}, {:Eccentricity 0.00278} {:cluster_6 1}, {:Eccentricity 0.00156} {:cluster_2 3}, {:Eccentricity 0.00166} {:cluster_6 1}, {:Eccentricity 3.4E-4} {:cluster_4 5}, {:Eccentricity 0.00536} {:cluster_2 1}, {:Eccentricity 0.01092} {:cluster_6 1}, {:Eccentricity 0.00164} {:cluster_2 3}, {:Eccentricity 0.0012} {:cluster_2 3}, {:Eccentricity 0.03408} {:cluster_6 1}, {:Eccentricity 0.00299} {:cluster_2 1}, {:Eccentricity 0.00419} {:cluster_23 1}, {:Eccentricity 0.00159} {:cluster_6 2}, {:Eccentricity 0.68665} {:cluster_78 1}, {:Eccentricity 0.00748} {:cluster_2 1}, {:Eccentricity 0.73497} {:cluster_62 1}, {:Eccentricity 0.00271} {:cluster_23 1}, {:Eccentricity 0.0211} {:cluster_6 2}, {:Eccentricity 1.7E-4} {:cluster_4 15, :cluster_23 1}, {:Eccentricity 7.9E-4} {:cluster_2 2, :cluster_4 1}, {:Eccentricity 0.0019} {:cluster_23 1, :cluster_85 1}, {:Eccentricity 0.00391} {:cluster_2 2}, {:Eccentricity 0.01206} {:cluster_2 1}, {:Eccentricity 0.00537} {:cluster_4 1}, {:Eccentricity 0.00111} {:cluster_2 2, :cluster_23 1}, {:Eccentricity 8.5E-4} {:cluster_2 3}, {:Eccentricity 0.02191} {:cluster_6 1}, {:Eccentricity 0.00367} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 4.0E-5} {:cluster_4 7, :cluster_23 1}, {:Eccentricity 0.00169} {:cluster_23 1}, {:Eccentricity 0.68262} {:cluster_62 1}, {:Eccentricity 0.07013} {:cluster_0 1}, {:Eccentricity 7.0E-4} {:cluster_6 4, :cluster_2 1, :cluster_4 2}, {:Eccentricity 0.00235} {:cluster_2 1}, {:Eccentricity 0.79737} {:cluster_79 1}, {:Eccentricity 0.00247} {:cluster_4 1}, {:Eccentricity 0.04729} {:cluster_4 1}, {:Eccentricity 0.00273} {:cluster_6 2, :cluster_4 1}, {:Eccentricity 5.1E-4} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 0.00174} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.00104} {:cluster_2 6, :cluster_6 1}, {:Eccentricity 0.0044} {:cluster_6 1}, {:Eccentricity 0.00119} {:cluster_2 1, :cluster_85 1, :cluster_9 1}, {:Eccentricity 1.4E-4} {:cluster_6 5, :cluster_4 11, :cluster_2 18, :cluster_23 3, :cluster_59 1, :cluster_3 1}, {:Eccentricity 0.00236} {:cluster_6 2, :cluster_2 2}, {:Eccentricity 5.0E-4} {:cluster_4 2, :cluster_9 1}, {:Eccentricity 0.00171} {:cluster_2 1}, {:Eccentricity 9.2E-4} {:cluster_2 2, :cluster_23 1}, {:Eccentricity 0.03261} {:cluster_4 1}, {:Eccentricity 0.00696} {:cluster_2 1}, {:Eccentricity 0.00135} {:cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00411} {:cluster_2 1}, {:Eccentricity 3.2E-4} {:cluster_4 9, :cluster_23 3, :cluster_6 5}, {:Eccentricity 5.6E-4} {:cluster_4 1, :cluster_6 3}, {:Eccentricity 0.00591} {:cluster_2 1}, {:Eccentricity 0.00305} {:cluster_23 1}, {:Eccentricity 0.05288} {:cluster_9 1}, {:Eccentricity 0.00128} {:cluster_2 1}, {:Eccentricity 0.00117} {:cluster_2 1}, {:Eccentricity 0.01668} {:cluster_6 1}, {:Eccentricity 0.00255} {:cluster_6 1}, {:Eccentricity 0.01237} {:cluster_9 2}, {:Eccentricity 0.00168} {:cluster_4 1, :cluster_6 1}, {:Eccentricity 0.00229} {:cluster_6 1}, {:Eccentricity 6.5E-4} {:cluster_2 1}, {:Eccentricity 0.00179} {:cluster_6 1}, {:Eccentricity 0.00129} {:cluster_2 3}, {:Eccentricity 0.00146} {:cluster_2 2}, {:Eccentricity 7.7E-4} {:cluster_2 1, :cluster_4 2, :cluster_6 1}, {:Eccentricity 0.00261} {:cluster_2 1}, {:Eccentricity 0.00153} {:cluster_2 3, :cluster_6 1}, {:Eccentricity 0.00188} {:cluster_23 1}, {:Eccentricity 0.0018} {:cluster_2 1}, {:Eccentricity 0.72382} {:cluster_62 1}, {:Eccentricity 0.00919} {:cluster_23 1}, {:Eccentricity 0.06675} {:cluster_0 1}, {:Eccentricity 0.00422} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.00177} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 1.2E-4} {:cluster_4 9}, {:Eccentricity 6.3E-4} {:cluster_6 5, :cluster_4 2, :cluster_23 2}, {:Eccentricity 0.00636} {:cluster_6 1}, {:Eccentricity 0.01011} {:cluster_23 1}, {:Eccentricity 0.00502} {:cluster_2 1}, {:Eccentricity 0.00695} {:cluster_23 1}, {:Eccentricity 0.00197} {:cluster_6 4}, {:Eccentricity 0.0027} {:cluster_2 1}, {:Eccentricity 0.01277} {:cluster_9 3}, {:Eccentricity 1.0E-5} {:cluster_4 12}, {:Eccentricity 0.73554} {:cluster_62 1}, {:Eccentricity 0.00425} {:cluster_23 1}, {:Eccentricity 0.68335} {:cluster_62 1}, {:Eccentricity 0.00242} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.00193} {:cluster_2 4, :cluster_6 1}, {:Eccentricity 9.5E-4} {:cluster_9 1, :cluster_6 2, :cluster_4 1}, {:Eccentricity 0.00151} {:cluster_23 1}, {:Eccentricity 2.6E-4} {:cluster_4 12, :cluster_6 3, :cluster_32 1}, {:Eccentricity 0.00308} {:cluster_2 2}, {:Eccentricity 0.00338} {:cluster_2 1}, {:Eccentricity 8.9E-4} {:cluster_4 1}, {:Eccentricity 7.3E-4} {:cluster_6 2, :cluster_2 3}, {:Eccentricity 0.01562} {:cluster_2 2}, {:Eccentricity 0.00432} {:cluster_2 1}, {:Eccentricity 0.003} {:cluster_23 1}, {:Eccentricity 0.00384} {:cluster_23 1}, {:Eccentricity 0.00762} {:cluster_2 1}, {:Eccentricity 0.00194} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 0.00388} {:cluster_6 1}, {:Eccentricity 0.00861} {:cluster_2 1}, {:Eccentricity 0.02562} {:cluster_2 1}, {:Eccentricity 0.00635} {:cluster_2 2}, {:Eccentricity 0.00141} {:cluster_2 2}, {:Eccentricity 0.01798} {:cluster_2 1}, {:Eccentricity 0.00352} {:cluster_23 1}, {:Eccentricity 0.0125} {:cluster_9 2}, {:Eccentricity 3.9E-4} {:cluster_4 9, :cluster_6 1, :cluster_3 1}, {:Eccentricity 0.00248} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 7.2E-4} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 0.00283} {:cluster_2 1}, {:Eccentricity 0.68969} {:cluster_78 1}, {:Eccentricity 8.7E-4} {:cluster_2 3}, {:Eccentricity 7.6E-4} {:cluster_9 1}, {:Eccentricity 0.00353} {:cluster_2 1}, {:Eccentricity 8.4E-4} {:cluster_2 1}, {:Eccentricity 5.5E-4} {:cluster_4 2}, {:Eccentricity 0.44297} {:cluster_74 1}, {:Eccentricity 0.00155} {:cluster_6 1}, {:Eccentricity 3.7E-4} {:cluster_4 2}, {:Eccentricity 0.01087} {:cluster_2 1}, {:Eccentricity 0.00811} {:cluster_6 1}, {:Eccentricity 0.00213} {:cluster_2 1}, {:Eccentricity 0.00985} {:cluster_2 3}, {:Eccentricity 0.00258} {:cluster_6 1}, {:Eccentricity 0.01251} {:cluster_9 1}, {:Eccentricity 0.02525} {:cluster_85 1}, {:Eccentricity 8.0E-4} {:cluster_2 2}, {:Eccentricity 2.0E-5} {:cluster_4 8}, {:Eccentricity 4.5E-4} {:cluster_4 3}, {:Eccentricity 0.71556} {:cluster_62 1}, {:Eccentricity 2.3E-4} {:cluster_4 13}, {:Eccentricity 0.72223} {:cluster_62 1}, {:Eccentricity 0.03149} {:cluster_2 10, :cluster_6 1}, {:Eccentricity 0.00358} {:cluster_2 1}, {:Eccentricity 0.01757} {:cluster_6 1}, {:Eccentricity 9.9E-4} {:cluster_2 1}, {:Eccentricity 2.9E-4} {:cluster_6 9, :cluster_2 6, :cluster_9 1}, {:Eccentricity 0.00686} {:cluster_23 1, :cluster_6 1}, {:Eccentricity 0.00448} {:cluster_4 1}, {:Eccentricity 0.05593} {:cluster_9 1}, {:Eccentricity 0.00498} {:cluster_2 1}, {:Eccentricity 0.61976} {:cluster_80 1}, {:Eccentricity 1.3E-4} {:cluster_6 6, :cluster_4 11}, {:Eccentricity 0.0098} {:cluster_2 1}, {:Eccentricity 4.6E-4} {:cluster_4 1}, {:Eccentricity 0.00106} {:cluster_2 5}, {:Eccentricity 0.00881} {:cluster_2 1}, {:Eccentricity 0.00204} {:cluster_2 3, :cluster_4 1}, {:Eccentricity 0.02938} {:cluster_6 1}, {:Eccentricity 0.00192} {:cluster_4 1}, {:Eccentricity 0.00208} {:cluster_6 1}, {:Eccentricity 0.00601} {:cluster_23 1}, {:Eccentricity 6.6E-4} {:cluster_4 1, :cluster_2 1}, {:Eccentricity 3.6E-4} {:cluster_6 5, :cluster_2 1, :cluster_4 1}, {:Eccentricity 0.00195} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.27883} {:cluster_75 1}, {:Eccentricity 7.0E-5} {:cluster_6 5, :cluster_4 9, :cluster_2 18, :cluster_9 1}, {:Eccentricity 0.00105} {:cluster_2 1}, {:Eccentricity 9.0E-4} {:cluster_2 2, :cluster_6 1}, {:Eccentricity 0.00115} {:cluster_4 1, :cluster_2 1}, {:Eccentricity 4.2E-4} {:cluster_6 4, :cluster_4 2, :cluster_2 2}, {:Eccentricity 0.00109} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 0.00515} {:cluster_23 1}, {:Eccentricity 0.00203} {:cluster_6 3, :cluster_85 1}, {:Eccentricity 0.00191} {:cluster_6 1}, {:Eccentricity 0.00285} {:cluster_23 1}, {:Eccentricity 3.8E-4} {:cluster_4 4}, {:Eccentricity 0.00479} {:cluster_2 1}, {:Eccentricity 0.00488} {:cluster_6 1, :cluster_4 1}, {:Eccentricity 5.7E-4} {:cluster_4 3, :cluster_2 1}, {:Eccentricity 0.0033} {:cluster_6 1}, {:Eccentricity 0.00143} {:cluster_2 6, :cluster_23 1}, {:Eccentricity 0.00112} {:cluster_2 1}, {:Eccentricity 0.00974} {:cluster_2 1}, {:Eccentricity 1.8E-4} {:cluster_4 12, :cluster_23 1}, {:Eccentricity 0.00199} {:cluster_6 1}, {:Eccentricity 0.01275} {:cluster_6 1}, {:Eccentricity 7.1E-4} {:cluster_4 2, :cluster_2 1}, {:Eccentricity 0.00127} {:cluster_2 1}, {:Eccentricity 0.00136} {:cluster_2 3, :cluster_6 1}, {:Eccentricity 6.4E-4} {:cluster_4 1, :cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00234} {:cluster_23 1, :cluster_2 1}, {:Eccentricity 0.00499} {:cluster_2 1}, {:Eccentricity 0.01367} {:cluster_6 1}, {:Eccentricity 0.70905} {:cluster_62 1}, {:Eccentricity 0.01799} {:cluster_2 1}, {:Eccentricity 0.0025} {:cluster_2 1}, {:Eccentricity 5.8E-4} {:cluster_6 3, :cluster_2 2, :cluster_4 2}, {:Eccentricity 0.00417} {:cluster_6 1}, {:Eccentricity 0.00133} {:cluster_2 1, :cluster_4 1}, {:Eccentricity 3.1E-4} {:cluster_4 9}, {:Eccentricity 4.0E-4} {:cluster_4 8, :cluster_2 3, :cluster_3 2}, {:Eccentricity 0.01437} {:cluster_2 1}, {:Eccentricity 0.00294} {:cluster_23 1}, {:Eccentricity 8.3E-4} {:cluster_2 1, :cluster_6 1}, {:Eccentricity 4.9E-4} {:cluster_6 7, :cluster_4 5, :cluster_2 1}, {:Eccentricity 0.47082} {:cluster_76 1}, {:Eccentricity 0.00121} {:cluster_2 4, :cluster_6 2, :cluster_23 2}, {:Eccentricity 9.8E-4} {:cluster_2 2}, {:Eccentricity 7.5E-4} {:cluster_4 1}, {:Eccentricity 0.4072} {:cluster_74 1}, {:Eccentricity 0.72377} {:cluster_62 1}, {:Eccentricity 5.0E-5} {:cluster_4 6}, {:Eccentricity 0.01506} {:cluster_6 1}, {:Eccentricity 4.3E-4} {:cluster_6 1, :cluster_4 4}, {:Eccentricity 0.00123} {:cluster_2 2}, {:Eccentricity 0.00124} {:cluster_6 1}, {:Eccentricity 0.07979} {:cluster_0 1}, {:Eccentricity 0.00456} {:cluster_6 1}, {:Eccentricity 9.7E-4} {:cluster_2 1, :cluster_9 1}, {:Eccentricity 0.00598} {:cluster_2 1}, {:Eccentricity 0.6916} {:cluster_78 1}, {:Eccentricity 0.00371} {:cluster_2 1}, {:Eccentricity 0.01728} {:cluster_2 1}, {:Eccentricity 0.00778} {:cluster_6 1}, {:Eccentricity 9.4E-4} {:cluster_2 1}, {:Eccentricity 0.97287} {:cluster_73 1}, {:Eccentricity 5.3E-4} {:cluster_4 5, :cluster_23 1}, {:Eccentricity 0.83044} {:cluster_93 1}, {:Eccentricity 0.00145} {:cluster_2 1}, {:Eccentricity 0.00351} {:cluster_2 1}, {:Eccentricity 8.8E-4} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.00243} {:cluster_2 1}, {:Eccentricity 0.00162} {:cluster_4 1}, {:Eccentricity 0.00319} {:cluster_6 1}, {:Eccentricity 0.0023} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 0.00233} {:cluster_23 1}, {:Eccentricity 0.02184} {:cluster_6 1}, {:Eccentricity 0.74119} {:cluster_62 1}, {:Eccentricity 0.00836} {:cluster_23 1}, {:Eccentricity 0.00705} {:cluster_6 1}, {:Eccentricity 0.00214} {:cluster_2 1}, {:Eccentricity 0.05012} {:cluster_4 1}, {:Eccentricity 6.9E-4} {:cluster_4 1, :cluster_2 1, :cluster_6 1}, {:Eccentricity 0.00163} {:cluster_2 1}, {:Eccentricity 0.00137} {:cluster_6 1, :cluster_9 1}, {:Eccentricity 0.71478} {:cluster_62 1}, {:Eccentricity 0.00265} {:cluster_85 1}, {:Eccentricity 0.00173} {:cluster_6 1, :cluster_2 1}, {:Eccentricity 1.1E-4} {:cluster_4 10}, {:Eccentricity 6.1E-4} {:cluster_23 1}, {:Eccentricity 0.00401} {:cluster_6 1}, {:Eccentricity 0.00468} {:cluster_4 1}, {:Eccentricity 0.00126} {:cluster_2 2}, {:Eccentricity 2.8E-4} {:cluster_6 11, :cluster_4 12, :cluster_2 2, :cluster_9 1}, {:Eccentricity 0.00564} {:cluster_6 1}, {:Eccentricity 0.00414} {:cluster_6 1, :cluster_23 1}, {:Eccentricity 0.00241} {:cluster_6 1}, {:Eccentricity 0.08154} {:cluster_0 1}, {:Eccentricity 1.5E-4} {:cluster_4 6, :cluster_2 3}, {:Eccentricity 0.00314} {:cluster_2 1}, {:Eccentricity 0.02088} {:cluster_6 1}, {:Eccentricity 0.00544} {:cluster_2 1}, {:Eccentricity 0.00476} {:cluster_2 1}, {:Eccentricity 0.00219} {:cluster_4 1}, {:Eccentricity 0.00122} {:cluster_4 1, :cluster_2 2}, {:Eccentricity 0.00729} {:cluster_9 1}}, :hyperparameters {:m 0.41192206896551725, :r 0.0013946051735142498, :s 0.1953161197306312, :nu 1166.9999999999998}, :hyper-grid {:m (0.0 0.23242900000000002 0.46485800000000005 0.6972870000000001 0.9297160000000001 1.1621450000000002 1.3945740000000002 1.6270030000000002 1.8594320000000002 2.091861 2.3242900000000004 2.5567190000000006 2.789148000000001 3.021577000000001 3.2540060000000013 3.4864350000000015 3.7188640000000017 3.951293000000002 4.183722000000002 4.416151000000002 4.648580000000002 4.8810090000000015 5.113438000000001 5.345867000000001 5.578296000000001 5.810725000000001 6.043154 6.275583 6.508012 6.740441 6.9728699999999995 7.205298999999999), :r (8.56898029134533E-4 0.0013721466648667219 0.0021972118103789806 0.003518384632839378 0.00563397227619358 0.009021652525608603 0.014446328505508529 0.023132835885295813 0.03704249809160715 0.05931597283059068 0.09498238007972104 0.15209482530742383 0.24354870730634268 0.38999336572232046 0.6244944881440667 0.9999999999999986 1.601295157899462 2.564146182712267 4.105954866523549 6.574845646317901 10.528268497385229 16.858865365928438 26.996019478140187 43.2285952729055 69.22174029329925 110.84443755303434 177.49466113376343 284.2213414265016 455.12225779794744 728.785067664125), :s (0.1853161197306313 0.216062732764709 0.25191065168864374 0.29370625661438626 0.3424363543033322 0.39925147696977425 0.4654930466913777 0.5427250467865531 0.6327709479294402 0.7377567608391478 0.8601612320301474 1.0028743677605356 1.169265667946127 1.3632636810635448 1.589448758357416 1.8531611973063138 2.1606273276470906 2.519106516886438 2.9370625661438634 3.424363543033323 3.9925147696977437 4.654930466913779 5.427250467865534 6.327709479294406 7.377567608391484 8.60161232030148 10.028743677605364 11.692656679461283 13.632636810635464 15.894487583574179), :nu (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata {}, :data {0 0.00119, 893 0.01237, 920 0.00106, 558 2.1E-4, 453 0.00358, 584 2.8E-4, 487 3.4E-4, 637 0.06917, 972 2.0E-5, 519 0.92129, 1097 8.0E-5, 357 1.3E-4, 716 1.8E-4, 950 2.8E-4, 275 0.00168, 530 3.5E-4, 929 0.00187, 789 0.00319, 389 0.00285, 586 7.0E-5, 410 0.00169, 433 1.7E-4, 765 1.4E-4, 521 2.1E-4, 451 0.00135, 291 6.6E-4, 443 5.2E-4, 798 4.9E-4, 779 3.6E-4, 970 0.00236, 249 4.4E-4, 638 0.02562, 299 0.03149, 1101 1.0E-5, 121 0.00143, 734 3.2E-4, 287 8.7E-4, 65 0.00476, 1086 0.68335, 702 0.00606, 70 1.9E-4, 949 2.3E-4, 218 2.3E-4, 648 0.72223, 1070 0.00114, 812 2.9E-4, 62 6.5E-4, 74 1.9E-4, 774 1.4E-4, 475 7.0E-5, 497 1.9E-4, 1009 2.2E-4, 580 2.1E-4, 1138 2.9E-4, 891 0.01243, 164 0.00683, 1040 2.7E-4, 282 1.1E-4, 769 6.3E-4, 799 0.00134, 273 6.3E-4, 1147 0.00985, 186 2.0E-4, 430 5.6E-4, 641 1.9E-4, 529 2.1E-4, 898 0.00422, 370 1.9E-4, 834 0.00177, 233 0.00509, 298 0.00101, 188 3.1E-4, 240 7.0E-5, 110 2.1E-4, 130 4.3E-4, 982 9.0E-5, 620 1.4E-4, 311 2.7E-4, 931 0.00136, 882 0.00149, 128 0.00164, 399 0.00524, 989 7.7E-4, 377 5.8E-4, 468 5.2E-4, 259 4.7E-4, 210 0.0, 229 7.0E-5, 153 0.00242, 621 1.7E-4, 213 5.3E-4, 670 2.5E-4, 977 0.71478, 343 6.0E-5, 958 3.9E-4, 887 0.0, 472 3.2E-4, 7 0.00468, 894 0.0125, 59 3.1E-4, 934 0.00193, 473 3.2E-4, 1010 2.2E-4, 86 4.9E-4, 756 3.5E-4, 830 0.00121, 613 1.7E-4, 491 2.6E-4, 154 0.00271, 20 4.0E-5, 224 2.4E-4, 355 2.6E-4, 592 0.00314, 1146 8.6E-4, 610 0.05593, 806 0.00881, 571 2.1E-4, 466 0.70905, 72 4.6E-4, 454 3.9E-4, 888 0.01251, 463 nil, 851 0.00273, 770 4.9E-4, 814 2.9E-4, 859 1.4E-4, 58 1.9E-4, 964 0.02184, 980 0.00124, 1001 8.3E-4, 205 7.1E-4, 555 2.1E-4, 552 2.1E-4, 60 0.00479, 1102 1.0E-5, 835 0.00308, 459 5.8E-4, 175 0.03149, 322 3.2E-4, 510 2.6E-4, 1052 8.0E-4, 1121 1.3E-4, 662 0.00184, 27 0.00173, 352 3.2E-4, 493 4.0E-5, 899 0.00176, 416 0.00109, 777 5.6E-4, 694 0.00324, 1 2.0E-4, 631 0.00811, 854 0.00197, 69 1.3E-4, 101 5.8E-4, 24 9.4E-4, 901 1.4E-4, 547 2.1E-4, 102 2.1E-4, 788 0.00456, 1106 2.2E-4, 713 5.2E-4, 1110 0.06675, 385 0.0, 988 7.3E-4, 135 0.0014, 1065 0.0, 397 5.3E-4, 1011 7.3E-4, 1006 1.7E-4, 773 1.4E-4, 490 4.0E-4, 752 4.2E-4, 354 1.9E-4, 884 2.4E-4, 360 6.0E-5, 998 0.00134, 961 1.1E-4, 55 1.8E-4, 568 2.1E-4, 797 0.00367, 688 0.00118, 763 4.2E-4, 269 3.9E-4, 676 0.01508, 448 0.00102, 527 2.1E-4, 206 0.00192, 1075 0.00115, 966 0.03149, 165 0.00391, 715 1.7E-4, 387 1.8E-4, 652 1.4E-4, 683 0.01011, 85 2.1E-4, 721 0.00145, 862 0.00105, 615 0.00114, 681 0.00384, 225 1.5E-4, 865 0.00241, 297 0.00261, 39 1.5E-4, 805 0.00193, 274 1.0E-5, 88 5.7E-4, 217 0.00308, 1128 6.6E-4, 46 2.0E-4, 682 0.00175, 508 1.2E-4, 1157 2.6E-4, 149 0.00119, 415 0.00149, 239 7.0E-5, 478 1.1E-4, 878 0.00778, 157 9.0E-5, 345 6.0E-5, 300 0.03149, 743 0.02862, 921 0.00106, 1039 2.9E-4, 4 1.3E-4, 550 2.1E-4, 1115 4.0E-5, 204 6.4E-4, 470 3.9E-4, 1164 6.3E-4, 646 0.72382, 77 6.0E-5, 106 0.00195, 197 9.0E-4, 405 6.3E-4, 897 0.01277, 726 2.6E-4, 776 7.0E-4, 940 2.8E-4, 755 4.9E-4, 902 6.8E-4, 518 0.00155, 232 0.00391, 260 1.0E-5, 823 0.004, 1125 6.0E-5, 267 3.0E-4, 119 7.0E-5, 319 5.0E-5, 534 2.1E-4, 222 5.0E-5, 603 2.5E-4, 293 7.0E-5, 95 2.1E-4, 450 2.3E-4, 329 0.00564, 144 2.7E-4, 1087 0.00748, 504 2.4E-4, 819 1.5E-4, 818 2.8E-4, 505 2.3E-4, 723 0.0, 1071 1.0E-5, 1008 7.2E-4, 992 2.6E-4, 176 0.07838, 863 2.1E-4, 471 4.0E-4, 349 1.9E-4, 512 8.0E-5, 710 2.0E-5, 1058 4.0E-4, 192 0.00141, 54 0.00121, 92 4.3E-4, 221 1.1E-4, 141 7.0E-5, 502 2.6E-4, 871 2.4E-4, 464 1.4E-4, 801 2.8E-4, 307 2.5E-4, 935 0.00193, 758 3.5E-4, 290 4.3E-4, 1156 0.00235, 1144 7.0E-5, 627 7.0E-5, 517 0.00109, 1122 3.2E-4, 361 1.9E-4, 264 6.9E-4, 137 7.0E-5, 356 6.0E-5, 728 2.4E-4, 976 0.71556, 678 0.00234, 327 0.01597, 234 0.00121, 856 0.00184, 817 0.00365, 1017 0.03149, 104 6.4E-4, 353 1.9E-4, 1145 0.00264, 15 0.0211, 48 3.0E-4, 945 2.0E-5, 759 6.3E-4, 1066 0.71228, 242 0.00123, 832 0.00213, 969 5.7E-4, 50 1.9E-4, 956 3.7E-4, 917 2.1E-4, 1030 2.1E-4, 557 2.1E-4, 251 5.7E-4, 394 5.9E-4, 116 0.03261, 585 6.3E-4, 583 2.1E-4, 75 3.8E-4, 437 1.4E-4, 516 4.2E-4, 1062 3.1E-4, 994 0.00255, 930 0.0018, 967 7.0E-5, 687 3.2E-4, 159 1.7E-4, 848 1.9E-4, 995 0.00229, 1096 0.00228, 1159 5.7E-4, 709 5.2E-4, 99 0.00204, 540 2.1E-4, 645 0.05012, 749 2.7E-4, 479 5.0E-4, 1081 0.73961, 890 0.0125, 1046 1.4E-4, 630 0.00414, 916 8.0E-5, 815 2.9E-4, 1080 0.00247, 281 2.1E-4, 402 0.00421, 669 2.1E-4, 781 3.6E-4, 740 2.1E-4, 1012 0.00137, 975 0.95712, 429 5.9E-4, 309 2.3E-4, 458 5.8E-4, 21 3.8E-4, 388 0.0046, 495 4.4E-4, 952 1.9E-4, 626 2.1E-4, 875 0.0044, 31 1.4E-4, 113 3.3E-4, 32 2.5E-4, 811 2.9E-4, 827 0.00236, 407 9.6E-4, 398 4.0E-5, 136 0.00338, 691 0.00414, 847 7.0E-4, 825 2.4E-4, 139 0.00974, 506 2.8E-4, 396 0.0056, 460 2.2E-4, 483 0.89688, 589 6.3E-4, 581 2.1E-4, 932 0.00115, 174 0.00177, 578 2.1E-4, 855 0.00191, 331 0.83044, 363 6.0E-5, 1038 0.00498, 284 0.00618, 208 0.00162, 305 0.00635, 1019 0.68635, 955 3.3E-4, 796 0.00199, 708 9.8E-4, 182 0.01318, 256 1.2E-4, 1107 1.4E-4, 1109 0.00119, 657 7.7E-4, 514 2.5E-4, 1103 2.4E-4, 731 3.0E-4, 619 2.9E-4, 985 6.8E-4, 485 7.0E-5, 214 0.00108, 193 6.9E-4, 685 6.8E-4, 804 9.2E-4, 869 2.0E-4, 1002 3.2E-4, 1104 0.97287, 836 4.2E-4, 1131 4.0E-4, 785 1.4E-4, 635 3.4E-4, 442 0.01367, 1073 1.4E-4, 561 2.8E-4, 954 2.7E-4, 656 8.0E-5, 607 2.0E-5, 241 2.1E-4, 314 2.4E-4, 782 0.01435, 226 8.0E-5, 235 0.00106, 672 0.00118, 420 0.00203, 418 5.8E-4, 262 4.7E-4, 1016 0.44297, 263 1.2E-4, 304 0.0023, 401 1.4E-4, 673 3.6E-4, 40 3.2E-4, 129 0.07979, 600 1.9E-4, 729 2.5E-4, 1042 1.2E-4, 467 0.00121, 1033 3.1E-4, 1149 0.00985, 445 5.0E-5, 317 2.1E-4, 1091 8.0E-4, 1028 4.9E-4, 294 7.0E-5, 91 3.4E-4, 1044 0.8639, 810 2.9E-4, 1137 0.01506, 364 1.9E-4, 987 0.0, 880 0.00705, 515 3.9E-4, 412 0.0, 553 2.1E-4, 974 9.6E-4, 341 3.9E-4, 117 4.0E-5, 1000 0.00236, 1095 2.1E-4, 665 0.00149, 523 2.1E-4, 172 0.00861, 601 7.0E-5, 108 0.00153, 156 0.00174, 358 1.3E-4, 308 1.1E-4, 908 8.5E-4, 649 1.4E-4, 531 2.1E-4, 1085 0.68262, 923 8.5E-4, 1111 8.7E-4, 223 1.7E-4, 419 8.3E-4, 365 6.0E-5, 944 0.00156, 181 0.00129, 417 6.4E-4, 1082 0.73497, 979 2.1E-4, 278 8.0E-5, 56 2.1E-4, 942 3.9E-4, 33 4.5E-4, 13 0.0, 1043 0.86407, 867 0.00278, 22 3.9E-4, 618 0.00123, 1141 1.4E-4, 1093 1.1E-4, 380 5.9E-4, 257 7.0E-5, 1061 0.00143, 338 2.6E-4, 1024 2.7E-4, 500 2.8E-4, 909 0.00143, 1018 2.2E-4, 993 0.00242, 1089 7.3E-4, 168 7.0E-5, 833 1.0E-5, 496 1.3E-4, 1056 5.2E-4, 1129 7.0E-5, 947 0.47082, 347 6.0E-5, 501 2.0E-4, 1007 1.3E-4, 1077 1.4E-4, 596 7.8E-4, 872 1.9E-4, 792 0.0034, 90 2.5E-4, 237 0.00106, 826 2.0E-4, 292 0.00104, 109 2.9E-4, 216 0.00129, 191 2.8E-4, 498 1.8E-4, 829 0.00114, 761 7.0E-5, 1072 4.9E-4, 375 0.00258, 525 2.1E-4, 367 6.0E-5, 143 0.00185, 742 2.9E-4, 178 0.00136, 640 1.1E-4, 247 2.4E-4, 328 0.0034, 391 9.6E-4, 990 9.0E-4, 167 7.0E-5, 707 9.2E-4, 36 2.6E-4, 41 2.8E-4, 474 2.7E-4, 187 1.4E-4, 551 2.8E-4, 1118 1.7E-4, 996 0.00236, 528 2.1E-4, 971 2.0E-5, 599 1.3E-4, 376 8.2E-4, 195 9.7E-4, 889 0.01277, 316 2.0E-4, 668 0.00182, 428 2.1E-4, 303 2.1E-4, 671 0.0, 794 0.00417, 905 0.74504, 368 1.3E-4, 560 2.8E-4, 565 2.1E-4, 310 2.3E-4, 366 6.0E-5, 118 0.02938, 522 2.1E-4, 150 0.02525, 886 0.0, 313 2.8E-4, 384 0.0, 567 2.1E-4, 238 8.5E-4, 846 0.00159, 962 0.4072, 1127 0.00299, 845 7.0E-4, 196 6.2E-4, 162 0.00432, 393 1.0E-4, 184 0.0, 219 1.4E-4, 999 0.08154, 461 1.5E-4, 1032 3.2E-4, 89 7.7E-4, 100 1.3E-4, 426 0.00125, 604 1.7E-4, 477 5.3E-4, 844 0.00203, 541 2.1E-4, 351 1.9E-4, 243 4.4E-4, 131 0.79737, 790 0.00313, 963 0.0211, 1053 7.0E-5, 629 0.00143, 873 0.00353, 122 8.4E-4, 933 0.00411, 43 2.1E-4, 1067 9.7E-4, 231 3.1E-4, 61 0.01092, 654 7.0E-5, 883 2.0E-4, 1003 7.8E-4, 598 6.0E-5, 413 2.0E-5, 29 0.03149, 784 6.0E-5, 800 5.8E-4, 151 0.00203, 369 6.0E-5, 348 3.2E-4, 1124 0.00204, 575 2.1E-4, 693 0.00233, 44 1.2E-4, 739 1.4E-4, 258 1.1E-4, 250 1.9E-4, 674 0.00636, 539 2.1E-4, 301 4.4E-4, 838 9.5E-4, 424 9.5E-4, 93 3.8E-4, 6 0.00537, 684 0.00279, 1026 4.3E-4, 951 7.0E-5, 573 2.1E-4, 408 0.00143, 563 2.1E-4, 850 0.00197, 616 0.00156, 866 0.00168, 111 2.5E-4, 997 0.00153, 689 0.00686, 28 0.29184, 456 0.00351, 374 6.0E-5, 608 0.0, 737 2.1E-4, 1155 0.00243, 548 2.8E-4, 538 2.1E-4, 1034 9.0E-5, 895 0.01243, 411 3.9E-4, 957 0.00122, 134 0.00133, 943 1.7E-4, 64 0.00598, 623 7.0E-5, 1135 0.00234, 1133 7.4E-4, 465 0.709, 816 2.9E-4, 334 1.3E-4, 1150 0.00153, 323 1.7E-4, 189 2.7E-4, 280 4.0E-5, 198 0.00118, 155 0.00231, 295 0.00137, 808 4.9E-4, 248 4.9E-4, 587 6.3E-4, 285 1.4E-4, 507 2.6E-4, 227 2.7E-4, 724 2.2E-4, 476 1.5E-4, 941 0.0012, 911 2.4E-4, 853 0.00248, 494 1.2E-4, 220 1.8E-4, 842 0.00197, 103 4.4E-4, 697 0.00601, 611 0.05739, 1105 0.01798, 170 7.8E-4, 1154 0.00367, 51 7.0E-5, 25 0.00122, 261 1.8E-4, 768 7.0E-4, 822 0.01668, 201 0.01562, 904 0.74119, 590 7.0E-5, 489 9.0E-5, 778 3.6E-4, 166 7.0E-5, 447 0.00371, 34 1.2E-4, 252 7.5E-4, 978 1.4E-4, 775 2.1E-4, 325 9.0E-5, 1005 1.9E-4, 594 4.2E-4, 436 0.0025, 828 0.00121, 535 2.8E-4, 813 2.9E-4, 146 5.3E-4, 741 1.4E-4, 1060 7.0E-5, 876 0.00686, 1064 0.01206, 228 8.0E-5, 907 4.0E-4, 306 1.2E-4, 125 7.0E-5, 276 0.00104, 340 6.0E-5, 148 2.8E-4, 1143 7.3E-4, 482 1.0E-4, 1049 1.8E-4, 622 0.00195, 588 2.1E-4, 17 0.03149, 312 3.0E-4, 606 7.0E-5, 3 1.5E-4, 1148 0.00985, 520 0.02986, 1088 2.3E-4, 760 4.9E-4, 720 0.00104, 1126 2.1E-4, 286 0.00193, 279 2.8E-4, 879 0.00609, 1020 4.0E-4, 536 2.1E-4, 1023 0.00219, 663 0.00111, 12 0.0, 440 0.00116, 332 2.1E-4, 330 0.00106, 1162 4.7E-4, 382 1.4E-4, 152 4.7E-4, 1112 9.0E-5, 1140 0.002, 544 2.1E-4, 803 1.4E-4, 642 7.1E-4, 435 1.4E-4, 342 3.2E-4, 703 0.003, 783 1.7E-4, 695 0.0019, 973 2.0E-5, 2 5.0E-5, 948 0.61976, 66 0.00422, 484 2.4E-4, 439 4.0E-4, 236 0.00121, 556 2.1E-4, 373 1.3E-4, 1083 0.73554, 142 4.2E-4, 359 1.9E-4, 727 1.7E-4, 371 0.01757, 772 0.00488, 444 5.3E-4, 1057 1.8E-4, 570 2.1E-4, 757 4.9E-4, 107 0.00156, 1094 4.0E-4, 532 2.1E-4, 984 2.4E-4, 23 0.00174, 1079 0.0098, 745 0.01799, 719 0.00111, 230 2.6E-4, 625 0.00729, 47 3.0E-4, 526 2.1E-4, 180 7.0E-5, 786 1.0E-5, 1068 9.8E-4, 1166 2.9E-4, 870 1.5E-4, 537 2.1E-4, 659 5.0E-5, 158 3.1E-4, 991 5.1E-4, 350 6.0E-5, 35 3.3E-4, 1116 0.79904, 849 0.00134, 1120 9.5E-4, 644 0.00448, 1069 1.8E-4, 881 0.00268, 127 0.00136, 927 2.2E-4, 675 2.4E-4, 1055 0.00146, 383 0.0, 533 2.1E-4, 1100 1.0E-5, 910 1.4E-4, 302 0.001, 564 2.1E-4, 701 0.00149, 1090 0.00138, 566 2.1E-4, 821 1.4E-4, 787 1.4E-4, 82 3.0E-4, 76 1.4E-4, 735 0.00136, 492 3.9E-4, 718 5.3E-4, 771 4.9E-4, 215 0.00128, 97 4.5E-4, 704 0.00121, 277 1.1E-4, 926 7.9E-4, 751 2.4E-4, 1114 6.0E-5, 19 5.2E-4, 335 0.00103, 597 3.4E-4, 938 0.00126, 57 1.1E-4, 609 0.06, 202 2.8E-4, 68 1.5E-4, 452 2.9E-4, 1054 0.00117, 200 0.01562, 1142 0.00164, 868 0.00204, 11 0.00273, 115 1.9E-4, 946 0.27883, 1063 0.00163, 983 8.9E-4, 339 0.03408, 431 2.4E-4, 462 3.6E-4, 337 1.9E-4, 698 0.00305, 255 5.0E-4, 503 2.6E-4, 546 2.1E-4, 9 0.0, 953 2.6E-4, 857 0.68665, 706 3.2E-4, 632 6.2E-4, 457 4.4E-4, 427 1.4E-4, 145 2.7E-4, 5 0.00283, 733 9.0E-5, 1163 1.3E-4, 1165 7.0E-4, 1152 0.00635, 624 2.8E-4, 831 0.00179, 244 0.07013, 918 0.0012, 824 5.0E-5, 289 1.7E-4, 112 4.0E-4, 925 0.00194, 1059 2.2E-4, 730 2.7E-4, 699 0.00355, 712 0.00248, 1076 2.6E-4, 1113 4.0E-5, 414 3.3E-4, 839 2.2E-4, 802 2.9E-4, 1084 0.00762, 860 0.6916, 1117 0.00153, 179 0.07902, 344 1.9E-4, 481 6.0E-4, 732 1.8E-4, 661 4.5E-4, 245 9.2E-4, 378 6.9E-4, 913 1.3E-4, 906 3.9E-4, 658 5.2E-4, 266 4.3E-4, 324 0.00171, 793 0.00401, 1134 0.0033, 1132 6.0E-4, 1014 1.7E-4, 680 0.0062, 446 0.00264, 524 2.8E-4, 254 3.8E-4, 404 0.00188, 1025 1.7E-4, 617 0.0012, 283 9.0E-5, 1153 7.3E-4, 513 4.4E-4, 572 2.1E-4, 705 0.00303, 1098 1.0E-5, 959 8.0E-5, 1074 0.00101, 83 2.3E-4, 634 1.8E-4, 138 0.02191, 1050 5.1E-4, 346 1.3E-4, 14 0.02213, 455 2.8E-4, 265 2.4E-4, 449 3.6E-4, 333 3.2E-4, 650 8.0E-5, 639 0.03149, 569 2.1E-4, 326 3.2E-4, 746 0.01437, 647 0.72377, 45 2.3E-4, 53 0.00488, 559 2.1E-4, 78 2.0E-4, 1037 9.0E-5, 924 0.00122, 562 2.1E-4, 1119 7.9E-4, 542 2.1E-4, 912 2.0E-5, 664 0.00104, 1048 3.0E-4, 315 3.6E-4, 1031 1.4E-4, 914 9.0E-5, 480 2.3E-4, 132 2.4E-4, 753 5.6E-4, 900 7.8E-4, 1013 7.1E-4, 26 0.00193, 766 5.6E-4, 123 0.00143, 203 3.7E-4, 667 2.4E-4, 392 2.2E-4, 1045 0.86413, 577 2.8E-4, 807 0.00141, 140 0.01087, 321 0.00111, 795 0.00388, 441 0.00184, 700 0.00695, 268 2.4E-4, 840 8.8E-4, 16 0.02088, 320 0.0011, 133 0.00134, 288 8.7E-4, 381 1.4E-4, 605 0.00187, 163 0.00544, 81 2.3E-4, 120 2.9E-4, 643 0.00104, 79 1.3E-4, 211 2.4E-4, 38 2.1E-4, 173 0.00104, 126 2.1E-4, 981 1.4E-4, 1161 3.1E-4, 421 0.00159, 593 0.0019, 636 0.00204, 1160 2.1E-4, 98 1.9E-4, 422 0.00197, 423 9.5E-4, 614 2.4E-4, 762 2.8E-4, 582 2.1E-4, 666 5.5E-4, 1123 2.6E-4, 554 2.1E-4, 409 6.3E-4, 574 2.8E-4, 595 7.8E-4, 124 4.4E-4, 747 3.1E-4, 171 0.00164, 87 3.1E-4, 169 7.0E-5, 653 2.4E-4, 679 0.00294, 843 0.00203, 160 0.00146, 30 1.0E-5, 400 6.1E-4, 767 4.9E-4, 896 0.01277, 928 7.0E-5, 696 0.00455, 1027 4.7E-4, 738 2.4E-4, 809 4.4E-4, 509 2.7E-4, 736 0.00214, 207 3.0E-4, 874 0.00591, 434 0.00147, 1130 8.8E-4, 690 0.00352, 194 9.0E-4, 1047 2.1E-4, 511 0.79307, 73 1.9E-4, 486 2.0E-4, 336 1.9E-4, 96 4.0E-4, 837 5.0E-4, 1136 0.00208, 937 0.00126, 10 4.0E-4, 660 7.9E-4, 272 7.0E-4, 499 1.8E-4, 488 2.6E-4, 903 6.0E-4, 386 0.00151, 270 4.7E-4, 576 2.8E-4, 717 0.0, 543 2.1E-4, 271 2.8E-4, 18 0.03149, 395 0.00419, 403 0.00515, 469 5.5E-4, 105 0.00173, 185 1.0E-5, 52 0.00194, 1051 4.9E-4, 545 2.1E-4, 633 7.6E-4, 114 0.02053, 1099 1.0E-5, 968 0.03149, 253 3.2E-4, 612 0.05288, 1151 0.00184, 1015 3.4E-4, 628 3.5E-4, 748 2.1E-4, 209 7.2E-4, 147 0.00265, 655 2.1E-4, 1022 6.0E-5, 750 3.0E-4, 852 0.00273, 425 0.0011, 1158 3.3E-4, 864 0.0027, 67 0.00536, 1108 0.00336, 296 4.0E-4, 602 0.04729, 318 2.7E-4, 161 0.00502, 651 3.2E-4, 725 2.0E-4, 372 6.0E-5, 1092 2.5E-4, 406 0.00121, 438 2.1E-4, 780 0.00103, 711 9.9E-4, 1041 2.3E-4, 71 1.2E-4, 939 0.00112, 579 2.1E-4, 877 0.00524, 722 0.00131, 42 1.8E-4, 919 0.00127, 80 3.3E-4, 885 2.2E-4, 1078 0.00696, 986 4.4E-4, 1035 2.0E-4, 714 2.1E-4, 677 0.00836, 199 0.00166, 841 7.7E-4, 754 4.2E-4, 791 0.00326, 1029 0.01275, 861 0.68969, 591 1.4E-4, 1021 0.00133, 744 0.01728, 960 0.0023, 37 2.7E-4, 183 4.0E-5, 1139 4.0E-4, 965 0.03149, 892 0.01237, 432 6.8E-4, 379 0.00135, 63 0.00499, 212 1.4E-4, 94 1.4E-4, 362 6.0E-5, 8 0.00264, 686 2.4E-4, 692 0.00919, 764 4.2E-4, 246 5.8E-4, 190 2.3E-4, 1004 0.00143, 1036 1.5E-4, 549 2.1E-4, 922 0.00129, 177 0.00104, 915 7.0E-4, 936 0.00108, 820 0.07511, 49 3.0E-4, 858 1.4E-4, 390 0.00425, 84 1.3E-4}}, :Launch_Mass_kg #gensql.inference.gpm.column.Column{:var-name :Launch_Mass_kg, :stattype :gaussian, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3727.0, :sum-x-sq 1.3890529E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 3, :sum-x 378.0, :sum-x-sq 47628.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4723.0, :sum-x-sq 2.2306729E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3727.0, :sum-x-sq 1.3890529E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4000.0, :sum-x-sq 1.6E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 980.0, :sum-x-sq 960400.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 5, :sum-x 635.0, :sum-x-sq 251251.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3792.0, :sum-x-sq 1.4379264E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 12, :sum-x 29947.6, :sum-x-sq 1.2831031976E8}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 2, :sum-x 4122.0, :sum-x-sq 1.3609044E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 0, :sum-x 0, :sum-x-sq 0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 2, :sum-x 7380.0, :sum-x-sq 3.06644E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 1200.0, :sum-x-sq 1440000.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 3764.0, :sum-x-sq 1.4167696E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 4, :sum-x 4800.0, :sum-x-sq 5760000.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 258, :sum-x 115356.54999999999, :sum-x-sq 8.36440570625E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4723.0, :sum-x-sq 2.2306729E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 7, :sum-x 16725.0, :sum-x-sq 4.3580625E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 4742.0, :sum-x-sq 2.2486564E7}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 4, :sum-x 2800.0, :sum-x-sq 1960000.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 424, :sum-x 1581118.0, :sum-x-sq 6.809002118E9}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 29, :sum-x 251979.0, :sum-x-sq 2.977314945E9}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 246, :sum-x 169145.24999999997, :sum-x-sq 3.572552840025E8}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 72, :sum-x 125588.0, :sum-x-sq 2.3975217E8}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Launch_Mass_kg, :suff-stats {:n 1, :sum-x 450.0, :sum-x-sq 202500.0}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}}}, :assignments {{:Launch_Mass_kg 18000.0} {:cluster_9 5}, {:Launch_Mass_kg 2744.0} {:cluster_2 1}, {:Launch_Mass_kg 3311.0} {:cluster_4 1}, {:Launch_Mass_kg 3727.0} {:cluster_80 1, :cluster_75 1}, {:Launch_Mass_kg 4990.0} {:cluster_9 1}, {:Launch_Mass_kg 5250.0} {:cluster_4 2}, {:Launch_Mass_kg 5345.0} {:cluster_4 1}, {:Launch_Mass_kg 5350.0} {:cluster_4 1}, {:Launch_Mass_kg 6500.0} {:cluster_9 2}, {:Launch_Mass_kg 4860.0} {:cluster_4 1}, {:Launch_Mass_kg 2783.0} {:cluster_4 1}, {:Launch_Mass_kg 726.0} {:cluster_2 1}, {:Launch_Mass_kg 3050.0} {:cluster_4 2}, {:Launch_Mass_kg 680.0} {:cluster_2 2}, {:Launch_Mass_kg 140.0} {:cluster_2 1}, {:Launch_Mass_kg 150.0} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 4193.0} {:cluster_2 1}, {:Launch_Mass_kg 4690.0} {:cluster_4 1}, {:Launch_Mass_kg 553.0} {:cluster_6 1}, {:Launch_Mass_kg 3287.0} {:cluster_4 1}, {:Launch_Mass_kg 1282.0} {:cluster_4 1}, {:Launch_Mass_kg 1640.0} {:cluster_4 1}, {:Launch_Mass_kg 764.0} {:cluster_2 1}, {:Launch_Mass_kg 148.0} {:cluster_2 1}, {:Launch_Mass_kg 5984.0} {:cluster_4 1}, {:Launch_Mass_kg 2060.0} {:cluster_23 3, :cluster_4 1}, {:Launch_Mass_kg 1420.0} {:cluster_4 1, :cluster_2 1}, {:Launch_Mass_kg 60.0} {:cluster_2 2}, {:Launch_Mass_kg 348.0} {:cluster_6 1}, {:Launch_Mass_kg 6020.0} {:cluster_4 1}, {:Launch_Mass_kg 3760.0} {:cluster_4 1}, {:Launch_Mass_kg 2033.0} {:cluster_4 1}, {:Launch_Mass_kg 2200.0} {:cluster_23 3, :cluster_85 2, :cluster_4 4}, {:Launch_Mass_kg 4200.0} {:cluster_62 1, :cluster_2 2, :cluster_4 2}, {:Launch_Mass_kg 4635.0} {:cluster_4 1}, {:Launch_Mass_kg 50.0} {:cluster_2 2, :cluster_0 1}, {:Launch_Mass_kg 3100.0} {:cluster_4 3}, {:Launch_Mass_kg 204.0} {:cluster_2 2}, {:Launch_Mass_kg 3700.0} {:cluster_4 1}, {:Launch_Mass_kg 1410.0} {:cluster_4 1}, {:Launch_Mass_kg 2450.0} {:cluster_4 1}, {:Launch_Mass_kg 2600.0} {:cluster_4 6}, {:Launch_Mass_kg 170.0} {:cluster_2 1}, {:Launch_Mass_kg 10.9} {:cluster_6 1}, {:Launch_Mass_kg 4333.0} {:cluster_4 1}, {:Launch_Mass_kg 750.0} {:cluster_2 1}, {:Launch_Mass_kg 935.0} {:cluster_23 1}, {:Launch_Mass_kg 434.0} {:cluster_6 1}, {:Launch_Mass_kg 0.8} {:cluster_2 1}, {:Launch_Mass_kg 4970.0} {:cluster_4 1}, {:Launch_Mass_kg 2532.0} {:cluster_4 1}, {:Launch_Mass_kg 3582.0} {:cluster_4 1}, {:Launch_Mass_kg 3124.0} {:cluster_4 1}, {:Launch_Mass_kg 1156.0} {:cluster_4 8}, {:Launch_Mass_kg 3150.0} {:cluster_4 1}, {:Launch_Mass_kg 5600.0} {:cluster_4 2}, {:Launch_Mass_kg 3635.0} {:cluster_4 1}, {:Launch_Mass_kg 5990.0} {:cluster_4 4}, {:Launch_Mass_kg 720.0} {:cluster_2 2}, {:Launch_Mass_kg 1206.0} {:cluster_2 1}, {:Launch_Mass_kg 7.1} {:cluster_2 1}, {:Launch_Mass_kg 2950.0} {:cluster_4 2}, {:Launch_Mass_kg 4905.0} {:cluster_4 1}, {:Launch_Mass_kg 2417.0} {:cluster_4 1}, {:Launch_Mass_kg 5576.0} {:cluster_4 1}, {:Launch_Mass_kg 3200.0} {:cluster_4 12, :cluster_9 1}, {:Launch_Mass_kg 4010.0} {:cluster_4 1}, {:Launch_Mass_kg 2400.0} {:cluster_4 4, :cluster_62 3}, {:Launch_Mass_kg 480.0} {:cluster_2 1, :cluster_6 1}, {:Launch_Mass_kg 1383.0} {:cluster_4 2}, {:Launch_Mass_kg 1300.0} {:cluster_4 1}, {:Launch_Mass_kg 117.0} {:cluster_62 2, :cluster_2 1}, {:Launch_Mass_kg 2915.0} {:cluster_4 1}, {:Launch_Mass_kg 293.0} {:cluster_6 1}, {:Launch_Mass_kg 29.0} {:cluster_2 2}, {:Launch_Mass_kg 2070.0} {:cluster_4 1}, {:Launch_Mass_kg 11110.0} {:cluster_9 1}, {:Launch_Mass_kg 4085.0} {:cluster_2 1}, {:Launch_Mass_kg 5320.0} {:cluster_4 1}, {:Launch_Mass_kg 5483.0} {:cluster_4 1}, {:Launch_Mass_kg 325.0} {:cluster_6 1}, {:Launch_Mass_kg 848.0} {:cluster_2 1}, {:Launch_Mass_kg 1000.0} {:cluster_2 4, :cluster_6 1}, {:Launch_Mass_kg 236.0} {:cluster_2 1}, {:Launch_Mass_kg 1155.0} {:cluster_2 1}, {:Launch_Mass_kg 6.0} {:cluster_2 3}, {:Launch_Mass_kg 2894.0} {:cluster_4 1}, {:Launch_Mass_kg 4300.0} {:cluster_4 3}, {:Launch_Mass_kg 3680.0} {:cluster_4 1}, {:Launch_Mass_kg 2238.0} {:cluster_4 1}, {:Launch_Mass_kg 3206.0} {:cluster_4 1}, {:Launch_Mass_kg 2242.0} {:cluster_4 1}, {:Launch_Mass_kg 880.0} {:cluster_2 1}, {:Launch_Mass_kg 110.0} {:cluster_6 2, :cluster_2 1}, {:Launch_Mass_kg 2542.0} {:cluster_4 1}, {:Launch_Mass_kg 5993.0} {:cluster_4 2}, {:Launch_Mass_kg 8000.0} {:cluster_62 1, :cluster_4 2}, {:Launch_Mass_kg 1154.0} {:cluster_2 2}, {:Launch_Mass_kg 200.0} {:cluster_2 3}, {:Launch_Mass_kg 2240.0} {:cluster_6 2}, {:Launch_Mass_kg 2550.0} {:cluster_4 2}, {:Launch_Mass_kg 647.6} {:cluster_62 1}, {:Launch_Mass_kg 113.0} {:cluster_2 1}, {:Launch_Mass_kg 2315.0} {:cluster_4 1}, {:Launch_Mass_kg 2885.0} {:cluster_4 1}, {:Launch_Mass_kg 4880.0} {:cluster_4 1}, {:Launch_Mass_kg 1350.0} {:cluster_2 1}, {:Launch_Mass_kg 5.8} {:cluster_6 1}, {:Launch_Mass_kg 115.0} {:cluster_2 2}, {:Launch_Mass_kg 2081.0} {:cluster_4 1}, {:Launch_Mass_kg 817.0} {:cluster_2 1}, {:Launch_Mass_kg 3764.0} {:cluster_94 1}, {:Launch_Mass_kg 0.85} {:cluster_2 1}, {:Launch_Mass_kg 2501.0} {:cluster_4 1}, {:Launch_Mass_kg 4143.0} {:cluster_4 1}, {:Launch_Mass_kg 2982.0} {:cluster_4 1}, {:Launch_Mass_kg 694.0} {:cluster_2 1}, {:Launch_Mass_kg 3130.0} {:cluster_4 1}, {:Launch_Mass_kg 468.0} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 1780.0} {:cluster_4 2}, {:Launch_Mass_kg 1390.0} {:cluster_4 3}, {:Launch_Mass_kg 500.0} {:cluster_2 1}, {:Launch_Mass_kg 93.0} {:cluster_0 1, :cluster_6 1}, {:Launch_Mass_kg 3180.0} {:cluster_4 7}, {:Launch_Mass_kg 3515.0} {:cluster_4 1}, {:Launch_Mass_kg 5910.0} {:cluster_4 1}, {:Launch_Mass_kg 6150.0} {:cluster_4 1}, {:Launch_Mass_kg 4745.0} {:cluster_4 2}, {:Launch_Mass_kg 5800.0} {:cluster_4 2}, {:Launch_Mass_kg 658.0} {:cluster_2 1}, {:Launch_Mass_kg 5493.0} {:cluster_4 1}, {:Launch_Mass_kg 5474.0} {:cluster_4 1}, {:Launch_Mass_kg 1760.0} {:cluster_4 1}, {:Launch_Mass_kg 3400.0} {:cluster_4 4}, {:Launch_Mass_kg 100.8} {:cluster_2 1}, {:Launch_Mass_kg 53.0} {:cluster_6 1, :cluster_2 1}, {:Launch_Mass_kg 2064.0} {:cluster_4 1}, {:Launch_Mass_kg 1800.0} {:cluster_2 1}, {:Launch_Mass_kg 4050.0} {:cluster_4 1}, {:Launch_Mass_kg 83.0} {:cluster_2 1}, {:Launch_Mass_kg 4488.0} {:cluster_4 1}, {:Launch_Mass_kg 159.0} {:cluster_6 1}, {:Launch_Mass_kg 4167.0} {:cluster_4 1}, {:Launch_Mass_kg 3659.0} {:cluster_4 1}, {:Launch_Mass_kg 810.0} {:cluster_6 2}, {:Launch_Mass_kg 92.0} {:cluster_2 2}, {:Launch_Mass_kg 1900.0} {:cluster_2 1}, {:Launch_Mass_kg 5521.0} {:cluster_4 1}, {:Launch_Mass_kg 1040.0} {:cluster_2 1}, {:Launch_Mass_kg 2024.0} {:cluster_4 1}, {:Launch_Mass_kg 450.0} {:cluster_6 23, :cluster_74 1}, {:Launch_Mass_kg 4710.0} {:cluster_4 1}, {:Launch_Mass_kg 4536.0} {:cluster_4 5}, {:Launch_Mass_kg 1360.0} {:cluster_6 2, :cluster_4 1, :cluster_2 1}, {:Launch_Mass_kg 175.0} {:cluster_2 3, :cluster_6 2}, {:Launch_Mass_kg 2090.0} {:cluster_4 1}, {:Launch_Mass_kg 1700.0} {:cluster_2 4}, {:Launch_Mass_kg 1816.0} {:cluster_23 9}, {:Launch_Mass_kg 4.5} {:cluster_6 6, :cluster_2 1}, {:Launch_Mass_kg 5150.0} {:cluster_4 1}, {:Launch_Mass_kg 350.0} {:cluster_2 2}, {:Launch_Mass_kg 485.0} {:cluster_2 1}, {:Launch_Mass_kg 1031.0} {:cluster_2 1}, {:Launch_Mass_kg 215.0} {:cluster_2 1, :cluster_6 1}, {:Launch_Mass_kg 4742.0} {:cluster_79 1}, {:Launch_Mass_kg 3460.0} {:cluster_4 1}, {:Launch_Mass_kg 3535.0} {:cluster_4 1}, {:Launch_Mass_kg 384.0} {:cluster_6 1}, {:Launch_Mass_kg 1400.0} {:cluster_4 2}, {:Launch_Mass_kg 6505.0} {:cluster_4 1}, {:Launch_Mass_kg 5987.0} {:cluster_4 1}, {:Launch_Mass_kg 3592.0} {:cluster_4 1}, {:Launch_Mass_kg 4332.0} {:cluster_4 1}, {:Launch_Mass_kg 4640.0} {:cluster_4 2}, {:Launch_Mass_kg 1600.0} {:cluster_2 5, :cluster_6 1, :cluster_4 1}, {:Launch_Mass_kg 2845.0} {:cluster_4 1}, {:Launch_Mass_kg 4900.0} {:cluster_4 2}, {:Launch_Mass_kg 3288.0} {:cluster_4 1}, {:Launch_Mass_kg 4500.0} {:cluster_4 8, :cluster_2 1}, {:Launch_Mass_kg 6140.0} {:cluster_4 1}, {:Launch_Mass_kg 3030.0} {:cluster_2 1}, {:Launch_Mass_kg 3765.0} {:cluster_4 1}, {:Launch_Mass_kg 2775.0} {:cluster_4 1}, {:Launch_Mass_kg 1152.0} {:cluster_2 1}, {:Launch_Mass_kg 4303.0} {:cluster_9 1}, {:Launch_Mass_kg 3775.0} {:cluster_4 1}, {:Launch_Mass_kg 91.0} {:cluster_2 1}, {:Launch_Mass_kg 6100.0} {:cluster_4 2}, {:Launch_Mass_kg 2850.0} {:cluster_4 3}, {:Launch_Mass_kg 2900.0} {:cluster_4 4}, {:Launch_Mass_kg 2910.0} {:cluster_4 1}, {:Launch_Mass_kg 4027.0} {:cluster_4 1}, {:Launch_Mass_kg 5900.0} {:cluster_4 5, :cluster_9 1}, {:Launch_Mass_kg 770.0} {:cluster_6 3, :cluster_2 2}, {:Launch_Mass_kg 2491.0} {:cluster_4 1}, {:Launch_Mass_kg 5400.0} {:cluster_4 1}, {:Launch_Mass_kg 1955.0} {:cluster_2 1}, {:Launch_Mass_kg 4100.0} {:cluster_4 7}, {:Launch_Mass_kg 2000.0} {:cluster_4 4}, {:Launch_Mass_kg 5.0} {:cluster_2 7}, {:Launch_Mass_kg 890.0} {:cluster_2 1}, {:Launch_Mass_kg 96.5} {:cluster_2 1}, {:Launch_Mass_kg 7.0} {:cluster_2 1}, {:Launch_Mass_kg 2300.0} {:cluster_2 3, :cluster_4 5, :cluster_85 3}, {:Launch_Mass_kg 4735.0} {:cluster_4 1}, {:Launch_Mass_kg 90.0} {:cluster_2 1}, {:Launch_Mass_kg 4940.0} {:cluster_4 1}, {:Launch_Mass_kg 1500.0} {:cluster_2 3, :cluster_4 1}, {:Launch_Mass_kg 5514.0} {:cluster_4 1}, {:Launch_Mass_kg 494.0} {:cluster_6 1}, {:Launch_Mass_kg 4600.0} {:cluster_4 3}, {:Launch_Mass_kg 3.15} {:cluster_6 1}, {:Launch_Mass_kg 100.0} {:cluster_2 5}, {:Launch_Mass_kg 6804.0} {:cluster_4 2}, {:Launch_Mass_kg 3631.0} {:cluster_4 1}, {:Launch_Mass_kg 9.3} {:cluster_2 1}, {:Launch_Mass_kg 2059.0} {:cluster_23 1}, {:Launch_Mass_kg 2250.0} {:cluster_4 1}, {:Launch_Mass_kg 4892.0} {:cluster_4 1}, {:Launch_Mass_kg 4685.0} {:cluster_4 1}, {:Launch_Mass_kg 360.0} {:cluster_6 1}, {:Launch_Mass_kg 74.0} {:cluster_2 1}, {:Launch_Mass_kg 3190.0} {:cluster_4 1}, {:Launch_Mass_kg 3112.0} {:cluster_4 2}, {:Launch_Mass_kg 3225.0} {:cluster_4 1}, {:Launch_Mass_kg 2015.0} {:cluster_4 1}, {:Launch_Mass_kg 5471.0} {:cluster_4 1}, {:Launch_Mass_kg 5458.0} {:cluster_4 1}, {:Launch_Mass_kg 3643.0} {:cluster_4 1}, {:Launch_Mass_kg 3660.0} {:cluster_92 1}, {:Launch_Mass_kg 689.0} {:cluster_6 70}, {:Launch_Mass_kg 5120.0} {:cluster_4 1}, {:Launch_Mass_kg 60.6} {:cluster_2 1}, {:Launch_Mass_kg 2800.0} {:cluster_2 1, :cluster_4 1}, {:Launch_Mass_kg 1698.0} {:cluster_4 1}, {:Launch_Mass_kg 3170.0} {:cluster_4 1}, {:Launch_Mass_kg 4680.0} {:cluster_4 2}, {:Launch_Mass_kg 12.0} {:cluster_2 11, :cluster_6 6}, {:Launch_Mass_kg 3878.0} {:cluster_4 1}, {:Launch_Mass_kg 4328.0} {:cluster_4 1}, {:Launch_Mass_kg 130.0} {:cluster_2 2}, {:Launch_Mass_kg 3820.0} {:cluster_9 1}, {:Launch_Mass_kg 2648.0} {:cluster_4 1}, {:Launch_Mass_kg 5540.0} {:cluster_4 1}, {:Launch_Mass_kg 5180.0} {:cluster_4 1}, {:Launch_Mass_kg 47.0} {:cluster_2 1}, {:Launch_Mass_kg 3304.0} {:cluster_4 1}, {:Launch_Mass_kg 2700.0} {:cluster_4 1, :cluster_2 5}, {:Launch_Mass_kg 3010.0} {:cluster_4 1}, {:Launch_Mass_kg 2340.0} {:cluster_4 1}, {:Launch_Mass_kg 4291.0} {:cluster_4 1}, {:Launch_Mass_kg 470.0} {:cluster_2 2}, {:Launch_Mass_kg 3739.0} {:cluster_4 1}, {:Launch_Mass_kg 6265.0} {:cluster_4 1}, {:Launch_Mass_kg 1525.0} {:cluster_4 1}, {:Launch_Mass_kg 35.0} {:cluster_2 2}, {:Launch_Mass_kg 5090.0} {:cluster_4 1}, {:Launch_Mass_kg 5396.0} {:cluster_4 1}, {:Launch_Mass_kg 315.0} {:cluster_6 1}, {:Launch_Mass_kg 4312.0} {:cluster_4 1}, {:Launch_Mass_kg 462.0} {:cluster_92 1}, {:Launch_Mass_kg 280.0} {:cluster_6 10}, {:Launch_Mass_kg 4723.0} {:cluster_32 1, :cluster_4 3, :cluster_77 1}, {:Launch_Mass_kg 3105.0} {:cluster_4 1}, {:Launch_Mass_kg 250.0} {:cluster_6 3, :cluster_2 1}, {:Launch_Mass_kg 2924.0} {:cluster_2 1, :cluster_4 1}, {:Launch_Mass_kg 4660.0} {:cluster_4 1}, {:Launch_Mass_kg 6094.0} {:cluster_4 1}, {:Launch_Mass_kg 2128.0} {:cluster_2 1}, {:Launch_Mass_kg 3138.0} {:cluster_4 1}, {:Launch_Mass_kg 2596.0} {:cluster_4 1}, {:Launch_Mass_kg 1825.0} {:cluster_4 2}, {:Launch_Mass_kg 3901.0} {:cluster_4 1}, {:Launch_Mass_kg 407.0} {:cluster_2 1}, {:Launch_Mass_kg 4051.0} {:cluster_4 1}, {:Launch_Mass_kg 3325.0} {:cluster_4 1}, {:Launch_Mass_kg 2.5} {:cluster_6 1, :cluster_2 2}, {:Launch_Mass_kg 3454.0} {:cluster_4 2}, {:Launch_Mass_kg 7000.0} {:cluster_9 1}, {:Launch_Mass_kg 1200.0} {:cluster_78 4, :cluster_73 1, :cluster_2 1}, {:Launch_Mass_kg 1134.0} {:cluster_2 2}, {:Launch_Mass_kg nil} {:cluster_2 49, :cluster_62 3, :cluster_6 20, :cluster_4 10, :cluster_0 2, :cluster_74 1, :cluster_82 1, :cluster_3 2}, {:Launch_Mass_kg 1930.0} {:cluster_4 1}, {:Launch_Mass_kg 6052.0} {:cluster_4 1}, {:Launch_Mass_kg 960.0} {:cluster_2 1}, {:Launch_Mass_kg 3750.0} {:cluster_4 2}, {:Launch_Mass_kg 3038.0} {:cluster_4 1}, {:Launch_Mass_kg 950.0} {:cluster_4 1}, {:Launch_Mass_kg 1858.0} {:cluster_2 1}, {:Launch_Mass_kg 2704.0} {:cluster_4 1}, {:Launch_Mass_kg 3792.0} {:cluster_76 1}, {:Launch_Mass_kg 700.0} {:cluster_6 24, :cluster_23 4, :cluster_59 4, :cluster_2 1}, {:Launch_Mass_kg 3720.0} {:cluster_4 1}, {:Launch_Mass_kg 5456.0} {:cluster_4 1}, {:Launch_Mass_kg 1150.0} {:cluster_6 1}, {:Launch_Mass_kg 4450.0} {:cluster_4 1}, {:Launch_Mass_kg 3800.0} {:cluster_23 2, :cluster_4 3}, {:Launch_Mass_kg 2858.0} {:cluster_4 1}, {:Launch_Mass_kg 2495.0} {:cluster_4 1}, {:Launch_Mass_kg 3315.0} {:cluster_4 1}, {:Launch_Mass_kg 1982.0} {:cluster_4 1}, {:Launch_Mass_kg 4703.0} {:cluster_4 1}, {:Launch_Mass_kg 6199.0} {:cluster_4 1}, {:Launch_Mass_kg 28.7} {:cluster_6 1}, {:Launch_Mass_kg 1480.0} {:cluster_23 13}, {:Launch_Mass_kg 1430.0} {:cluster_4 1}, {:Launch_Mass_kg 3093.0} {:cluster_4 1}, {:Launch_Mass_kg 3531.0} {:cluster_4 1}, {:Launch_Mass_kg 4000.0} {:cluster_81 1, :cluster_4 2, :cluster_62 1, :cluster_85 1}, {:Launch_Mass_kg 3813.0} {:cluster_4 1}, {:Launch_Mass_kg 3653.0} {:cluster_4 1}, {:Launch_Mass_kg 825.0} {:cluster_6 4}, {:Launch_Mass_kg 240.0} {:cluster_6 3, :cluster_2 1}, {:Launch_Mass_kg 3175.0} {:cluster_4 1}, {:Launch_Mass_kg 5613.0} {:cluster_4 1}, {:Launch_Mass_kg 5.5} {:cluster_2 1}, {:Launch_Mass_kg 5054.0} {:cluster_4 1}, {:Launch_Mass_kg 6070.0} {:cluster_4 1}, {:Launch_Mass_kg 3500.0} {:cluster_4 1}, {:Launch_Mass_kg 3600.0} {:cluster_4 2}, {:Launch_Mass_kg 4137.0} {:cluster_4 1}, {:Launch_Mass_kg 6007.0} {:cluster_4 1}, {:Launch_Mass_kg 3642.0} {:cluster_4 3}, {:Launch_Mass_kg 3542.0} {:cluster_4 1}, {:Launch_Mass_kg 3412.0} {:cluster_4 1}, {:Launch_Mass_kg 1230.0} {:cluster_2 1}, {:Launch_Mass_kg 627.0} {:cluster_4 1}, {:Launch_Mass_kg 1452.0} {:cluster_4 1}, {:Launch_Mass_kg 2276.0} {:cluster_4 1}, {:Launch_Mass_kg 2380.0} {:cluster_4 3, :cluster_3 1}, {:Launch_Mass_kg 1935.0} {:cluster_4 1}, {:Launch_Mass_kg 14.0} {:cluster_2 1}, {:Launch_Mass_kg 1474.0} {:cluster_4 1}, {:Launch_Mass_kg 970.0} {:cluster_2 1}, {:Launch_Mass_kg 1766.0} {:cluster_4 1}, {:Launch_Mass_kg 1980.0} {:cluster_4 1}, {:Launch_Mass_kg 3833.0} {:cluster_4 1}, {:Launch_Mass_kg 4575.0} {:cluster_4 1}, {:Launch_Mass_kg 1108.0} {:cluster_2 1}, {:Launch_Mass_kg 4682.0} {:cluster_4 1}, {:Launch_Mass_kg 3690.0} {:cluster_4 1}, {:Launch_Mass_kg 137.0} {:cluster_6 1}, {:Launch_Mass_kg 14500.0} {:cluster_9 3}, {:Launch_Mass_kg 4850.0} {:cluster_4 2}, {:Launch_Mass_kg 3674.0} {:cluster_4 1}, {:Launch_Mass_kg 5102.0} {:cluster_4 1}, {:Launch_Mass_kg 2217.0} {:cluster_23 15}, {:Launch_Mass_kg 4642.0} {:cluster_4 1}, {:Launch_Mass_kg 1630.0} {:cluster_23 4}, {:Launch_Mass_kg 3790.0} {:cluster_4 1}, {:Launch_Mass_kg 2763.0} {:cluster_4 1}, {:Launch_Mass_kg 6384.0} {:cluster_4 1}, {:Launch_Mass_kg 126.0} {:cluster_66 3}, {:Launch_Mass_kg 1510.0} {:cluster_4 2}, {:Launch_Mass_kg 696.0} {:cluster_4 1}, {:Launch_Mass_kg 4700.0} {:cluster_4 1}, {:Launch_Mass_kg 3.5} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 5983.0} {:cluster_4 1}, {:Launch_Mass_kg 4667.0} {:cluster_4 1}, {:Launch_Mass_kg 20.0} {:cluster_6 2}, {:Launch_Mass_kg 5420.0} {:cluster_4 1}, {:Launch_Mass_kg 800.0} {:cluster_2 1}, {:Launch_Mass_kg 1450.0} {:cluster_4 2}, {:Launch_Mass_kg 5404.0} {:cluster_4 1}, {:Launch_Mass_kg 409.0} {:cluster_2 1}, {:Launch_Mass_kg 5953.0} {:cluster_4 1}, {:Launch_Mass_kg 55.0} {:cluster_2 1}, {:Launch_Mass_kg 4545.0} {:cluster_4 1}, {:Launch_Mass_kg 4638.0} {:cluster_4 1}, {:Launch_Mass_kg 2490.0} {:cluster_4 1}, {:Launch_Mass_kg 587.0} {:cluster_2 2, :cluster_6 1}, {:Launch_Mass_kg 16.0} {:cluster_2 1}, {:Launch_Mass_kg 1.0} {:cluster_2 17, :cluster_0 2, :cluster_6 6}, {:Launch_Mass_kg 2650.0} {:cluster_2 1, :cluster_4 2}, {:Launch_Mass_kg 2730.0} {:cluster_4 1}, {:Launch_Mass_kg 1463.0} {:cluster_6 1}, {:Launch_Mass_kg 3480.0} {:cluster_4 1}, {:Launch_Mass_kg 2310.0} {:cluster_4 1}, {:Launch_Mass_kg 4463.0} {:cluster_4 1}, {:Launch_Mass_kg 2967.0} {:cluster_2 1}, {:Launch_Mass_kg 850.0} {:cluster_2 2}, {:Launch_Mass_kg 5465.0} {:cluster_4 1}, {:Launch_Mass_kg 3300.0} {:cluster_4 1}, {:Launch_Mass_kg 5200.0} {:cluster_4 2}, {:Launch_Mass_kg 6.5} {:cluster_2 1}, {:Launch_Mass_kg 64.0} {:cluster_2 1}, {:Launch_Mass_kg 2130.0} {:cluster_4 1}, {:Launch_Mass_kg 4715.0} {:cluster_4 1}, {:Launch_Mass_kg 1060.0} {:cluster_4 1}, {:Launch_Mass_kg 4007.0} {:cluster_4 1}, {:Launch_Mass_kg 4400.0} {:cluster_4 3}, {:Launch_Mass_kg 4793.0} {:cluster_4 1}, {:Launch_Mass_kg 3909.0} {:cluster_4 1}, {:Launch_Mass_kg 2780.0} {:cluster_2 1}, {:Launch_Mass_kg 4854.0} {:cluster_2 1}, {:Launch_Mass_kg 1425.0} {:cluster_85 1}, {:Launch_Mass_kg 1560.0} {:cluster_2 1}, {:Launch_Mass_kg 45.0} {:cluster_6 27, :cluster_2 1}, {:Launch_Mass_kg 3725.0} {:cluster_4 1}, {:Launch_Mass_kg 2440.0} {:cluster_4 2}, {:Launch_Mass_kg 666.0} {:cluster_62 1}, {:Launch_Mass_kg 5960.0} {:cluster_4 1}, {:Launch_Mass_kg 10.0} {:cluster_6 2, :cluster_2 3}, {:Launch_Mass_kg 6169.0} {:cluster_4 3}, {:Launch_Mass_kg 2066.0} {:cluster_4 1}, {:Launch_Mass_kg 5360.0} {:cluster_4 1}, {:Launch_Mass_kg 3250.0} {:cluster_4 1}, {:Launch_Mass_kg 2750.0} {:cluster_4 2}, {:Launch_Mass_kg 180.0} {:cluster_6 1, :cluster_2 1}, {:Launch_Mass_kg 4.3} {:cluster_2 1}, {:Launch_Mass_kg 2934.0} {:cluster_2 1}, {:Launch_Mass_kg 300.0} {:cluster_2 7, :cluster_6 1}, {:Launch_Mass_kg 6000.0} {:cluster_4 3}, {:Launch_Mass_kg 42.5} {:cluster_2 1}, {:Launch_Mass_kg 1459.0} {:cluster_4 1}, {:Launch_Mass_kg 8506.0} {:cluster_9 1}, {:Launch_Mass_kg 3028.0} {:cluster_4 1}, {:Launch_Mass_kg 6910.0} {:cluster_4 1}, {:Launch_Mass_kg 169.0} {:cluster_2 1}, {:Launch_Mass_kg 2.0} {:cluster_2 6}, {:Launch_Mass_kg 166.0} {:cluster_2 1}, {:Launch_Mass_kg 980.0} {:cluster_93 1}, {:Launch_Mass_kg 2223.0} {:cluster_2 3}, {:Launch_Mass_kg 1625.0} {:cluster_4 1}, {:Launch_Mass_kg 6600.0} {:cluster_4 1}, {:Launch_Mass_kg 65.0} {:cluster_2 1}, {:Launch_Mass_kg 5500.0} {:cluster_4 3}, {:Launch_Mass_kg 4630.0} {:cluster_4 1}, {:Launch_Mass_kg 5193.0} {:cluster_4 1}, {:Launch_Mass_kg 5000.0} {:cluster_9 10, :cluster_4 8, :cluster_3 1}, {:Launch_Mass_kg 270.0} {:cluster_6 6}, {:Launch_Mass_kg 4060.0} {:cluster_4 1}, {:Launch_Mass_kg 1750.0} {:cluster_2 1}, {:Launch_Mass_kg 3000.0} {:cluster_4 1}, {:Launch_Mass_kg 5585.0} {:cluster_4 1}, {:Launch_Mass_kg 120.0} {:cluster_2 6, :cluster_6 1}, {:Launch_Mass_kg 820.0} {:cluster_6 2}, {:Launch_Mass_kg 6650.0} {:cluster_4 1, :cluster_9 1}, {:Launch_Mass_kg 2086.0} {:cluster_4 1}, {:Launch_Mass_kg 5100.0} {:cluster_4 2}, {:Launch_Mass_kg 225.0} {:cluster_6 12}, {:Launch_Mass_kg 6740.0} {:cluster_4 1}, {:Launch_Mass_kg 6658.0} {:cluster_4 1}, {:Launch_Mass_kg 70.0} {:cluster_2 7}, {:Launch_Mass_kg 1415.0} {:cluster_23 17}, {:Launch_Mass_kg 572.0} {:cluster_2 1}, {:Launch_Mass_kg 2970.0} {:cluster_4 1}, {:Launch_Mass_kg 3420.0} {:cluster_4 2}, {:Launch_Mass_kg 46.0} {:cluster_6 1}, {:Launch_Mass_kg 3.0} {:cluster_6 5, :cluster_2 6}, {:Launch_Mass_kg 4800.0} {:cluster_4 1}, {:Launch_Mass_kg 490.0} {:cluster_0 1}, {:Launch_Mass_kg 1320.0} {:cluster_4 1}, {:Launch_Mass_kg 400.0} {:cluster_2 2}, {:Launch_Mass_kg 3014.0} {:cluster_4 2}, {:Launch_Mass_kg 2500.0} {:cluster_62 2, :cluster_4 4, :cluster_2 2}, {:Launch_Mass_kg 3379.0} {:cluster_4 1}, {:Launch_Mass_kg 795.0} {:cluster_6 2}, {:Launch_Mass_kg 5959.0} {:cluster_4 1}, {:Launch_Mass_kg 2460.0} {:cluster_4 1}}, :hyperparameters {:m 1242.4689655172415, :r 0.7859577140642177, :s 5.733285748676929E7, :nu 37.06912094529897}, :hyper-grid {:m (0.8 600.9733333333334 1201.1466666666668 1801.3200000000002 2401.493333333334 3001.666666666667 3601.84 4202.013333333333 4802.1866666666665 5402.36 6002.533333333333 6602.706666666666 7202.879999999999 7803.053333333332 8403.226666666666 9003.4 9603.573333333334 10203.746666666668 10803.920000000002 11404.093333333336 12004.26666666667 12604.440000000004 13204.613333333338 13804.786666666672 14404.960000000006 15005.13333333334 15605.306666666675 16205.480000000009 16805.653333333343 17405.826666666675 18006.000000000007), :r (9.259259259259255E-4 0.0014750423681347755 0.0023498099868160594 0.0037433548306295 0.005963335532071731 0.009499866370426088 0.015133721819036995 0.024108711340296886 0.03840628032151479 0.061182961930830844 0.09746725794042879 0.1552698017654974 0.24735189898367627 0.3940428933066771 0.6277283594889407 0.9999999999999992 1.5930457575855572 2.5377947857613434 4.042823217079859 6.440402374637468 10.259855680060175 16.344419564559956 26.037408247520634 41.478782747235975 66.07759888529735 105.26463857566314 167.69138590673728 267.1400509023705 425.5663247712114 677.9466282480562), :s (5.733285747676927E7 6.684520419295612E7 7.793578621837404E7 9.086645551927501E7 1.0594250907408941E8 1.235198970266059E8 1.4401362677556977E8 1.679075614237743E8 1.9576584393096575E8 2.2824621669823647E8 2.661155510632866E8 3.1026795336259294E8 3.6174587505003965E8 4.2176472528824145E8 4.9174156712321657E8 5.733285747676973E8 6.684520419295666E8 7.793578621837469E8 9.086645551927576E8 1.0594250907409027E9 1.2351989702660692E9 1.4401362677557096E9 1.679075614237757E9 1.9576584393096735E9 2.2824621669823833E9 2.661155510632888E9 3.1026795336259546E9 3.6174587505004263E9 4.217647252882449E9 4.917415671232206E9), :nu (1.0 1.2621591649176258 1.5930457575855583 2.010677303069755 2.5377947857613457 3.203100947528845 4.042823217079863 5.1026863755791085 6.440402374637474 8.12881288290593 10.259855680060184 12.949570877320122 16.34441956455997 20.629258948668316 26.03740824752066 32.86335345030997 41.47878274723601 52.35282579405102 66.0775988852974 83.40044702882881 105.26463857566324 132.8607283200148 167.69138590673742 211.653219599927 267.1400509023707 337.17326356298827 425.5663247712118 537.1324370902958 677.9466282480568 855.6765501682873)}, :metadata {}, :data {0 0.8, 893 5000.0, 920 nil, 558 689.0, 453 1.0, 584 689.0, 487 5613.0, 637 1.0, 972 5993.0, 519 462.0, 1097 5900.0, 357 700.0, 716 4850.0, 950 5800.0, 275 6150.0, 530 689.0, 929 nil, 789 820.0, 389 1480.0, 586 689.0, 410 1415.0, 433 3093.0, 765 45.0, 521 689.0, 451 7.1, 291 1390.0, 443 3112.0, 798 10.0, 779 4.5, 970 315.0, 249 2700.0, 638 2.0, 299 2.0, 1101 5990.0, 121 7.0, 734 1625.0, 287 nil, 65 12.0, 1086 666.0, 702 2060.0, 70 4680.0, 949 4400.0, 218 3287.0, 648 nil, 1070 3200.0, 812 nil, 62 12.0, 74 1.0, 774 45.0, 475 6070.0, 497 3200.0, 1009 468.0, 580 689.0, 1138 nil, 891 5000.0, 164 70.0, 1040 6505.0, 282 2600.0, 769 45.0, 799 7000.0, 273 4900.0, 1147 nil, 186 3420.0, 430 1982.0, 641 4900.0, 529 689.0, 898 110.0, 370 700.0, 834 180.0, 233 1766.0, 298 nil, 188 4300.0, 240 2967.0, 110 1452.0, 130 159.0, 982 5090.0, 620 4450.0, 311 4640.0, 931 nil, 882 200.0, 128 694.0, 399 1415.0, 989 4.3, 377 700.0, 468 2064.0, 259 3190.0, 210 1156.0, 229 4660.0, 153 2200.0, 621 2850.0, 213 2380.0, 670 2900.0, 977 117.0, 343 450.0, 958 4600.0, 887 5000.0, 472 5959.0, 7 4500.0, 894 5000.0, 59 4905.0, 934 nil, 473 5458.0, 1010 468.0, 86 4332.0, 756 45.0, 830 175.0, 613 5800.0, 491 3200.0, 154 2200.0, 20 1450.0, 224 6658.0, 355 450.0, 592 236.0, 1146 nil, 610 18000.0, 806 100.0, 571 689.0, 466 4200.0, 72 4630.0, 454 2242.0, 888 5000.0, 463 nil, 851 250.0, 770 45.0, 814 nil, 859 1600.0, 58 4715.0, 964 3.0, 980 10.9, 1001 nil, 205 1156.0, 555 nil, 552 689.0, 60 12.0, 1102 5990.0, 835 70.0, 459 1600.0, 175 1.0, 322 700.0, 510 4723.0, 1052 35.0, 1121 6000.0, 662 65.0, 27 53.0, 352 450.0, 493 4793.0, 899 110.0, 416 240.0, 777 45.0, 694 2217.0, 1 2894.0, 631 nil, 854 280.0, 69 1383.0, 101 5420.0, 24 215.0, 901 3100.0, 547 689.0, 102 4940.0, 788 825.0, 1106 4500.0, 713 1825.0, 1110 1.0, 385 1480.0, 988 137.0, 135 100.0, 1065 3820.0, 397 1415.0, 1011 468.0, 1006 4051.0, 773 45.0, 490 5540.0, 752 45.0, 354 450.0, 884 4500.0, 360 700.0, 998 225.0, 961 5360.0, 55 4710.0, 568 689.0, 797 820.0, 688 1630.0, 763 45.0, 269 4300.0, 676 1816.0, 448 890.0, 527 689.0, 206 1156.0, 1075 3200.0, 966 5.0, 165 70.0, 715 3600.0, 387 1480.0, 652 2000.0, 683 1816.0, 85 3690.0, 721 2223.0, 862 148.0, 615 3.0, 681 1816.0, 225 6100.0, 865 770.0, 297 nil, 39 4312.0, 805 5.0, 274 4880.0, 88 5345.0, 217 2.0, 1128 nil, 46 3901.0, 682 1816.0, 508 3659.0, 1157 5000.0, 149 2200.0, 415 409.0, 239 4854.0, 478 2090.0, 878 12.0, 157 2460.0, 345 450.0, 300 2.0, 743 300.0, 921 nil, 1039 120.0, 4 3500.0, 550 689.0, 1115 4667.0, 204 1156.0, 470 2066.0, 1164 nil, 646 2500.0, 77 4137.0, 106 1.0, 197 1154.0, 405 1415.0, 897 6500.0, 726 3582.0, 776 45.0, 940 nil, 755 45.0, 902 nil, 518 nil, 232 10.0, 260 5600.0, 823 2400.0, 1125 4463.0, 267 4600.0, 119 587.0, 319 4860.0, 534 689.0, 222 6384.0, 603 4400.0, 293 2300.0, 95 6000.0, 450 2300.0, 329 1360.0, 144 2300.0, 1087 1.0, 504 3642.0, 819 nil, 818 5514.0, 505 3653.0, 723 2128.0, 1071 3200.0, 1008 1600.0, 992 225.0, 176 nil, 863 407.0, 471 2000.0, 349 450.0, 512 4680.0, 710 5150.0, 1058 2200.0, 192 45.0, 54 29.0, 92 3643.0, 221 4328.0, 141 848.0, 502 3833.0, 871 5456.0, 464 726.0, 801 150.0, 307 1760.0, 935 nil, 758 45.0, 290 1390.0, 1156 3.5, 1144 1800.0, 627 2744.0, 517 3000.0, 1122 1360.0, 361 700.0, 264 2915.0, 137 5585.0, 356 700.0, 728 3412.0, 976 117.0, 678 1816.0, 327 3.0, 234 120.0, 856 280.0, 817 1.0, 1017 nil, 104 1.0, 353 450.0, 1145 2700.0, 15 4.5, 48 2015.0, 945 5000.0, 759 45.0, 1066 8000.0, 242 240.0, 832 113.0, 969 50.0, 50 1400.0, 956 4700.0, 917 3138.0, 1030 2763.0, 557 689.0, 251 2885.0, 394 1415.0, 116 2060.0, 585 689.0, 583 689.0, 75 3105.0, 437 4200.0, 516 2550.0, 1062 5000.0, 994 225.0, 930 nil, 967 658.0, 687 1630.0, 159 2440.0, 848 225.0, 995 225.0, 1096 880.0, 1159 5500.0, 709 494.0, 99 70.0, 540 689.0, 645 8000.0, 749 2300.0, 479 2750.0, 1081 2400.0, 890 5000.0, 1046 750.0, 630 nil, 916 4007.0, 815 nil, 1080 2400.0, 281 2600.0, 402 1415.0, 669 2900.0, 781 4.5, 740 700.0, 1012 1463.0, 975 3660.0, 429 1410.0, 309 2086.0, 458 850.0, 21 2704.0, 388 1480.0, 495 5984.0, 952 5983.0, 626 14500.0, 875 12.0, 31 130.0, 113 2495.0, 32 4545.0, 811 nil, 827 175.0, 407 1415.0, 398 1415.0, 136 200.0, 691 2217.0, 847 280.0, 825 2400.0, 139 3.0, 506 3592.0, 396 1415.0, 460 1600.0, 483 4000.0, 589 689.0, 581 689.0, 932 nil, 174 1.0, 578 689.0, 855 280.0, 331 980.0, 363 700.0, 1038 1108.0, 284 3400.0, 208 1156.0, 305 1.0, 1019 1200.0, 955 1510.0, 796 810.0, 708 74.0, 182 4.5, 256 3170.0, 1107 2800.0, 1109 4990.0, 657 4536.0, 514 4723.0, 1103 4735.0, 731 3642.0, 619 1150.0, 985 3225.0, 485 5576.0, 214 2380.0, 193 1134.0, 685 1630.0, 804 970.0, 869 2276.0, 1002 2240.0, 1104 1200.0, 836 1206.0, 1131 1040.0, 785 4100.0, 635 1282.0, 442 348.0, 1073 3200.0, 561 689.0, 954 1510.0, 656 2900.0, 607 1300.0, 241 2934.0, 314 4690.0, 782 60.6, 226 3674.0, 235 120.0, 672 6804.0, 420 270.0, 418 240.0, 262 4892.0, 1016 450.0, 263 5404.0, 304 215.0, 401 1415.0, 673 20.0, 40 2081.0, 129 490.0, 600 2982.0, 729 4575.0, 1042 3325.0, 467 83.0, 1033 3878.0, 1149 nil, 445 5320.0, 317 3790.0, 1091 29.0, 1028 3180.0, 294 2300.0, 91 3315.0, 1044 126.0, 810 nil, 1137 nil, 364 700.0, 987 180.0, 880 10.0, 515 4685.0, 412 3200.0, 553 689.0, 974 3680.0, 341 450.0, 117 2910.0, 1000 150.0, 1095 115.0, 665 64.0, 523 689.0, 172 2.0, 601 2500.0, 108 92.0, 156 3800.0, 358 700.0, 308 4060.0, 908 50.0, 649 2700.0, 531 689.0, 1085 647.6, 923 nil, 1111 nil, 223 5521.0, 419 270.0, 365 700.0, 944 170.0, 181 6.5, 417 240.0, 1082 2400.0, 979 720.0, 278 2600.0, 56 4500.0, 942 2596.0, 33 5465.0, 13 6169.0, 1043 126.0, 867 770.0, 22 3775.0, 618 1000.0, 1141 2700.0, 1093 2600.0, 380 935.0, 257 2950.0, 1061 1.0, 338 450.0, 1024 3180.0, 500 2730.0, 909 3.0, 1018 1350.0, 993 225.0, 1089 1.0, 168 1700.0, 833 3050.0, 496 6199.0, 1056 3750.0, 1129 nil, 947 3792.0, 347 450.0, 501 4200.0, 1007 3130.0, 1077 96.5, 596 553.0, 872 5474.0, 792 825.0, 90 3635.0, 237 120.0, 826 350.0, 292 2300.0, 109 400.0, 216 300.0, 191 5500.0, 498 4100.0, 829 175.0, 761 45.0, 1072 3200.0, 375 700.0, 525 689.0, 367 700.0, 143 2300.0, 742 250.0, 178 nil, 640 1450.0, 247 4167.0, 328 1360.0, 391 1480.0, 990 225.0, 167 1700.0, 707 2059.0, 36 2315.0, 41 2648.0, 474 5960.0, 187 4300.0, 551 689.0, 1118 3631.0, 996 225.0, 528 689.0, 971 6100.0, 599 4500.0, 376 700.0, 195 1152.0, 889 5000.0, 316 3765.0, 668 587.0, 428 3400.0, 303 764.0, 671 6804.0, 794 825.0, 905 nil, 368 700.0, 560 689.0, 565 689.0, 310 2033.0, 366 700.0, 118 384.0, 522 689.0, 150 2300.0, 886 5000.0, 313 4642.0, 384 1480.0, 567 689.0, 238 572.0, 846 280.0, 962 nil, 1127 nil, 845 280.0, 196 1154.0, 162 70.0, 393 1480.0, 184 5900.0, 219 4333.0, 999 93.0, 461 1600.0, 1032 4010.0, 89 5350.0, 100 3304.0, 426 480.0, 604 4000.0, 477 2750.0, 844 280.0, 541 689.0, 351 450.0, 243 350.0, 131 4742.0, 790 795.0, 963 4.5, 1053 8506.0, 629 60.0, 873 12.0, 122 5.0, 933 nil, 43 2845.0, 1067 3200.0, 231 6600.0, 61 12.0, 654 4193.0, 883 4500.0, 1003 2240.0, 598 3531.0, 413 3175.0, 29 5.0, 784 3014.0, 800 1.0, 151 2300.0, 369 700.0, 348 450.0, 1124 1640.0, 575 689.0, 693 2217.0, 44 3909.0, 739 700.0, 258 1525.0, 250 5400.0, 674 20.0, 539 689.0, 301 3.0, 838 5900.0, 424 270.0, 93 1420.0, 6 4500.0, 684 1816.0, 1026 3180.0, 951 6020.0, 573 689.0, 408 1415.0, 563 689.0, 850 280.0, 616 800.0, 866 770.0, 111 1780.0, 997 225.0, 689 2217.0, 28 nil, 456 1.0, 374 700.0, 608 18000.0, 737 700.0, 1155 3.5, 548 689.0, 538 689.0, 1034 4970.0, 895 nil, 411 3200.0, 957 4635.0, 134 100.8, 943 3038.0, 64 12.0, 623 2.5, 1135 nil, 1133 nil, 465 4000.0, 816 nil, 334 450.0, 1150 92.0, 323 700.0, 189 5483.0, 280 2542.0, 198 1155.0, 155 3800.0, 295 4303.0, 808 140.0, 248 5900.0, 587 689.0, 285 46.0, 507 3420.0, 227 3700.0, 724 1.0, 476 2950.0, 941 169.0, 911 3200.0, 853 250.0, 494 6094.0, 220 5500.0, 842 280.0, 103 3400.0, 697 2217.0, 611 18000.0, 1105 10.0, 170 720.0, 1154 nil, 51 nil, 25 6.0, 261 2200.0, 768 45.0, 822 nil, 201 6.0, 904 nil, 590 689.0, 489 2450.0, 778 4.5, 166 1700.0, 447 470.0, 34 6265.0, 252 2500.0, 978 3030.0, 775 45.0, 325 5000.0, 1005 5000.0, 594 1360.0, 436 42.5, 828 175.0, 535 689.0, 813 nil, 146 6000.0, 741 960.0, 1060 587.0, 876 12.0, 1064 2.5, 228 4027.0, 907 nil, 306 4488.0, 125 1560.0, 276 100.0, 340 450.0, 148 3800.0, 1143 2700.0, 482 2130.0, 1049 3050.0, 622 nil, 588 689.0, 17 5.0, 312 4100.0, 606 1060.0, 3 4143.0, 1148 nil, 520 1.0, 1088 5100.0, 760 45.0, 720 2223.0, 1126 nil, 286 55.0, 279 2600.0, 879 12.0, 1020 3180.0, 536 689.0, 1023 3180.0, 663 110.0, 12 6169.0, 440 293.0, 332 1900.0, 330 1955.0, 1162 2300.0, 382 1480.0, 152 2200.0, 1112 4703.0, 1140 1200.0, 544 689.0, 803 1000.0, 642 2417.0, 435 1500.0, 342 450.0, 703 2060.0, 783 5120.0, 695 2217.0, 973 5993.0, 2 1459.0, 948 3727.0, 66 12.0, 484 3739.0, 439 3300.0, 236 120.0, 556 689.0, 373 700.0, 1083 2400.0, 142 2200.0, 359 700.0, 727 nil, 371 700.0, 772 45.0, 444 3288.0, 1057 2250.0, 570 689.0, 757 45.0, 107 166.0, 1094 2970.0, 532 689.0, 984 4100.0, 23 325.0, 1079 12.0, 745 300.0, 719 2223.0, 230 4000.0, 625 14500.0, 47 1935.0, 526 689.0, 180 90.0, 786 nil, 1068 14.0, 1166 2650.0, 870 3542.0, 537 689.0, 659 4536.0, 158 2440.0, 991 225.0, 350 450.0, 35 2783.0, 1116 3764.0, 849 225.0, 1120 5953.0, 644 8000.0, 1069 3100.0, 881 35.0, 127 680.0, 927 nil, 675 1430.0, 1055 2500.0, 383 1480.0, 533 689.0, 1100 5990.0, 910 nil, 302 2310.0, 564 689.0, 701 2217.0, 1090 28.7, 566 689.0, 821 2924.0, 787 120.0, 82 3014.0, 76 3480.0, 735 360.0, 492 5600.0, 718 4745.0, 771 45.0, 215 200.0, 97 5471.0, 704 2217.0, 277 2600.0, 926 nil, 751 2501.0, 1114 4682.0, 19 3460.0, 335 450.0, 597 4400.0, 938 300.0, 57 5910.0, 609 18000.0, 202 2650.0, 68 1383.0, 452 11110.0, 1054 2500.0, 200 6.0, 1142 2700.0, 868 770.0, 11 6169.0, 115 1980.0, 946 3727.0, 1063 120.0, 983 4100.0, 339 450.0, 431 1825.0, 462 1600.0, 337 450.0, 698 2217.0, 255 nil, 503 3642.0, 546 689.0, 9 5000.0, 953 1474.0, 857 1200.0, 706 2217.0, 632 3400.0, 457 850.0, 427 1750.0, 145 2200.0, 5 115.0, 733 2238.0, 1163 5200.0, 1165 1500.0, 1152 1.0, 624 14500.0, 831 175.0, 244 nil, 918 nil, 824 2500.0, 289 1390.0, 112 1780.0, 925 nil, 1059 9.3, 730 4500.0, 699 2217.0, 712 100.0, 1076 3206.0, 1113 5193.0, 414 627.0, 839 1858.0, 802 1.0, 1084 1.0, 860 1200.0, 1117 91.0, 179 50.0, 344 450.0, 481 3028.0, 732 3720.0, 661 4536.0, 245 1.0, 378 700.0, 913 nil, 906 nil, 658 4536.0, 266 4050.0, 324 1000.0, 793 825.0, 1134 nil, 1132 nil, 1014 3725.0, 680 1816.0, 446 470.0, 524 689.0, 254 2490.0, 404 1415.0, 1025 3180.0, 617 1000.0, 283 2532.0, 1153 1500.0, 513 4723.0, 572 689.0, 705 2060.0, 1098 5987.0, 959 4638.0, 1074 3200.0, 83 3010.0, 634 950.0, 138 3.15, 1050 5250.0, 346 450.0, 14 3.0, 455 3311.0, 265 5102.0, 449 3.5, 333 450.0, 650 2000.0, 639 1.0, 569 689.0, 326 4291.0, 746 3.0, 647 2500.0, 45 1698.0, 53 1600.0, 559 689.0, 78 3760.0, 1037 6910.0, 924 nil, 562 689.0, 1119 60.0, 542 689.0, 912 3112.0, 664 53.0, 1048 2024.0, 315 3515.0, 1031 1930.0, 914 6007.0, 480 3100.0, 132 4600.0, 753 45.0, 900 150.0, 1013 1.0, 26 nil, 766 45.0, 123 16.0, 203 1156.0, 667 2850.0, 392 1480.0, 1045 126.0, 577 689.0, 807 130.0, 140 3.0, 321 700.0, 795 810.0, 441 700.0, 700 2217.0, 268 5250.0, 840 93.0, 16 4.5, 320 700.0, 133 100.0, 288 nil, 381 1480.0, 605 3.0, 163 70.0, 81 2924.0, 120 400.0, 643 1000.0, 79 3813.0, 211 2380.0, 38 4200.0, 173 nil, 126 680.0, 981 117.0, 1161 2300.0, 421 270.0, 593 1425.0, 636 47.0, 1160 5200.0, 98 3250.0, 422 270.0, 423 270.0, 614 4850.0, 762 45.0, 582 689.0, 666 2850.0, 1123 1320.0, 554 689.0, 409 1415.0, 574 689.0, 595 1.0, 124 nil, 747 4800.0, 171 2.0, 87 4500.0, 169 1700.0, 653 2000.0, 679 1816.0, 843 280.0, 160 817.0, 30 6650.0, 400 1415.0, 767 45.0, 896 6500.0, 928 nil, 696 2217.0, 1027 3180.0, 738 700.0, 809 nil, 509 4723.0, 736 5.5, 207 1156.0, 874 12.0, 434 500.0, 1130 nil, 690 2217.0, 194 1134.0, 1047 1400.0, 511 4723.0, 73 3600.0, 486 2491.0, 336 450.0, 96 1500.0, 837 6650.0, 1136 nil, 937 300.0, 10 5000.0, 660 4536.0, 272 3800.0, 499 3124.0, 488 2550.0, 903 nil, 386 1480.0, 270 3150.0, 576 689.0, 717 4745.0, 543 689.0, 271 4100.0, 18 5.0, 395 1415.0, 403 1415.0, 469 2070.0, 105 1.0, 185 5900.0, 52 nil, 1051 5180.0, 545 689.0, 633 5000.0, 114 10.0, 1099 5990.0, 968 nil, 253 5000.0, 612 18000.0, 1151 45.0, 1015 3750.0, 628 2780.0, 748 2858.0, 209 1156.0, 147 2200.0, 655 4085.0, 1022 3454.0, 750 2400.0, 852 250.0, 425 480.0, 1158 5100.0, 864 770.0, 67 12.0, 1108 2.5, 296 nil, 602 2900.0, 318 5493.0, 161 70.0, 651 696.0, 725 5396.0, 372 700.0, 1092 6740.0, 406 1415.0, 438 4200.0, 780 434.0, 711 300.0, 1041 2800.0, 71 5054.0, 939 204.0, 579 689.0, 877 12.0, 722 1420.0, 42 2500.0, 919 nil, 80 2775.0, 885 1031.0, 1078 12.0, 986 3.0, 1035 4640.0, 714 3200.0, 677 1816.0, 199 5.8, 841 225.0, 754 45.0, 791 795.0, 1029 300.0, 861 1200.0, 591 689.0, 1021 3454.0, 744 300.0, 960 nil, 37 2340.0, 183 5900.0, 1139 nil, 965 5.0, 892 5000.0, 432 2650.0, 379 700.0, 63 12.0, 212 2380.0, 94 6052.0, 362 700.0, 8 5000.0, 686 1630.0, 692 2217.0, 764 45.0, 246 3535.0, 190 3800.0, 1004 0.85, 1036 1230.0, 549 689.0, 922 nil, 177 nil, 915 6140.0, 936 204.0, 820 4000.0, 49 4100.0, 858 485.0, 390 1480.0, 84 3379.0}}, :Apogee_km #gensql.inference.gpm.column.Column{:var-name :Apogee_km, :stattype :gaussian, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 47086.0, :sum-x-sq 2.217091396E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 3, :sum-x 262090.0, :sum-x-sq 2.2897096692E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 35797.0, :sum-x-sq 1.281425209E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 47100.0, :sum-x-sq 2.21841E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 152812.0, :sum-x-sq 2.3351507344E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 104552.0, :sum-x-sq 1.0931120704E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 7, :sum-x 9779.0, :sum-x-sq 1.3722669E7}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 47048.0, :sum-x-sq 2.213514304E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 15, :sum-x 563083.0, :sum-x-sq 2.1275834301E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 2, :sum-x 650000.0, :sum-x-sq 2.113E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 5732.0, :sum-x-sq 3.2855824E7}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 4, :sum-x 143322.0, :sum-x-sq 5.13530714E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 470310.0, :sum-x-sq 2.211914961E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 114027.0, :sum-x-sq 1.3002156729E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 4, :sum-x 483367.0, :sum-x-sq 5.8410956499E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 278, :sum-x 264746.0, :sum-x-sq 2.8804334E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 358802.0, :sum-x-sq 1.28738875204E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 7, :sum-x 256147.0, :sum-x-sq 9.382885343E9}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 1, :sum-x 138825.0, :sum-x-sq 1.9272380625E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 4, :sum-x 32275.0, :sum-x-sq 2.60418907E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 434, :sum-x 1.5545188E7, :sum-x-sq 5.56820954096E11}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 29, :sum-x 25750.0, :sum-x-sq 2.535619E7}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 294, :sum-x 210182.0, :sum-x-sq 1.58245566E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 72, :sum-x 1445537.0, :sum-x-sq 2.9101259791E10}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Apogee_km, :suff-stats {:n 2, :sum-x 23436.0, :sum-x-sq 2.74650896E8}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}}}, :assignments {{:Apogee_km 1008.0} {:cluster_6 2}, {:Apogee_km 1419.0} {:cluster_6 1}, {:Apogee_km 789.0} {:cluster_6 1}, {:Apogee_km 1203.0} {:cluster_9 4}, {:Apogee_km 414.0} {:cluster_6 1}, {:Apogee_km 1502.0} {:cluster_6 1}, {:Apogee_km 714.0} {:cluster_6 1}, {:Apogee_km 544.0} {:cluster_6 1}, {:Apogee_km 35796.0} {:cluster_4 31}, {:Apogee_km 35623.0} {:cluster_4 1}, {:Apogee_km 1475.0} {:cluster_0 1}, {:Apogee_km 35801.0} {:cluster_4 11}, {:Apogee_km 23227.0} {:cluster_23 1}, {:Apogee_km 586.0} {:cluster_6 1}, {:Apogee_km 831.0} {:cluster_2 1}, {:Apogee_km 676.0} {:cluster_2 1, :cluster_9 1}, {:Apogee_km 21603.0} {:cluster_23 1}, {:Apogee_km 1313.0} {:cluster_0 1}, {:Apogee_km 35819.0} {:cluster_4 1}, {:Apogee_km 1414.0} {:cluster_6 14}, {:Apogee_km 35750.0} {:cluster_4 1}, {:Apogee_km 1448.0} {:cluster_6 1}, {:Apogee_km 120768.0} {:cluster_78 1}, {:Apogee_km 37900.0} {:cluster_4 1}, {:Apogee_km 753.0} {:cluster_6 1}, {:Apogee_km 606.0} {:cluster_2 2}, {:Apogee_km 787.0} {:cluster_2 2}, {:Apogee_km 20498.0} {:cluster_23 1}, {:Apogee_km 819.0} {:cluster_2 1}, {:Apogee_km 674.0} {:cluster_2 2}, {:Apogee_km 35788.0} {:cluster_4 10}, {:Apogee_km 35813.0} {:cluster_4 2}, {:Apogee_km 20403.0} {:cluster_23 1}, {:Apogee_km 152812.0} {:cluster_81 1}, {:Apogee_km 502.0} {:cluster_6 8, :cluster_2 1}, {:Apogee_km 36007.0} {:cluster_4 1}, {:Apogee_km 35864.0} {:cluster_85 1}, {:Apogee_km 39850.0} {:cluster_62 1}, {:Apogee_km 35940.0} {:cluster_4 1}, {:Apogee_km 472.0} {:cluster_9 1}, {:Apogee_km 47048.0} {:cluster_76 1}, {:Apogee_km 20234.0} {:cluster_23 1}, {:Apogee_km 632.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 616.0} {:cluster_2 2}, {:Apogee_km 750.0} {:cluster_6 1}, {:Apogee_km 1107.0} {:cluster_2 2}, {:Apogee_km 20464.0} {:cluster_23 1}, {:Apogee_km 591.0} {:cluster_2 2}, {:Apogee_km 20268.0} {:cluster_23 1}, {:Apogee_km 11836.0} {:cluster_74 1}, {:Apogee_km 658.0} {:cluster_2 1}, {:Apogee_km 838.0} {:cluster_6 1}, {:Apogee_km 20260.0} {:cluster_23 1}, {:Apogee_km 481.0} {:cluster_2 1}, {:Apogee_km 626.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 505.0} {:cluster_2 4}, {:Apogee_km 1391.0} {:cluster_6 1}, {:Apogee_km 1164.0} {:cluster_2 3}, {:Apogee_km 703.0} {:cluster_2 10}, {:Apogee_km 1431.0} {:cluster_6 1}, {:Apogee_km 836.0} {:cluster_2 1}, {:Apogee_km 36103.0} {:cluster_4 1}, {:Apogee_km 19378.0} {:cluster_23 1}, {:Apogee_km 813.0} {:cluster_6 1}, {:Apogee_km 795.0} {:cluster_6 6, :cluster_2 1}, {:Apogee_km 39362.0} {:cluster_62 1}, {:Apogee_km 1478.0} {:cluster_6 1}, {:Apogee_km 450.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 20244.0} {:cluster_23 1}, {:Apogee_km 1506.0} {:cluster_6 3}, {:Apogee_km 20449.0} {:cluster_23 1}, {:Apogee_km 35804.0} {:cluster_4 4}, {:Apogee_km 35866.0} {:cluster_4 1}, {:Apogee_km 1014.0} {:cluster_2 2}, {:Apogee_km 1415.0} {:cluster_6 18}, {:Apogee_km 928.0} {:cluster_6 1}, {:Apogee_km 35798.0} {:cluster_4 24}, {:Apogee_km 1507.0} {:cluster_6 3}, {:Apogee_km 35799.0} {:cluster_4 21}, {:Apogee_km 746.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 87260.0} {:cluster_66 1}, {:Apogee_km 35500.0} {:cluster_4 1}, {:Apogee_km 35937.0} {:cluster_4 1}, {:Apogee_km 634.0} {:cluster_2 1}, {:Apogee_km 783.0} {:cluster_2 2}, {:Apogee_km 642.0} {:cluster_6 1}, {:Apogee_km 35806.0} {:cluster_4 5}, {:Apogee_km 47100.0} {:cluster_75 1}, {:Apogee_km 594.0} {:cluster_2 1}, {:Apogee_km 590.0} {:cluster_6 1}, {:Apogee_km 968.0} {:cluster_6 1}, {:Apogee_km 20426.0} {:cluster_23 1}, {:Apogee_km 716.0} {:cluster_9 1}, {:Apogee_km 829.0} {:cluster_2 1}, {:Apogee_km 680.0} {:cluster_2 2}, {:Apogee_km 624.0} {:cluster_2 1}, {:Apogee_km 470310.0} {:cluster_73 1}, {:Apogee_km 1011.0} {:cluster_6 2}, {:Apogee_km 667.0} {:cluster_2 1}, {:Apogee_km 35790.0} {:cluster_4 15}, {:Apogee_km 552.0} {:cluster_2 1}, {:Apogee_km 37872.0} {:cluster_85 1}, {:Apogee_km 945.0} {:cluster_6 1}, {:Apogee_km 5732.0} {:cluster_82 1}, {:Apogee_km 1207.0} {:cluster_2 2}, {:Apogee_km 35802.0} {:cluster_4 11}, {:Apogee_km 715.0} {:cluster_2 1}, {:Apogee_km 661.0} {:cluster_2 1}, {:Apogee_km 454.0} {:cluster_2 1}, {:Apogee_km 20366.0} {:cluster_23 1}, {:Apogee_km 556.0} {:cluster_9 1}, {:Apogee_km 35807.0} {:cluster_4 7}, {:Apogee_km 521.0} {:cluster_2 1}, {:Apogee_km 35814.0} {:cluster_4 2}, {:Apogee_km 828.0} {:cluster_2 3}, {:Apogee_km 19145.0} {:cluster_23 1}, {:Apogee_km 582.0} {:cluster_6 2}, {:Apogee_km 890.0} {:cluster_2 1}, {:Apogee_km 1351.0} {:cluster_6 1}, {:Apogee_km 1514.0} {:cluster_6 1}, {:Apogee_km 1511.0} {:cluster_6 3}, {:Apogee_km 19141.0} {:cluster_23 3}, {:Apogee_km 725.0} {:cluster_6 1}, {:Apogee_km 1459.0} {:cluster_2 1}, {:Apogee_km 682.0} {:cluster_2 1}, {:Apogee_km 640.0} {:cluster_2 4}, {:Apogee_km 686.0} {:cluster_2 1}, {:Apogee_km 20342.0} {:cluster_23 1}, {:Apogee_km 754.0} {:cluster_6 1}, {:Apogee_km 503.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 20221.0} {:cluster_23 1}, {:Apogee_km 20276.0} {:cluster_23 1}, {:Apogee_km 37794.0} {:cluster_4 1}, {:Apogee_km 35822.0} {:cluster_4 1}, {:Apogee_km 400.0} {:cluster_9 1}, {:Apogee_km 711.0} {:cluster_6 1}, {:Apogee_km 20327.0} {:cluster_23 1}, {:Apogee_km 19380.0} {:cluster_23 1}, {:Apogee_km 35823.0} {:cluster_4 1}, {:Apogee_km 967.0} {:cluster_2 1}, {:Apogee_km 496.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 486.0} {:cluster_6 1}, {:Apogee_km 35803.0} {:cluster_4 13, :cluster_3 1}, {:Apogee_km 655.0} {:cluster_2 1}, {:Apogee_km 512.0} {:cluster_2 1}, {:Apogee_km 21545.0} {:cluster_23 1}, {:Apogee_km 602.0} {:cluster_2 1}, {:Apogee_km 736.0} {:cluster_6 1}, {:Apogee_km 669.0} {:cluster_2 2}, {:Apogee_km 1516.0} {:cluster_6 2}, {:Apogee_km 534.0} {:cluster_6 1}, {:Apogee_km 30534.0} {:cluster_62 1}, {:Apogee_km 699.0} {:cluster_2 3}, {:Apogee_km 633.0} {:cluster_6 1}, {:Apogee_km 38950.0} {:cluster_85 1}, {:Apogee_km 646.0} {:cluster_2 1}, {:Apogee_km 21595.0} {:cluster_23 1}, {:Apogee_km 793.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 21574.0} {:cluster_23 1}, {:Apogee_km 35697.0} {:cluster_62 1}, {:Apogee_km 1100.0} {:cluster_9 2}, {:Apogee_km 20315.0} {:cluster_23 1}, {:Apogee_km 724.0} {:cluster_2 2}, {:Apogee_km 705.0} {:cluster_2 2}, {:Apogee_km 20191.0} {:cluster_23 1}, {:Apogee_km 804.0} {:cluster_2 2}, {:Apogee_km 631.0} {:cluster_2 2}, {:Apogee_km 35872.0} {:cluster_85 1}, {:Apogee_km 1496.0} {:cluster_6 1}, {:Apogee_km 20311.0} {:cluster_23 1}, {:Apogee_km 559.0} {:cluster_9 1}, {:Apogee_km 20284.0} {:cluster_23 1}, {:Apogee_km 613.0} {:cluster_6 1}, {:Apogee_km 491.0} {:cluster_2 1}, {:Apogee_km 35892.0} {:cluster_4 1}, {:Apogee_km 8068.0} {:cluster_59 1}, {:Apogee_km 35868.0} {:cluster_4 1}, {:Apogee_km 330000.0} {:cluster_92 1}, {:Apogee_km 662.0} {:cluster_2 2}, {:Apogee_km 37768.0} {:cluster_4 1}, {:Apogee_km 636.0} {:cluster_2 1}, {:Apogee_km 796.0} {:cluster_6 5}, {:Apogee_km 358.0} {:cluster_9 1}, {:Apogee_km 748.0} {:cluster_2 1}, {:Apogee_km 1486.0} {:cluster_0 1}, {:Apogee_km 571.0} {:cluster_9 1}, {:Apogee_km 19173.0} {:cluster_23 1}, {:Apogee_km 1081.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 20427.0} {:cluster_23 1}, {:Apogee_km 721.0} {:cluster_2 1}, {:Apogee_km 747.0} {:cluster_2 2}, {:Apogee_km 827.0} {:cluster_2 1}, {:Apogee_km 35700.0} {:cluster_4 3}, {:Apogee_km 1112.0} {:cluster_6 1}, {:Apogee_km 35874.0} {:cluster_4 1}, {:Apogee_km 704.0} {:cluster_2 6}, {:Apogee_km 778.0} {:cluster_6 3}, {:Apogee_km 35794.0} {:cluster_4 25}, {:Apogee_km 643.0} {:cluster_2 1}, {:Apogee_km 558.0} {:cluster_6 1}, {:Apogee_km 611.0} {:cluster_2 1}, {:Apogee_km 777.0} {:cluster_6 2}, {:Apogee_km 19199.0} {:cluster_23 1}, {:Apogee_km 20247.0} {:cluster_23 2}, {:Apogee_km 2165.0} {:cluster_6 1}, {:Apogee_km 138825.0} {:cluster_79 1}, {:Apogee_km 627.0} {:cluster_2 3}, {:Apogee_km 569.0} {:cluster_6 1}, {:Apogee_km 864.0} {:cluster_2 2}, {:Apogee_km 1050.0} {:cluster_9 1}, {:Apogee_km 668.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 19135.0} {:cluster_23 2}, {:Apogee_km 638.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 579.0} {:cluster_2 1}, {:Apogee_km 997.0} {:cluster_9 1}, {:Apogee_km 35909.0} {:cluster_3 1}, {:Apogee_km 410.0} {:cluster_6 1}, {:Apogee_km 664.0} {:cluster_2 1}, {:Apogee_km 19212.0} {:cluster_23 1}, {:Apogee_km 659.0} {:cluster_6 1}, {:Apogee_km 8069.0} {:cluster_59 3}, {:Apogee_km 653.0} {:cluster_2 4}, {:Apogee_km 87526.0} {:cluster_66 1}, {:Apogee_km 786.0} {:cluster_2 1}, {:Apogee_km 37791.0} {:cluster_4 1}, {:Apogee_km 35900.0} {:cluster_4 1}, {:Apogee_km 866.0} {:cluster_6 1}, {:Apogee_km 816.0} {:cluster_2 2}, {:Apogee_km 855.0} {:cluster_2 3}, {:Apogee_km 784.0} {:cluster_2 1}, {:Apogee_km 717.0} {:cluster_6 1}, {:Apogee_km 791.0} {:cluster_6 3}, {:Apogee_km 673.0} {:cluster_2 3}, {:Apogee_km 729.0} {:cluster_2 1}, {:Apogee_km 35775.0} {:cluster_4 1}, {:Apogee_km 35856.0} {:cluster_4 1}, {:Apogee_km 551.0} {:cluster_6 1}, {:Apogee_km 651.0} {:cluster_2 1}, {:Apogee_km 841.0} {:cluster_2 1}, {:Apogee_km 927.0} {:cluster_6 1}, {:Apogee_km 822.0} {:cluster_2 1}, {:Apogee_km 607.0} {:cluster_2 1}, {:Apogee_km 35776.0} {:cluster_4 1}, {:Apogee_km 35817.0} {:cluster_4 3, :cluster_85 1}, {:Apogee_km 868.0} {:cluster_6 2}, {:Apogee_km 540.0} {:cluster_6 1}, {:Apogee_km 797.0} {:cluster_2 1}, {:Apogee_km 1512.0} {:cluster_6 1}, {:Apogee_km 120923.0} {:cluster_78 1}, {:Apogee_km 835.0} {:cluster_2 1}, {:Apogee_km 697.0} {:cluster_2 1}, {:Apogee_km 39396.0} {:cluster_62 1}, {:Apogee_km 114027.0} {:cluster_94 1}, {:Apogee_km 803.0} {:cluster_2 2}, {:Apogee_km 665.0} {:cluster_2 3}, {:Apogee_km 654.0} {:cluster_2 4}, {:Apogee_km 37564.0} {:cluster_62 1}, {:Apogee_km 35984.0} {:cluster_4 1}, {:Apogee_km 802.0} {:cluster_2 1}, {:Apogee_km 507.0} {:cluster_6 2, :cluster_2 2}, {:Apogee_km 773.0} {:cluster_2 1}, {:Apogee_km 1297.0} {:cluster_0 1}, {:Apogee_km 19175.0} {:cluster_23 1}, {:Apogee_km 35878.0} {:cluster_4 1}, {:Apogee_km 1041.0} {:cluster_9 1}, {:Apogee_km 35820.0} {:cluster_4 1}, {:Apogee_km 35789.0} {:cluster_4 13}, {:Apogee_km 20344.0} {:cluster_23 1}, {:Apogee_km 19129.0} {:cluster_23 1}, {:Apogee_km 701.0} {:cluster_2 1}, {:Apogee_km 670.0} {:cluster_2 1}, {:Apogee_km 35778.0} {:cluster_4 1}, {:Apogee_km 1155.0} {:cluster_6 1}, {:Apogee_km 700.0} {:cluster_2 1}, {:Apogee_km 35785.0} {:cluster_4 1}, {:Apogee_km 1016.0} {:cluster_6 2}, {:Apogee_km 1425.0} {:cluster_6 1}, {:Apogee_km 35725.0} {:cluster_4 1}, {:Apogee_km 501.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 35805.0} {:cluster_4 6, :cluster_3 2}, {:Apogee_km 500.0} {:cluster_2 2}, {:Apogee_km 1352.0} {:cluster_6 1}, {:Apogee_km 764.0} {:cluster_2 3}, {:Apogee_km 525.0} {:cluster_2 1}, {:Apogee_km 20152.0} {:cluster_23 1}, {:Apogee_km 104552.0} {:cluster_93 1}, {:Apogee_km 476.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 87304.0} {:cluster_66 1}, {:Apogee_km 779.0} {:cluster_6 53}, {:Apogee_km 415.0} {:cluster_6 1}, {:Apogee_km 733.0} {:cluster_9 1}, {:Apogee_km 603.0} {:cluster_2 3}, {:Apogee_km 1201.0} {:cluster_9 2}, {:Apogee_km 628.0} {:cluster_2 2}, {:Apogee_km 510.0} {:cluster_2 1}, {:Apogee_km 39807.0} {:cluster_62 1}, {:Apogee_km 35800.0} {:cluster_4 11}, {:Apogee_km 35815.0} {:cluster_4 3}, {:Apogee_km 39128.0} {:cluster_62 1}, {:Apogee_km 35767.0} {:cluster_4 1}, {:Apogee_km 19126.0} {:cluster_23 1}, {:Apogee_km 850.0} {:cluster_6 1}, {:Apogee_km 20292.0} {:cluster_23 1}, {:Apogee_km 573.0} {:cluster_2 1}, {:Apogee_km 35826.0} {:cluster_4 1}, {:Apogee_km 35808.0} {:cluster_4 5}, {:Apogee_km 19419.0} {:cluster_23 1}, {:Apogee_km 794.0} {:cluster_6 4}, {:Apogee_km 35795.0} {:cluster_4 33}, {:Apogee_km 760.0} {:cluster_6 1, :cluster_2 1}, {:Apogee_km 598.0} {:cluster_2 2}, {:Apogee_km 645.0} {:cluster_2 1}, {:Apogee_km 35834.0} {:cluster_4 1}, {:Apogee_km 859.0} {:cluster_2 1}, {:Apogee_km 572.0} {:cluster_2 1}, {:Apogee_km 39697.0} {:cluster_62 1}, {:Apogee_km 1013.0} {:cluster_6 1}, {:Apogee_km 867.0} {:cluster_6 1}, {:Apogee_km 35784.0} {:cluster_4 1}, {:Apogee_km 35768.0} {:cluster_4 1}, {:Apogee_km 35786.0} {:cluster_4 7}, {:Apogee_km 35816.0} {:cluster_4 2}, {:Apogee_km 785.0} {:cluster_2 1}, {:Apogee_km 35170.0} {:cluster_4 1}, {:Apogee_km 35848.0} {:cluster_4 1}, {:Apogee_km 1417.0} {:cluster_6 2}, {:Apogee_km 639.0} {:cluster_2 2}, {:Apogee_km 35809.0} {:cluster_4 8}, {:Apogee_km 830.0} {:cluster_2 1}, {:Apogee_km 11600.0} {:cluster_74 1}, {:Apogee_km 405.0} {:cluster_6 1}, {:Apogee_km 1418.0} {:cluster_6 1}, {:Apogee_km 35829.0} {:cluster_4 2}, {:Apogee_km 38740.0} {:cluster_62 1}, {:Apogee_km 1739.0} {:cluster_6 1}, {:Apogee_km 35995.0} {:cluster_4 1}, {:Apogee_km 671.0} {:cluster_2 1}, {:Apogee_km 832.0} {:cluster_2 1}, {:Apogee_km 692.0} {:cluster_2 3, :cluster_6 1}, {:Apogee_km 685.0} {:cluster_2 1}, {:Apogee_km 820.0} {:cluster_2 2}, {:Apogee_km 601.0} {:cluster_2 2}, {:Apogee_km 800.0} {:cluster_9 1}, {:Apogee_km 858.0} {:cluster_9 1}, {:Apogee_km 1205.0} {:cluster_2 2, :cluster_6 1}, {:Apogee_km 1510.0} {:cluster_2 1, :cluster_6 3}, {:Apogee_km 19158.0} {:cluster_23 1}, {:Apogee_km 635.0} {:cluster_2 1}, {:Apogee_km 623.0} {:cluster_2 4}, {:Apogee_km 718.0} {:cluster_2 1}, {:Apogee_km 599.0} {:cluster_2 1}, {:Apogee_km 1089.0} {:cluster_2 1}, {:Apogee_km 506.0} {:cluster_6 4}, {:Apogee_km 547.0} {:cluster_2 1}, {:Apogee_km 675.0} {:cluster_9 1}, {:Apogee_km 35852.0} {:cluster_4 2}, {:Apogee_km 886.0} {:cluster_2 11, :cluster_6 1}, {:Apogee_km 23306.0} {:cluster_23 1}, {:Apogee_km 39966.0} {:cluster_62 1}, {:Apogee_km 576.0} {:cluster_2 1}, {:Apogee_km 1200.0} {:cluster_9 2}, {:Apogee_km 422.0} {:cluster_6 1}, {:Apogee_km 20433.0} {:cluster_23 1}, {:Apogee_km 581.0} {:cluster_6 1}, {:Apogee_km 790.0} {:cluster_6 1}, {:Apogee_km 35949.0} {:cluster_4 1}, {:Apogee_km 826.0} {:cluster_2 2}, {:Apogee_km 19204.0} {:cluster_23 1}, {:Apogee_km 1503.0} {:cluster_6 1}, {:Apogee_km 815.0} {:cluster_2 2}, {:Apogee_km 35791.0} {:cluster_4 24}, {:Apogee_km 35792.0} {:cluster_4 15}, {:Apogee_km 20257.0} {:cluster_23 1}, {:Apogee_km 23233.0} {:cluster_23 1}, {:Apogee_km 758.0} {:cluster_6 1}, {:Apogee_km 35904.0} {:cluster_4 1}, {:Apogee_km 1202.0} {:cluster_2 1, :cluster_9 1}, {:Apogee_km 629.0} {:cluster_2 1}, {:Apogee_km 755.0} {:cluster_2 1}, {:Apogee_km 849.0} {:cluster_2 2}, {:Apogee_km 541.0} {:cluster_2 2}, {:Apogee_km 893.0} {:cluster_2 1}, {:Apogee_km 35793.0} {:cluster_4 19}, {:Apogee_km 459.0} {:cluster_2 1}, {:Apogee_km 37580.0} {:cluster_62 1}, {:Apogee_km 732.0} {:cluster_2 1}, {:Apogee_km 514.0} {:cluster_2 3}, {:Apogee_km 1422.0} {:cluster_6 1}, {:Apogee_km 35787.0} {:cluster_4 14}, {:Apogee_km 35642.0} {:cluster_4 1}, {:Apogee_km 1495.0} {:cluster_6 2}, {:Apogee_km 911.0} {:cluster_9 1}, {:Apogee_km 20582.0} {:cluster_23 1}, {:Apogee_km 1508.0} {:cluster_6 2}, {:Apogee_km 1505.0} {:cluster_6 1}, {:Apogee_km 19146.0} {:cluster_23 2}, {:Apogee_km 20213.0} {:cluster_23 1}, {:Apogee_km 36013.0} {:cluster_4 1}, {:Apogee_km 20209.0} {:cluster_23 1}, {:Apogee_km 677.0} {:cluster_2 1}, {:Apogee_km 451.0} {:cluster_2 1}, {:Apogee_km 767.0} {:cluster_2 1}, {:Apogee_km 696.0} {:cluster_2 3}, {:Apogee_km 823.0} {:cluster_2 3, :cluster_6 1}, {:Apogee_km 589.0} {:cluster_2 1}, {:Apogee_km 320000.0} {:cluster_92 1}, {:Apogee_km 580.0} {:cluster_6 1}, {:Apogee_km 19171.0} {:cluster_23 1}, {:Apogee_km 23307.0} {:cluster_23 1}, {:Apogee_km 35835.0} {:cluster_4 1}, {:Apogee_km 1482.0} {:cluster_0 1}, {:Apogee_km 490.0} {:cluster_2 1}, {:Apogee_km 19142.0} {:cluster_23 1}, {:Apogee_km 19130.0} {:cluster_23 4}, {:Apogee_km 694.0} {:cluster_2 4}, {:Apogee_km 851.0} {:cluster_2 1}, {:Apogee_km 1111.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 857.0} {:cluster_2 1}, {:Apogee_km 361.0} {:cluster_9 1}, {:Apogee_km 499.0} {:cluster_6 1}, {:Apogee_km 637.0} {:cluster_2 3}, {:Apogee_km 1509.0} {:cluster_6 4}, {:Apogee_km 690.0} {:cluster_2 3}, {:Apogee_km 852.0} {:cluster_2 1}, {:Apogee_km 734.0} {:cluster_2 1}, {:Apogee_km 19365.0} {:cluster_23 1}, {:Apogee_km 782.0} {:cluster_6 1}, {:Apogee_km 35855.0} {:cluster_4 1}, {:Apogee_km 698.0} {:cluster_2 1}, {:Apogee_km 1090.0} {:cluster_2 1}, {:Apogee_km 879.0} {:cluster_2 1}, {:Apogee_km 1400.0} {:cluster_6 1}, {:Apogee_km 720.0} {:cluster_2 1}, {:Apogee_km 776.0} {:cluster_6 3}, {:Apogee_km 35717.0} {:cluster_62 1}, {:Apogee_km 35883.0} {:cluster_4 1}, {:Apogee_km 672.0} {:cluster_2 1, :cluster_6 1}, {:Apogee_km 19162.0} {:cluster_23 1}, {:Apogee_km 35811.0} {:cluster_4 3}, {:Apogee_km 35812.0} {:cluster_4 4}, {:Apogee_km 317.0} {:cluster_2 1}, {:Apogee_km 650.0} {:cluster_2 2}, {:Apogee_km 35893.0} {:cluster_85 1}, {:Apogee_km 494.0} {:cluster_2 1}, {:Apogee_km 1413.0} {:cluster_6 1}, {:Apogee_km 35797.0} {:cluster_4 25, :cluster_32 1}, {:Apogee_km 35780.0} {:cluster_4 1}, {:Apogee_km 120715.0} {:cluster_78 1}, {:Apogee_km 35976.0} {:cluster_4 1}, {:Apogee_km 39388.0} {:cluster_62 1}, {:Apogee_km 839.0} {:cluster_2 1}, {:Apogee_km 20224.0} {:cluster_23 1}, {:Apogee_km 751.0} {:cluster_6 1}, {:Apogee_km 619.0} {:cluster_2 1}, {:Apogee_km 792.0} {:cluster_6 3}, {:Apogee_km 731.0} {:cluster_2 1}, {:Apogee_km 1416.0} {:cluster_6 6}, {:Apogee_km 780.0} {:cluster_6 10, :cluster_2 2}, {:Apogee_km 35844.0} {:cluster_4 1}, {:Apogee_km 702.0} {:cluster_6 1}, {:Apogee_km 824.0} {:cluster_2 1}, {:Apogee_km 691.0} {:cluster_2 1}, {:Apogee_km 1022.0} {:cluster_6 1}, {:Apogee_km 120961.0} {:cluster_78 1}, {:Apogee_km 513.0} {:cluster_2 1}, {:Apogee_km 475.0} {:cluster_2 1}, {:Apogee_km 595.0} {:cluster_2 1}, {:Apogee_km 509.0} {:cluster_2 1}, {:Apogee_km 492.0} {:cluster_2 2}, {:Apogee_km 35879.0} {:cluster_85 1}, {:Apogee_km 1412.0} {:cluster_6 1}, {:Apogee_km 1465.0} {:cluster_0 1}, {:Apogee_km 20266.0} {:cluster_23 1}, {:Apogee_km 688.0} {:cluster_6 1}, {:Apogee_km 427.0} {:cluster_6 1}, {:Apogee_km 504.0} {:cluster_6 5, :cluster_2 2}, {:Apogee_km 19123.0} {:cluster_23 1}, {:Apogee_km 35810.0} {:cluster_4 4}, {:Apogee_km 30657.0} {:cluster_62 1}, {:Apogee_km 683.0} {:cluster_2 3}, {:Apogee_km 710.0} {:cluster_2 1}, {:Apogee_km 21591.0} {:cluster_23 1}, {:Apogee_km 1344.0} {:cluster_6 1}, {:Apogee_km 19125.0} {:cluster_23 1}, {:Apogee_km 1000.0} {:cluster_9 1}, {:Apogee_km 821.0} {:cluster_2 3}, {:Apogee_km 1261.0} {:cluster_0 1}, {:Apogee_km 20227.0} {:cluster_23 1}, {:Apogee_km 774.0} {:cluster_6 3}, {:Apogee_km nil} {:cluster_2 1}, {:Apogee_km 649.0} {:cluster_6 1}, {:Apogee_km 583.0} {:cluster_2 1}, {:Apogee_km 35832.0} {:cluster_4 1}, {:Apogee_km 728.0} {:cluster_2 1}, {:Apogee_km 19133.0} {:cluster_23 2}, {:Apogee_km 358802.0} {:cluster_77 1}, {:Apogee_km 47086.0} {:cluster_80 1}}, :hyperparameters {:m 113764.79310344828, :r 8.56898029134533E-4, :s 9.456749226040926E9, :nu 1166.9999999999998}, :hyper-grid {:m (317.0 15983.633333333333 31650.266666666666 47316.9 62983.53333333333 78650.16666666667 94316.8 109983.43333333333 125650.06666666667 141316.7 156983.33333333334 172649.96666666667 188316.6 203983.23333333334 219649.86666666667 235316.5 250983.13333333333 266649.76666666666 282316.4 297983.0333333334 313649.66666666674 329316.3000000001 344982.93333333347 360649.5666666668 376316.2000000002 391982.83333333355 407649.4666666669 423316.10000000027 438982.7333333336 454649.366666667 470316.00000000035), :r (8.56898029134533E-4 0.0013721466648667219 0.0021972118103789806 0.003518384632839378 0.00563397227619358 0.009021652525608603 0.014446328505508529 0.023132835885295813 0.03704249809160715 0.05931597283059068 0.09498238007972104 0.15209482530742383 0.24354870730634268 0.38999336572232046 0.6244944881440667 0.9999999999999986 1.601295157899462 2.564146182712267 4.105954866523549 6.574845646317901 10.528268497385229 16.858865365928438 26.996019478140187 43.2285952729055 69.22174029329925 110.84443755303434 177.49466113376343 284.2213414265016 455.12225779794744 728.785067664125), :s (9.456749226030914E9 1.1025760110975676E10 1.2855092497340687E10 1.4987937471148323E10 1.747465214159467E10 2.037394858749322E10 2.375428006705585E10 2.7695457219839455E10 3.229053241987078E10 3.7647996770091606E10 4.389434160982162E10 5.117704501319817E10 5.966805379071627E10 6.9567843204969E10 8.11101502516939E10 9.45674922603099E10 1.1025760110975766E11 1.2855092497340793E11 1.4987937471148447E11 1.7474652141594812E11 2.037394858749339E11 2.375428006705605E11 2.769545721983968E11 3.2290532419871045E11 3.764799677009191E11 4.389434160982198E11 5.117704501319859E11 5.966805379071676E11 6.956784320496956E11 8.111015025169456E11), :nu (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata {}, :data {0 787.0, 893 1201.0, 920 703.0, 558 779.0, 453 640.0, 584 780.0, 487 35800.0, 637 1297.0, 972 35787.0, 519 320000.0, 1097 35790.0, 357 1415.0, 716 35794.0, 950 35798.0, 275 35856.0, 530 780.0, 929 607.0, 789 1016.0, 389 19126.0, 586 778.0, 410 19173.0, 433 35796.0, 765 792.0, 521 779.0, 451 669.0, 291 35816.0, 443 35808.0, 798 796.0, 779 504.0, 970 633.0, 249 35805.0, 638 816.0, 299 886.0, 1101 35786.0, 121 629.0, 734 35799.0, 287 500.0, 65 694.0, 1086 30657.0, 702 20342.0, 70 35794.0, 949 35795.0, 218 35795.0, 648 39362.0, 1070 35834.0, 812 502.0, 62 572.0, 74 415.0, 774 774.0, 475 35790.0, 497 35797.0, 1009 476.0, 580 779.0, 1138 513.0, 891 1203.0, 164 849.0, 1040 35798.0, 282 35791.0, 769 796.0, 799 733.0, 273 35812.0, 1147 1164.0, 186 35795.0, 430 35810.0, 641 35794.0, 529 779.0, 898 776.0, 370 1415.0, 834 688.0, 233 35750.0, 298 1081.0, 188 35799.0, 240 703.0, 110 35795.0, 130 544.0, 982 35791.0, 620 35792.0, 311 35798.0, 931 603.0, 882 677.0, 128 645.0, 399 19130.0, 989 783.0, 377 1418.0, 468 35808.0, 259 35806.0, 210 35784.0, 229 35789.0, 153 21595.0, 621 35794.0, 213 35810.0, 670 35797.0, 977 35697.0, 343 1416.0, 958 35803.0, 887 1100.0, 472 35799.0, 7 35984.0, 894 1201.0, 59 35799.0, 934 650.0, 473 35800.0, 1010 476.0, 86 35807.0, 756 794.0, 830 638.0, 613 35792.0, 491 35797.0, 154 21603.0, 20 35787.0, 224 35796.0, 355 1416.0, 592 664.0, 1146 1205.0, 610 1050.0, 806 676.0, 571 779.0, 466 37580.0, 72 35805.0, 454 35803.0, 888 1200.0, 463 nil, 851 1516.0, 770 795.0, 814 502.0, 859 655.0, 58 35794.0, 964 789.0, 980 868.0, 1001 879.0, 205 35817.0, 555 779.0, 552 779.0, 60 764.0, 1102 35786.0, 835 638.0, 459 492.0, 175 886.0, 322 23233.0, 510 35797.0, 1052 475.0, 1121 35791.0, 662 1510.0, 27 582.0, 352 1416.0, 493 35788.0, 899 760.0, 416 1415.0, 777 777.0, 694 20268.0, 1 35794.0, 631 717.0, 854 1509.0, 69 35790.0, 101 35883.0, 24 583.0, 901 35791.0, 547 779.0, 102 35623.0, 788 1016.0, 1106 494.0, 713 35808.0, 1110 1261.0, 385 19130.0, 988 507.0, 135 804.0, 1065 400.0, 397 19146.0, 1011 496.0, 1006 35793.0, 773 774.0, 490 35804.0, 752 776.0, 354 1415.0, 884 35790.0, 360 1414.0, 998 1495.0, 961 35791.0, 55 35793.0, 568 779.0, 797 1022.0, 688 20247.0, 763 794.0, 269 35802.0, 676 20582.0, 448 503.0, 527 779.0, 206 35868.0, 1075 35835.0, 966 886.0, 165 828.0, 715 35793.0, 387 19133.0, 652 35793.0, 683 20449.0, 85 35794.0, 721 864.0, 862 787.0, 615 667.0, 681 20284.0, 225 35794.0, 865 503.0, 297 1107.0, 39 35793.0, 805 627.0, 274 35787.0, 88 35852.0, 217 639.0, 1128 496.0, 46 35795.0, 682 20227.0, 508 35792.0, 1157 35797.0, 149 35817.0, 415 690.0, 239 703.0, 478 35791.0, 878 758.0, 157 35791.0, 345 1414.0, 300 886.0, 743 764.0, 921 704.0, 1039 505.0, 4 35791.0, 550 779.0, 1115 35788.0, 204 35814.0, 470 35642.0, 1164 35812.0, 646 39388.0, 77 35789.0, 106 581.0, 197 855.0, 405 19158.0, 897 1203.0, 726 35798.0, 776 778.0, 940 672.0, 755 795.0, 902 35815.0, 518 422.0, 232 694.0, 260 35787.0, 823 35949.0, 1125 35789.0, 267 35799.0, 119 703.0, 319 35788.0, 534 779.0, 222 35789.0, 603 35797.0, 293 828.0, 95 35795.0, 450 35796.0, 329 586.0, 144 35799.0, 1087 699.0, 504 35796.0, 819 450.0, 818 35798.0, 505 35795.0, 723 827.0, 1071 35787.0, 1008 558.0, 992 1419.0, 176 1465.0, 863 785.0, 471 35803.0, 349 1415.0, 512 35789.0, 710 35795.0, 1058 35802.0, 192 732.0, 54 1459.0, 92 35804.0, 221 35791.0, 141 703.0, 502 35797.0, 871 35796.0, 464 680.0, 801 729.0, 307 35796.0, 935 651.0, 758 794.0, 290 35803.0, 1156 653.0, 1144 512.0, 627 703.0, 517 35892.0, 1122 35800.0, 361 1415.0, 264 35815.0, 137 35788.0, 356 1414.0, 728 35796.0, 976 35717.0, 678 20244.0, 327 819.0, 234 692.0, 856 1511.0, 817 640.0, 1017 886.0, 104 718.0, 353 1415.0, 1145 665.0, 15 791.0, 48 35798.0, 945 35796.0, 759 796.0, 1066 38740.0, 242 547.0, 832 697.0, 969 665.0, 50 35794.0, 956 35802.0, 917 35795.0, 1030 35796.0, 557 779.0, 251 35810.0, 394 19142.0, 116 35725.0, 585 753.0, 583 779.0, 75 35803.0, 437 683.0, 516 35804.0, 1062 35799.0, 994 1506.0, 930 603.0, 967 760.0, 687 20191.0, 159 35794.0, 848 1496.0, 995 1503.0, 1096 654.0, 1159 35807.0, 709 405.0, 99 1014.0, 540 779.0, 645 37900.0, 749 35797.0, 479 35807.0, 1081 39807.0, 890 1203.0, 1046 826.0, 630 668.0, 916 35790.0, 815 502.0, 1080 35904.0, 281 35795.0, 402 19123.0, 669 35796.0, 781 504.0, 740 8069.0, 1012 590.0, 975 330000.0, 429 35811.0, 309 35795.0, 458 492.0, 21 35802.0, 388 19378.0, 495 35811.0, 952 35795.0, 626 716.0, 875 714.0, 31 674.0, 113 35800.0, 32 35797.0, 811 502.0, 827 646.0, 407 19199.0, 398 19133.0, 136 611.0, 691 20292.0, 847 1506.0, 825 35797.0, 139 731.0, 506 35798.0, 396 19419.0, 460 591.0, 483 152812.0, 589 754.0, 581 779.0, 932 602.0, 174 703.0, 578 779.0, 855 1507.0, 331 104552.0, 363 1414.0, 1038 598.0, 284 35940.0, 208 35855.0, 305 683.0, 1019 120961.0, 955 35801.0, 796 945.0, 708 786.0, 182 780.0, 256 35790.0, 1107 767.0, 1109 358.0, 657 35819.0, 514 35796.0, 1103 35796.0, 731 35798.0, 619 501.0, 985 35848.0, 485 35789.0, 214 35832.0, 193 855.0, 685 20224.0, 804 691.0, 869 35794.0, 1002 1352.0, 1104 470310.0, 836 823.0, 1131 1207.0, 785 35792.0, 635 35801.0, 442 1155.0, 1073 35775.0, 561 780.0, 954 35797.0, 656 35791.0, 607 35788.0, 241 704.0, 314 35796.0, 782 839.0, 226 35790.0, 235 692.0, 672 35900.0, 420 1510.0, 418 1417.0, 262 35806.0, 1016 11836.0, 263 35794.0, 304 823.0, 401 19135.0, 673 659.0, 40 35800.0, 129 1486.0, 600 35794.0, 729 35797.0, 1042 35796.0, 467 637.0, 1033 35799.0, 1149 1164.0, 445 35786.0, 317 35794.0, 1091 490.0, 1028 35809.0, 294 828.0, 91 35801.0, 1044 87260.0, 810 502.0, 1137 1112.0, 364 1415.0, 987 650.0, 880 702.0, 515 35803.0, 412 35170.0, 553 779.0, 974 35826.0, 341 1417.0, 117 35787.0, 1000 626.0, 1095 685.0, 665 690.0, 523 779.0, 172 715.0, 601 35794.0, 108 521.0, 156 21574.0, 358 1415.0, 308 35790.0, 908 673.0, 649 820.0, 531 779.0, 1085 30534.0, 923 673.0, 1111 501.0, 223 35803.0, 419 1510.0, 365 1414.0, 944 703.0, 181 616.0, 417 1415.0, 1082 39697.0, 979 699.0, 278 35790.0, 56 35795.0, 942 35802.0, 33 35805.0, 13 35700.0, 1043 87304.0, 867 486.0, 22 35802.0, 618 552.0, 1141 627.0, 1093 35791.0, 380 19146.0, 257 35794.0, 1061 631.0, 338 1416.0, 1024 35796.0, 500 35798.0, 909 627.0, 1018 510.0, 993 1506.0, 1089 504.0, 168 623.0, 833 35787.0, 496 35792.0, 1056 35813.0, 1129 507.0, 947 47048.0, 347 1414.0, 501 35795.0, 1007 35792.0, 1077 662.0, 596 1344.0, 872 35795.0, 792 1011.0, 90 35797.0, 237 692.0, 826 1202.0, 292 835.0, 109 507.0, 216 603.0, 191 35798.0, 498 35793.0, 829 637.0, 761 792.0, 1072 35807.0, 375 1400.0, 525 711.0, 367 1414.0, 143 35864.0, 742 573.0, 178 628.0, 640 35791.0, 247 35796.0, 328 569.0, 391 19141.0, 990 1431.0, 167 623.0, 707 20209.0, 36 35797.0, 41 35798.0, 474 35798.0, 187 35792.0, 551 780.0, 1118 35792.0, 996 1502.0, 528 779.0, 971 35787.0, 599 35791.0, 376 927.0, 195 851.0, 889 1202.0, 316 35795.0, 668 525.0, 428 35795.0, 303 893.0, 671 35800.0, 794 968.0, 905 39966.0, 368 1415.0, 560 780.0, 565 779.0, 310 35795.0, 366 1414.0, 118 813.0, 522 779.0, 150 37872.0, 886 1100.0, 313 35798.0, 384 19130.0, 567 779.0, 238 690.0, 846 1507.0, 962 11600.0, 1127 668.0, 845 1509.0, 196 852.0, 162 831.0, 393 19141.0, 184 35786.0, 219 35792.0, 999 1482.0, 461 514.0, 1032 35801.0, 89 35780.0, 100 35791.0, 426 451.0, 604 35794.0, 477 35809.0, 844 1510.0, 541 779.0, 351 1414.0, 243 514.0, 131 138825.0, 790 1013.0, 963 791.0, 1053 361.0, 629 637.0, 873 747.0, 122 783.0, 933 591.0, 43 35795.0, 1067 858.0, 231 35799.0, 61 850.0, 654 821.0, 883 35795.0, 1003 1351.0, 598 35789.0, 413 35788.0, 29 886.0, 784 35789.0, 800 507.0, 151 35879.0, 369 1414.0, 348 1416.0, 1124 35866.0, 575 779.0, 693 20247.0, 44 35791.0, 739 8068.0, 258 35790.0, 250 35795.0, 674 672.0, 539 779.0, 301 506.0, 838 472.0, 424 1509.0, 93 35802.0, 6 36013.0, 684 20257.0, 1026 35803.0, 951 35791.0, 573 779.0, 408 19212.0, 563 779.0, 850 1512.0, 616 698.0, 866 496.0, 111 35797.0, 997 1495.0, 689 20327.0, 28 5732.0, 456 639.0, 374 1414.0, 608 800.0, 737 8069.0, 1155 653.0, 548 780.0, 538 779.0, 1034 35791.0, 895 1205.0, 411 35801.0, 957 35803.0, 134 804.0, 943 35802.0, 64 694.0, 623 499.0, 1135 1111.0, 1133 1090.0, 465 37564.0, 816 502.0, 334 1415.0, 1150 824.0, 323 23227.0, 189 35797.0, 280 35788.0, 198 859.0, 155 21591.0, 295 556.0, 808 820.0, 248 35822.0, 587 782.0, 285 540.0, 507 35797.0, 227 35798.0, 724 502.0, 476 35793.0, 941 701.0, 911 35798.0, 853 1514.0, 494 35790.0, 220 35793.0, 842 1511.0, 103 35805.0, 697 20498.0, 611 1000.0, 1105 849.0, 170 724.0, 1154 606.0, 51 35789.0, 25 632.0, 261 35793.0, 768 796.0, 822 2165.0, 201 815.0, 904 39850.0, 590 778.0, 489 35791.0, 778 504.0, 166 623.0, 447 673.0, 34 35791.0, 252 35817.0, 978 826.0, 775 774.0, 325 35790.0, 1005 35794.0, 594 823.0, 436 636.0, 828 638.0, 535 780.0, 813 502.0, 146 35809.0, 741 724.0, 1060 613.0, 876 746.0, 1064 764.0, 228 35789.0, 907 35805.0, 306 35795.0, 125 619.0, 276 821.0, 340 1478.0, 148 35799.0, 1143 450.0, 482 37791.0, 1049 35794.0, 622 317.0, 588 779.0, 17 886.0, 312 35799.0, 606 35789.0, 3 35793.0, 1148 1164.0, 520 890.0, 1088 35796.0, 760 795.0, 720 857.0, 1126 628.0, 286 654.0, 279 35798.0, 879 736.0, 1020 35802.0, 536 779.0, 1023 35878.0, 663 821.0, 12 35700.0, 440 551.0, 332 704.0, 330 686.0, 1162 35807.0, 382 19125.0, 152 21545.0, 1112 35790.0, 1140 661.0, 544 779.0, 803 699.0, 642 35788.0, 435 967.0, 342 1416.0, 703 20366.0, 783 35800.0, 695 20234.0, 973 35787.0, 2 35789.0, 948 47086.0, 66 653.0, 484 35796.0, 439 35803.0, 236 692.0, 556 779.0, 373 1415.0, 1083 39128.0, 142 35803.0, 359 1415.0, 727 35793.0, 371 1739.0, 772 838.0, 444 35809.0, 1057 37794.0, 570 779.0, 757 795.0, 107 703.0, 1094 35776.0, 532 779.0, 984 35796.0, 23 534.0, 1079 640.0, 745 589.0, 719 816.0, 230 35797.0, 625 676.0, 47 35798.0, 526 779.0, 180 662.0, 786 35787.0, 1068 784.0, 1166 504.0, 870 35792.0, 537 779.0, 659 35768.0, 158 35799.0, 991 1425.0, 350 1414.0, 35 35800.0, 1116 114027.0, 849 1505.0, 1120 35823.0, 644 35976.0, 1069 35793.0, 881 734.0, 127 643.0, 927 594.0, 675 35795.0, 1055 505.0, 383 19130.0, 533 779.0, 1100 35786.0, 910 35793.0, 302 35829.0, 564 779.0, 701 20221.0, 1090 867.0, 566 779.0, 821 793.0, 787 694.0, 82 35799.0, 76 35792.0, 735 632.0, 492 35801.0, 718 35809.0, 771 795.0, 215 680.0, 97 35806.0, 704 20213.0, 277 35790.0, 926 598.0, 751 35795.0, 1114 35789.0, 19 35808.0, 335 1422.0, 597 35801.0, 938 802.0, 57 35790.0, 609 1041.0, 202 35799.0, 68 35795.0, 452 559.0, 1054 504.0, 200 815.0, 1142 658.0, 868 502.0, 11 36103.0, 115 35794.0, 946 47100.0, 1063 704.0, 983 35778.0, 339 1413.0, 431 35796.0, 462 514.0, 337 1415.0, 698 20266.0, 255 35767.0, 503 35797.0, 546 779.0, 9 35500.0, 953 35797.0, 857 120715.0, 706 20152.0, 632 35812.0, 457 491.0, 427 670.0, 145 35797.0, 5 710.0, 733 35792.0, 1163 35792.0, 1165 773.0, 1152 683.0, 624 675.0, 831 642.0, 244 1313.0, 918 703.0, 824 35788.0, 289 35791.0, 112 35803.0, 925 606.0, 1059 459.0, 730 35798.0, 699 20344.0, 712 696.0, 1076 35794.0, 1113 35787.0, 414 35800.0, 839 541.0, 802 414.0, 1084 700.0, 860 120768.0, 1117 823.0, 179 1475.0, 344 1415.0, 481 35811.0, 732 35794.0, 661 35806.0, 245 671.0, 378 928.0, 913 35792.0, 906 35803.0, 658 35809.0, 266 35805.0, 324 654.0, 793 1008.0, 1134 1081.0, 1132 1089.0, 1014 35792.0, 680 20315.0, 446 665.0, 524 780.0, 254 35802.0, 404 19175.0, 1025 35787.0, 617 696.0, 283 35995.0, 1153 454.0, 513 35805.0, 572 779.0, 705 20311.0, 1098 35787.0, 959 35793.0, 1074 35829.0, 83 35797.0, 634 35793.0, 138 791.0, 1050 35807.0, 346 1415.0, 14 790.0, 455 35799.0, 265 35797.0, 449 504.0, 333 1412.0, 650 35791.0, 639 886.0, 569 779.0, 326 35801.0, 746 797.0, 647 39396.0, 45 35796.0, 53 36007.0, 559 779.0, 78 35795.0, 1037 35791.0, 924 616.0, 562 779.0, 1119 1205.0, 542 779.0, 912 35852.0, 664 832.0, 1048 35798.0, 315 35801.0, 1031 35793.0, 914 35791.0, 480 35796.0, 132 35797.0, 753 777.0, 900 649.0, 1013 720.0, 26 626.0, 766 796.0, 123 631.0, 203 35802.0, 667 35796.0, 392 19145.0, 1045 87526.0, 577 780.0, 807 728.0, 140 747.0, 321 23306.0, 795 1011.0, 441 696.0, 700 20433.0, 268 35800.0, 840 427.0, 16 792.0, 320 23307.0, 133 748.0, 288 500.0, 381 19141.0, 605 866.0, 163 746.0, 81 35795.0, 120 505.0, 643 868.0, 79 35793.0, 211 35800.0, 38 35795.0, 173 830.0, 126 635.0, 981 624.0, 1161 35799.0, 421 1507.0, 593 35872.0, 636 1014.0, 1160 35796.0, 98 35794.0, 422 1511.0, 423 1508.0, 614 35796.0, 762 793.0, 582 779.0, 666 35809.0, 1123 35796.0, 554 779.0, 409 19162.0, 574 751.0, 595 721.0, 124 506.0, 747 35799.0, 171 653.0, 87 35798.0, 169 623.0, 653 35795.0, 679 20260.0, 843 1509.0, 160 841.0, 30 35787.0, 400 19129.0, 767 795.0, 896 1203.0, 928 595.0, 696 20427.0, 1027 35808.0, 738 8069.0, 809 506.0, 509 35798.0, 736 654.0, 207 35799.0, 874 780.0, 434 803.0, 1130 481.0, 690 20276.0, 194 855.0, 1047 35795.0, 511 358802.0, 73 35794.0, 486 35795.0, 336 1415.0, 96 35804.0, 837 571.0, 1136 1111.0, 937 803.0, 10 35805.0, 660 35820.0, 272 35815.0, 499 35794.0, 488 35798.0, 903 35812.0, 386 19171.0, 270 35806.0, 576 780.0, 717 35700.0, 543 779.0, 271 35799.0, 18 886.0, 395 19135.0, 403 19380.0, 469 35809.0, 105 579.0, 185 35786.0, 52 35796.0, 1051 35807.0, 545 779.0, 633 911.0, 114 886.0, 1099 35786.0, 968 886.0, 253 35799.0, 612 997.0, 1151 1508.0, 1015 35801.0, 628 705.0, 748 35796.0, 209 35817.0, 147 35893.0, 655 822.0, 1022 35785.0, 750 35799.0, 852 1516.0, 425 450.0, 1158 35803.0, 864 505.0, 67 669.0, 1108 640.0, 296 1107.0, 602 37768.0, 318 35798.0, 161 836.0, 651 35797.0, 725 35795.0, 372 1414.0, 1092 35796.0, 406 19204.0, 438 682.0, 780 410.0, 711 705.0, 1041 35796.0, 71 35874.0, 939 755.0, 579 779.0, 877 725.0, 722 864.0, 42 35793.0, 919 704.0, 80 35801.0, 885 541.0, 1078 795.0, 986 506.0, 1035 35795.0, 714 35813.0, 677 20403.0, 199 582.0, 841 1448.0, 754 776.0, 791 1008.0, 1029 580.0, 861 120923.0, 591 750.0, 1021 35844.0, 744 576.0, 960 599.0, 37 35797.0, 183 35788.0, 1139 1207.0, 965 886.0, 892 1200.0, 432 35814.0, 379 1391.0, 63 674.0, 212 35909.0, 94 35793.0, 362 1414.0, 8 35937.0, 686 20464.0, 692 20426.0, 764 794.0, 246 35810.0, 190 35796.0, 1004 634.0, 1036 509.0, 549 779.0, 922 601.0, 177 829.0, 915 35816.0, 936 601.0, 820 38950.0, 49 35798.0, 858 704.0, 390 19365.0, 84 35791.0}}, :Perigee_km #gensql.inference.gpm.column.Column{:var-name :Perigee_km, :stattype :gaussian, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 6179.0, :sum-x-sq 3.8180041E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 3, :sum-x 1402.0, :sum-x-sq 655286.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 35775.0, :sum-x-sq 1.279850625E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 23783.0, :sum-x-sq 5.65631089E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 2284.0, :sum-x-sq 5216656.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 3905.0, :sum-x-sq 1.5249025E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 7, :sum-x 2192.0, :sum-x-sq 687278.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 12849.0, :sum-x-sq 1.65096801E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 15, :sum-x 11457.0, :sum-x-sq 9731539.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 2, :sum-x 8000.0, :sum-x-sq 5.0E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 264.0, :sum-x-sq 69696.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 4, :sum-x 143209.0, :sum-x-sq 5.127216391E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 186.0, :sum-x-sq 34596.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 7079.0, :sum-x-sq 5.0112241E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 4, :sum-x 68369.0, :sum-x-sq 1.168738099E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 278, :sum-x 256206.0, :sum-x-sq 2.72507656E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 35773.0, :sum-x-sq 1.279707529E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 7, :sum-x 246826.0, :sum-x-sq 8.711446634E9}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 1, :sum-x 9999.0, :sum-x-sq 9.9980001E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 4, :sum-x 32252.0, :sum-x-sq 2.60047878E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 434, :sum-x 1.552006E7, :sum-x-sq 5.55030082606E11}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 29, :sum-x 20682.0, :sum-x-sq 1.7382302E7}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 294, :sum-x 195770.0, :sum-x-sq 1.38615192E8}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 72, :sum-x 1435516.0, :sum-x-sq 2.8699396536E10}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Perigee_km, :suff-stats {:n 2, :sum-x 1858.0, :sum-x-sq 1872964.0}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}}}, :assignments {{:Perigee_km 578.0} {:cluster_2 1}, {:Perigee_km 650.0} {:cluster_2 2, :cluster_6 1}, {:Perigee_km 648.0} {:cluster_6 1}, {:Perigee_km 35782.0} {:cluster_4 16}, {:Perigee_km 410.0} {:cluster_6 2}, {:Perigee_km 509.0} {:cluster_2 2}, {:Perigee_km 1111.0} {:cluster_62 1}, {:Perigee_km 590.0} {:cluster_2 2}, {:Perigee_km 801.0} {:cluster_2 1}, {:Perigee_km 915.0} {:cluster_6 1}, {:Perigee_km 748.0} {:cluster_6 1}, {:Perigee_km 19134.0} {:cluster_23 2}, {:Perigee_km 18864.0} {:cluster_23 1}, {:Perigee_km 35598.0} {:cluster_4 1}, {:Perigee_km 35753.0} {:cluster_4 1}, {:Perigee_km 656.0} {:cluster_2 1}, {:Perigee_km 19781.0} {:cluster_23 1}, {:Perigee_km 1370.0} {:cluster_6 1}, {:Perigee_km 37782.0} {:cluster_4 1}, {:Perigee_km 1015.0} {:cluster_9 1}, {:Perigee_km 599.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 35772.0} {:cluster_4 12}, {:Perigee_km 1192.0} {:cluster_2 1}, {:Perigee_km 538.0} {:cluster_6 2, :cluster_2 2}, {:Perigee_km 457.0} {:cluster_2 1}, {:Perigee_km 827.0} {:cluster_2 3}, {:Perigee_km 8063.0} {:cluster_59 2}, {:Perigee_km 35694.0} {:cluster_4 1}, {:Perigee_km 35757.0} {:cluster_4 4}, {:Perigee_km 415.0} {:cluster_6 1}, {:Perigee_km 571.0} {:cluster_6 1}, {:Perigee_km 558.0} {:cluster_6 1}, {:Perigee_km 817.0} {:cluster_2 3}, {:Perigee_km 570.0} {:cluster_2 1}, {:Perigee_km 21462.0} {:cluster_23 1}, {:Perigee_km 35560.0} {:cluster_4 1}, {:Perigee_km 510.0} {:cluster_6 1}, {:Perigee_km 8062.0} {:cluster_59 1}, {:Perigee_km 19119.0} {:cluster_23 1}, {:Perigee_km 587.0} {:cluster_2 1}, {:Perigee_km 464.0} {:cluster_2 1}, {:Perigee_km 470.0} {:cluster_6 1}, {:Perigee_km 35718.0} {:cluster_4 1}, {:Perigee_km 581.0} {:cluster_2 1}, {:Perigee_km 603.0} {:cluster_6 2}, {:Perigee_km 35714.0} {:cluster_4 2}, {:Perigee_km 495.0} {:cluster_6 2}, {:Perigee_km 498.0} {:cluster_6 8}, {:Perigee_km 625.0} {:cluster_2 2}, {:Perigee_km 35897.0} {:cluster_3 1}, {:Perigee_km 688.0} {:cluster_2 1}, {:Perigee_km 670.0} {:cluster_2 2}, {:Perigee_km 684.0} {:cluster_2 1}, {:Perigee_km 608.0} {:cluster_62 1}, {:Perigee_km 595.0} {:cluster_62 1, :cluster_2 1}, {:Perigee_km 1201.0} {:cluster_2 2}, {:Perigee_km 626.0} {:cluster_2 1}, {:Perigee_km 326.0} {:cluster_0 2}, {:Perigee_km 837.0} {:cluster_2 1}, {:Perigee_km 768.0} {:cluster_6 2}, {:Perigee_km 186.0} {:cluster_73 1}, {:Perigee_km 35717.0} {:cluster_85 1}, {:Perigee_km 291.0} {:cluster_2 1}, {:Perigee_km 1493.0} {:cluster_6 2}, {:Perigee_km 679.0} {:cluster_2 2}, {:Perigee_km 696.0} {:cluster_2 5}, {:Perigee_km 788.0} {:cluster_6 9}, {:Perigee_km 588.0} {:cluster_2 1}, {:Perigee_km 604.0} {:cluster_2 1}, {:Perigee_km 954.0} {:cluster_6 1}, {:Perigee_km 35791.0} {:cluster_4 1}, {:Perigee_km 19128.0} {:cluster_23 1}, {:Perigee_km 586.0} {:cluster_2 2}, {:Perigee_km 618.0} {:cluster_2 1}, {:Perigee_km 20174.0} {:cluster_23 1}, {:Perigee_km 1200.0} {:cluster_74 1}, {:Perigee_km 800.0} {:cluster_9 1, :cluster_2 1}, {:Perigee_km 791.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 19092.0} {:cluster_23 1}, {:Perigee_km 264.0} {:cluster_9 1, :cluster_82 1}, {:Perigee_km 1066.0} {:cluster_2 1}, {:Perigee_km 1885.0} {:cluster_6 1}, {:Perigee_km 7000.0} {:cluster_92 1}, {:Perigee_km 824.0} {:cluster_2 2}, {:Perigee_km 1076.0} {:cluster_2 1}, {:Perigee_km 448.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km nil} {:cluster_2 1}, {:Perigee_km 19112.0} {:cluster_23 1}, {:Perigee_km 19139.0} {:cluster_23 1}, {:Perigee_km 729.0} {:cluster_2 1}, {:Perigee_km 1408.0} {:cluster_6 1}, {:Perigee_km 35760.0} {:cluster_4 4}, {:Perigee_km 802.0} {:cluster_2 1}, {:Perigee_km 620.0} {:cluster_2 3}, {:Perigee_km 845.0} {:cluster_2 2}, {:Perigee_km 20120.0} {:cluster_23 1}, {:Perigee_km 33066.0} {:cluster_4 1}, {:Perigee_km 522.0} {:cluster_6 1}, {:Perigee_km 434.0} {:cluster_2 1}, {:Perigee_km 764.0} {:cluster_2 1}, {:Perigee_km 745.0} {:cluster_6 1}, {:Perigee_km 609.0} {:cluster_2 2}, {:Perigee_km 35778.0} {:cluster_4 34}, {:Perigee_km 35693.0} {:cluster_85 1, :cluster_4 1}, {:Perigee_km 529.0} {:cluster_2 1}, {:Perigee_km 32618.0} {:cluster_85 1}, {:Perigee_km 847.0} {:cluster_6 1}, {:Perigee_km 583.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 702.0} {:cluster_2 6}, {:Perigee_km 1497.0} {:cluster_6 1}, {:Perigee_km 619.0} {:cluster_2 1}, {:Perigee_km 676.0} {:cluster_2 1}, {:Perigee_km 468.0} {:cluster_2 1}, {:Perigee_km 1475.0} {:cluster_6 1}, {:Perigee_km 35777.0} {:cluster_4 21}, {:Perigee_km 21452.0} {:cluster_23 1}, {:Perigee_km 542.0} {:cluster_62 1}, {:Perigee_km 35769.0} {:cluster_4 9}, {:Perigee_km 548.0} {:cluster_6 1}, {:Perigee_km 35766.0} {:cluster_4 7}, {:Perigee_km 1193.0} {:cluster_2 1}, {:Perigee_km 20142.0} {:cluster_23 1}, {:Perigee_km 1079.0} {:cluster_2 1}, {:Perigee_km 35784.0} {:cluster_4 16}, {:Perigee_km 35780.0} {:cluster_4 21}, {:Perigee_km 35595.0} {:cluster_4 1}, {:Perigee_km 984.0} {:cluster_2 2}, {:Perigee_km 19959.0} {:cluster_23 1}, {:Perigee_km 968.0} {:cluster_6 1}, {:Perigee_km 537.0} {:cluster_9 1}, {:Perigee_km 35696.0} {:cluster_4 1}, {:Perigee_km 403.0} {:cluster_6 1}, {:Perigee_km 19912.0} {:cluster_23 1}, {:Perigee_km 686.0} {:cluster_2 2}, {:Perigee_km 19087.0} {:cluster_23 1}, {:Perigee_km 775.0} {:cluster_6 1}, {:Perigee_km 20072.0} {:cluster_23 1}, {:Perigee_km 805.0} {:cluster_2 1}, {:Perigee_km 1440.0} {:cluster_2 1}, {:Perigee_km 621.0} {:cluster_2 3, :cluster_6 1}, {:Perigee_km 35762.0} {:cluster_4 1}, {:Perigee_km 579.0} {:cluster_2 1}, {:Perigee_km 820.0} {:cluster_2 3}, {:Perigee_km 681.0} {:cluster_2 4}, {:Perigee_km 35589.0} {:cluster_4 1}, {:Perigee_km 35793.0} {:cluster_4 1}, {:Perigee_km 35738.0} {:cluster_4 2}, {:Perigee_km 1407.0} {:cluster_6 1}, {:Perigee_km 949.0} {:cluster_6 2}, {:Perigee_km 459.0} {:cluster_9 1}, {:Perigee_km 1339.0} {:cluster_6 1}, {:Perigee_km 20135.0} {:cluster_23 1}, {:Perigee_km 35703.0} {:cluster_4 1}, {:Perigee_km 23783.0} {:cluster_75 1}, {:Perigee_km 19118.0} {:cluster_23 1}, {:Perigee_km 671.0} {:cluster_2 1, :cluster_9 1}, {:Perigee_km 712.0} {:cluster_2 1}, {:Perigee_km 21460.0} {:cluster_23 1}, {:Perigee_km 534.0} {:cluster_2 1}, {:Perigee_km 1465.0} {:cluster_6 1}, {:Perigee_km 716.0} {:cluster_6 1}, {:Perigee_km 1014.0} {:cluster_9 1}, {:Perigee_km 651.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 589.0} {:cluster_2 1}, {:Perigee_km 610.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 18922.0} {:cluster_23 1}, {:Perigee_km 35771.0} {:cluster_4 5, :cluster_3 2}, {:Perigee_km 709.0} {:cluster_2 1}, {:Perigee_km 967.0} {:cluster_6 1}, {:Perigee_km 844.0} {:cluster_9 1}, {:Perigee_km 708.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 907.0} {:cluster_6 1}, {:Perigee_km 786.0} {:cluster_6 1}, {:Perigee_km 35420.0} {:cluster_4 1}, {:Perigee_km 843.0} {:cluster_2 2}, {:Perigee_km 19147.0} {:cluster_23 1}, {:Perigee_km 842.0} {:cluster_2 4}, {:Perigee_km 612.0} {:cluster_6 1}, {:Perigee_km 961.0} {:cluster_62 1, :cluster_6 1}, {:Perigee_km 35779.0} {:cluster_4 13}, {:Perigee_km 594.0} {:cluster_2 16}, {:Perigee_km 630.0} {:cluster_2 2}, {:Perigee_km 501.0} {:cluster_2 2}, {:Perigee_km 19136.0} {:cluster_23 1}, {:Perigee_km 850.0} {:cluster_6 1}, {:Perigee_km 2284.0} {:cluster_81 1}, {:Perigee_km 682.0} {:cluster_2 1}, {:Perigee_km 35987.0} {:cluster_4 1}, {:Perigee_km 35170.0} {:cluster_4 1}, {:Perigee_km 918.0} {:cluster_6 1}, {:Perigee_km 443.0} {:cluster_2 10, :cluster_6 1}, {:Perigee_km 35744.0} {:cluster_4 1}, {:Perigee_km 35741.0} {:cluster_4 1}, {:Perigee_km 1413.0} {:cluster_6 19}, {:Perigee_km 1398.0} {:cluster_6 1}, {:Perigee_km 444.0} {:cluster_2 1}, {:Perigee_km 1459.0} {:cluster_6 1}, {:Perigee_km 37778.0} {:cluster_4 1}, {:Perigee_km 18981.0} {:cluster_23 1}, {:Perigee_km 591.0} {:cluster_62 1, :cluster_2 1}, {:Perigee_km 1347.0} {:cluster_6 1}, {:Perigee_km 735.0} {:cluster_6 1}, {:Perigee_km 480.0} {:cluster_6 1}, {:Perigee_km 19098.0} {:cluster_23 1}, {:Perigee_km 35759.0} {:cluster_4 3}, {:Perigee_km 771.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 19963.0} {:cluster_23 1}, {:Perigee_km 20206.0} {:cluster_23 1}, {:Perigee_km 503.0} {:cluster_2 1}, {:Perigee_km 1484.0} {:cluster_6 1}, {:Perigee_km 623.0} {:cluster_2 1}, {:Perigee_km 257.0} {:cluster_9 1}, {:Perigee_km 1210.0} {:cluster_62 1}, {:Perigee_km 483.0} {:cluster_6 1}, {:Perigee_km 398.0} {:cluster_6 1}, {:Perigee_km 325.0} {:cluster_0 1}, {:Perigee_km 700.0} {:cluster_2 1}, {:Perigee_km 305.0} {:cluster_0 1}, {:Perigee_km 710.0} {:cluster_2 2}, {:Perigee_km 867.0} {:cluster_2 1}, {:Perigee_km 20104.0} {:cluster_23 2}, {:Perigee_km 960.0} {:cluster_6 1}, {:Perigee_km 506.0} {:cluster_2 1}, {:Perigee_km 6179.0} {:cluster_80 1}, {:Perigee_km 819.0} {:cluster_2 1}, {:Perigee_km 1436.0} {:cluster_6 1}, {:Perigee_km 1101.0} {:cluster_2 1}, {:Perigee_km 1482.0} {:cluster_6 3}, {:Perigee_km 35612.0} {:cluster_4 1}, {:Perigee_km 20150.0} {:cluster_23 1}, {:Perigee_km 677.0} {:cluster_2 2}, {:Perigee_km 600.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 20160.0} {:cluster_23 1}, {:Perigee_km 491.0} {:cluster_2 1}, {:Perigee_km 567.0} {:cluster_2 1}, {:Perigee_km 20188.0} {:cluster_23 1}, {:Perigee_km 35864.0} {:cluster_4 1}, {:Perigee_km 890.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 35728.0} {:cluster_4 1}, {:Perigee_km 1477.0} {:cluster_6 3}, {:Perigee_km 18909.0} {:cluster_23 1}, {:Perigee_km 555.0} {:cluster_2 2, :cluster_9 1}, {:Perigee_km 784.0} {:cluster_2 2}, {:Perigee_km 35764.0} {:cluster_4 10}, {:Perigee_km 1017.0} {:cluster_9 1, :cluster_2 3}, {:Perigee_km 773.0} {:cluster_6 1}, {:Perigee_km 1332.0} {:cluster_6 1}, {:Perigee_km 23214.0} {:cluster_23 1}, {:Perigee_km 35775.0} {:cluster_4 26, :cluster_32 1}, {:Perigee_km 35708.0} {:cluster_85 2}, {:Perigee_km 35781.0} {:cluster_4 17}, {:Perigee_km 35788.0} {:cluster_4 3}, {:Perigee_km 35774.0} {:cluster_4 22}, {:Perigee_km 713.0} {:cluster_9 1, :cluster_2 1}, {:Perigee_km 21519.0} {:cluster_23 1}, {:Perigee_km 20134.0} {:cluster_23 1}, {:Perigee_km 19142.0} {:cluster_23 2}, {:Perigee_km 1112.0} {:cluster_62 1}, {:Perigee_km 678.0} {:cluster_2 4}, {:Perigee_km 751.0} {:cluster_2 1}, {:Perigee_km 35794.0} {:cluster_4 1}, {:Perigee_km 759.0} {:cluster_2 1}, {:Perigee_km 35605.0} {:cluster_4 1}, {:Perigee_km 35712.0} {:cluster_85 1}, {:Perigee_km 200.0} {:cluster_9 1}, {:Perigee_km 19079.0} {:cluster_23 1}, {:Perigee_km 818.0} {:cluster_2 1}, {:Perigee_km 35776.0} {:cluster_4 29}, {:Perigee_km 614.0} {:cluster_2 1}, {:Perigee_km 35767.0} {:cluster_4 4}, {:Perigee_km 1019.0} {:cluster_6 1}, {:Perigee_km 1011.0} {:cluster_9 1}, {:Perigee_km 1406.0} {:cluster_6 1}, {:Perigee_km 1409.0} {:cluster_6 1}, {:Perigee_km 782.0} {:cluster_2 2}, {:Perigee_km 635.0} {:cluster_2 2}, {:Perigee_km 306.0} {:cluster_0 2}, {:Perigee_km 658.0} {:cluster_74 1, :cluster_2 1}, {:Perigee_km 628.0} {:cluster_2 2}, {:Perigee_km 1080.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 23242.0} {:cluster_23 1}, {:Perigee_km 20133.0} {:cluster_23 1}, {:Perigee_km 35756.0} {:cluster_4 2}, {:Perigee_km 1012.0} {:cluster_9 2}, {:Perigee_km 340.0} {:cluster_2 1}, {:Perigee_km 35754.0} {:cluster_4 2}, {:Perigee_km 20020.0} {:cluster_23 1}, {:Perigee_km 488.0} {:cluster_2 3}, {:Perigee_km 20096.0} {:cluster_23 1}, {:Perigee_km 969.0} {:cluster_6 1}, {:Perigee_km 701.0} {:cluster_2 2}, {:Perigee_km 692.0} {:cluster_2 1}, {:Perigee_km 33674.0} {:cluster_4 1}, {:Perigee_km 777.0} {:cluster_6 2}, {:Perigee_km 19116.0} {:cluster_23 2}, {:Perigee_km 853.0} {:cluster_6 1}, {:Perigee_km 694.0} {:cluster_6 1}, {:Perigee_km 564.0} {:cluster_2 1, :cluster_9 1}, {:Perigee_km 35804.0} {:cluster_4 1}, {:Perigee_km 611.0} {:cluster_2 2}, {:Perigee_km 35706.0} {:cluster_4 1}, {:Perigee_km 17007.0} {:cluster_78 1}, {:Perigee_km 35609.0} {:cluster_4 1}, {:Perigee_km 400.0} {:cluster_9 1, :cluster_62 1}, {:Perigee_km 1013.0} {:cluster_9 1}, {:Perigee_km 23217.0} {:cluster_23 1}, {:Perigee_km 585.0} {:cluster_2 1}, {:Perigee_km 601.0} {:cluster_2 1}, {:Perigee_km 33782.0} {:cluster_4 1}, {:Perigee_km 35700.0} {:cluster_4 4}, {:Perigee_km 553.0} {:cluster_2 1}, {:Perigee_km 20080.0} {:cluster_23 1}, {:Perigee_km 20155.0} {:cluster_23 1}, {:Perigee_km 675.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 35786.0} {:cluster_4 13}, {:Perigee_km 1016.0} {:cluster_9 2}, {:Perigee_km 787.0} {:cluster_6 2}, {:Perigee_km 770.0} {:cluster_2 2, :cluster_6 2}, {:Perigee_km 21477.0} {:cluster_23 1}, {:Perigee_km 747.0} {:cluster_6 1}, {:Perigee_km 663.0} {:cluster_6 1}, {:Perigee_km 484.0} {:cluster_2 2, :cluster_6 1}, {:Perigee_km 20123.0} {:cluster_23 1}, {:Perigee_km 638.0} {:cluster_6 1}, {:Perigee_km 785.0} {:cluster_2 2}, {:Perigee_km 1068.0} {:cluster_2 1}, {:Perigee_km 35715.0} {:cluster_4 1}, {:Perigee_km 1495.0} {:cluster_6 1}, {:Perigee_km 396.0} {:cluster_6 1}, {:Perigee_km 1360.0} {:cluster_6 1}, {:Perigee_km 35758.0} {:cluster_4 1}, {:Perigee_km 19131.0} {:cluster_23 1}, {:Perigee_km 20177.0} {:cluster_23 1}, {:Perigee_km 814.0} {:cluster_2 1}, {:Perigee_km 35770.0} {:cluster_4 10, :cluster_3 1}, {:Perigee_km 35670.0} {:cluster_85 1}, {:Perigee_km 1199.0} {:cluster_2 1}, {:Perigee_km 765.0} {:cluster_2 1}, {:Perigee_km 669.0} {:cluster_2 3}, {:Perigee_km 617.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 23240.0} {:cluster_23 1}, {:Perigee_km 20184.0} {:cluster_23 2}, {:Perigee_km 806.0} {:cluster_2 1}, {:Perigee_km 35742.0} {:cluster_4 1}, {:Perigee_km 790.0} {:cluster_6 2}, {:Perigee_km 1468.0} {:cluster_6 1}, {:Perigee_km 1415.0} {:cluster_6 2}, {:Perigee_km 467.0} {:cluster_66 1}, {:Perigee_km 776.0} {:cluster_6 62}, {:Perigee_km 35745.0} {:cluster_4 2}, {:Perigee_km 1412.0} {:cluster_6 12}, {:Perigee_km 672.0} {:cluster_2 1}, {:Perigee_km 35725.0} {:cluster_4 1}, {:Perigee_km 20089.0} {:cluster_23 1}, {:Perigee_km 19130.0} {:cluster_23 4}, {:Perigee_km 435.0} {:cluster_6 1}, {:Perigee_km 1411.0} {:cluster_6 5}, {:Perigee_km 440.0} {:cluster_2 1}, {:Perigee_km 569.0} {:cluster_2 1}, {:Perigee_km 1466.0} {:cluster_6 1}, {:Perigee_km 535.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 772.0} {:cluster_6 2, :cluster_2 4}, {:Perigee_km 691.0} {:cluster_2 1}, {:Perigee_km 593.0} {:cluster_2 4}, {:Perigee_km 1405.0} {:cluster_6 1}, {:Perigee_km 584.0} {:cluster_2 1}, {:Perigee_km 469.0} {:cluster_2 2}, {:Perigee_km 19126.0} {:cluster_23 1}, {:Perigee_km 1032.0} {:cluster_6 1}, {:Perigee_km 489.0} {:cluster_2 2}, {:Perigee_km 559.0} {:cluster_6 1}, {:Perigee_km 652.0} {:cluster_6 1}, {:Perigee_km 342.0} {:cluster_9 1}, {:Perigee_km 1417.0} {:cluster_6 2}, {:Perigee_km 494.0} {:cluster_6 1}, {:Perigee_km 479.0} {:cluster_2 1}, {:Perigee_km 1471.0} {:cluster_6 1}, {:Perigee_km 35872.0} {:cluster_4 1}, {:Perigee_km 624.0} {:cluster_2 3}, {:Perigee_km 35633.0} {:cluster_4 1}, {:Perigee_km 298.0} {:cluster_0 1}, {:Perigee_km 35834.0} {:cluster_4 1}, {:Perigee_km 1006.0} {:cluster_62 1}, {:Perigee_km 8064.0} {:cluster_59 1}, {:Perigee_km 360.0} {:cluster_9 1}, {:Perigee_km 16809.0} {:cluster_78 1}, {:Perigee_km 19938.0} {:cluster_23 1}, {:Perigee_km 654.0} {:cluster_6 1}, {:Perigee_km 343.0} {:cluster_2 1}, {:Perigee_km 17313.0} {:cluster_78 1}, {:Perigee_km 633.0} {:cluster_2 1}, {:Perigee_km 1473.0} {:cluster_6 2}, {:Perigee_km 19094.0} {:cluster_23 1}, {:Perigee_km 662.0} {:cluster_2 1}, {:Perigee_km 613.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 487.0} {:cluster_2 1}, {:Perigee_km 401.0} {:cluster_6 1}, {:Perigee_km 1480.0} {:cluster_6 2}, {:Perigee_km 653.0} {:cluster_2 1}, {:Perigee_km 507.0} {:cluster_2 2}, {:Perigee_km 952.0} {:cluster_6 1}, {:Perigee_km 916.0} {:cluster_6 1}, {:Perigee_km 1478.0} {:cluster_6 3}, {:Perigee_km 632.0} {:cluster_2 1}, {:Perigee_km 660.0} {:cluster_2 1}, {:Perigee_km 35323.0} {:cluster_4 1}, {:Perigee_km 202.0} {:cluster_9 1}, {:Perigee_km 697.0} {:cluster_2 2}, {:Perigee_km 815.0} {:cluster_2 1}, {:Perigee_km 1479.0} {:cluster_6 1}, {:Perigee_km 35743.0} {:cluster_4 1}, {:Perigee_km 1100.0} {:cluster_9 2}, {:Perigee_km 689.0} {:cluster_2 1}, {:Perigee_km 405.0} {:cluster_6 1}, {:Perigee_km 35783.0} {:cluster_4 14}, {:Perigee_km 35850.0} {:cluster_4 1}, {:Perigee_km 744.0} {:cluster_6 1}, {:Perigee_km 649.0} {:cluster_6 1}, {:Perigee_km 461.0} {:cluster_66 1}, {:Perigee_km 965.0} {:cluster_2 1}, {:Perigee_km 35763.0} {:cluster_4 4}, {:Perigee_km 1467.0} {:cluster_6 1}, {:Perigee_km 622.0} {:cluster_2 7}, {:Perigee_km 722.0} {:cluster_2 1}, {:Perigee_km 667.0} {:cluster_2 1, :cluster_62 1}, {:Perigee_km 35761.0} {:cluster_4 3}, {:Perigee_km 1000.0} {:cluster_92 1}, {:Perigee_km 714.0} {:cluster_9 1}, {:Perigee_km 19150.0} {:cluster_23 1}, {:Perigee_km 12849.0} {:cluster_76 1}, {:Perigee_km 500.0} {:cluster_2 3, :cluster_6 4, :cluster_62 1}, {:Perigee_km 763.0} {:cluster_2 1}, {:Perigee_km 607.0} {:cluster_2 1}, {:Perigee_km 615.0} {:cluster_2 1}, {:Perigee_km 35768.0} {:cluster_4 13}, {:Perigee_km 900.0} {:cluster_6 1, :cluster_9 1}, {:Perigee_km 1498.0} {:cluster_6 1}, {:Perigee_km 499.0} {:cluster_6 7}, {:Perigee_km 512.0} {:cluster_2 1}, {:Perigee_km 456.0} {:cluster_2 1}, {:Perigee_km 813.0} {:cluster_2 1}, {:Perigee_km 574.0} {:cluster_9 1}, {:Perigee_km 508.0} {:cluster_6 1, :cluster_2 1}, {:Perigee_km 964.0} {:cluster_62 1}, {:Perigee_km 17240.0} {:cluster_78 1}, {:Perigee_km 474.0} {:cluster_2 1, :cluster_66 1}, {:Perigee_km 1494.0} {:cluster_6 1}, {:Perigee_km 35773.0} {:cluster_4 20, :cluster_77 1}, {:Perigee_km 657.0} {:cluster_2 1}, {:Perigee_km 668.0} {:cluster_2 2}, {:Perigee_km 20149.0} {:cluster_23 1}, {:Perigee_km 1474.0} {:cluster_6 1}, {:Perigee_km 19124.0} {:cluster_23 1}, {:Perigee_km 473.0} {:cluster_2 1, :cluster_6 2}, {:Perigee_km 598.0} {:cluster_2 1}, {:Perigee_km 596.0} {:cluster_2 1}, {:Perigee_km 35789.0} {:cluster_4 1}, {:Perigee_km 639.0} {:cluster_2 1}, {:Perigee_km 504.0} {:cluster_2 1}, {:Perigee_km 769.0} {:cluster_6 2, :cluster_2 1}, {:Perigee_km 367.0} {:cluster_2 1}, {:Perigee_km 563.0} {:cluster_2 1, :cluster_62 1}, {:Perigee_km 530.0} {:cluster_2 1}, {:Perigee_km 3905.0} {:cluster_93 1}, {:Perigee_km 511.0} {:cluster_2 1}, {:Perigee_km 9999.0} {:cluster_79 1}, {:Perigee_km 20109.0} {:cluster_23 1}, {:Perigee_km 35765.0} {:cluster_4 3}, {:Perigee_km 661.0} {:cluster_2 4}, {:Perigee_km 35795.0} {:cluster_4 1}, {:Perigee_km 839.0} {:cluster_6 1}, {:Perigee_km 789.0} {:cluster_6 4}, {:Perigee_km 35500.0} {:cluster_4 1}, {:Perigee_km 35732.0} {:cluster_4 1}, {:Perigee_km 7079.0} {:cluster_94 1}, {:Perigee_km 485.0} {:cluster_2 2}, {:Perigee_km 20063.0} {:cluster_23 1}, {:Perigee_km 627.0} {:cluster_2 2, :cluster_62 1}, {:Perigee_km 35785.0} {:cluster_4 16}, {:Perigee_km 725.0} {:cluster_2 1}, {:Perigee_km 1481.0} {:cluster_2 1, :cluster_6 1}, {:Perigee_km 554.0} {:cluster_6 1}, {:Perigee_km 20451.0} {:cluster_23 1}, {:Perigee_km 486.0} {:cluster_2 1}, {:Perigee_km 497.0} {:cluster_6 2}, {:Perigee_km 19132.0} {:cluster_23 1}, {:Perigee_km 35800.0} {:cluster_4 3}, {:Perigee_km 739.0} {:cluster_2 1}, {:Perigee_km 19986.0} {:cluster_23 1}}, :hyperparameters {:m 11855.275862068964, :r 0.015924357246650898, :s 3.225808161100064E9, :nu 1166.9999999999998}, :hyper-grid {:m (186.0 1439.4 2692.8 3946.2000000000003 5199.6 6453.0 7706.4 8959.8 10213.199999999999 11466.599999999999 12719.999999999998 13973.399999999998 15226.799999999997 16480.199999999997 17733.6 18987.0 20240.4 21493.800000000003 22747.200000000004 24000.600000000006 25254.000000000007 26507.40000000001 27760.80000000001 29014.20000000001 30267.600000000013 31521.000000000015 32774.400000000016 34027.80000000002 35281.20000000002 36534.60000000002 37788.00000000002), :r (8.56898029134533E-4 0.0013721466648667219 0.0021972118103789806 0.003518384632839378 0.00563397227619358 0.009021652525608603 0.014446328505508529 0.023132835885295813 0.03704249809160715 0.05931597283059068 0.09498238007972104 0.15209482530742383 0.24354870730634268 0.38999336572232046 0.6244944881440667 0.9999999999999986 1.601295157899462 2.564146182712267 4.105954866523549 6.574845646317901 10.528268497385229 16.858865365928438 26.996019478140187 43.2285952729055 69.22174029329925 110.84443755303434 177.49466113376343 284.2213414265016 455.12225779794744 728.785067664125), :s (3.225808161090059E9 3.761016190458332E9 4.385022939525881E9 5.112561394697145E9 5.960808956993451E9 6.949793005640401E9 8.102863750495015E9 9.447245537500166E9 1.101467962365335E10 1.2842173597599497E10 1.4972875139892672E10 1.745709075266836E10 2.0353473511239323E10 2.3730407880786175E10 2.766762429407999E10 3.2258081610900852E10 3.761016190458363E10 4.385022939525917E10 5.112561394697188E10 5.9608089569935E10 6.949793005640457E10 8.102863750495082E10 9.447245537500244E10 1.1014679623653441E11 1.2842173597599602E11 1.4972875139892795E11 1.7457090752668506E11 2.035347351123949E11 2.373040788078637E11 2.766762429408022E11), :nu (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata {}, :data {0 770.0, 893 1016.0, 920 688.0, 558 776.0, 453 590.0, 584 776.0, 487 35771.0, 637 305.0, 972 35785.0, 519 7000.0, 1097 35783.0, 357 1413.0, 716 35779.0, 950 35774.0, 275 35714.0, 530 775.0, 929 581.0, 789 969.0, 389 18981.0, 586 777.0, 410 19087.0, 433 35782.0, 765 790.0, 521 776.0, 451 650.0, 291 35760.0, 443 35764.0, 798 789.0, 779 499.0, 970 600.0, 249 35768.0, 638 457.0, 299 443.0, 1101 35785.0, 121 609.0, 734 35772.0, 287 488.0, 65 627.0, 1086 595.0, 702 20020.0, 70 35778.0, 949 35776.0, 218 35776.0, 648 1006.0, 1070 35738.0, 812 498.0, 62 563.0, 74 410.0, 774 772.0, 475 35784.0, 497 35781.0, 1009 473.0, 580 776.0, 1138 509.0, 891 1017.0, 164 751.0, 1040 35775.0, 282 35782.0, 769 787.0, 799 714.0, 273 35759.0, 1147 1017.0, 186 35778.0, 430 35763.0, 641 35778.0, 529 776.0, 898 716.0, 370 1412.0, 834 663.0, 233 35323.0, 298 1066.0, 188 35773.0, 240 702.0, 110 35777.0, 130 538.0, 982 35783.0, 620 35780.0, 311 35775.0, 931 584.0, 882 656.0, 128 622.0, 399 18864.0, 989 772.0, 377 1409.0, 468 35764.0, 259 35766.0, 210 35784.0, 229 35783.0, 153 21460.0, 621 35780.0, 213 35765.0, 670 35776.0, 977 627.0, 343 1415.0, 958 35770.0, 887 1100.0, 472 35772.0, 7 35589.0, 894 1014.0, 59 35773.0, 934 623.0, 473 35773.0, 1010 473.0, 86 35766.0, 756 789.0, 830 621.0, 613 35778.0, 491 35775.0, 154 21452.0, 20 35784.0, 224 35776.0, 355 1412.0, 592 620.0, 1146 1192.0, 610 264.0, 806 553.0, 571 776.0, 466 1112.0, 72 35766.0, 454 35770.0, 888 1013.0, 463 nil, 851 1473.0, 770 788.0, 814 498.0, 859 653.0, 58 35778.0, 964 483.0, 980 850.0, 1001 867.0, 205 35757.0, 555 776.0, 552 776.0, 60 696.0, 1102 35785.0, 835 595.0, 459 484.0, 175 443.0, 322 23214.0, 510 35775.0, 1052 464.0, 1121 35780.0, 662 1481.0, 27 558.0, 352 1411.0, 493 35785.0, 899 735.0, 416 1398.0, 777 769.0, 694 20096.0, 1 35777.0, 631 603.0, 854 1478.0, 69 35779.0, 101 35834.0, 24 570.0, 901 35779.0, 547 776.0, 102 35605.0, 788 949.0, 1106 491.0, 713 35764.0, 1110 306.0, 385 19130.0, 988 497.0, 135 784.0, 1065 400.0, 397 19119.0, 1011 486.0, 1006 35779.0, 773 772.0, 490 35770.0, 752 770.0, 354 1412.0, 884 35770.0, 360 1413.0, 998 1474.0, 961 35782.0, 55 35778.0, 568 776.0, 797 968.0, 688 20184.0, 763 788.0, 269 35769.0, 676 19781.0, 448 489.0, 527 776.0, 206 35706.0, 1075 35738.0, 966 443.0, 165 772.0, 715 35779.0, 387 19124.0, 652 35781.0, 683 19912.0, 85 35776.0, 721 843.0, 862 772.0, 615 651.0, 681 20080.0, 225 35781.0, 865 470.0, 297 1068.0, 39 35780.0, 805 600.0, 274 35786.0, 88 35804.0, 217 596.0, 1128 487.0, 46 35778.0, 682 20134.0, 508 35782.0, 1157 35775.0, 149 35717.0, 415 669.0, 239 702.0, 478 35782.0, 878 648.0, 157 35783.0, 345 1413.0, 300 443.0, 743 367.0, 921 689.0, 1039 501.0, 4 35780.0, 550 776.0, 1115 35785.0, 204 35760.0, 470 35609.0, 1164 35759.0, 646 961.0, 77 35784.0, 106 554.0, 197 842.0, 405 19126.0, 897 1012.0, 726 35776.0, 776 768.0, 940 668.0, 755 788.0, 902 35758.0, 518 401.0, 232 639.0, 260 35786.0, 823 35612.0, 1125 35784.0, 267 35774.0, 119 702.0, 319 35784.0, 534 776.0, 222 35785.0, 603 35776.0, 293 827.0, 95 35777.0, 450 35777.0, 329 508.0, 144 35776.0, 1087 594.0, 504 35776.0, 819 448.0, 818 35774.0, 505 35776.0, 723 827.0, 1071 35786.0, 1008 548.0, 992 1415.0, 176 326.0, 863 782.0, 471 35769.0, 349 1412.0, 512 35782.0, 710 35793.0, 1058 35768.0, 192 712.0, 54 1440.0, 92 35768.0, 221 35782.0, 141 702.0, 502 35775.0, 871 35776.0, 464 678.0, 801 725.0, 307 35775.0, 935 624.0, 758 789.0, 290 35767.0, 1156 620.0, 1144 511.0, 627 702.0, 517 35800.0, 1122 35773.0, 361 1412.0, 264 35757.0, 137 35782.0, 356 1413.0, 728 35776.0, 976 608.0, 678 20120.0, 327 593.0, 234 675.0, 856 1482.0, 817 589.0, 1017 443.0, 104 709.0, 353 1412.0, 1145 628.0, 15 495.0, 48 35773.0, 945 35794.0, 759 787.0, 1066 1210.0, 242 530.0, 832 667.0, 969 657.0, 50 35778.0, 956 35771.0, 917 35777.0, 1030 35778.0, 557 776.0, 251 35762.0, 394 19112.0, 116 33066.0, 585 744.0, 583 776.0, 75 35771.0, 437 681.0, 516 35769.0, 1062 35773.0, 994 1466.0, 930 578.0, 967 759.0, 687 20174.0, 159 35780.0, 848 1493.0, 995 1467.0, 1096 622.0, 1159 35759.0, 709 398.0, 99 984.0, 540 776.0, 645 33674.0, 749 35774.0, 479 35765.0, 1081 542.0, 890 1016.0, 1046 824.0, 630 610.0, 916 35783.0, 815 498.0, 1080 35696.0, 281 35777.0, 402 18909.0, 669 35778.0, 781 499.0, 740 8063.0, 1012 571.0, 975 1000.0, 429 35761.0, 309 35776.0, 458 484.0, 21 35770.0, 388 19142.0, 495 35774.0, 952 35779.0, 626 713.0, 875 652.0, 31 672.0, 113 35772.0, 32 35776.0, 811 498.0, 827 613.0, 407 19150.0, 398 19131.0, 136 564.0, 691 20072.0, 847 1495.0, 825 35777.0, 139 594.0, 506 35774.0, 396 19132.0, 460 588.0, 483 2284.0, 589 745.0, 581 776.0, 932 586.0, 174 678.0, 578 776.0, 855 1477.0, 331 3905.0, 363 1413.0, 1038 529.0, 284 35420.0, 208 35718.0, 305 594.0, 1019 17313.0, 955 35773.0, 796 916.0, 708 772.0, 182 594.0, 256 35780.0, 1107 765.0, 1109 342.0, 657 35754.0, 514 35775.0, 1103 35776.0, 731 35773.0, 619 497.0, 985 35791.0, 485 35783.0, 214 35741.0, 193 845.0, 685 20188.0, 804 678.0, 869 35777.0, 1002 1347.0, 1104 186.0, 836 817.0, 1131 1201.0, 785 35780.0, 635 35772.0, 442 952.0, 1073 35763.0, 561 776.0, 954 35774.0, 656 35784.0, 607 35786.0, 241 701.0, 314 35776.0, 782 635.0, 226 35783.0, 235 677.0, 672 35800.0, 420 1478.0, 418 1408.0, 262 35766.0, 1016 658.0, 263 35784.0, 304 790.0, 401 19128.0, 673 654.0, 40 35773.0, 129 325.0, 600 35778.0, 729 35776.0, 1042 35786.0, 467 620.0, 1033 35773.0, 1149 1017.0, 445 35782.0, 317 35776.0, 1091 479.0, 1028 35768.0, 294 827.0, 91 35772.0, 1044 467.0, 810 498.0, 1137 890.0, 364 1412.0, 987 650.0, 880 603.0, 515 35770.0, 412 35170.0, 553 776.0, 974 35745.0, 341 1411.0, 117 35784.0, 1000 593.0, 1095 682.0, 665 669.0, 523 776.0, 172 594.0, 601 35788.0, 108 500.0, 156 21477.0, 358 1413.0, 308 35781.0, 908 661.0, 649 818.0, 531 776.0, 1085 591.0, 923 661.0, 1111 489.0, 223 35789.0, 419 1497.0, 365 1413.0, 944 681.0, 181 598.0, 417 1405.0, 1082 667.0, 979 696.0, 278 35783.0, 56 35777.0, 942 35769.0, 33 35767.0, 13 35700.0, 1043 461.0, 867 448.0, 22 35769.0, 618 535.0, 1141 625.0, 1093 35782.0, 380 19116.0, 257 35788.0, 1061 611.0, 338 1412.0, 1024 35773.0, 500 35774.0, 909 607.0, 1018 507.0, 993 1468.0, 1089 494.0, 168 622.0, 833 35786.0, 496 35781.0, 1056 35769.0, 1129 506.0, 947 12849.0, 347 1413.0, 501 35778.0, 1007 35781.0, 1077 660.0, 596 1332.0, 872 35779.0, 792 961.0, 90 35776.0, 237 677.0, 826 1199.0, 292 820.0, 109 503.0, 216 585.0, 191 35774.0, 498 35778.0, 829 621.0, 761 791.0, 1072 35766.0, 375 1360.0, 525 708.0, 367 1413.0, 143 35708.0, 742 569.0, 178 609.0, 640 35782.0, 247 35776.0, 328 522.0, 391 19092.0, 990 1417.0, 167 622.0, 707 20160.0, 36 35775.0, 41 35774.0, 474 35775.0, 187 35780.0, 551 776.0, 1118 35778.0, 996 1465.0, 528 776.0, 971 35785.0, 599 35780.0, 376 915.0, 195 837.0, 889 1011.0, 316 35778.0, 668 500.0, 428 35777.0, 303 890.0, 671 35800.0, 794 907.0, 905 400.0, 368 1413.0, 560 776.0, 565 776.0, 310 35776.0, 366 1413.0, 118 403.0, 522 776.0, 150 35693.0, 886 1100.0, 313 35774.0, 384 19130.0, 567 776.0, 238 678.0, 846 1482.0, 962 1200.0, 1127 626.0, 845 1498.0, 196 843.0, 162 769.0, 393 19136.0, 184 35786.0, 219 35780.0, 999 298.0, 461 512.0, 1032 35774.0, 89 35715.0, 100 35780.0, 426 434.0, 604 35780.0, 477 35764.0, 844 1478.0, 541 776.0, 351 1411.0, 243 508.0, 131 9999.0, 790 967.0, 963 495.0, 1053 360.0, 629 617.0, 873 697.0, 122 771.0, 933 534.0, 43 35777.0, 1067 844.0, 231 35773.0, 61 694.0, 654 820.0, 883 35778.0, 1003 1339.0, 598 35784.0, 413 35786.0, 29 443.0, 784 35784.0, 800 499.0, 151 35708.0, 369 1413.0, 348 1411.0, 1124 35694.0, 575 776.0, 693 20123.0, 44 35781.0, 739 8064.0, 258 35781.0, 250 35779.0, 674 583.0, 539 776.0, 301 500.0, 838 459.0, 424 1494.0, 93 35770.0, 6 35560.0, 684 20109.0, 1026 35767.0, 951 35785.0, 573 776.0, 408 19139.0, 563 776.0, 850 1481.0, 616 676.0, 866 473.0, 111 35776.0, 997 1471.0, 689 19963.0, 28 264.0, 456 590.0, 374 1413.0, 608 800.0, 737 8063.0, 1155 619.0, 548 776.0, 538 776.0, 1034 35783.0, 895 1019.0, 411 35768.0, 957 35700.0, 134 785.0, 943 35788.0, 64 610.0, 623 498.0, 1135 1076.0, 1133 1079.0, 465 1111.0, 816 498.0, 334 1413.0, 1150 802.0, 323 23217.0, 189 35774.0, 280 35785.0, 198 842.0, 155 21462.0, 295 537.0, 808 813.0, 248 35781.0, 587 773.0, 285 538.0, 507 35775.0, 227 35775.0, 724 499.0, 476 35780.0, 941 684.0, 911 35778.0, 853 1475.0, 494 35780.0, 220 35778.0, 842 1480.0, 103 35768.0, 697 20177.0, 611 200.0, 1105 594.0, 170 713.0, 1154 555.0, 51 35783.0, 25 615.0, 261 35778.0, 768 786.0, 822 1885.0, 201 594.0, 904 500.0, 590 777.0, 489 35783.0, 778 499.0, 166 622.0, 447 621.0, 34 35781.0, 252 35754.0, 978 824.0, 775 771.0, 325 35782.0, 1005 35778.0, 594 817.0, 436 601.0, 828 621.0, 535 776.0, 813 498.0, 146 35764.0, 741 722.0, 1060 612.0, 876 649.0, 1064 594.0, 228 35782.0, 907 35771.0, 306 35785.0, 125 618.0, 276 806.0, 340 1477.0, 148 35775.0, 1143 440.0, 482 37782.0, 1049 35779.0, 622 291.0, 588 776.0, 17 443.0, 312 35774.0, 606 35783.0, 3 35780.0, 1148 1017.0, 520 469.0, 1088 35777.0, 760 788.0, 720 842.0, 1126 625.0, 286 627.0, 279 35774.0, 879 650.0, 1020 35768.0, 536 776.0, 1023 35693.0, 663 805.0, 12 35700.0, 440 535.0, 332 701.0, 330 671.0, 1162 35767.0, 382 19118.0, 152 21519.0, 1112 35782.0, 1140 633.0, 544 776.0, 803 697.0, 642 35728.0, 435 965.0, 342 1411.0, 703 20206.0, 783 35786.0, 695 20133.0, 973 35785.0, 2 35785.0, 948 6179.0, 66 594.0, 484 35776.0, 439 35769.0, 236 675.0, 556 776.0, 373 1413.0, 1083 563.0, 142 35768.0, 359 1412.0, 727 35779.0, 371 1459.0, 772 768.0, 444 35764.0, 1057 37778.0, 570 776.0, 757 788.0, 107 681.0, 1094 35742.0, 532 776.0, 984 35776.0, 23 510.0, 1079 504.0, 745 343.0, 719 800.0, 230 35775.0, 625 574.0, 47 35773.0, 526 776.0, 180 661.0, 786 35786.0, 1068 770.0, 1166 500.0, 870 35779.0, 537 776.0, 659 35764.0, 158 35773.0, 991 1417.0, 350 1413.0, 35 35772.0, 1116 7079.0, 849 1484.0, 1120 35743.0, 644 35598.0, 1069 35778.0, 881 696.0, 127 624.0, 927 591.0, 675 35775.0, 1055 485.0, 383 19130.0, 533 776.0, 1100 35785.0, 910 35781.0, 302 35745.0, 564 776.0, 701 20142.0, 1090 847.0, 566 776.0, 821 791.0, 787 692.0, 82 35774.0, 76 35780.0, 735 613.0, 492 35768.0, 718 35764.0, 771 788.0, 215 662.0, 97 35768.0, 704 20149.0, 277 35781.0, 926 587.0, 751 35775.0, 1114 35784.0, 19 35764.0, 335 1406.0, 597 35772.0, 938 784.0, 57 35781.0, 609 202.0, 202 35775.0, 68 35782.0, 452 555.0, 1054 488.0, 200 594.0, 1142 635.0, 868 474.0, 11 35872.0, 115 35778.0, 946 23783.0, 1063 681.0, 983 35703.0, 339 900.0, 431 35776.0, 462 509.0, 337 1412.0, 698 20104.0, 255 35725.0, 503 35775.0, 546 776.0, 9 35500.0, 953 35775.0, 857 17240.0, 706 20135.0, 632 35760.0, 457 485.0, 427 668.0, 145 35774.0, 5 670.0, 733 35784.0, 1163 35781.0, 1165 763.0, 1152 594.0, 624 671.0, 831 617.0, 244 306.0, 918 686.0, 824 35784.0, 289 35777.0, 112 35769.0, 925 579.0, 1059 456.0, 730 35775.0, 699 20155.0, 712 661.0, 1076 35772.0, 1113 35784.0, 414 35772.0, 839 538.0, 802 410.0, 1084 593.0, 860 16809.0, 1117 801.0, 179 326.0, 344 1412.0, 481 35760.0, 732 35779.0, 661 35768.0, 245 658.0, 378 918.0, 913 35781.0, 906 35770.0, 658 35765.0, 266 35769.0, 324 630.0, 793 949.0, 1134 1032.0, 1132 1080.0, 1014 35778.0, 680 19986.0, 446 628.0, 524 776.0, 254 35770.0, 404 19079.0, 1025 35773.0, 617 679.0, 283 35987.0, 1153 444.0, 513 35768.0, 572 776.0, 705 20150.0, 1098 35786.0, 959 35786.0, 1074 35744.0, 83 35778.0, 634 35778.0, 138 484.0, 1050 35764.0, 346 1413.0, 14 480.0, 455 35775.0, 265 35777.0, 449 499.0, 333 1407.0, 650 35784.0, 639 443.0, 569 776.0, 326 35774.0, 746 594.0, 647 964.0, 45 35777.0, 53 35595.0, 559 776.0, 78 35778.0, 1037 35783.0, 924 599.0, 562 776.0, 1119 1193.0, 542 776.0, 912 35850.0, 664 817.0, 1048 35773.0, 315 35771.0, 1031 35781.0, 914 35783.0, 480 35777.0, 132 35777.0, 753 769.0, 900 638.0, 1013 710.0, 26 599.0, 766 788.0, 123 611.0, 203 35771.0, 667 35776.0, 392 19134.0, 1045 474.0, 577 776.0, 807 708.0, 140 594.0, 321 23240.0, 795 954.0, 441 670.0, 700 20063.0, 268 35780.0, 840 415.0, 16 499.0, 320 23242.0, 133 729.0, 288 488.0, 381 19134.0, 605 839.0, 163 669.0, 81 35776.0, 120 501.0, 643 853.0, 79 35782.0, 211 35780.0, 38 35777.0, 173 815.0, 126 632.0, 981 622.0, 1161 35773.0, 421 1482.0, 593 35712.0, 636 984.0, 1160 35778.0, 98 35778.0, 422 1480.0, 423 1493.0, 614 35776.0, 762 789.0, 582 776.0, 666 35763.0, 1123 35774.0, 554 776.0, 409 19130.0, 574 747.0, 595 710.0, 124 500.0, 747 35773.0, 171 630.0, 87 35772.0, 169 622.0, 653 35775.0, 679 20104.0, 843 1477.0, 160 820.0, 30 35786.0, 400 19098.0, 767 788.0, 896 1012.0, 928 594.0, 696 20184.0, 1027 35768.0, 738 8062.0, 809 500.0, 509 35775.0, 736 624.0, 207 35774.0, 874 696.0, 434 782.0, 1130 469.0, 690 20089.0, 194 842.0, 1047 35777.0, 511 35773.0, 73 35778.0, 486 35778.0, 336 1412.0, 96 35770.0, 837 564.0, 1136 1080.0, 937 785.0, 10 35771.0, 660 35753.0, 272 35756.0, 499 35779.0, 488 35776.0, 903 35761.0, 386 19094.0, 270 35766.0, 576 776.0, 717 35700.0, 543 776.0, 271 35775.0, 18 443.0, 395 18922.0, 403 19116.0, 469 35763.0, 105 555.0, 185 35785.0, 52 35633.0, 1051 35766.0, 545 776.0, 633 900.0, 114 594.0, 1099 35785.0, 968 443.0, 253 35772.0, 612 257.0, 1151 1479.0, 1015 35772.0, 628 700.0, 748 35778.0, 209 35756.0, 147 35670.0, 655 819.0, 1022 35780.0, 750 35774.0, 852 1473.0, 425 435.0, 1158 35775.0, 864 468.0, 67 594.0, 1108 593.0, 296 1101.0, 602 33782.0, 318 35775.0, 161 764.0, 651 35770.0, 725 35778.0, 372 1413.0, 1092 35775.0, 406 19142.0, 438 679.0, 780 396.0, 711 691.0, 1041 35777.0, 71 35864.0, 939 739.0, 579 776.0, 877 651.0, 722 845.0, 42 35778.0, 919 686.0, 80 35773.0, 885 538.0, 1078 696.0, 986 500.0, 1035 35778.0, 714 35795.0, 677 19959.0, 199 559.0, 841 1436.0, 754 770.0, 791 960.0, 1029 405.0, 861 17007.0, 591 748.0, 1021 35732.0, 744 340.0, 960 567.0, 37 35774.0, 183 35785.0, 1139 1201.0, 965 443.0, 892 1015.0, 432 35757.0, 379 1370.0, 63 604.0, 212 35897.0, 94 35781.0, 362 1413.0, 8 35714.0, 686 20451.0, 692 19938.0, 764 788.0, 246 35761.0, 190 35777.0, 1004 614.0, 1036 507.0, 549 776.0, 922 583.0, 177 814.0, 915 35757.0, 936 586.0, 820 32618.0, 49 35773.0, 858 702.0, 390 19147.0, 84 35780.0}}, :Type_of_Orbit #gensql.inference.gpm.column.Column{:var-name :Type_of_Orbit, :stattype :categorical, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 11, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 11, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 4, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 4, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 238, :counts {"Sun-Synchronous" 30, "Deep Highly Eccentric" 0, "Polar" 76, "Intermediate" 132, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 1, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 1, :counts {"Sun-Synchronous" 1, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 22, :counts {"Sun-Synchronous" 7, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 15, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 239, :counts {"Sun-Synchronous" 225, "Deep Highly Eccentric" 0, "Polar" 13, "Intermediate" 0, "Molniya" 0, "Retrograde" 1, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Type_of_Orbit, :suff-stats {:n 0, :counts {"Sun-Synchronous" 0, "Deep Highly Eccentric" 0, "Polar" 0, "Intermediate" 0, "Molniya" 0, "Retrograde" 0, "Cislunar" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Type_of_Orbit nil} {:cluster_80 1, :cluster_66 3, :cluster_32 1, :cluster_75 1, :cluster_0 7, :cluster_76 1, :cluster_62 4, :cluster_92 1, :cluster_82 1, :cluster_3 4, :cluster_6 40, :cluster_77 1, :cluster_85 7, :cluster_59 4, :cluster_4 433, :cluster_9 7, :cluster_2 56, :cluster_23 72, :cluster_74 2}, {:Type_of_Orbit "Intermediate"} {:cluster_9 15, :cluster_6 132}, {:Type_of_Orbit "Sun-Synchronous"} {:cluster_2 225, :cluster_6 30, :cluster_9 7, :cluster_4 1}, {:Type_of_Orbit "Polar"} {:cluster_6 76, :cluster_2 13}, {:Type_of_Orbit "Deep Highly Eccentric"} {:cluster_92 1, :cluster_81 1, :cluster_93 1, :cluster_78 4, :cluster_79 1, :cluster_94 1}, {:Type_of_Orbit "Molniya"} {:cluster_62 11}, {:Type_of_Orbit "Retrograde"} {:cluster_2 1}, {:Type_of_Orbit "Cislunar"} {:cluster_73 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.2318597278836194 1.5174783891815051 1.869320515566402 2.302740661632895 2.836653484825644 3.4943591899174393 4.304560360819322 5.302614554737505 6.532077322470664 8.046602992973474 9.912286173311823 12.210546148160468 15.041680055383333 18.52923989993698 22.825424421026675 28.117721116114044 34.63708828280375 42.668034146735536 52.56103293332663 64.74781972652968 79.76023158938051 98.25341718162875 121.03442775299695 149.09743723635643 183.6671284621231 226.25213888851673 278.71089824429515 343.33273126941657 422.9377649150834)}, :metadata ["Sun-Synchronous" "Deep Highly Eccentric" "Polar" "Intermediate" "Molniya" "Retrograde" "Cislunar"], :data {0 nil, 893 "Intermediate", 920 "Sun-Synchronous", 558 "Polar", 453 "Sun-Synchronous", 584 "Polar", 487 nil, 637 nil, 972 nil, 519 "Deep Highly Eccentric", 1097 nil, 357 "Intermediate", 716 nil, 950 nil, 275 nil, 530 "Polar", 929 "Sun-Synchronous", 789 "Intermediate", 389 nil, 586 "Polar", 410 nil, 433 nil, 765 "Intermediate", 521 "Polar", 451 "Sun-Synchronous", 291 nil, 443 nil, 798 "Intermediate", 779 "Sun-Synchronous", 970 "Intermediate", 249 nil, 638 nil, 299 nil, 1101 nil, 121 "Sun-Synchronous", 734 nil, 287 nil, 65 "Sun-Synchronous", 1086 nil, 702 nil, 70 nil, 949 nil, 218 nil, 648 "Molniya", 1070 nil, 812 "Sun-Synchronous", 62 "Sun-Synchronous", 74 "Sun-Synchronous", 774 "Intermediate", 475 nil, 497 nil, 1009 "Polar", 580 "Polar", 1138 "Sun-Synchronous", 891 "Intermediate", 164 "Sun-Synchronous", 1040 nil, 282 nil, 769 "Intermediate", 799 "Sun-Synchronous", 273 nil, 1147 "Sun-Synchronous", 186 nil, 430 nil, 641 nil, 529 "Polar", 898 "Intermediate", 370 "Intermediate", 834 "Intermediate", 233 nil, 298 nil, 188 nil, 240 "Sun-Synchronous", 110 nil, 130 nil, 982 nil, 620 nil, 311 nil, 931 "Sun-Synchronous", 882 nil, 128 "Sun-Synchronous", 399 nil, 989 "Sun-Synchronous", 377 "Intermediate", 468 nil, 259 nil, 210 nil, 229 nil, 153 nil, 621 nil, 213 nil, 670 nil, 977 nil, 343 "Intermediate", 958 nil, 887 "Intermediate", 472 nil, 7 nil, 894 "Intermediate", 59 nil, 934 nil, 473 nil, 1010 "Polar", 86 nil, 756 "Intermediate", 830 nil, 613 nil, 491 nil, 154 nil, 20 nil, 224 nil, 355 "Intermediate", 592 "Sun-Synchronous", 1146 "Sun-Synchronous", 610 "Sun-Synchronous", 806 "Sun-Synchronous", 571 "Polar", 466 "Molniya", 72 nil, 454 nil, 888 "Intermediate", 463 "Sun-Synchronous", 851 "Intermediate", 770 "Intermediate", 814 "Sun-Synchronous", 859 "Sun-Synchronous", 58 nil, 964 nil, 980 nil, 1001 "Sun-Synchronous", 205 nil, 555 "Polar", 552 "Polar", 60 "Sun-Synchronous", 1102 nil, 835 "Sun-Synchronous", 459 "Sun-Synchronous", 175 nil, 322 nil, 510 nil, 1052 nil, 1121 nil, 662 nil, 27 nil, 352 "Intermediate", 493 nil, 899 "Intermediate", 416 "Intermediate", 777 "Intermediate", 694 nil, 1 nil, 631 "Intermediate", 854 "Intermediate", 69 nil, 101 nil, 24 nil, 901 nil, 547 "Polar", 102 nil, 788 "Intermediate", 1106 "Sun-Synchronous", 713 nil, 1110 nil, 385 nil, 988 nil, 135 "Sun-Synchronous", 1065 "Intermediate", 397 nil, 1011 "Polar", 1006 nil, 773 "Intermediate", 490 nil, 752 "Intermediate", 354 "Intermediate", 884 nil, 360 "Intermediate", 998 "Intermediate", 961 nil, 55 nil, 568 "Polar", 797 "Intermediate", 688 nil, 763 "Intermediate", 269 nil, 676 nil, 448 nil, 527 "Polar", 206 nil, 1075 nil, 966 nil, 165 "Sun-Synchronous", 715 nil, 387 nil, 652 nil, 683 nil, 85 nil, 721 "Sun-Synchronous", 862 "Sun-Synchronous", 615 nil, 681 nil, 225 nil, 865 nil, 297 nil, 39 nil, 805 "Sun-Synchronous", 274 nil, 88 nil, 217 "Sun-Synchronous", 1128 "Sun-Synchronous", 46 nil, 682 nil, 508 nil, 1157 nil, 149 nil, 415 "Sun-Synchronous", 239 "Sun-Synchronous", 478 nil, 878 "Sun-Synchronous", 157 nil, 345 "Intermediate", 300 nil, 743 "Retrograde", 921 "Sun-Synchronous", 1039 "Sun-Synchronous", 4 nil, 550 "Polar", 1115 nil, 204 nil, 470 nil, 1164 nil, 646 "Molniya", 77 nil, 106 "Sun-Synchronous", 197 "Sun-Synchronous", 405 nil, 897 nil, 726 nil, 776 "Intermediate", 940 "Sun-Synchronous", 755 "Intermediate", 902 nil, 518 "Intermediate", 232 "Sun-Synchronous", 260 nil, 823 nil, 1125 nil, 267 nil, 119 "Sun-Synchronous", 319 nil, 534 "Polar", 222 nil, 603 nil, 293 "Sun-Synchronous", 95 nil, 450 nil, 329 nil, 144 nil, 1087 nil, 504 nil, 819 "Sun-Synchronous", 818 "Sun-Synchronous", 505 nil, 723 "Polar", 1071 nil, 1008 "Intermediate", 992 "Intermediate", 176 nil, 863 "Sun-Synchronous", 471 nil, 349 "Intermediate", 512 nil, 710 nil, 1058 nil, 192 "Sun-Synchronous", 54 "Sun-Synchronous", 92 nil, 221 nil, 141 "Sun-Synchronous", 502 nil, 871 nil, 464 "Sun-Synchronous", 801 "Sun-Synchronous", 307 nil, 935 nil, 758 "Intermediate", 290 nil, 1156 "Sun-Synchronous", 1144 "Sun-Synchronous", 627 "Sun-Synchronous", 517 nil, 1122 nil, 361 "Intermediate", 264 nil, 137 nil, 356 "Intermediate", 728 nil, 976 nil, 678 nil, 327 "Sun-Synchronous", 234 "Polar", 856 "Intermediate", 817 "Sun-Synchronous", 1017 nil, 104 "Sun-Synchronous", 353 "Intermediate", 1145 "Sun-Synchronous", 15 nil, 48 nil, 945 nil, 759 "Intermediate", 1066 "Molniya", 242 "Sun-Synchronous", 832 "Sun-Synchronous", 969 "Sun-Synchronous", 50 nil, 956 nil, 917 nil, 1030 nil, 557 "Polar", 251 nil, 394 nil, 116 nil, 585 "Polar", 583 "Polar", 75 nil, 437 "Sun-Synchronous", 516 nil, 1062 nil, 994 "Intermediate", 930 "Sun-Synchronous", 967 "Sun-Synchronous", 687 nil, 159 nil, 848 "Intermediate", 995 "Intermediate", 1096 nil, 1159 nil, 709 nil, 99 "Sun-Synchronous", 540 "Polar", 645 nil, 749 nil, 479 nil, 1081 "Molniya", 890 "Intermediate", 1046 "Sun-Synchronous", 630 "Intermediate", 916 nil, 815 "Sun-Synchronous", 1080 nil, 281 nil, 402 nil, 669 nil, 781 "Sun-Synchronous", 740 nil, 1012 "Intermediate", 975 nil, 429 nil, 309 nil, 458 "Sun-Synchronous", 21 nil, 388 nil, 495 nil, 952 nil, 626 "Intermediate", 875 "Sun-Synchronous", 31 "Sun-Synchronous", 113 nil, 32 nil, 811 "Sun-Synchronous", 827 nil, 407 nil, 398 nil, 136 "Sun-Synchronous", 691 nil, 847 "Intermediate", 825 nil, 139 "Sun-Synchronous", 506 nil, 396 nil, 460 "Sun-Synchronous", 483 "Deep Highly Eccentric", 589 "Polar", 581 "Polar", 932 "Sun-Synchronous", 174 "Sun-Synchronous", 578 "Polar", 855 "Intermediate", 331 "Deep Highly Eccentric", 363 "Intermediate", 1038 nil, 284 nil, 208 nil, 305 nil, 1019 "Deep Highly Eccentric", 955 nil, 796 "Intermediate", 708 "Sun-Synchronous", 182 "Sun-Synchronous", 256 nil, 1107 "Sun-Synchronous", 1109 nil, 657 nil, 514 nil, 1103 nil, 731 nil, 619 nil, 985 nil, 485 nil, 214 nil, 193 "Sun-Synchronous", 685 nil, 804 "Sun-Synchronous", 869 nil, 1002 nil, 1104 "Cislunar", 836 "Sun-Synchronous", 1131 "Sun-Synchronous", 785 nil, 635 nil, 442 nil, 1073 nil, 561 "Polar", 954 nil, 656 nil, 607 nil, 241 "Sun-Synchronous", 314 nil, 782 "Sun-Synchronous", 226 nil, 235 "Polar", 672 nil, 420 "Intermediate", 418 "Intermediate", 262 nil, 1016 nil, 263 nil, 304 "Intermediate", 401 nil, 673 "Polar", 40 nil, 129 nil, 600 nil, 729 nil, 1042 nil, 467 "Sun-Synchronous", 1033 nil, 1149 "Sun-Synchronous", 445 nil, 317 nil, 1091 "Sun-Synchronous", 1028 nil, 294 nil, 91 nil, 1044 nil, 810 "Sun-Synchronous", 1137 "Sun-Synchronous", 364 "Intermediate", 987 "Sun-Synchronous", 880 "Intermediate", 515 nil, 412 nil, 553 "Polar", 974 nil, 341 "Intermediate", 117 nil, 1000 nil, 1095 nil, 665 "Sun-Synchronous", 523 "Polar", 172 "Sun-Synchronous", 601 nil, 108 "Sun-Synchronous", 156 nil, 358 "Intermediate", 308 nil, 908 "Sun-Synchronous", 649 "Polar", 531 "Polar", 1085 nil, 923 "Sun-Synchronous", 1111 nil, 223 nil, 419 "Intermediate", 365 "Intermediate", 944 "Sun-Synchronous", 181 "Sun-Synchronous", 417 "Intermediate", 1082 "Molniya", 979 "Sun-Synchronous", 278 nil, 56 nil, 942 nil, 33 nil, 13 nil, 1043 nil, 867 nil, 22 nil, 618 "Sun-Synchronous", 1141 "Sun-Synchronous", 1093 nil, 380 nil, 257 nil, 1061 "Sun-Synchronous", 338 "Intermediate", 1024 nil, 500 nil, 909 "Sun-Synchronous", 1018 "Sun-Synchronous", 993 "Intermediate", 1089 "Sun-Synchronous", 168 "Sun-Synchronous", 833 nil, 496 nil, 1056 nil, 1129 "Sun-Synchronous", 947 nil, 347 "Intermediate", 501 nil, 1007 nil, 1077 "Sun-Synchronous", 596 "Intermediate", 872 nil, 792 "Intermediate", 90 nil, 237 "Polar", 826 "Polar", 292 "Sun-Synchronous", 109 nil, 216 "Sun-Synchronous", 191 nil, 498 nil, 829 nil, 761 "Intermediate", 1072 nil, 375 "Intermediate", 525 "Polar", 367 "Intermediate", 143 nil, 742 "Sun-Synchronous", 178 "Sun-Synchronous", 640 nil, 247 nil, 328 nil, 391 nil, 990 "Intermediate", 167 "Sun-Synchronous", 707 nil, 36 nil, 41 nil, 474 nil, 187 nil, 551 "Polar", 1118 nil, 996 "Intermediate", 528 "Polar", 971 nil, 599 nil, 376 "Intermediate", 195 "Sun-Synchronous", 889 "Intermediate", 316 nil, 668 "Sun-Synchronous", 428 nil, 303 "Sun-Synchronous", 671 nil, 794 "Intermediate", 905 "Molniya", 368 "Intermediate", 560 "Polar", 565 "Polar", 310 nil, 366 "Intermediate", 118 nil, 522 "Polar", 150 nil, 886 "Intermediate", 313 nil, 384 nil, 567 "Polar", 238 "Sun-Synchronous", 846 "Intermediate", 962 nil, 1127 "Sun-Synchronous", 845 "Intermediate", 196 "Sun-Synchronous", 162 "Sun-Synchronous", 393 nil, 184 nil, 219 nil, 999 nil, 461 "Sun-Synchronous", 1032 nil, 89 nil, 100 nil, 426 "Polar", 604 nil, 477 nil, 844 "Intermediate", 541 "Polar", 351 "Intermediate", 243 "Sun-Synchronous", 131 "Deep Highly Eccentric", 790 "Intermediate", 963 nil, 1053 nil, 629 "Sun-Synchronous", 873 "Sun-Synchronous", 122 "Sun-Synchronous", 933 "Sun-Synchronous", 43 nil, 1067 "Intermediate", 231 nil, 61 "Sun-Synchronous", 654 "Polar", 883 nil, 1003 nil, 598 nil, 413 nil, 29 nil, 784 nil, 800 "Sun-Synchronous", 151 nil, 369 "Intermediate", 348 "Intermediate", 1124 nil, 575 "Polar", 693 nil, 44 nil, 739 nil, 258 nil, 250 nil, 674 "Polar", 539 "Polar", 301 nil, 838 nil, 424 nil, 93 nil, 6 nil, 684 nil, 1026 nil, 951 nil, 573 "Polar", 408 nil, 563 "Polar", 850 "Intermediate", 616 "Sun-Synchronous", 866 nil, 111 nil, 997 "Intermediate", 689 nil, 28 nil, 456 "Sun-Synchronous", 374 "Intermediate", 608 "Sun-Synchronous", 737 nil, 1155 "Sun-Synchronous", 548 "Polar", 538 "Polar", 1034 nil, 895 "Intermediate", 411 nil, 957 nil, 134 "Sun-Synchronous", 943 nil, 64 "Sun-Synchronous", 623 nil, 1135 "Sun-Synchronous", 1133 "Sun-Synchronous", 465 "Molniya", 816 "Sun-Synchronous", 334 "Intermediate", 1150 "Sun-Synchronous", 323 nil, 189 nil, 280 nil, 198 "Sun-Synchronous", 155 nil, 295 nil, 808 "Sun-Synchronous", 248 nil, 587 "Polar", 285 nil, 507 nil, 227 nil, 724 "Sun-Synchronous", 476 nil, 941 "Sun-Synchronous", 911 nil, 853 "Intermediate", 494 nil, 220 nil, 842 "Intermediate", 103 nil, 697 nil, 611 "Sun-Synchronous", 1105 "Sun-Synchronous", 170 nil, 1154 "Sun-Synchronous", 51 nil, 25 "Sun-Synchronous", 261 nil, 768 "Intermediate", 822 nil, 201 "Sun-Synchronous", 904 "Molniya", 590 "Polar", 489 nil, 778 "Sun-Synchronous", 166 "Sun-Synchronous", 447 "Polar", 34 nil, 252 nil, 978 "Sun-Synchronous", 775 "Intermediate", 325 nil, 1005 nil, 594 "Sun-Synchronous", 436 "Sun-Synchronous", 828 nil, 535 "Polar", 813 "Sun-Synchronous", 146 nil, 741 "Sun-Synchronous", 1060 "Intermediate", 876 "Sun-Synchronous", 1064 "Sun-Synchronous", 228 nil, 907 nil, 306 nil, 125 "Sun-Synchronous", 276 "Sun-Synchronous", 340 "Intermediate", 148 nil, 1143 "Sun-Synchronous", 482 nil, 1049 nil, 622 nil, 588 "Polar", 17 nil, 312 nil, 606 nil, 3 nil, 1148 "Sun-Synchronous", 520 nil, 1088 nil, 760 "Intermediate", 720 "Sun-Synchronous", 1126 "Sun-Synchronous", 286 "Sun-Synchronous", 279 nil, 879 "Sun-Synchronous", 1020 nil, 536 "Polar", 1023 nil, 663 "Sun-Synchronous", 12 nil, 440 "Intermediate", 332 "Sun-Synchronous", 330 "Sun-Synchronous", 1162 nil, 382 nil, 152 nil, 1112 nil, 1140 "Sun-Synchronous", 544 "Polar", 803 "Sun-Synchronous", 642 nil, 435 nil, 342 "Intermediate", 703 nil, 783 nil, 695 nil, 973 nil, 2 nil, 948 nil, 66 "Sun-Synchronous", 484 nil, 439 nil, 236 "Polar", 556 "Polar", 373 "Intermediate", 1083 "Molniya", 142 nil, 359 "Intermediate", 727 nil, 371 "Intermediate", 772 "Intermediate", 444 nil, 1057 nil, 570 "Polar", 757 "Intermediate", 107 "Sun-Synchronous", 1094 nil, 532 "Polar", 984 nil, 23 nil, 1079 "Sun-Synchronous", 745 nil, 719 "Sun-Synchronous", 230 nil, 625 "Intermediate", 47 nil, 526 "Polar", 180 "Sun-Synchronous", 786 nil, 1068 "Sun-Synchronous", 1166 "Sun-Synchronous", 870 nil, 537 "Polar", 659 nil, 158 nil, 991 "Intermediate", 350 "Intermediate", 35 nil, 1116 "Deep Highly Eccentric", 849 "Intermediate", 1120 nil, 644 nil, 1069 nil, 881 "Sun-Synchronous", 127 "Sun-Synchronous", 927 "Sun-Synchronous", 675 nil, 1055 nil, 383 nil, 533 "Polar", 1100 nil, 910 nil, 302 nil, 564 "Polar", 701 nil, 1090 "Sun-Synchronous", 566 "Polar", 821 "Sun-Synchronous", 787 "Sun-Synchronous", 82 nil, 76 nil, 735 nil, 492 nil, 718 nil, 771 "Intermediate", 215 "Sun-Synchronous", 97 nil, 704 nil, 277 nil, 926 "Sun-Synchronous", 751 nil, 1114 nil, 19 nil, 335 "Intermediate", 597 nil, 938 "Sun-Synchronous", 57 nil, 609 "Sun-Synchronous", 202 nil, 68 nil, 452 "Intermediate", 1054 nil, 200 "Sun-Synchronous", 1142 "Sun-Synchronous", 868 nil, 11 nil, 115 nil, 946 nil, 1063 "Sun-Synchronous", 983 nil, 339 "Intermediate", 431 nil, 462 "Sun-Synchronous", 337 "Intermediate", 698 nil, 255 nil, 503 nil, 546 "Polar", 9 nil, 953 nil, 857 "Deep Highly Eccentric", 706 nil, 632 nil, 457 "Sun-Synchronous", 427 "Sun-Synchronous", 145 nil, 5 "Sun-Synchronous", 733 nil, 1163 nil, 1165 "Sun-Synchronous", 1152 "Sun-Synchronous", 624 "Intermediate", 831 nil, 244 nil, 918 "Sun-Synchronous", 824 nil, 289 nil, 112 nil, 925 "Sun-Synchronous", 1059 "Sun-Synchronous", 730 nil, 699 nil, 712 "Sun-Synchronous", 1076 nil, 1113 nil, 414 nil, 839 "Sun-Synchronous", 802 "Sun-Synchronous", 1084 nil, 860 "Deep Highly Eccentric", 1117 "Sun-Synchronous", 179 nil, 344 "Intermediate", 481 nil, 732 nil, 661 nil, 245 "Sun-Synchronous", 378 "Intermediate", 913 nil, 906 nil, 658 nil, 266 nil, 324 nil, 793 "Intermediate", 1134 "Sun-Synchronous", 1132 "Sun-Synchronous", 1014 nil, 680 nil, 446 "Polar", 524 "Polar", 254 nil, 404 nil, 1025 nil, 617 "Sun-Synchronous", 283 nil, 1153 "Sun-Synchronous", 513 nil, 572 "Polar", 705 nil, 1098 nil, 959 nil, 1074 nil, 83 nil, 634 nil, 138 "Sun-Synchronous", 1050 nil, 346 "Intermediate", 14 nil, 455 nil, 265 nil, 449 nil, 333 "Intermediate", 650 nil, 639 nil, 569 "Polar", 326 nil, 746 "Sun-Synchronous", 647 "Molniya", 45 nil, 53 nil, 559 "Polar", 78 nil, 1037 nil, 924 "Sun-Synchronous", 562 "Polar", 1119 "Sun-Synchronous", 542 "Polar", 912 nil, 664 "Sun-Synchronous", 1048 nil, 315 nil, 1031 nil, 914 nil, 480 nil, 132 nil, 753 "Intermediate", 900 "Intermediate", 1013 "Sun-Synchronous", 26 nil, 766 "Intermediate", 123 "Sun-Synchronous", 203 nil, 667 nil, 392 nil, 1045 nil, 577 "Polar", 807 "Sun-Synchronous", 140 "Sun-Synchronous", 321 nil, 795 "Intermediate", 441 nil, 700 nil, 268 nil, 840 nil, 16 nil, 320 nil, 133 "Sun-Synchronous", 288 nil, 381 nil, 605 nil, 163 "Sun-Synchronous", 81 nil, 120 "Sun-Synchronous", 643 nil, 79 nil, 211 nil, 38 nil, 173 "Sun-Synchronous", 126 "Sun-Synchronous", 981 nil, 1161 nil, 421 nil, 593 nil, 636 "Sun-Synchronous", 1160 nil, 98 nil, 422 "Intermediate", 423 nil, 614 nil, 762 "Intermediate", 582 "Polar", 666 nil, 1123 nil, 554 "Polar", 409 nil, 574 "Polar", 595 "Sun-Synchronous", 124 "Sun-Synchronous", 747 nil, 171 "Sun-Synchronous", 87 nil, 169 "Sun-Synchronous", 653 nil, 679 nil, 843 "Intermediate", 160 "Sun-Synchronous", 30 nil, 400 nil, 767 "Intermediate", 896 nil, 928 "Sun-Synchronous", 696 nil, 1027 nil, 738 nil, 809 "Sun-Synchronous", 509 nil, 736 "Sun-Synchronous", 207 nil, 874 "Sun-Synchronous", 434 nil, 1130 "Sun-Synchronous", 690 nil, 194 "Sun-Synchronous", 1047 nil, 511 nil, 73 nil, 486 nil, 336 "Intermediate", 96 nil, 837 nil, 1136 "Sun-Synchronous", 937 "Sun-Synchronous", 10 nil, 660 nil, 272 nil, 499 nil, 488 nil, 903 nil, 386 nil, 270 nil, 576 "Polar", 717 nil, 543 "Polar", 271 nil, 18 nil, 395 nil, 403 nil, 469 nil, 105 "Sun-Synchronous", 185 nil, 52 nil, 1051 nil, 545 "Polar", 633 "Sun-Synchronous", 114 "Sun-Synchronous", 1099 nil, 968 nil, 253 nil, 612 "Sun-Synchronous", 1151 "Intermediate", 1015 nil, 628 "Sun-Synchronous", 748 nil, 209 nil, 147 nil, 655 "Polar", 1022 nil, 750 nil, 852 "Intermediate", 425 "Polar", 1158 nil, 864 nil, 67 "Sun-Synchronous", 1108 "Sun-Synchronous", 296 nil, 602 nil, 318 nil, 161 "Sun-Synchronous", 651 nil, 725 nil, 372 "Intermediate", 1092 nil, 406 nil, 438 "Sun-Synchronous", 780 nil, 711 "Sun-Synchronous", 1041 nil, 71 nil, 939 nil, 579 "Polar", 877 "Sun-Synchronous", 722 "Sun-Synchronous", 42 nil, 919 "Sun-Synchronous", 80 nil, 885 nil, 1078 "Sun-Synchronous", 986 nil, 1035 nil, 714 nil, 677 nil, 199 "Sun-Synchronous", 841 "Intermediate", 754 "Intermediate", 791 "Intermediate", 1029 nil, 861 "Deep Highly Eccentric", 591 "Polar", 1021 nil, 744 nil, 960 nil, 37 nil, 183 nil, 1139 "Sun-Synchronous", 965 nil, 892 "Intermediate", 432 nil, 379 "Intermediate", 63 "Sun-Synchronous", 212 nil, 94 nil, 362 "Intermediate", 8 nil, 686 nil, 692 nil, 764 "Intermediate", 246 nil, 190 nil, 1004 "Sun-Synchronous", 1036 nil, 549 "Polar", 922 "Sun-Synchronous", 177 "Sun-Synchronous", 915 nil, 936 "Sun-Synchronous", 820 nil, 49 nil, 858 "Sun-Synchronous", 390 nil, 84 nil}}, :Purpose #gensql.inference.gpm.column.Column{:var-name :Purpose, :stattype :categorical, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 3, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 3, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 7, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 6, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 1, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 15, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 5, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 2, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 3, "Technology Demonstration" 0, "Earth Science" 2, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 3, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 2, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 4, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 1, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 2, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 1, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 4, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 4, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 278, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 1, "Communications" 187, "Communications/Navigation" 0, "Communications/Maritime Tracking" 1, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 1, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 4, "Communications/Earth Science" 0, "Technology Development" 38, "Remote Sensing/Technology Development" 0, "Navigation" 10, "Remote Sensing" 5, "Electronic Surveillance/Ocean" 1, "Scientific Research" 3, "Space Physics" 0, "Reconnaissance" 3, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 5, "Electronic Intelligence/Technology Development" 1, "Earth Observation" 4, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 1, "Earth/Space Science" 0, "Surveillance" 4, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 5, "Radar Calibration" 1, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 1, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 2}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 7, :counts {"Navigation/Global Positioning" 5, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 2, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 1, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 4, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 4, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 434, :counts {"Navigation/Global Positioning" 5, "Earth Science/Meteorology" 7, "Technology Development/Communications" 0, "Communications" 390, "Communications/Navigation" 1, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 1, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 1, "Communications/Earth Science" 1, "Technology Development" 3, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 5, "Communications/Technology Development" 2, "Earth/Space Science" 0, "Surveillance" 2, "Communications/Research" 1, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 1, "Space Observation" 0, "Early Warning" 6, "Technology Demonstration" 0, "Earth Science" 3, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 5, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 29, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 2, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 11, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 7, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 3, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 3, "Communications/Research" 0, "Astrophysics/Planetary Science" 1, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 1, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 295, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 10, "Technology Development/Communications" 0, "Communications" 5, "Communications/Navigation" 0, "Communications/Maritime Tracking" 7, "Solar Physics" 3, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 1, "Amateur Radio" 1, "Maritime Tracking/Technology Development" 1, "Maritime Tracking" 1, "Space Science" 7, "Communications/Earth Science" 0, "Technology Development" 75, "Remote Sensing/Technology Development" 2, "Navigation" 0, "Remote Sensing" 51, "Electronic Surveillance/Ocean" 0, "Scientific Research" 6, "Space Physics" 8, "Reconnaissance" 16, "Remote Sensing/Reconnaissance" 4, "Astrophysics" 1, "Electronic Intelligence/Technology Development" 3, "Earth Observation" 45, "Earth Observation/Research" 3, "Meteorology" 6, "Communications/Technology Development" 0, "Earth/Space Science" 1, "Surveillance" 3, "Communications/Research" 1, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 2, "Early Warning" 0, "Technology Demonstration" 2, "Earth Science" 18, "Radar Calibration" 0, "Remote Sensing/Imaging" 1, "Earth Observation/Technology Development" 5, "Remote Sensing/Research" 4, "Astrophysics/Earth Science" 1, "Communications (experimental)" 1, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 72, :counts {"Navigation/Global Positioning" 72, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 0, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 0, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Purpose, :suff-stats {:n 2, :counts {"Navigation/Global Positioning" 0, "Earth Science/Meteorology" 0, "Technology Development/Communications" 0, "Communications" 1, "Communications/Navigation" 0, "Communications/Maritime Tracking" 0, "Solar Physics" 0, "Earth Observation/Meteorology/Communications" 0, "Remote Sensing/Earth Science" 0, "Amateur Radio" 0, "Maritime Tracking/Technology Development" 0, "Maritime Tracking" 0, "Space Science" 0, "Communications/Earth Science" 0, "Technology Development" 1, "Remote Sensing/Technology Development" 0, "Navigation" 0, "Remote Sensing" 0, "Electronic Surveillance/Ocean" 0, "Scientific Research" 0, "Space Physics" 0, "Reconnaissance" 0, "Remote Sensing/Reconnaissance" 0, "Astrophysics" 0, "Electronic Intelligence/Technology Development" 0, "Earth Observation" 0, "Earth Observation/Research" 0, "Meteorology" 0, "Communications/Technology Development" 0, "Earth/Space Science" 0, "Surveillance" 0, "Communications/Research" 0, "Astrophysics/Planetary Science" 0, "Meteorology/Navigation" 0, "Space Observation" 0, "Early Warning" 0, "Technology Demonstration" 0, "Earth Science" 0, "Radar Calibration" 0, "Remote Sensing/Imaging" 0, "Earth Observation/Technology Development" 0, "Remote Sensing/Research" 0, "Astrophysics/Earth Science" 0, "Communications (experimental)" 0, "Electronic Surveillance" 0, "Meteorology/Earth Observation" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Purpose "Earth Science"} {:cluster_4 3, :cluster_62 2, :cluster_2 18, :cluster_6 5, :cluster_0 1}, {:Purpose "Early Warning"} {:cluster_4 6, :cluster_62 3, :cluster_3 1}, {:Purpose "Earth Observation"} {:cluster_2 45, :cluster_9 3, :cluster_6 4}, {:Purpose "Communications"} {:cluster_80 1, :cluster_32 1, :cluster_75 1, :cluster_76 1, :cluster_62 5, :cluster_3 1, :cluster_6 187, :cluster_77 1, :cluster_59 4, :cluster_4 390, :cluster_2 5, :cluster_74 1}, {:Purpose "Astrophysics"} {:cluster_6 5, :cluster_92 1, :cluster_73 1, :cluster_79 1, :cluster_9 1, :cluster_2 1}, {:Purpose "Earth Science/Meteorology"} {:cluster_4 7, :cluster_2 10}, {:Purpose "Radar Calibration"} {:cluster_6 1}, {:Purpose "Maritime Tracking"} {:cluster_2 1}, {:Purpose "Astrophysics/Planetary Science"} {:cluster_9 1}, {:Purpose "Space Physics"} {:cluster_92 1, :cluster_2 8, :cluster_81 1, :cluster_93 1, :cluster_78 4, :cluster_66 3, :cluster_82 1, :cluster_94 1}, {:Purpose "Earth Observation/Meteorology/Communications"} {:cluster_4 1}, {:Purpose "Electronic Intelligence/Technology Development"} {:cluster_2 3, :cluster_6 1}, {:Purpose "Technology Development/Communications"} {:cluster_6 1}, {:Purpose "Remote Sensing/Earth Science"} {:cluster_2 1}, {:Purpose "Remote Sensing/Research"} {:cluster_2 4}, {:Purpose "Communications/Navigation"} {:cluster_4 1}, {:Purpose "Meteorology/Earth Observation"} {:cluster_6 2}, {:Purpose "Navigation"} {:cluster_6 10, :cluster_85 2}, {:Purpose "Technology Demonstration"} {:cluster_2 2}, {:Purpose "Space Observation"} {:cluster_2 2}, {:Purpose "Communications/Maritime Tracking"} {:cluster_2 7, :cluster_6 1}, {:Purpose "Reconnaissance"} {:cluster_9 7, :cluster_2 16, :cluster_6 3}, {:Purpose "Earth Observation/Research"} {:cluster_2 3}, {:Purpose "Amateur Radio"} {:cluster_2 1, :cluster_6 1}, {:Purpose "Maritime Tracking/Technology Development"} {:cluster_2 1}, {:Purpose "Remote Sensing"} {:cluster_2 51, :cluster_6 5}, {:Purpose "Communications (experimental)"} {:cluster_2 1, :cluster_6 1}, {:Purpose "Remote Sensing/Reconnaissance"} {:cluster_2 4}, {:Purpose "Communications/Research"} {:cluster_4 1, :cluster_2 1}, {:Purpose "Electronic Surveillance/Ocean"} {:cluster_9 11, :cluster_6 1}, {:Purpose "Earth/Space Science"} {:cluster_2 1}, {:Purpose "Surveillance"} {:cluster_6 4, :cluster_4 2, :cluster_9 3, :cluster_2 3}, {:Purpose "Meteorology/Navigation"} {:cluster_4 1}, {:Purpose "Scientific Research"} {:cluster_6 3, :cluster_2 6}, {:Purpose "Space Science"} {:cluster_2 7, :cluster_4 1, :cluster_6 4}, {:Purpose "Communications/Technology Development"} {:cluster_6 1, :cluster_4 2}, {:Purpose "Remote Sensing/Imaging"} {:cluster_2 1}, {:Purpose "Solar Physics"} {:cluster_2 3}, {:Purpose "Meteorology"} {:cluster_4 5, :cluster_2 6}, {:Purpose "Earth Observation/Technology Development"} {:cluster_2 5}, {:Purpose "Electronic Surveillance"} {:cluster_4 5, :cluster_62 3, :cluster_9 1, :cluster_3 2}, {:Purpose "Remote Sensing/Technology Development"} {:cluster_2 2}, {:Purpose "Navigation/Global Positioning"} {:cluster_23 72, :cluster_85 5, :cluster_4 5}, {:Purpose "Astrophysics/Earth Science"} {:cluster_2 1}, {:Purpose "Communications/Earth Science"} {:cluster_4 1}, {:Purpose "Technology Development"} {:cluster_2 75, :cluster_0 6, :cluster_6 38, :cluster_62 2, :cluster_4 3, :cluster_9 2, :cluster_74 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Technology Development" "Communications" "Solar Physics" "Electronic Surveillance" "Scientific Research" "Earth Science" "Maritime Tracking/Technology Development" "Space Physics" "Communications/Technology Development" "Earth Observation" "Amateur Radio" "Communications (experimental)" "Communications/Maritime Tracking" "Communications/Research" "Remote Sensing/Technology Development" "Remote Sensing" "Space Science" "Astrophysics" "Navigation/Global Positioning" "Earth Observation/Meteorology/Communications" "Earth/Space Science" "Remote Sensing/Imaging" "Earth Science/Meteorology" "Early Warning" "Meteorology" "Electronic Intelligence/Technology Development" "Earth Observation/Research" "Maritime Tracking" "Reconnaissance" "Communications/Navigation" "Radar Calibration" "Astrophysics/Planetary Science" "Communications/Earth Science" "Navigation" "Earth Observation/Technology Development" "Surveillance" "Remote Sensing/Earth Science" "Meteorology/Navigation" "Space Observation" "Astrophysics/Earth Science" "Remote Sensing/Reconnaissance" "Technology Development/Communications" "Technology Demonstration" "Remote Sensing/Research" "Electronic Surveillance/Ocean" "Meteorology/Earth Observation"], :data {0 "Technology Development", 893 "Electronic Surveillance/Ocean", 920 "Technology Development", 558 "Communications", 453 "Technology Development", 584 "Communications", 487 "Communications", 637 "Technology Development", 972 "Communications", 519 "Space Physics", 1097 "Communications", 357 "Communications", 716 "Communications", 950 "Communications", 275 "Communications", 530 "Communications", 929 "Space Physics", 789 "Navigation", 389 "Navigation/Global Positioning", 586 "Communications", 410 "Navigation/Global Positioning", 433 "Communications/Navigation", 765 "Communications", 521 "Communications", 451 "Technology Development", 291 "Earth Science", 443 "Communications", 798 "Technology Development/Communications", 779 "Technology Development", 970 "Astrophysics", 249 "Communications", 638 "Technology Development", 299 "Space Science", 1101 "Communications", 121 "Technology Development", 734 "Communications", 287 "Technology Development", 65 "Communications/Maritime Tracking", 1086 "Earth Science", 702 "Navigation/Global Positioning", 70 "Communications", 949 "Communications", 218 "Communications", 648 "Communications", 1070 "Communications", 812 "Technology Development", 62 "Communications/Maritime Tracking", 74 "Technology Development", 774 "Communications", 475 "Communications", 497 "Communications", 1009 "Earth Science", 580 "Communications", 1138 "Remote Sensing", 891 "Electronic Surveillance/Ocean", 164 "Remote Sensing", 1040 "Communications", 282 "Communications", 769 "Communications", 799 "Reconnaissance", 273 "Communications", 1147 "Remote Sensing", 186 "Communications", 430 "Communications", 641 "Communications", 529 "Communications", 898 "Meteorology/Earth Observation", 370 "Communications", 834 "Remote Sensing", 233 "Meteorology", 298 "Reconnaissance", 188 "Communications", 240 "Remote Sensing", 110 "Communications", 130 "Technology Development", 982 "Communications", 620 "Communications", 311 "Communications", 931 "Reconnaissance", 882 "Earth Observation/Research", 128 "Remote Sensing", 399 "Navigation/Global Positioning", 989 "Technology Development", 377 "Communications", 468 "Communications", 259 "Communications", 210 "Communications", 229 "Communications", 153 "Navigation/Global Positioning", 621 "Communications", 213 "Early Warning", 670 "Meteorology", 977 "Technology Development", 343 "Communications", 958 "Communications", 887 "Electronic Surveillance/Ocean", 472 "Communications", 7 "Electronic Surveillance", 894 "Electronic Surveillance/Ocean", 59 "Communications", 934 "Technology Development", 473 "Communications", 1010 "Earth Science", 86 "Communications", 756 "Communications", 830 "Earth Observation", 613 "Technology Development", 491 "Communications", 154 "Navigation/Global Positioning", 20 "Communications", 224 "Communications", 355 "Communications", 592 "Space Science", 1146 "Remote Sensing", 610 "Reconnaissance", 806 "Technology Demonstration", 571 "Communications", 466 "Electronic Surveillance", 72 "Communications", 454 "Communications", 888 "Electronic Surveillance/Ocean", 463 "Reconnaissance", 851 "Communications", 770 "Communications", 814 "Technology Development", 859 "Earth Observation", 58 "Communications", 964 "Technology Development", 980 "Technology Development", 1001 "Technology Development", 205 "Communications", 555 "Communications", 552 "Communications", 60 "Communications (experimental)", 1102 "Communications", 835 "Technology Development", 459 "Reconnaissance", 175 "Technology Development", 322 "Navigation/Global Positioning", 510 "Communications", 1052 "Technology Development", 1121 "Communications", 662 "Earth Observation/Technology Development", 27 "Technology Development", 352 "Communications", 493 "Communications", 899 "Meteorology/Earth Observation", 416 "Communications", 777 "Communications", 694 "Navigation/Global Positioning", 1 "Communications", 631 "Communications", 854 "Communications", 69 "Communications", 101 "Communications", 24 "Earth Science", 901 "Space Science", 547 "Communications", 102 "Communications", 788 "Navigation", 1106 "Earth Observation", 713 "Communications", 1110 "Technology Development", 385 "Navigation/Global Positioning", 988 "Technology Development", 135 "Earth Observation", 1065 "Earth Observation", 397 "Navigation/Global Positioning", 1011 "Earth Science", 1006 "Communications", 773 "Communications", 490 "Communications", 752 "Communications", 354 "Communications", 884 "Early Warning", 360 "Communications", 998 "Communications", 961 "Communications", 55 "Communications", 568 "Communications", 797 "Navigation", 688 "Navigation/Global Positioning", 763 "Communications", 269 "Communications", 676 "Navigation/Global Positioning", 448 "Remote Sensing", 527 "Communications", 206 "Communications", 1075 "Communications", 966 "Technology Development", 165 "Remote Sensing", 715 "Communications", 387 "Navigation/Global Positioning", 652 "Earth Science/Meteorology", 683 "Navigation/Global Positioning", 85 "Communications", 721 "Meteorology", 862 "Space Observation", 615 "Technology Development", 681 "Navigation/Global Positioning", 225 "Communications", 865 "Surveillance", 297 "Reconnaissance", 39 "Communications", 805 "Earth Observation", 274 "Communications", 88 "Communications", 217 "Technology Development", 1128 "Remote Sensing", 46 "Communications", 682 "Navigation/Global Positioning", 508 "Communications", 1157 "Communications", 149 "Navigation/Global Positioning", 415 "Earth Observation", 239 "Earth Science", 478 "Meteorology", 878 "Communications", 157 "Earth Observation/Meteorology/Communications", 345 "Communications", 300 "Space Science", 743 "Remote Sensing/Reconnaissance", 921 "Technology Development", 1039 "Technology Development", 4 "Communications", 550 "Communications", 1115 "Communications", 204 "Communications", 470 "Communications", 1164 "Communications", 646 "Communications", 77 "Communications", 106 "Technology Development", 197 "Earth Science/Meteorology", 405 "Navigation/Global Positioning", 897 "Electronic Surveillance/Ocean", 726 "Communications", 776 "Communications", 940 "Technology Development", 755 "Communications", 902 "Electronic Surveillance", 518 "Scientific Research", 232 "Technology Development", 260 "Communications", 823 "Communications", 1125 "Communications", 267 "Communications", 119 "Earth Science", 319 "Communications", 534 "Communications", 222 "Communications", 603 "Communications", 293 "Earth Science", 95 "Communications", 450 "Communications", 329 "Technology Development", 144 "Navigation/Global Positioning", 1087 "Technology Development", 504 "Communications", 819 "Earth Observation", 818 "Communications", 505 "Communications", 723 "Meteorology", 1071 "Communications", 1008 "Astrophysics", 992 "Communications", 176 "Technology Development", 863 "Earth Science", 471 "Communications", 349 "Communications", 512 "Communications", 710 "Communications", 1058 "Communications", 192 "Earth Science", 54 "Amateur Radio", 92 "Communications", 221 "Communications", 141 "Earth Science", 502 "Communications", 871 "Communications", 464 "Remote Sensing", 801 "Solar Physics", 307 "Communications", 935 "Technology Development", 758 "Communications", 290 "Earth Science", 1156 "Scientific Research", 1144 "Remote Sensing", 627 "Earth Science", 517 "Communications", 1122 "Communications", 361 "Communications", 264 "Communications", 137 "Communications", 356 "Communications", 728 "Communications", 976 "Technology Development", 678 "Navigation/Global Positioning", 327 "Technology Development", 234 "Electronic Intelligence/Technology Development", 856 "Communications", 817 "Technology Development", 1017 "Technology Development", 104 "Technology Development", 353 "Communications", 1145 "Remote Sensing", 15 "Technology Development", 48 "Communications", 945 "Communications", 759 "Communications", 1066 "Electronic Surveillance", 242 "Remote Sensing", 832 "Earth Observation", 969 "Technology Development", 50 "Communications", 956 "Communications", 917 "Communications", 1030 "Communications", 557 "Communications", 251 "Communications", 394 "Navigation/Global Positioning", 116 "Communications", 585 "Communications", 583 "Communications", 75 "Communications/Research", 437 "Reconnaissance", 516 "Communications", 1062 "Communications", 994 "Communications", 930 "Space Physics", 967 "Earth Observation", 687 "Navigation/Global Positioning", 159 "Communications", 848 "Communications", 995 "Communications", 1096 "Remote Sensing", 1159 "Communications", 709 "Technology Development", 99 "Remote Sensing/Technology Development", 540 "Communications", 645 "Surveillance", 749 "Communications", 479 "Communications/Earth Science", 1081 "Early Warning", 890 "Electronic Surveillance/Ocean", 1046 "Earth Observation", 630 "Communications", 916 "Communications", 815 "Technology Development", 1080 "Early Warning", 281 "Communications", 402 "Navigation/Global Positioning", 669 "Meteorology/Navigation", 781 "Technology Development", 740 "Communications", 1012 "Astrophysics", 975 "Astrophysics", 429 "Communications", 309 "Communications", 458 "Reconnaissance", 21 "Communications", 388 "Navigation/Global Positioning", 495 "Communications", 952 "Communications", 626 "Surveillance", 875 "Communications", 31 "Earth Observation", 113 "Communications", 32 "Communications", 811 "Technology Development", 827 "Earth Observation", 407 "Navigation/Global Positioning", 398 "Navigation/Global Positioning", 136 "Technology Development", 691 "Navigation/Global Positioning", 847 "Communications", 825 "Communications", 139 "Space Science", 506 "Communications", 396 "Navigation/Global Positioning", 460 "Reconnaissance", 483 "Space Physics", 589 "Communications", 581 "Communications", 932 "Reconnaissance", 174 "Technology Development", 578 "Communications", 855 "Communications", 331 "Space Physics", 363 "Communications", 1038 "Remote Sensing/Reconnaissance", 284 "Communications", 208 "Communications", 305 "Communications", 1019 "Space Physics", 955 "Communications", 796 "Navigation", 708 "Space Observation", 182 "Technology Development", 256 "Communications", 1107 "Earth Observation", 1109 "Technology Development", 657 "Communications", 514 "Communications", 1103 "Communications", 731 "Communications", 619 "Reconnaissance", 985 "Communications", 485 "Communications", 214 "Early Warning", 193 "Earth Science/Meteorology", 685 "Navigation/Global Positioning", 804 "Earth Observation", 869 "Communications", 1002 "Technology Development", 1104 "Astrophysics", 836 "Earth Observation", 1131 "Remote Sensing", 785 "Communications", 635 "Communications", 442 "Space Science", 1073 "Communications", 561 "Communications", 954 "Communications", 656 "Communications", 607 "Communications", 241 "Earth Observation", 314 "Communications", 782 "Earth Science", 226 "Communications", 235 "Electronic Intelligence/Technology Development", 672 "Communications", 420 "Communications", 418 "Communications", 262 "Communications", 1016 "Technology Development", 263 "Communications", 304 "Earth Observation", 401 "Navigation/Global Positioning", 673 "Communications", 40 "Communications", 129 "Earth Science", 600 "Communications", 729 "Communications", 1042 "Communications", 467 "Remote Sensing", 1033 "Communications", 1149 "Remote Sensing", 445 "Communications", 317 "Communications", 1091 "Communications/Maritime Tracking", 1028 "Communications", 294 "Earth Science", 91 "Communications", 1044 "Space Physics", 810 "Technology Development", 1137 "Remote Sensing", 364 "Communications", 987 "Technology Development", 880 "Scientific Research", 515 "Communications", 412 "Earth Science/Meteorology", 553 "Communications", 974 "Communications", 341 "Communications", 117 "Communications", 1000 "Technology Development", 1095 "Earth Observation", 665 "Technology Development", 523 "Communications", 172 "Technology Development", 601 "Communications", 108 "Remote Sensing/Technology Development", 156 "Navigation/Global Positioning", 358 "Communications", 308 "Communications", 908 "Technology Development", 649 "Meteorology", 531 "Communications", 1085 "Earth Science", 923 "Technology Development", 1111 "Technology Development", 223 "Communications", 419 "Communications", 365 "Communications", 944 "Communications/Research", 181 "Technology Development", 417 "Communications", 1082 "Early Warning", 979 "Earth Observation", 278 "Communications", 56 "Communications", 942 "Communications", 33 "Communications", 13 "Communications", 1043 "Space Physics", 867 "Surveillance", 22 "Communications", 618 "Earth Observation", 1141 "Remote Sensing", 1093 "Communications", 380 "Navigation/Global Positioning", 257 "Communications", 1061 "Technology Development", 338 "Communications", 1024 "Communications", 500 "Communications", 909 "Technology Development", 1018 "Earth Observation", 993 "Communications", 1089 "Technology Development", 168 "Earth Observation", 833 "Communications", 496 "Communications", 1056 "Communications", 1129 "Remote Sensing", 947 "Communications", 347 "Communications", 501 "Communications", 1007 "Communications", 1077 "Earth Observation", 596 "Earth Science", 872 "Communications", 792 "Navigation", 90 "Communications", 237 "Electronic Intelligence/Technology Development", 826 "Technology Development", 292 "Earth Science", 109 "Remote Sensing", 216 "Earth Observation", 191 "Communications", 498 "Communications", 829 "Earth Observation", 761 "Communications", 1072 "Communications", 375 "Communications", 525 "Communications", 367 "Communications", 143 "Navigation/Global Positioning", 742 "Astrophysics/Earth Science", 178 "Technology Development", 640 "Communications", 247 "Communications", 328 "Technology Development", 391 "Navigation/Global Positioning", 990 "Communications", 167 "Earth Observation", 707 "Navigation/Global Positioning", 36 "Communications", 41 "Communications", 474 "Communications", 187 "Communications", 551 "Communications", 1118 "Communications", 996 "Communications", 528 "Communications", 971 "Communications", 599 "Communications", 376 "Communications", 195 "Earth Science/Meteorology", 889 "Electronic Surveillance/Ocean", 316 "Communications", 668 "Technology Development", 428 "Communications", 303 "Remote Sensing", 671 "Communications", 794 "Navigation", 905 "Communications", 368 "Communications", 560 "Communications", 565 "Communications", 310 "Communications", 366 "Communications", 118 "Technology Development", 522 "Communications", 150 "Navigation/Global Positioning", 886 "Electronic Surveillance/Ocean", 313 "Communications", 384 "Navigation/Global Positioning", 567 "Communications", 238 "Earth Observation/Research", 846 "Communications", 962 "Communications", 1127 "Remote Sensing", 845 "Communications", 196 "Earth Science/Meteorology", 162 "Remote Sensing", 393 "Navigation/Global Positioning", 184 "Communications", 219 "Communications", 999 "Technology Development", 461 "Reconnaissance", 1032 "Communications", 89 "Communications", 100 "Communications", 426 "Earth Science", 604 "Communications", 477 "Communications", 844 "Communications", 541 "Communications", 351 "Communications", 243 "Remote Sensing", 131 "Astrophysics", 790 "Navigation", 963 "Technology Development", 1053 "Technology Development", 629 "Earth Observation/Technology Development", 873 "Technology Development", 122 "Space Science", 933 "Space Physics", 43 "Communications", 1067 "Electronic Surveillance", 231 "Communications", 61 "Communications (experimental)", 654 "Earth Science/Meteorology", 883 "Early Warning", 1003 "Technology Development", 598 "Communications", 413 "Earth Science/Meteorology", 29 "Technology Development", 784 "Communications", 800 "Technology Development", 151 "Navigation/Global Positioning", 369 "Communications", 348 "Communications", 1124 "Communications", 575 "Communications", 693 "Navigation/Global Positioning", 44 "Communications", 739 "Communications", 258 "Communications", 250 "Communications", 674 "Communications/Technology Development", 539 "Communications", 301 "Earth Science", 838 "Earth Observation", 424 "Communications", 93 "Communications", 6 "Electronic Surveillance", 684 "Navigation/Global Positioning", 1026 "Communications", 951 "Communications", 573 "Communications", 408 "Navigation/Global Positioning", 563 "Communications", 850 "Communications", 616 "Earth Observation/Technology Development", 866 "Surveillance", 111 "Communications", 997 "Communications", 689 "Navigation/Global Positioning", 28 "Space Physics", 456 "Technology Development", 374 "Communications", 608 "Reconnaissance", 737 "Communications", 1155 "Scientific Research", 548 "Communications", 538 "Communications", 1034 "Communications", 895 "Electronic Surveillance/Ocean", 411 "Earth Science/Meteorology", 957 "Communications", 134 "Earth Observation", 943 "Communications", 64 "Communications/Maritime Tracking", 623 "Technology Development", 1135 "Remote Sensing", 1133 "Remote Sensing", 465 "Electronic Surveillance", 816 "Technology Development", 334 "Communications", 1150 "Scientific Research", 323 "Navigation/Global Positioning", 189 "Communications", 280 "Communications", 198 "Earth Science/Meteorology", 155 "Navigation/Global Positioning", 295 "Astrophysics", 808 "Earth Observation", 248 "Communications", 587 "Communications", 285 "Technology Development", 507 "Communications", 227 "Communications", 724 "Technology Development", 476 "Meteorology", 941 "Earth Observation", 911 "Communications", 853 "Communications", 494 "Communications", 220 "Communications", 842 "Communications", 103 "Communications", 697 "Navigation/Global Positioning", 611 "Reconnaissance", 1105 "Earth Observation", 170 "Earth Observation", 1154 "Reconnaissance", 51 "Communications", 25 "Maritime Tracking/Technology Development", 261 "Communications", 768 "Communications", 822 "Amateur Radio", 201 "Technology Development", 904 "Communications", 590 "Communications", 489 "Communications", 778 "Technology Development", 166 "Remote Sensing/Imaging", 447 "Remote Sensing", 34 "Communications", 252 "Communications", 978 "Earth Observation", 775 "Communications", 325 "Communications", 1005 "Communications", 594 "Remote Sensing", 436 "Communications", 828 "Earth Observation", 535 "Communications", 813 "Technology Development", 146 "Navigation/Global Positioning", 741 "Remote Sensing", 1060 "Astrophysics", 876 "Communications", 1064 "Technology Development", 228 "Communications", 907 "Electronic Surveillance", 306 "Communications", 125 "Remote Sensing", 276 "Maritime Tracking", 340 "Communications", 148 "Navigation/Global Positioning", 1143 "Remote Sensing", 482 "Communications", 1049 "Communications", 622 "Remote Sensing", 588 "Communications", 17 "Technology Development", 312 "Communications", 606 "Meteorology", 3 "Communications", 1148 "Remote Sensing", 520 "Technology Development", 1088 "Communications", 760 "Communications", 720 "Earth Science/Meteorology", 1126 "Remote Sensing", 286 "Technology Development", 279 "Communications", 879 "Communications", 1020 "Communications", 536 "Communications", 1023 "Communications", 663 "Remote Sensing/Earth Science", 12 "Communications", 440 "Astrophysics", 332 "Earth Science", 330 "Remote Sensing", 1162 "Communications", 382 "Navigation/Global Positioning", 152 "Navigation/Global Positioning", 1112 "Communications", 1140 "Remote Sensing", 544 "Communications", 803 "Earth Observation", 642 "Communications", 435 "Meteorology", 342 "Communications", 703 "Navigation/Global Positioning", 783 "Communications", 695 "Navigation/Global Positioning", 973 "Communications", 2 "Communications", 948 "Communications", 66 "Communications/Maritime Tracking", 484 "Communications", 439 "Communications", 236 "Electronic Intelligence/Technology Development", 556 "Communications", 373 "Communications", 1083 "Early Warning", 142 "Navigation/Global Positioning", 359 "Communications", 727 "Communications", 371 "Communications", 772 "Communications", 444 "Communications", 1057 "Communications", 570 "Communications", 757 "Communications", 107 "Earth Observation", 1094 "Communications", 532 "Communications", 984 "Communications", 23 "Scientific Research", 1079 "Scientific Research", 745 "Remote Sensing/Reconnaissance", 719 "Earth Science/Meteorology", 230 "Communications", 625 "Surveillance", 47 "Communications", 526 "Communications", 180 "Earth Observation", 786 "Communications", 1068 "Technology Development", 1166 "Earth Observation", 870 "Communications", 537 "Communications", 659 "Communications", 158 "Communications", 991 "Communications", 350 "Communications", 35 "Communications", 1116 "Space Physics", 849 "Communications", 1120 "Communications", 644 "Surveillance", 1069 "Communications", 881 "Remote Sensing/Research", 127 "Remote Sensing", 927 "Space Physics", 675 "Communications", 1055 "Earth Observation", 383 "Navigation/Global Positioning", 533 "Communications", 1100 "Communications", 910 "Communications", 302 "Communications", 564 "Communications", 701 "Navigation/Global Positioning", 1090 "Communications/Maritime Tracking", 566 "Communications", 821 "Earth Observation", 787 "Earth Science", 82 "Communications", 76 "Communications", 735 "Space Science", 492 "Communications", 718 "Communications", 771 "Communications", 215 "Earth Observation", 97 "Communications", 704 "Navigation/Global Positioning", 277 "Communications", 926 "Space Physics", 751 "Communications", 1114 "Communications", 19 "Communications", 335 "Communications", 597 "Communications", 938 "Remote Sensing/Research", 57 "Communications", 609 "Reconnaissance", 202 "Technology Development", 68 "Communications", 452 "Astrophysics/Planetary Science", 1054 "Earth Observation", 200 "Technology Development", 1142 "Remote Sensing", 868 "Surveillance", 11 "Communications", 115 "Communications", 946 "Communications", 1063 "Earth Observation/Technology Development", 983 "Communications", 339 "Communications", 431 "Communications/Technology Development", 462 "Reconnaissance", 337 "Communications", 698 "Navigation/Global Positioning", 255 "Communications", 503 "Communications", 546 "Communications", 9 "Electronic Surveillance", 953 "Communications", 857 "Space Physics", 706 "Navigation/Global Positioning", 632 "Communications", 457 "Reconnaissance", 427 "Earth Science", 145 "Navigation/Global Positioning", 5 "Solar Physics", 733 "Communications", 1163 "Communications", 1165 "Earth Observation", 1152 "Technology Development", 624 "Surveillance", 831 "Earth Observation", 244 "Technology Development", 918 "Space Physics", 824 "Communications", 289 "Earth Science", 112 "Communications", 925 "Space Physics", 1059 "Technology Development", 730 "Communications", 699 "Navigation/Global Positioning", 712 "Earth Observation/Technology Development", 1076 "Communications", 1113 "Communications", 414 "Communications", 839 "Surveillance", 802 "Technology Development", 1084 "Communications", 860 "Space Physics", 1117 "Earth Observation", 179 "Technology Development", 344 "Communications", 481 "Communications", 732 "Communications", 661 "Communications", 245 "Technology Development", 378 "Communications", 913 "Communications", 906 "Communications", 658 "Communications", 266 "Communications", 324 "Remote Sensing", 793 "Navigation", 1134 "Remote Sensing", 1132 "Remote Sensing", 1014 "Communications", 680 "Navigation/Global Positioning", 446 "Remote Sensing", 524 "Communications", 254 "Communications", 404 "Navigation/Global Positioning", 1025 "Communications", 617 "Earth Observation", 283 "Communications", 1153 "Remote Sensing", 513 "Communications", 572 "Communications", 705 "Navigation/Global Positioning", 1098 "Communications", 959 "Communications", 1074 "Communications", 83 "Communications", 634 "Communications", 138 "Space Science", 1050 "Communications", 346 "Communications", 14 "Technology Development", 455 "Communications", 265 "Communications", 449 "Radar Calibration", 333 "Communications", 650 "Earth Science/Meteorology", 639 "Technology Development", 569 "Communications", 326 "Communications", 746 "Technology Development", 647 "Communications", 45 "Communications", 53 "Communications", 559 "Communications", 78 "Communications", 1037 "Communications", 924 "Technology Development", 562 "Communications", 1119 "Communications", 542 "Communications", 912 "Communications", 664 "Astrophysics", 1048 "Communications", 315 "Communications", 1031 "Communications", 914 "Communications", 480 "Communications", 132 "Communications", 753 "Communications", 900 "Space Science", 1013 "Technology Development", 26 "Technology Development", 766 "Communications", 123 "Technology Development", 203 "Communications", 667 "Communications", 392 "Navigation/Global Positioning", 1045 "Space Physics", 577 "Communications", 807 "Technology Demonstration", 140 "Space Science", 321 "Navigation/Global Positioning", 795 "Navigation", 441 "Solar Physics", 700 "Navigation/Global Positioning", 268 "Communications", 840 "Surveillance", 16 "Technology Development", 320 "Navigation/Global Positioning", 133 "Communications", 288 "Technology Development", 381 "Navigation/Global Positioning", 605 "Earth Observation", 163 "Remote Sensing", 81 "Communications", 120 "Remote Sensing", 643 "Earth Science", 79 "Communications", 211 "Early Warning", 38 "Communications", 173 "Technology Development", 126 "Remote Sensing", 981 "Earth Observation", 1161 "Communications", 421 "Communications", 593 "Navigation", 636 "Technology Development", 1160 "Communications", 98 "Communications", 422 "Communications", 423 "Communications", 614 "Technology Development", 762 "Communications", 582 "Communications", 666 "Communications", 1123 "Communications", 554 "Communications", 409 "Navigation/Global Positioning", 574 "Communications", 595 "Technology Development", 124 "Technology Development", 747 "Communications", 171 "Technology Development", 87 "Communications", 169 "Earth Observation", 653 "Earth Science/Meteorology", 679 "Navigation/Global Positioning", 843 "Communications", 160 "Earth/Space Science", 30 "Communications/Technology Development", 400 "Navigation/Global Positioning", 767 "Communications", 896 "Electronic Surveillance/Ocean", 928 "Space Physics", 696 "Navigation/Global Positioning", 1027 "Communications", 738 "Communications", 809 "Technology Development", 509 "Communications", 736 "Scientific Research", 207 "Communications", 874 "Technology Development", 434 "Meteorology", 1130 "Remote Sensing", 690 "Navigation/Global Positioning", 194 "Earth Science/Meteorology", 1047 "Communications", 511 "Communications", 73 "Communications", 486 "Communications", 336 "Communications", 96 "Communications", 837 "Earth Observation", 1136 "Remote Sensing", 937 "Remote Sensing/Research", 10 "Electronic Surveillance", 660 "Communications", 272 "Communications", 499 "Communications", 488 "Communications", 903 "Communications", 386 "Navigation/Global Positioning", 270 "Communications", 576 "Communications", 717 "Communications", 543 "Communications", 271 "Communications", 18 "Technology Development", 395 "Navigation/Global Positioning", 403 "Navigation/Global Positioning", 469 "Communications", 105 "Technology Development", 185 "Communications", 52 "Communications", 1051 "Communications", 545 "Communications", 633 "Reconnaissance", 114 "Space Science", 1099 "Communications", 968 "Communications", 253 "Communications", 612 "Reconnaissance", 1151 "Technology Development", 1015 "Communications", 628 "Earth Science", 748 "Communications", 209 "Communications", 147 "Navigation/Global Positioning", 655 "Earth Science/Meteorology", 1022 "Communications", 750 "Communications", 852 "Communications", 425 "Earth Science", 1158 "Communications", 864 "Surveillance", 67 "Communications/Maritime Tracking", 1108 "Technology Development", 296 "Reconnaissance", 602 "Communications", 318 "Communications", 161 "Remote Sensing", 651 "Earth Science/Meteorology", 725 "Communications", 372 "Communications", 1092 "Communications", 406 "Navigation/Global Positioning", 438 "Reconnaissance", 780 "Reconnaissance", 711 "Earth Observation", 1041 "Communications", 71 "Communications", 939 "Remote Sensing/Research", 579 "Communications", 877 "Communications", 722 "Meteorology", 42 "Communications", 919 "Technology Development", 80 "Communications", 885 "Reconnaissance", 1078 "Scientific Research", 986 "Remote Sensing", 1035 "Communications", 714 "Communications", 677 "Navigation/Global Positioning", 199 "Technology Development", 841 "Communications", 754 "Communications", 791 "Navigation", 1029 "Reconnaissance", 861 "Space Physics", 591 "Communications", 1021 "Communications", 744 "Remote Sensing/Reconnaissance", 960 "Remote Sensing", 37 "Communications", 183 "Communications", 1139 "Remote Sensing", 965 "Technology Development", 892 "Electronic Surveillance/Ocean", 432 "Communications", 379 "Communications", 63 "Communications/Maritime Tracking", 212 "Early Warning", 94 "Communications", 362 "Communications", 8 "Electronic Surveillance", 686 "Navigation/Global Positioning", 692 "Navigation/Global Positioning", 764 "Communications", 246 "Communications", 190 "Communications", 1004 "Technology Development", 1036 "Remote Sensing", 549 "Communications", 922 "Technology Development", 177 "Technology Development", 915 "Communications", 936 "Remote Sensing", 820 "Navigation", 49 "Communications", 858 "Earth Observation/Research", 390 "Navigation/Global Positioning", 84 "Communications"}}, :Period_minutes #gensql.inference.gpm.column.Column{:var-name :Period_minutes, :stattype :gaussian, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 994.83, :sum-x-sq 989686.7289000001}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 3, :sum-x 5612.42, :sum-x-sq 1.04997867894E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1436.1, :sum-x-sq 2062383.2099999997}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1418.5, :sum-x-sq 2012142.25}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 4032.86, :sum-x-sq 1.6263959779600002E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 2474.83, :sum-x-sq 6124783.528899999}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 7, :sum-x 714.25, :sum-x-sq 72886.9235}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1148.43, :sum-x-sq 1318891.4649000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 15, :sum-x 10090.819999999998, :sum-x-sq 6841435.649800001}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 2, :sum-x 0.44, :sum-x-sq 0.0968}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 150.4, :sum-x-sq 22620.160000000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 4, :sum-x 204.32, :sum-x-sq 21539.183200000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 19700.45, :sum-x-sq 3.8810773020250005E8}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 2872.15, :sum-x-sq 8249245.6225000005}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 4, :sum-x 13721.58, :sum-x-sq 4.70707233284E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 278, :sum-x 28833.770000000037, :sum-x-sq 3010792.6209000032}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 1436.16, :sum-x-sq 2062555.5456000003}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 7, :sum-x 10051.05, :sum-x-sq 1.44319444681E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 1, :sum-x 3808.92, :sum-x-sq 1.45078715664E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 4, :sum-x 1151.73, :sum-x-sq 331620.4983}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 433, :sum-x 621493.6299999984, :sum-x-sq 8.92081397473701E8}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 29, :sum-x 2926.4, :sum-x-sq 296222.71359999996}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 294, :sum-x 28980.76999999998, :sum-x-sq 2860085.4782999987}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 72, :sum-x 51214.31999999999, :sum-x-sq 3.6561600499000005E7}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Period_minutes, :suff-stats {:n 2, :sum-x 475.15999999999997, :sum-x-sq 112900.2256}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}}}, :assignments {{:Period_minutes 101.0} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 1365.61} {:cluster_4 1}, {:Period_minutes 100.2} {:cluster_2 2}, {:Period_minutes 1436.06} {:cluster_4 20}, {:Period_minutes 107.1} {:cluster_2 3}, {:Period_minutes 716.4} {:cluster_23 1}, {:Period_minutes 1435.92} {:cluster_4 2}, {:Period_minutes 101.08} {:cluster_0 1}, {:Period_minutes 94.9} {:cluster_2 2}, {:Period_minutes 100.9} {:cluster_0 1, :cluster_2 4, :cluster_6 1}, {:Period_minutes 96.98} {:cluster_2 1}, {:Period_minutes 94.65} {:cluster_6 1}, {:Period_minutes 1436.16} {:cluster_4 3, :cluster_77 1}, {:Period_minutes 97.13} {:cluster_9 1}, {:Period_minutes 1435.88} {:cluster_4 1}, {:Period_minutes 235.16} {:cluster_74 1}, {:Period_minutes 97.56} {:cluster_2 1}, {:Period_minutes 115.6} {:cluster_6 2}, {:Period_minutes 3442.0} {:cluster_78 1}, {:Period_minutes 1435.94} {:cluster_4 1}, {:Period_minutes 106.27} {:cluster_6 1}, {:Period_minutes 1418.5} {:cluster_75 1}, {:Period_minutes 99.3} {:cluster_2 1}, {:Period_minutes 100.4} {:cluster_6 66, :cluster_2 3}, {:Period_minutes 98.1} {:cluster_2 5}, {:Period_minutes 107.13} {:cluster_6 1}, {:Period_minutes 107.5} {:cluster_6 1}, {:Period_minutes 1436.99} {:cluster_4 1}, {:Period_minutes 97.46} {:cluster_2 1}, {:Period_minutes 675.08} {:cluster_23 1}, {:Period_minutes 127.45} {:cluster_6 1}, {:Period_minutes 116.1} {:cluster_6 1}, {:Period_minutes 672.7} {:cluster_23 1}, {:Period_minutes 115.8} {:cluster_6 5}, {:Period_minutes 1427.91} {:cluster_4 1}, {:Period_minutes 675.39} {:cluster_23 1}, {:Period_minutes 717.91} {:cluster_23 2}, {:Period_minutes 109.5} {:cluster_2 1}, {:Period_minutes 101.1} {:cluster_2 1}, {:Period_minutes 1875.53} {:cluster_66 1}, {:Period_minutes 680.75} {:cluster_23 1}, {:Period_minutes 97.21} {:cluster_9 1}, {:Period_minutes 2474.83} {:cluster_93 1}, {:Period_minutes 104.9} {:cluster_6 1}, {:Period_minutes 95.5} {:cluster_6 2, :cluster_2 1}, {:Period_minutes 100.0} {:cluster_2 1}, {:Period_minutes 1439.41} {:cluster_4 1}, {:Period_minutes 1867.91} {:cluster_66 1}, {:Period_minutes 1435.04} {:cluster_4 1}, {:Period_minutes 98.37} {:cluster_2 1}, {:Period_minutes 104.7} {:cluster_6 1}, {:Period_minutes 1435.7} {:cluster_4 1}, {:Period_minutes 680.91} {:cluster_23 1}, {:Period_minutes 844.76} {:cluster_23 1}, {:Period_minutes 1436.07} {:cluster_4 29}, {:Period_minutes 113.9} {:cluster_6 1}, {:Period_minutes 1446.36} {:cluster_4 1}, {:Period_minutes 96.47} {:cluster_2 1}, {:Period_minutes 94.0} {:cluster_2 2}, {:Period_minutes 105.1} {:cluster_2 2}, {:Period_minutes 94.51} {:cluster_2 1}, {:Period_minutes 115.5} {:cluster_6 1}, {:Period_minutes 722.98} {:cluster_23 1}, {:Period_minutes 98.0} {:cluster_2 17, :cluster_6 1}, {:Period_minutes 14.36} {:cluster_3 1}, {:Period_minutes 240.0} {:cluster_74 1}, {:Period_minutes 98.8} {:cluster_2 11, :cluster_6 1}, {:Period_minutes 676.07} {:cluster_23 1}, {:Period_minutes 97.3} {:cluster_2 5, :cluster_6 3}, {:Period_minutes 94.53} {:cluster_2 1}, {:Period_minutes 1436.27} {:cluster_4 1}, {:Period_minutes 716.69} {:cluster_23 1}, {:Period_minutes 19700.45} {:cluster_73 1}, {:Period_minutes 97.73} {:cluster_2 1}, {:Period_minutes 681.53} {:cluster_23 1}, {:Period_minutes 118.2} {:cluster_6 1}, {:Period_minutes 97.54} {:cluster_2 1}, {:Period_minutes 675.2} {:cluster_23 1}, {:Period_minutes 102.1} {:cluster_6 2}, {:Period_minutes 103.44} {:cluster_6 1}, {:Period_minutes 287.94} {:cluster_59 1}, {:Period_minutes 112.58} {:cluster_6 1}, {:Period_minutes 717.96} {:cluster_23 1}, {:Period_minutes 677.54} {:cluster_23 1}, {:Period_minutes 3431.1} {:cluster_78 1}, {:Period_minutes 98.08} {:cluster_2 1}, {:Period_minutes 97.5} {:cluster_2 3, :cluster_6 3}, {:Period_minutes 98.7} {:cluster_2 7, :cluster_6 1}, {:Period_minutes 675.78} {:cluster_23 1}, {:Period_minutes 114.08} {:cluster_6 2}, {:Period_minutes 717.93} {:cluster_23 3}, {:Period_minutes 97.2} {:cluster_2 10, :cluster_6 1}, {:Period_minutes 107.12} {:cluster_2 1}, {:Period_minutes 96.01} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 97.1} {:cluster_2 6}, {:Period_minutes 98.5} {:cluster_2 4, :cluster_6 1}, {:Period_minutes 94.5} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 94.7} {:cluster_2 4}, {:Period_minutes 98.2} {:cluster_2 2, :cluster_9 1}, {:Period_minutes 101.89} {:cluster_2 1}, {:Period_minutes 41.2} {:cluster_6 1}, {:Period_minutes 97.0} {:cluster_6 2, :cluster_2 6, :cluster_9 2}, {:Period_minutes 98.6} {:cluster_2 7, :cluster_6 1}, {:Period_minutes 142.08} {:cluster_3 1}, {:Period_minutes 1435.93} {:cluster_85 1}, {:Period_minutes 96.1} {:cluster_2 1}, {:Period_minutes 1436.1} {:cluster_4 123, :cluster_32 1}, {:Period_minutes 1430.6} {:cluster_4 1}, {:Period_minutes 1439.76} {:cluster_4 1}, {:Period_minutes 1435.96} {:cluster_4 1}, {:Period_minutes 539.06} {:cluster_62 1}, {:Period_minutes 1868.98} {:cluster_66 1}, {:Period_minutes 680.43} {:cluster_23 1}, {:Period_minutes 1436.39} {:cluster_4 2}, {:Period_minutes 773.1} {:cluster_23 2}, {:Period_minutes 94.63} {:cluster_6 1}, {:Period_minutes 718.03} {:cluster_23 1}, {:Period_minutes 675.75} {:cluster_23 3}, {:Period_minutes 113.35} {:cluster_6 1}, {:Period_minutes 107.35} {:cluster_2 1}, {:Period_minutes 98.15} {:cluster_2 1}, {:Period_minutes 97.45} {:cluster_2 1}, {:Period_minutes 1436.01} {:cluster_4 2}, {:Period_minutes 99.8} {:cluster_6 5}, {:Period_minutes 94.37} {:cluster_2 3}, {:Period_minutes 287.93} {:cluster_59 3}, {:Period_minutes 718.0} {:cluster_23 2, :cluster_62 1}, {:Period_minutes 93.6} {:cluster_2 2}, {:Period_minutes 95.9} {:cluster_2 2}, {:Period_minutes 1434.1} {:cluster_4 1}, {:Period_minutes 93.4} {:cluster_2 1, :cluster_6 1}, {:Period_minutes 3418.2} {:cluster_78 1}, {:Period_minutes 718.01} {:cluster_23 1}, {:Period_minutes 95.6} {:cluster_6 2, :cluster_9 1}, {:Period_minutes 1436.24} {:cluster_4 2}, {:Period_minutes 675.81} {:cluster_23 2}, {:Period_minutes 844.69} {:cluster_23 1}, {:Period_minutes 676.38} {:cluster_23 1}, {:Period_minutes 98.35} {:cluster_2 1}, {:Period_minutes 98.9} {:cluster_2 2}, {:Period_minutes 99.4} {:cluster_2 1}, {:Period_minutes 994.83} {:cluster_80 1}, {:Period_minutes 4032.86} {:cluster_81 1}, {:Period_minutes 2872.15} {:cluster_94 1}, {:Period_minutes 96.0} {:cluster_9 1}, {:Period_minutes 720.65} {:cluster_23 1}, {:Period_minutes 92.62} {:cluster_6 1}, {:Period_minutes 101.9} {:cluster_2 2}, {:Period_minutes 93.5} {:cluster_2 1}, {:Period_minutes 671.2} {:cluster_23 1}, {:Period_minutes 1306.29} {:cluster_4 2}, {:Period_minutes 91.54} {:cluster_9 1}, {:Period_minutes 670.47} {:cluster_23 1}, {:Period_minutes 637.64} {:cluster_62 1}, {:Period_minutes 717.9} {:cluster_62 1}, {:Period_minutes 106.7} {:cluster_2 1}, {:Period_minutes 93.9} {:cluster_2 1, :cluster_6 1, :cluster_9 1}, {:Period_minutes 1436.21} {:cluster_4 3}, {:Period_minutes 97.8} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 92.8} {:cluster_6 1}, {:Period_minutes 675.83} {:cluster_23 1}, {:Period_minutes 704.3} {:cluster_62 1}, {:Period_minutes 114.1} {:cluster_6 38}, {:Period_minutes 103.6} {:cluster_6 1}, {:Period_minutes 718.07} {:cluster_23 1}, {:Period_minutes 1436.13} {:cluster_4 18}, {:Period_minutes 94.4} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 1434.6} {:cluster_4 1}, {:Period_minutes 1436.28} {:cluster_4 1}, {:Period_minutes 90.61} {:cluster_2 1}, {:Period_minutes 103.48} {:cluster_6 1}, {:Period_minutes 1435.95} {:cluster_4 1}, {:Period_minutes 102.8} {:cluster_2 1}, {:Period_minutes 1436.15} {:cluster_4 6}, {:Period_minutes 1436.57} {:cluster_4 1}, {:Period_minutes 96.85} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 102.2} {:cluster_6 1}, {:Period_minutes 113.96} {:cluster_6 1}, {:Period_minutes 724.28} {:cluster_23 1}, {:Period_minutes 94.36} {:cluster_2 1}, {:Period_minutes 94.58} {:cluster_6 1}, {:Period_minutes 93.91} {:cluster_2 1}, {:Period_minutes 671.71} {:cluster_23 1}, {:Period_minutes 1436.52} {:cluster_4 1}, {:Period_minutes 675.85} {:cluster_23 1}, {:Period_minutes 96.08} {:cluster_6 1}, {:Period_minutes 1434.03} {:cluster_4 1}, {:Period_minutes 96.8} {:cluster_2 1}, {:Period_minutes 101.2} {:cluster_2 3}, {:Period_minutes 100.53} {:cluster_2 1}, {:Period_minutes 114.7} {:cluster_6 1}, {:Period_minutes 95.43} {:cluster_2 1}, {:Period_minutes 101.87} {:cluster_2 1}, {:Period_minutes 94.85} {:cluster_2 1}, {:Period_minutes 1436.11} {:cluster_4 29}, {:Period_minutes 115.86} {:cluster_6 4}, {:Period_minutes 719.32} {:cluster_23 1}, {:Period_minutes 116.0} {:cluster_6 3}, {:Period_minutes 112.68} {:cluster_6 1}, {:Period_minutes 1439.15} {:cluster_4 1}, {:Period_minutes 96.56} {:cluster_2 1}, {:Period_minutes 3808.92} {:cluster_79 1}, {:Period_minutes 722.19} {:cluster_23 1}, {:Period_minutes 718.09} {:cluster_23 2}, {:Period_minutes 104.74} {:cluster_6 1}, {:Period_minutes 97.55} {:cluster_2 1}, {:Period_minutes 1440.31} {:cluster_4 1}, {:Period_minutes 717.97} {:cluster_23 4}, {:Period_minutes 105.0} {:cluster_6 2}, {:Period_minutes 23.94} {:cluster_3 2}, {:Period_minutes 106.93} {:cluster_2 2}, {:Period_minutes 114.0} {:cluster_6 4}, {:Period_minutes 102.89} {:cluster_0 1}, {:Period_minutes 106.33} {:cluster_6 1}, {:Period_minutes 114.9} {:cluster_2 1}, {:Period_minutes 1435.76} {:cluster_4 1}, {:Period_minutes 92.6} {:cluster_9 1}, {:Period_minutes 1432.0} {:cluster_4 1}, {:Period_minutes 101.4} {:cluster_2 4}, {:Period_minutes 99.2} {:cluster_9 1, :cluster_2 6}, {:Period_minutes 1436.03} {:cluster_4 5}, {:Period_minutes 717.94} {:cluster_23 1}, {:Period_minutes 1436.23} {:cluster_4 2}, {:Period_minutes 1437.78} {:cluster_4 1}, {:Period_minutes 773.21} {:cluster_23 1}, {:Period_minutes 97.44} {:cluster_2 1}, {:Period_minutes 100.87} {:cluster_9 1}, {:Period_minutes 718.04} {:cluster_62 1}, {:Period_minutes 684.0} {:cluster_62 2}, {:Period_minutes 1423.35} {:cluster_4 1}, {:Period_minutes 96.6} {:cluster_2 5}, {:Period_minutes 107.4} {:cluster_9 9}, {:Period_minutes 1435.1} {:cluster_85 1}, {:Period_minutes 99.5} {:cluster_2 1}, {:Period_minutes 1436.09} {:cluster_4 32}, {:Period_minutes 103.1} {:cluster_9 1}, {:Period_minutes 96.5} {:cluster_2 5}, {:Period_minutes 1435.82} {:cluster_85 1}, {:Period_minutes 773.39} {:cluster_23 1}, {:Period_minutes 103.11} {:cluster_0 1}, {:Period_minutes 1436.18} {:cluster_4 1}, {:Period_minutes 93.7} {:cluster_2 1}, {:Period_minutes 100.3} {:cluster_6 9, :cluster_2 2}, {:Period_minutes 773.19} {:cluster_23 1}, {:Period_minutes 92.81} {:cluster_6 2}, {:Period_minutes 115.9} {:cluster_2 1, :cluster_6 8}, {:Period_minutes 104.4} {:cluster_2 1}, {:Period_minutes 109.42} {:cluster_2 1}, {:Period_minutes 91.8} {:cluster_9 1}, {:Period_minutes 1438.2} {:cluster_4 1}, {:Period_minutes 98.73} {:cluster_2 1}, {:Period_minutes 101.94} {:cluster_2 1}, {:Period_minutes 677.46} {:cluster_23 1}, {:Period_minutes 98.45} {:cluster_2 2}, {:Period_minutes 645.98} {:cluster_62 1}, {:Period_minutes 94.34} {:cluster_6 1}, {:Period_minutes 95.4} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 98.03} {:cluster_2 1}, {:Period_minutes 3430.28} {:cluster_78 1}, {:Period_minutes 150.4} {:cluster_82 1}, {:Period_minutes 677.5} {:cluster_23 1}, {:Period_minutes 98.4} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 97.25} {:cluster_9 1}, {:Period_minutes 101.93} {:cluster_2 1}, {:Period_minutes 94.49} {:cluster_2 2}, {:Period_minutes 105.14} {:cluster_6 1}, {:Period_minutes 95.7} {:cluster_6 1}, {:Period_minutes 99.7} {:cluster_6 1, :cluster_2 2}, {:Period_minutes 1435.79} {:cluster_4 1}, {:Period_minutes 94.89} {:cluster_2 1}, {:Period_minutes 101.8} {:cluster_2 1}, {:Period_minutes 1436.0} {:cluster_4 9, :cluster_85 2}, {:Period_minutes 116.02} {:cluster_6 1}, {:Period_minutes 717.7} {:cluster_62 1}, {:Period_minutes 102.77} {:cluster_0 1}, {:Period_minutes 94.68} {:cluster_6 10}, {:Period_minutes 99.1} {:cluster_2 3}, {:Period_minutes 719.92} {:cluster_23 1}, {:Period_minutes 107.26} {:cluster_9 2}, {:Period_minutes 94.6} {:cluster_6 6}, {:Period_minutes 95.1} {:cluster_6 1}, {:Period_minutes 1436.19} {:cluster_4 3}, {:Period_minutes 97.99} {:cluster_2 1}, {:Period_minutes 101.5} {:cluster_2 3}, {:Period_minutes 846.98} {:cluster_23 1}, {:Period_minutes 98.43} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 98.3} {:cluster_6 1, :cluster_2 5}, {:Period_minutes 96.2} {:cluster_2 1}, {:Period_minutes 541.4} {:cluster_62 1}, {:Period_minutes 95.8} {:cluster_9 1}, {:Period_minutes 1435.22} {:cluster_4 1}, {:Period_minutes 1436.3} {:cluster_4 1}, {:Period_minutes 97.9} {:cluster_2 1, :cluster_6 2}, {:Period_minutes 101.3} {:cluster_2 7}, {:Period_minutes 114.2} {:cluster_6 2}, {:Period_minutes 99.0} {:cluster_2 1, :cluster_6 1}, {:Period_minutes 675.73} {:cluster_23 1}, {:Period_minutes 846.88} {:cluster_23 1}, {:Period_minutes 676.2} {:cluster_23 1}, {:Period_minutes 729.18} {:cluster_23 1}, {:Period_minutes 102.0} {:cluster_2 2, :cluster_9 1, :cluster_6 1}, {:Period_minutes 100.5} {:cluster_0 1}, {:Period_minutes 103.8} {:cluster_6 1}, {:Period_minutes 96.3} {:cluster_6 1, :cluster_2 1}, {:Period_minutes 96.43} {:cluster_2 1}, {:Period_minutes 1436.04} {:cluster_4 10}, {:Period_minutes 96.88} {:cluster_2 1}, {:Period_minutes 716.47} {:cluster_23 1}, {:Period_minutes 1446.57} {:cluster_4 1}, {:Period_minutes 676.1} {:cluster_23 2}, {:Period_minutes 109.4} {:cluster_2 2}, {:Period_minutes 1148.43} {:cluster_76 1}, {:Period_minutes nil} {:cluster_2 1, :cluster_4 1}, {:Period_minutes 94.66} {:cluster_6 1}, {:Period_minutes 97.48} {:cluster_2 2}, {:Period_minutes 97.17} {:cluster_2 1}, {:Period_minutes 100.7} {:cluster_6 18, :cluster_2 4}, {:Period_minutes 102.41} {:cluster_2 1}, {:Period_minutes 717.66} {:cluster_62 1}, {:Period_minutes 94.67} {:cluster_6 1}, {:Period_minutes 114.3} {:cluster_6 1}, {:Period_minutes 675.67} {:cluster_23 1}, {:Period_minutes 1435.52} {:cluster_4 1}, {:Period_minutes 109.51} {:cluster_2 1}, {:Period_minutes 1434.69} {:cluster_4 1}, {:Period_minutes 99.08} {:cluster_9 1}, {:Period_minutes 100.42} {:cluster_2 1}, {:Period_minutes 97.92} {:cluster_2 1}, {:Period_minutes 718.94} {:cluster_23 1}, {:Period_minutes 1436.05} {:cluster_4 7}, {:Period_minutes 112.4} {:cluster_6 1}, {:Period_minutes 96.34} {:cluster_2 1}, {:Period_minutes 103.0} {:cluster_0 1}, {:Period_minutes 709.61} {:cluster_62 1}, {:Period_minutes 1436.2} {:cluster_4 1}, {:Period_minutes 99.6} {:cluster_2 3}, {:Period_minutes 94.3} {:cluster_2 2, :cluster_6 1}, {:Period_minutes 94.1} {:cluster_2 1}, {:Period_minutes 95.97} {:cluster_2 1}, {:Period_minutes 94.8} {:cluster_2 5}, {:Period_minutes 100.8} {:cluster_2 1}, {:Period_minutes 1427.27} {:cluster_4 1}, {:Period_minutes 101.21} {:cluster_2 1}, {:Period_minutes 96.06} {:cluster_6 1}, {:Period_minutes 1436.14} {:cluster_4 5}, {:Period_minutes 94.84} {:cluster_2 1}, {:Period_minutes 93.75} {:cluster_2 1}, {:Period_minutes 97.4} {:cluster_2 5, :cluster_6 3}, {:Period_minutes 97.7} {:cluster_2 6}, {:Period_minutes 104.8} {:cluster_6 3}, {:Period_minutes 96.9} {:cluster_2 3, :cluster_6 1}, {:Period_minutes 107.0} {:cluster_2 1}, {:Period_minutes 675.61} {:cluster_23 1}, {:Period_minutes 101.45} {:cluster_2 1}, {:Period_minutes 98.46} {:cluster_2 1}, {:Period_minutes 717.95} {:cluster_23 1}, {:Period_minutes 637.65} {:cluster_62 1}, {:Period_minutes 675.62} {:cluster_23 1}, {:Period_minutes 0.22} {:cluster_92 2}, {:Period_minutes 1436.17} {:cluster_4 2}, {:Period_minutes 97.6} {:cluster_2 2, :cluster_6 3}, {:Period_minutes 1436.08} {:cluster_4 46, :cluster_85 1}, {:Period_minutes 1438.8} {:cluster_4 1}, {:Period_minutes 1436.12} {:cluster_4 33, :cluster_85 1}, {:Period_minutes 720.71} {:cluster_23 1}, {:Period_minutes 115.7} {:cluster_6 3}, {:Period_minutes 1436.8} {:cluster_4 1}, {:Period_minutes 717.88} {:cluster_62 1}, {:Period_minutes 717.98} {:cluster_23 1}}, :hyperparameters {:m 2038.6920689655174, :r 8.576329331046313E-4, :s 8858425.359318456, :nu 1165.9999999999998}, :hyper-grid {:m (0.22 657.0943333333333 1313.9686666666666 1970.8429999999998 2627.717333333333 3284.5916666666662 3941.4659999999994 4598.340333333333 5255.214666666666 5912.088999999999 6568.963333333332 7225.837666666665 7882.711999999999 8539.586333333333 9196.460666666666 9853.335 10510.209333333332 11167.083666666666 11823.957999999999 12480.832333333332 13137.706666666665 13794.580999999998 14451.455333333332 15108.329666666665 15765.203999999998 16422.07833333333 17078.952666666664 17735.826999999997 18392.70133333333 19049.575666666664 19706.449999999997 20363.32433333333), :r (8.576329331046313E-4 0.0013732449784346495 0.002198844864748113 0.003520798411904941 0.005637515249941187 0.009026809966130353 0.014453761019179565 0.023143414825770564 0.037057320173410464 0.059336316130216185 0.09500952565995888 0.15212959878265186 0.24359046806108064 0.3900379453112892 0.6245301796641137 1.0000000000000024 1.6012036448548046 2.563853112296305 4.105250948281168 6.573342781431434 10.525260420508005 16.853085348363386 26.985221686848497 43.208835322196634 69.18614460783213 110.78110691951214 177.38311218057225 284.02648575922035 454.7842442329639 728.2021894883578), :s (8858425.349318355 1.0328165686546758E7 1.2041757111716256E7 1.4039658032059647E7 1.6369039487218447E7 1.9084898871629328E7 2.2251358439493366E7 2.5943179250419714E7 3.0247526300454155E7 3.526602651376524E7 4.111716818478869E7 4.7939098522378355E7 5.589288534681975E7 6.516631994935038E7 7.597835090084021E7 8.858425349318428E7 1.0328165686546843E8 1.2041757111716355E8 1.4039658032059762E8 1.6369039487218583E8 1.9084898871629483E8 2.2251358439493546E8 2.594317925041993E8 3.02475263004544E8 3.5266026513765526E8 4.1117168184789026E8 4.793909852237875E8 5.589288534682021E8 6.51663199493509E8 7.597835090084083E8), :nu (1.0 1.265386757025219 1.6012036448548006 2.0261418874997768 2.563853112296299 3.2442657752576287 4.105250948281159 5.194730184220202 6.57334278143142 8.317820905010638 10.525260420507985 13.318525150352494 16.853085348363365 21.325671014834754 26.985221686848462 34.14674215792779 43.20883532219658 54.67588800319107 69.186144607832 87.54723115638235 110.78110691951184 140.1809456245451 177.38311218057163 224.45824107321408 284.0264857592191 359.4033537241277 454.7842442329615 575.4779599561122 728.2021894883533 921.4574070153311)}, :metadata {}, :data {0 100.42, 893 107.4, 920 98.7, 558 100.4, 453 96.9, 584 100.4, 487 1436.05, 637 100.9, 972 1436.1, 519 0.22, 1097 1436.1, 357 114.1, 716 1436.1, 950 1436.0, 275 1436.01, 530 100.4, 929 96.6, 789 105.0, 389 672.7, 586 100.4, 410 675.73, 433 1436.23, 765 100.7, 521 100.4, 451 97.9, 291 1436.19, 443 1436.08, 798 100.7, 779 94.6, 970 97.0, 249 1436.1, 638 97.45, 299 98.0, 1101 1436.1, 121 97.1, 734 1436.08, 287 94.49, 65 98.0, 1086 541.4, 702 717.93, 70 1436.08, 949 1436.1, 218 1436.07, 648 718.04, 1070 1436.1, 812 94.68, 62 97.0, 74 92.81, 774 100.3, 475 1436.13, 497 1436.21, 1009 93.9, 580 100.4, 1138 94.84, 891 107.4, 164 100.9, 1040 1436.1, 282 1436.1, 769 100.7, 799 99.2, 273 1436.06, 1147 107.1, 186 1436.1, 430 1436.1, 641 1436.1, 529 100.4, 898 99.7, 370 114.1, 834 98.3, 233 1423.35, 298 106.7, 188 1436.08, 240 98.8, 110 1436.09, 130 95.5, 982 1436.12, 620 1436.1, 311 1436.1, 931 96.6, 882 98.1, 128 97.4, 399 670.47, 989 100.4, 377 114.08, 468 1436.08, 259 1436.08, 210 1436.1, 229 1436.1, 153 773.19, 621 1436.12, 213 1436.14, 670 1436.1, 977 637.64, 343 114.1, 958 1436.1, 887 107.26, 472 1436.08, 7 1436.1, 894 107.4, 59 1436.08, 934 97.44, 473 1436.11, 1010 93.9, 86 1436.1, 756 100.7, 830 97.3, 613 1436.04, 491 1436.09, 154 773.21, 20 1436.06, 224 1436.06, 355 114.1, 592 97.5, 1146 109.4, 610 97.0, 806 96.98, 571 100.4, 466 684.0, 72 1436.06, 454 1436.07, 888 107.4, 463 nil, 851 115.86, 770 100.7, 814 94.68, 859 97.8, 58 1436.1, 964 97.4, 980 102.1, 1001 102.41, 205 1436.1, 555 100.4, 552 100.4, 60 99.4, 1102 1436.1, 835 97.0, 459 94.37, 175 98.0, 322 844.76, 510 1436.1, 1052 94.0, 1121 1436.07, 662 115.9, 27 96.06, 352 114.1, 493 1436.11, 899 99.8, 416 113.9, 777 100.3, 694 717.97, 1 1436.08, 631 97.9, 854 115.9, 69 1436.03, 101 1439.76, 24 96.2, 901 1436.03, 547 100.4, 102 1427.27, 788 104.74, 1106 94.5, 713 1436.08, 1110 100.5, 385 675.75, 988 94.66, 135 100.7, 1065 92.6, 397 675.85, 1011 94.0, 1006 1436.09, 773 100.3, 490 1436.12, 752 100.3, 354 114.1, 884 1436.11, 360 114.1, 998 115.6, 961 1436.09, 55 1436.08, 568 100.4, 797 105.0, 688 719.32, 763 100.7, 269 1436.07, 676 717.94, 448 94.53, 527 100.4, 206 1436.13, 1075 1436.11, 966 98.0, 165 100.9, 715 1436.08, 387 675.67, 652 1436.1, 683 717.91, 85 1436.04, 721 102.0, 862 100.4, 615 97.92, 681 717.97, 225 1436.13, 865 94.34, 297 107.0, 39 1436.1, 805 97.0, 274 1436.09, 88 1438.2, 217 97.0, 1128 94.4, 46 1436.12, 682 717.91, 508 1436.14, 1157 1436.05, 149 1436.12, 415 98.35, 239 98.8, 478 1436.09, 878 98.8, 157 1436.1, 345 114.1, 300 98.0, 743 95.97, 921 98.7, 1039 94.7, 4 1436.06, 550 100.4, 1115 1436.11, 204 1436.1, 470 1427.91, 1164 1436.1, 646 645.98, 77 1436.1, 106 96.01, 197 101.89, 405 676.2, 897 107.4, 726 1436.15, 776 100.3, 940 98.15, 755 100.7, 902 1436.13, 518 92.8, 232 98.1, 260 1436.09, 823 1435.79, 1125 1436.11, 267 1436.09, 119 98.8, 319 1436.11, 534 100.4, 222 1436.11, 603 1436.1, 293 101.5, 95 1436.07, 450 1436.1, 329 95.6, 144 1436.15, 1087 97.6, 504 1436.1, 819 93.6, 818 1436.09, 505 1436.07, 723 101.4, 1071 1436.1, 1008 95.7, 992 114.2, 176 102.89, 863 100.53, 471 1436.07, 349 114.1, 512 1436.07, 710 1436.1, 1058 1436.0, 192 99.2, 54 114.9, 92 1436.12, 221 1436.11, 141 98.8, 502 1436.09, 871 1436.1, 464 98.3, 801 99.3, 307 1436.07, 935 97.46, 758 100.7, 290 1436.04, 1156 97.5, 1144 94.9, 627 98.8, 517 1439.15, 1122 1436.1, 361 114.08, 264 1436.07, 137 1436.05, 356 114.1, 728 1436.08, 976 637.65, 678 717.97, 327 98.9, 234 98.43, 856 115.8, 817 96.9, 1017 98.0, 104 99.0, 353 114.1, 1145 97.7, 15 97.5, 48 1436.07, 945 1436.1, 759 100.7, 1066 709.61, 242 95.4, 832 98.4, 969 98.0, 50 1436.08, 956 1436.1, 917 1436.07, 1030 1436.13, 557 100.4, 251 1436.1, 394 675.62, 116 1365.61, 585 99.8, 583 100.4, 75 1436.12, 437 98.0, 516 1436.11, 1062 1436.07, 994 115.7, 930 96.5, 967 100.0, 687 718.0, 159 1436.11, 848 115.9, 995 115.7, 1096 97.48, 1159 1435.92, 709 97.6, 99 105.1, 540 100.4, 645 1436.12, 749 1436.08, 479 1436.08, 1081 717.66, 890 107.4, 1046 101.4, 630 97.5, 916 1436.1, 815 94.68, 1080 1436.39, 281 1436.1, 402 671.2, 669 1436.1, 781 94.6, 740 287.93, 1012 96.3, 975 0.22, 429 1436.1, 309 1436.07, 458 94.37, 21 1436.09, 388 680.91, 495 1436.39, 952 1436.12, 626 99.08, 875 98.4, 31 98.2, 113 1436.09, 32 1436.1, 811 94.68, 827 97.3, 407 677.5, 398 675.81, 136 96.43, 691 717.96, 847 116.0, 825 1436.13, 139 98.0, 506 1436.08, 396 681.53, 460 96.47, 483 4032.86, 589 99.8, 581 100.4, 932 96.6, 174 98.6, 578 100.4, 855 115.8, 331 2474.83, 363 114.1, 1038 95.9, 284 1430.6, 208 1436.1, 305 97.4, 1019 3442.0, 955 1436.15, 796 103.6, 708 100.4, 182 98.5, 256 1436.04, 1107 100.2, 1109 91.54, 657 1436.13, 514 1436.07, 1103 1436.1, 731 1436.08, 619 94.6, 985 1437.78, 485 1436.08, 214 1436.12, 193 101.93, 685 718.94, 804 98.45, 869 1436.08, 1002 112.68, 1104 19700.45, 836 101.3, 1131 109.5, 785 1436.09, 635 1436.09, 442 106.27, 1073 1435.22, 561 100.4, 954 1436.06, 656 1436.16, 607 1436.13, 241 98.8, 314 1436.1, 782 99.5, 226 1436.11, 235 98.46, 672 1436.1, 420 115.9, 418 114.0, 262 1436.07, 1016 235.16, 263 1436.21, 304 101.0, 401 675.81, 673 97.9, 40 1436.1, 129 103.11, 600 1436.09, 729 1436.12, 1042 1436.3, 467 97.3, 1033 1436.09, 1149 107.1, 445 1435.95, 317 1436.06, 1091 94.3, 1028 1436.11, 294 101.45, 91 1436.11, 1044 1867.91, 810 94.68, 1137 105.14, 364 114.1, 987 97.73, 880 97.8, 515 1436.1, 412 1436.0, 553 100.4, 974 1436.1, 341 114.1, 117 1436.04, 1000 96.88, 1095 98.43, 665 98.3, 523 100.4, 172 97.8, 601 1436.1, 108 94.8, 156 773.1, 358 114.1, 308 1436.07, 908 98.1, 649 101.3, 531 100.4, 1085 539.06, 923 98.08, 1111 94.51, 223 1436.57, 419 116.1, 365 114.1, 944 98.6, 181 96.8, 417 114.0, 1082 717.9, 979 98.73, 278 1436.11, 56 1436.1, 942 1436.06, 33 1436.08, 13 1306.29, 1043 1868.98, 867 94.4, 22 1436.07, 618 95.5, 1141 97.2, 1093 1436.1, 380 675.78, 257 1436.1, 1061 97.1, 338 114.1, 1024 1436.99, 500 1436.09, 909 97.0, 1018 94.8, 993 115.7, 1089 94.6, 168 97.2, 833 1436.1, 496 1436.11, 1056 1436.08, 1129 94.8, 947 1148.43, 347 114.1, 501 1436.12, 1007 1436.12, 1077 98.0, 596 112.4, 872 1436.1, 792 104.8, 90 1436.12, 237 98.45, 826 109.42, 292 101.5, 109 94.7, 216 96.56, 191 1436.1, 498 1436.1, 829 97.3, 761 100.7, 1072 1436.12, 375 113.35, 525 99.0, 367 114.1, 143 1436.08, 742 96.1, 178 97.1, 640 1436.12, 247 1436.09, 328 95.6, 391 675.2, 990 114.3, 167 97.2, 707 718.07, 36 1436.09, 41 1436.1, 474 1436.1, 187 1436.09, 551 100.4, 1118 1436.06, 996 115.6, 528 100.4, 971 1436.1, 599 1436.03, 376 103.44, 195 101.8, 889 107.4, 316 1436.11, 668 94.9, 428 1436.07, 303 102.8, 671 1436.1, 794 103.8, 905 718.0, 368 114.1, 560 100.4, 565 100.4, 310 1436.07, 366 114.1, 118 96.85, 522 100.4, 150 1435.93, 886 107.26, 313 1436.1, 384 675.75, 567 100.4, 238 98.4, 846 115.9, 962 240.0, 1127 97.7, 845 116.0, 196 101.87, 162 100.9, 393 676.07, 184 1436.1, 219 1436.0, 999 102.77, 461 94.89, 1032 1436.13, 89 1434.1, 100 1436.06, 426 93.4, 604 1436.12, 477 1436.1, 844 115.8, 541 100.4, 351 114.0, 243 94.8, 131 3808.92, 790 104.9, 963 97.5, 1053 91.8, 629 97.2, 873 99.2, 122 100.3, 933 95.9, 43 1436.08, 1067 102.0, 231 1436.1, 61 100.3, 654 101.3, 883 1436.11, 1003 112.58, 598 1436.11, 413 1436.14, 29 98.0, 784 1436.13, 800 94.68, 151 1435.1, 369 114.1, 348 114.1, 1124 1435.76, 575 100.4, 693 718.09, 44 1436.1, 739 287.94, 258 1436.06, 250 1436.12, 674 97.3, 539 100.4, 301 94.68, 838 93.9, 424 116.02, 93 1436.1, 6 1436.14, 684 718.01, 1026 1436.04, 951 1436.16, 573 100.4, 408 677.54, 563 100.4, 850 115.9, 616 98.5, 866 94.3, 111 1436.11, 997 115.5, 689 716.47, 28 150.4, 456 96.9, 374 114.1, 608 100.87, 737 287.93, 1155 97.4, 548 100.4, 538 100.4, 1034 1436.1, 895 107.5, 411 1436.0, 957 1436.1, 134 98.5, 943 1436.52, 64 97.8, 623 94.58, 1135 107.12, 1133 106.93, 465 684.0, 816 94.68, 334 114.1, 1150 101.2, 323 844.69, 189 1436.1, 280 1436.1, 198 101.94, 155 773.1, 295 95.6, 808 101.21, 248 1436.09, 587 100.4, 285 95.4, 507 1436.08, 227 1436.12, 724 94.63, 476 1436.1, 941 98.6, 911 1436.19, 853 115.86, 494 1436.03, 220 1436.1, 842 115.9, 103 1436.1, 697 724.28, 611 97.0, 1105 99.2, 170 99.2, 1154 96.3, 51 1436.1, 25 97.2, 261 1436.08, 768 100.7, 822 127.45, 201 98.8, 904 717.7, 590 100.4, 489 1436.19, 778 94.6, 166 97.2, 447 97.7, 34 1436.05, 252 1436.06, 978 101.4, 775 100.3, 325 1436.1, 1005 1436.1, 594 101.3, 436 97.1, 828 97.3, 535 100.4, 813 94.68, 146 1436.1, 741 99.2, 1060 97.0, 876 98.7, 1064 98.1, 228 1436.07, 907 23.94, 306 1436.11, 125 97.1, 276 101.2, 340 114.1, 148 1436.11, 1143 93.5, 482 1436.11, 1049 1436.1, 622 90.61, 588 100.4, 17 98.0, 312 1436.1, 606 1436.08, 3 1436.1, 1148 107.1, 520 98.3, 1088 1436.1, 760 100.7, 720 101.9, 1126 97.2, 286 97.54, 279 1436.1, 879 98.6, 1020 1436.04, 536 100.4, 1023 1436.06, 663 101.2, 12 1306.29, 440 95.5, 332 98.8, 330 98.3, 1162 1436.1, 382 675.39, 152 773.39, 1112 1436.1, 1140 97.7, 544 100.4, 803 98.7, 642 1434.6, 435 104.4, 342 114.1, 703 722.19, 783 1436.1, 695 718.03, 973 1436.1, 2 1436.13, 948 994.83, 66 97.17, 484 1436.08, 439 1436.08, 236 98.43, 556 100.4, 373 114.1, 1083 704.3, 142 1436.05, 359 114.1, 727 1436.08, 371 118.2, 772 100.9, 444 1436.11, 1057 1436.1, 570 100.4, 757 100.7, 107 98.6, 1094 1434.69, 532 100.4, 984 1436.1, 23 95.1, 1079 97.0, 745 93.91, 719 101.0, 230 1436.08, 625 97.21, 47 1436.08, 526 100.4, 180 98.0, 786 1436.12, 1068 100.3, 1166 94.7, 870 1436.08, 537 100.4, 659 1435.04, 158 1436.1, 991 114.2, 350 114.1, 35 1436.1, 1116 2872.15, 849 115.9, 1120 1435.92, 644 1436.13, 1069 1436.06, 881 99.1, 127 97.4, 927 96.5, 675 1436.04, 1055 94.5, 383 675.75, 533 100.4, 1100 1436.1, 910 1436.1, 302 1436.13, 564 100.4, 701 717.95, 1090 102.1, 566 100.4, 821 100.7, 787 98.6, 82 1436.13, 76 1436.07, 735 97.2, 492 1436.01, 718 1436.09, 771 100.7, 215 98.2, 97 1436.11, 704 717.93, 277 1436.06, 926 96.5, 751 1436.04, 1114 1436.13, 19 1436.08, 335 114.1, 597 1436.1, 938 100.7, 57 1436.08, 609 97.13, 202 1436.12, 68 1436.21, 452 95.8, 1054 94.5, 200 98.8, 1142 97.7, 868 94.37, 11 1446.36, 115 1436.1, 946 1418.5, 1063 98.6, 983 1436.0, 339 114.1, 431 1436.07, 462 94.85, 337 114.1, 698 718.09, 255 1434.03, 503 1436.08, 546 100.4, 9 nil, 953 1436.07, 857 3431.1, 706 716.4, 632 1436.1, 457 94.36, 427 98.1, 145 1436.05, 5 98.6, 733 1436.17, 1163 1436.09, 1165 100.2, 1152 94.4, 624 98.2, 831 97.3, 244 101.08, 918 98.7, 824 1436.06, 289 1436.0, 112 1436.07, 925 96.5, 1059 93.7, 730 1436.12, 699 720.71, 712 98.3, 1076 1435.94, 1113 1436.09, 414 1436.08, 839 95.4, 802 92.81, 1084 97.6, 860 3418.2, 1117 101.1, 179 103.0, 344 114.1, 481 1436.08, 732 1436.11, 661 1436.13, 245 98.03, 378 103.48, 913 1436.1, 906 14.36, 658 1436.13, 266 1436.08, 324 97.56, 793 104.7, 1134 106.33, 1132 106.93, 1014 1436.06, 680 716.69, 446 97.7, 524 100.4, 254 1436.09, 404 675.61, 1025 1435.7, 617 98.5, 283 1446.57, 1153 93.6, 513 1436.12, 572 100.4, 705 719.92, 1098 1436.12, 959 1436.24, 1074 1436.12, 83 1436.15, 634 1436.8, 138 97.4, 1050 1436.07, 346 114.1, 14 97.4, 455 1436.14, 265 1436.12, 449 94.65, 333 114.0, 650 1436.15, 639 98.0, 569 100.4, 326 1436.16, 746 98.7, 647 717.88, 45 1436.1, 53 1436.08, 559 100.4, 78 1436.11, 1037 1436.11, 924 96.85, 562 100.4, 1119 109.4, 542 100.4, 912 1439.41, 664 101.4, 1048 1436.1, 315 1436.08, 1031 1436.1, 914 1436.12, 480 1436.1, 132 1436.1, 753 100.3, 900 97.6, 1013 99.1, 26 96.9, 766 100.7, 123 97.1, 203 1436.12, 667 1436.09, 392 676.1, 1045 1875.53, 577 100.4, 807 99.2, 140 98.0, 321 846.88, 795 104.8, 441 98.4, 700 720.65, 268 1436.28, 840 41.2, 16 97.6, 320 846.98, 133 99.6, 288 94.49, 381 676.1, 605 102.0, 163 98.9, 81 1436.08, 120 94.7, 643 102.2, 79 1436.17, 211 1436.27, 38 1436.08, 173 101.3, 126 97.4, 981 97.2, 1161 1436.05, 421 115.86, 593 1436.0, 636 105.1, 1160 1436.13, 98 1436.08, 422 115.9, 423 116.0, 614 1436.1, 762 100.7, 582 100.4, 666 1436.09, 1123 1436.06, 554 100.4, 409 676.38, 574 99.8, 595 99.1, 124 94.67, 747 1436.08, 171 97.55, 87 1436.03, 169 97.2, 653 1436.0, 679 717.97, 843 115.8, 160 101.5, 30 1436.09, 400 675.08, 767 100.7, 896 107.4, 928 96.6, 696 722.98, 1027 1436.2, 738 287.93, 809 94.68, 509 1436.12, 736 97.48, 207 1436.12, 874 99.6, 434 100.7, 1130 94.1, 690 717.98, 194 101.9, 1047 1436.07, 511 1436.16, 73 1436.09, 486 1436.1, 336 114.1, 96 1436.07, 837 96.0, 1136 107.13, 937 100.8, 10 23.94, 660 1436.12, 272 1436.06, 499 1436.1, 488 1436.12, 903 1436.1, 386 675.83, 270 1436.1, 576 100.4, 717 1436.1, 543 100.4, 271 1436.1, 18 98.0, 395 671.71, 403 680.43, 469 1436.1, 105 96.01, 185 1436.04, 52 1432.0, 1051 1436.1, 545 100.4, 633 103.1, 114 99.6, 1099 1436.1, 968 98.0, 253 1436.1, 612 97.25, 1151 115.8, 1015 1436.09, 628 98.8, 748 1436.12, 209 1436.11, 147 1435.82, 655 101.3, 1022 1435.88, 750 1436.1, 852 115.86, 425 93.4, 1158 1436.24, 864 94.3, 67 97.99, 1108 97.3, 296 107.35, 602 1435.52, 318 1436.1, 161 100.9, 651 1435.96, 725 1436.1, 372 114.1, 1092 1436.09, 406 677.46, 438 98.37, 780 92.62, 711 98.7, 1041 1436.1, 71 1440.31, 939 99.7, 579 100.4, 877 98.5, 722 102.0, 42 1436.1, 919 98.7, 80 1436.15, 885 95.43, 1078 99.7, 986 94.6, 1035 1436.1, 714 1436.23, 677 717.93, 199 96.08, 841 114.7, 754 100.3, 791 104.8, 1029 94.5, 861 3430.28, 591 99.8, 1021 1436.18, 744 93.75, 960 96.34, 37 1436.07, 183 1436.1, 1139 109.51, 965 98.0, 892 107.4, 432 1436.0, 379 113.96, 63 97.5, 212 142.08, 94 1436.12, 362 114.1, 8 1438.8, 686 729.18, 692 718.0, 764 100.7, 246 1436.06, 190 1436.1, 1004 97.2, 1036 94.8, 549 100.4, 922 96.5, 177 101.3, 915 1436.09, 936 96.6, 820 1436.0, 49 1436.08, 858 98.8, 390 680.75, 84 1436.08}}, :Inclination_radians #gensql.inference.gpm.column.Column{:var-name :Inclination_radians, :stattype :gaussian, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.106538746, :sum-x-sq 1.2244279963992526}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 3, :sum-x 0.8220500789999999, :sum-x-sq 0.2252554441279687}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 25.06467339, :sum-x-sq 628.237852147374}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.104793417, :sum-x-sq 1.2205684942465358}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.90931654, :sum-x-sq 0.8268565699175715}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.389208423, :sum-x-sq 0.15148319653414694}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 7, :sum-x 9.280788296999999, :sum-x-sq 12.371801612999668}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.104793417, :sum-x-sq 1.2205684942465358}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 15, :sum-x 12.484514672000001, :sum-x-sq 13.304584078471652}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 2, :sum-x 1.090132651, :sum-x-sq 0.843525723012567}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 1.310742268, :sum-x-sq 1.718045293121784}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 4, :sum-x 0.24277529799999997, :sum-x-sq 0.019788221595664644}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.500909495, :sum-x-sq 0.25091032218115505}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.670206433, :sum-x-sq 0.4491766628345836}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 4, :sum-x 6.330309198, :sum-x-sq 10.01821810490022}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 278, :sum-x 322.3104765720005, :sum-x-sq 416.25948293448715}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 3.49066E-4, :sum-x-sq 1.21847072356E-7}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 7, :sum-x 6.705205920000001, :sum-x-sq 7.250594174978519}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 1, :sum-x 0.497418837, :sum-x-sq 0.24742549940243258}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 4, :sum-x 0.0022689290000000003, :sum-x-sq 1.309856027827E-6}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 432, :sum-x 7.324448773000023, :sum-x-sq 1.113137483626897}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 29, :sum-x 33.376105822, :sum-x-sq 41.88670772965639}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 294, :sum-x 501.9291166370006, :sum-x-sq 865.5088320398081}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 72, :sum-x 74.38418739100004, :sum-x-sq 77.36889640089734}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.gaussian.Gaussian{:var-name :Inclination_radians, :suff-stats {:n 2, :sum-x 2.2172662819999998, :sum-x-sq 2.4581436556278837}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}}}, :assignments {{:Inclination_radians 1.774999849} {:cluster_2 1}, {:Inclination_radians 0.043633231} {:cluster_6 1}, {:Inclination_radians 1.734857276} {:cluster_2 1}, {:Inclination_radians 1.724385301} {:cluster_2 4}, {:Inclination_radians 0.050440015} {:cluster_4 1}, {:Inclination_radians 0.037699112} {:cluster_4 1}, {:Inclination_radians 0.954346035} {:cluster_23 1}, {:Inclination_radians 1.684242728} {:cluster_2 1}, {:Inclination_radians 0.191986218} {:cluster_92 1}, {:Inclination_radians 1.21300383} {:cluster_0 2}, {:Inclination_radians 1.256113463} {:cluster_2 2}, {:Inclination_radians 0.359537826} {:cluster_6 1}, {:Inclination_radians 1.74533E-4} {:cluster_4 59}, {:Inclination_radians 0.759218225} {:cluster_9 1}, {:Inclination_radians 25.06467339} {:cluster_32 1}, {:Inclination_radians 2.103121749} {:cluster_2 1}, {:Inclination_radians 1.699950691} {:cluster_2 8}, {:Inclination_radians 0.907396678} {:cluster_6 1}, {:Inclination_radians 0.070162236} {:cluster_4 1}, {:Inclination_radians 0.785398163} {:cluster_6 25}, {:Inclination_radians 1.70344135} {:cluster_2 7}, {:Inclination_radians 0.009599311} {:cluster_4 1}, {:Inclination_radians 1.221730476} {:cluster_6 1}, {:Inclination_radians 1.401150324} {:cluster_0 1}, {:Inclination_radians 0.024609142} {:cluster_4 1}, {:Inclination_radians 1.099557429} {:cluster_9 2, :cluster_62 1}, {:Inclination_radians 2.474527813} {:cluster_2 1}, {:Inclination_radians 0.74700092} {:cluster_9 1}, {:Inclination_radians 1.128529894} {:cluster_23 1}, {:Inclination_radians 1.712691595} {:cluster_2 2}, {:Inclination_radians 1.106713279} {:cluster_2 1}, {:Inclination_radians 1.448623279} {:cluster_6 6}, {:Inclination_radians 0.00418879} {:cluster_4 1}, {:Inclination_radians 1.289798317} {:cluster_6 1}, {:Inclination_radians 0.226892803} {:cluster_6 1}, {:Inclination_radians 0.185004901} {:cluster_4 1}, {:Inclination_radians 0.001047198} {:cluster_4 28}, {:Inclination_radians 0.038222711} {:cluster_4 1}, {:Inclination_radians 0.084648469} {:cluster_4 1}, {:Inclination_radians 2.09963109} {:cluster_2 10, :cluster_6 1}, {:Inclination_radians 0.907745744} {:cluster_6 3}, {:Inclination_radians 0.134739418} {:cluster_4 1}, {:Inclination_radians 0.16406095} {:cluster_4 1}, {:Inclination_radians 0.058293997} {:cluster_4 1}, {:Inclination_radians 1.109331273} {:cluster_62 1}, {:Inclination_radians 1.130973355} {:cluster_23 8, :cluster_6 1, :cluster_2 1}, {:Inclination_radians 0.001396263} {:cluster_4 13}, {:Inclination_radians 0.032637657} {:cluster_4 1}, {:Inclination_radians 0.104719755} {:cluster_6 1}, {:Inclination_radians 1.74881991} {:cluster_2 1}, {:Inclination_radians 1.724559834} {:cluster_2 1}, {:Inclination_radians 0.043807764} {:cluster_4 1}, {:Inclination_radians 2.502802147} {:cluster_2 1}, {:Inclination_radians 0.044854962} {:cluster_4 1}, {:Inclination_radians 0.004014257} {:cluster_4 1}, {:Inclination_radians 0.139102741} {:cluster_4 1}, {:Inclination_radians 1.441641962} {:cluster_6 3}, {:Inclination_radians 1.047197551} {:cluster_62 1}, {:Inclination_radians 1.186823891} {:cluster_9 1}, {:Inclination_radians 1.106538746} {:cluster_9 10, :cluster_2 3, :cluster_74 1, :cluster_6 1, :cluster_62 1, :cluster_80 1}, {:Inclination_radians 0.015707963} {:cluster_4 1}, {:Inclination_radians 1.722639972} {:cluster_2 11}, {:Inclination_radians 0.071733032} {:cluster_4 1}, {:Inclination_radians 0.144338729} {:cluster_4 1}, {:Inclination_radians 1.439896633} {:cluster_6 28, :cluster_2 1}, {:Inclination_radians 0.34906585} {:cluster_6 4}, {:Inclination_radians 1.291543646} {:cluster_6 1}, {:Inclination_radians 1.614255025} {:cluster_6 1}, {:Inclination_radians 1.131496954} {:cluster_23 1}, {:Inclination_radians 1.721418241} {:cluster_2 1}, {:Inclination_radians 0.066147979} {:cluster_4 1}, {:Inclination_radians 0.122173048} {:cluster_4 1}, {:Inclination_radians 1.711295332} {:cluster_2 1}, {:Inclination_radians 1.584758961} {:cluster_78 1}, {:Inclination_radians 0.005235988} {:cluster_4 2}, {:Inclination_radians 1.717403984} {:cluster_2 5, :cluster_6 1}, {:Inclination_radians 1.131671487} {:cluster_23 2}, {:Inclination_radians 1.727875959} {:cluster_2 2}, {:Inclination_radians 0.001570796} {:cluster_4 9}, {:Inclination_radians 0.020769418} {:cluster_4 1}, {:Inclination_radians 1.682497399} {:cluster_85 1}, {:Inclination_radians 0.105766953} {:cluster_4 1}, {:Inclination_radians 0.95644043} {:cluster_23 3}, {:Inclination_radians 6.98132E-4} {:cluster_4 32, :cluster_59 1}, {:Inclination_radians 0.500909495} {:cluster_73 1}, {:Inclination_radians 1.219985147} {:cluster_9 1}, {:Inclination_radians 5.23599E-4} {:cluster_4 41, :cluster_59 3}, {:Inclination_radians 0.961676418} {:cluster_23 3}, {:Inclination_radians 1.130275224} {:cluster_23 1}, {:Inclination_radians 1.509709803} {:cluster_6 2}, {:Inclination_radians 0.965865208} {:cluster_23 1}, {:Inclination_radians 0.0} {:cluster_4 20, :cluster_3 1}, {:Inclination_radians nil} {:cluster_2 1, :cluster_4 2}, {:Inclination_radians 0.017453293} {:cluster_4 1}, {:Inclination_radians 0.907222145} {:cluster_6 2}, {:Inclination_radians 1.713215194} {:cluster_2 2, :cluster_6 1}, {:Inclination_radians 0.959232957} {:cluster_23 1}, {:Inclination_radians 0.954171502} {:cluster_23 1}, {:Inclination_radians 0.056374135} {:cluster_4 1}, {:Inclination_radians 1.095892237} {:cluster_62 1}, {:Inclination_radians 1.169370599} {:cluster_6 1}, {:Inclination_radians 0.900589894} {:cluster_6 1}, {:Inclination_radians 0.706858347} {:cluster_6 7}, {:Inclination_radians 0.01134464} {:cluster_4 1}, {:Inclination_radians 0.002443461} {:cluster_4 2}, {:Inclination_radians 0.104545222} {:cluster_4 2}, {:Inclination_radians 1.527163095} {:cluster_2 1}, {:Inclination_radians 1.710248134} {:cluster_2 3}, {:Inclination_radians 0.052185345} {:cluster_4 1}, {:Inclination_radians 1.308647873} {:cluster_2 1}, {:Inclination_radians 1.719149313} {:cluster_2 7}, {:Inclination_radians 1.09606677} {:cluster_62 4}, {:Inclination_radians 0.548033385} {:cluster_6 1}, {:Inclination_radians 1.713913325} {:cluster_2 25, :cluster_6 1}, {:Inclination_radians 0.148352986} {:cluster_6 1}, {:Inclination_radians 1.09484504} {:cluster_62 1}, {:Inclination_radians 1.720196511} {:cluster_2 1}, {:Inclination_radians 0.973544657} {:cluster_23 1}, {:Inclination_radians 1.714087858} {:cluster_2 3, :cluster_6 1}, {:Inclination_radians 1.705186679} {:cluster_2 14}, {:Inclination_radians 1.729621289} {:cluster_2 2}, {:Inclination_radians 0.044331363} {:cluster_4 1}, {:Inclination_radians 0.060213859} {:cluster_4 1}, {:Inclination_radians 1.696460033} {:cluster_2 3, :cluster_9 1}, {:Inclination_radians 3.49066E-4} {:cluster_4 48, :cluster_6 1, :cluster_77 1}, {:Inclination_radians 0.080110613} {:cluster_4 1}, {:Inclination_radians 1.753706832} {:cluster_2 1}, {:Inclination_radians 0.962723615} {:cluster_23 1, :cluster_85 1}, {:Inclination_radians 1.127482697} {:cluster_6 8}, {:Inclination_radians 0.103672558} {:cluster_4 1}, {:Inclination_radians 2.14675498} {:cluster_2 2}, {:Inclination_radians 0.05253441} {:cluster_4 1}, {:Inclination_radians 1.605702912} {:cluster_2 1}, {:Inclination_radians 0.716108592} {:cluster_6 1}, {:Inclination_radians 0.024958208} {:cluster_4 1}, {:Inclination_radians 0.023911011} {:cluster_4 1}, {:Inclination_radians 1.413542161} {:cluster_0 1}, {:Inclination_radians 0.007330383} {:cluster_4 1}, {:Inclination_radians 0.034382986} {:cluster_4 1}, {:Inclination_radians 0.08709193} {:cluster_4 1}, {:Inclination_radians 1.128355361} {:cluster_23 1}, {:Inclination_radians 1.710422667} {:cluster_2 13}, {:Inclination_radians 0.249582083} {:cluster_4 1}, {:Inclination_radians 0.113446401} {:cluster_4 1}, {:Inclination_radians 1.107760476} {:cluster_6 1}, {:Inclination_radians 0.670206433} {:cluster_94 1}, {:Inclination_radians 0.031939525} {:cluster_4 1}, {:Inclination_radians 0.002094395} {:cluster_4 4}, {:Inclination_radians 0.274016693} {:cluster_66 3}, {:Inclination_radians 0.003316126} {:cluster_4 2}, {:Inclination_radians 0.019547688} {:cluster_4 1}, {:Inclination_radians 0.002268928} {:cluster_4 4}, {:Inclination_radians 0.012915436} {:cluster_4 1}, {:Inclination_radians 1.128704427} {:cluster_23 1}, {:Inclination_radians 0.994837674} {:cluster_9 1}, {:Inclination_radians 0.031066861} {:cluster_4 1}, {:Inclination_radians 1.72316357} {:cluster_2 1}, {:Inclination_radians 0.085695666} {:cluster_3 1}, {:Inclination_radians 1.293288976} {:cluster_6 1}, {:Inclination_radians 0.960280154} {:cluster_23 1}, {:Inclination_radians 0.033510322} {:cluster_62 1}, {:Inclination_radians 0.963421747} {:cluster_85 1}, {:Inclination_radians 1.507964474} {:cluster_6 67}, {:Inclination_radians 0.959931089} {:cluster_23 11}, {:Inclination_radians 0.031415927} {:cluster_4 1}, {:Inclination_radians 1.75056524} {:cluster_2 2}, {:Inclination_radians 1.413716694} {:cluster_0 2}, {:Inclination_radians 0.052359878} {:cluster_4 1}, {:Inclination_radians 0.006108652} {:cluster_4 1}, {:Inclination_radians 0.004886922} {:cluster_4 1}, {:Inclination_radians 0.958883891} {:cluster_23 1}, {:Inclination_radians 0.157079633} {:cluster_6 1}, {:Inclination_radians 0.019024089} {:cluster_4 1}, {:Inclination_radians 0.175231057} {:cluster_62 1}, {:Inclination_radians 1.702394152} {:cluster_2 1}, {:Inclination_radians 0.00122173} {:cluster_4 27}, {:Inclination_radians 1.110727536} {:cluster_74 1}, {:Inclination_radians 1.132369619} {:cluster_6 2}, {:Inclination_radians 1.715658655} {:cluster_9 1, :cluster_2 5}, {:Inclination_radians 1.212654764} {:cluster_0 1}, {:Inclination_radians 1.506219144} {:cluster_6 1}, {:Inclination_radians 0.014660766} {:cluster_4 1}, {:Inclination_radians 1.700997889} {:cluster_2 1}, {:Inclination_radians 0.841248699} {:cluster_6 1}, {:Inclination_radians 0.035604717} {:cluster_4 1}, {:Inclination_radians 0.085870199} {:cluster_3 1}, {:Inclination_radians 0.898146433} {:cluster_92 1}, {:Inclination_radians 1.711644397} {:cluster_2 1}, {:Inclination_radians 1.698205362} {:cluster_2 6}, {:Inclination_radians 0.102799893} {:cluster_4 1}, {:Inclination_radians 0.152541777} {:cluster_4 1}, {:Inclination_radians 0.121998515} {:cluster_4 1}, {:Inclination_radians 1.127308164} {:cluster_6 1}, {:Inclination_radians 0.610865238} {:cluster_9 1}, {:Inclination_radians 1.10618968} {:cluster_2 2, :cluster_6 1}, {:Inclination_radians 0.960454687} {:cluster_23 1}, {:Inclination_radians 1.553343034} {:cluster_2 1, :cluster_6 1}, {:Inclination_radians 1.72613063} {:cluster_2 5}, {:Inclination_radians 1.583013632} {:cluster_78 2}, {:Inclination_radians 2.474178748} {:cluster_2 1}, {:Inclination_radians 1.726654229} {:cluster_2 2}, {:Inclination_radians 0.541052068} {:cluster_6 1}, {:Inclination_radians 1.711469865} {:cluster_2 2}, {:Inclination_radians 0.001745329} {:cluster_4 4}, {:Inclination_radians 0.90931654} {:cluster_81 1}, {:Inclination_radians 0.112573737} {:cluster_4 2}, {:Inclination_radians 0.127932634} {:cluster_4 2}, {:Inclination_radians 1.698379895} {:cluster_2 1}, {:Inclination_radians 0.963945346} {:cluster_85 1}, {:Inclination_radians 1.30428455} {:cluster_6 1}, {:Inclination_radians 1.724210768} {:cluster_2 1}, {:Inclination_radians 1.104793417} {:cluster_76 1, :cluster_75 1}, {:Inclination_radians 1.769763862} {:cluster_2 1}, {:Inclination_radians 0.962025484} {:cluster_23 1}, {:Inclination_radians 0.355872634} {:cluster_4 2}, {:Inclination_radians 0.995012207} {:cluster_9 1}, {:Inclination_radians 1.707106541} {:cluster_2 2}, {:Inclination_radians 0.082205008} {:cluster_4 1}, {:Inclination_radians 0.064228116} {:cluster_4 1}, {:Inclination_radians 1.4397221} {:cluster_6 2}, {:Inclination_radians 1.172861257} {:cluster_9 1}, {:Inclination_radians 1.239183769} {:cluster_9 1}, {:Inclination_radians 0.497418837} {:cluster_79 1, :cluster_9 1}, {:Inclination_radians 0.009250245} {:cluster_4 1}, {:Inclination_radians 0.033859387} {:cluster_62 1}, {:Inclination_radians 1.579522973} {:cluster_78 1}, {:Inclination_radians 0.472984227} {:cluster_85 1}, {:Inclination_radians 1.151917306} {:cluster_6 1}, {:Inclination_radians 0.959058424} {:cluster_23 1}, {:Inclination_radians 0.164584548} {:cluster_4 1}, {:Inclination_radians 0.025132741} {:cluster_4 1}, {:Inclination_radians 0.017627825} {:cluster_4 1}, {:Inclination_radians 1.129228026} {:cluster_62 1}, {:Inclination_radians 0.091455253} {:cluster_4 1}, {:Inclination_radians 0.954695101} {:cluster_23 2}, {:Inclination_radians 1.712167996} {:cluster_2 15, :cluster_6 1}, {:Inclination_radians 0.040666172} {:cluster_4 1}, {:Inclination_radians 1.708677338} {:cluster_2 24, :cluster_9 1, :cluster_6 2}, {:Inclination_radians 1.706932008} {:cluster_2 35, :cluster_6 5, :cluster_9 3}, {:Inclination_radians 0.961501885} {:cluster_23 1, :cluster_85 1}, {:Inclination_radians 1.701696021} {:cluster_2 8}, {:Inclination_radians 0.039444441} {:cluster_4 1}, {:Inclination_radians 0.201236463} {:cluster_4 1}, {:Inclination_radians 0.003490659} {:cluster_4 2}, {:Inclination_radians 0.719424718} {:cluster_6 1}, {:Inclination_radians 1.521927108} {:cluster_6 1}, {:Inclination_radians 1.131322421} {:cluster_23 4}, {:Inclination_radians 0.175056524} {:cluster_62 1}, {:Inclination_radians 0.005061455} {:cluster_4 1}, {:Inclination_radians 0.032463124} {:cluster_4 1}, {:Inclination_radians 0.078539816} {:cluster_4 1}, {:Inclination_radians 1.710946266} {:cluster_2 2}, {:Inclination_radians 1.44687795} {:cluster_6 4}, {:Inclination_radians 0.089011792} {:cluster_4 1}, {:Inclination_radians 0.617846555} {:cluster_6 2}, {:Inclination_radians 1.106887812} {:cluster_6 1}, {:Inclination_radians 0.045553093} {:cluster_4 1}, {:Inclination_radians 0.100007366} {:cluster_4 1}, {:Inclination_radians 0.032114058} {:cluster_4 1}, {:Inclination_radians 0.0143117} {:cluster_4 1}, {:Inclination_radians 1.570796327} {:cluster_2 1}, {:Inclination_radians 1.713389727} {:cluster_6 1}, {:Inclination_radians 0.0286234} {:cluster_4 1}, {:Inclination_radians 2.146580447} {:cluster_2 1}, {:Inclination_radians 0.958185759} {:cluster_23 5}, {:Inclination_radians 1.692969374} {:cluster_2 1}, {:Inclination_radians 1.713738793} {:cluster_6 1}, {:Inclination_radians 1.256637061} {:cluster_2 6}, {:Inclination_radians 1.310742268} {:cluster_82 1}, {:Inclination_radians 0.925024504} {:cluster_23 1}, {:Inclination_radians 1.699078027} {:cluster_2 4}, {:Inclination_radians 0.70703288} {:cluster_6 13}, {:Inclination_radians 1.705012146} {:cluster_2 1}, {:Inclination_radians 0.076096355} {:cluster_4 1}, {:Inclination_radians 0.020071286} {:cluster_4 1}, {:Inclination_radians 1.694714704} {:cluster_2 1}, {:Inclination_radians 1.125737368} {:cluster_6 2}, {:Inclination_radians 0.008028515} {:cluster_4 2}, {:Inclination_radians 1.132718685} {:cluster_23 2}, {:Inclination_radians 1.523672437} {:cluster_2 1, :cluster_6 1}, {:Inclination_radians 1.686686189} {:cluster_2 1}, {:Inclination_radians 0.047996554} {:cluster_4 1}, {:Inclination_radians 0.156556034} {:cluster_4 1}, {:Inclination_radians 0.961327352} {:cluster_23 1}, {:Inclination_radians 0.122696646} {:cluster_4 1}, {:Inclination_radians 1.130624289} {:cluster_23 2}, {:Inclination_radians 0.964468945} {:cluster_23 1}, {:Inclination_radians 0.698131701} {:cluster_6 2, :cluster_85 1}, {:Inclination_radians 0.004712389} {:cluster_4 1}, {:Inclination_radians 0.001919862} {:cluster_4 3}, {:Inclination_radians 0.040142573} {:cluster_4 1}, {:Inclination_radians 0.488692191} {:cluster_4 1}, {:Inclination_radians 0.663225116} {:cluster_6 1}, {:Inclination_radians 0.901462559} {:cluster_6 2}, {:Inclination_radians 0.446804289} {:cluster_9 1}, {:Inclination_radians 0.966388807} {:cluster_23 1}, {:Inclination_radians 0.00296706} {:cluster_4 1}, {:Inclination_radians 1.131147888} {:cluster_23 1}, {:Inclination_radians 8.72665E-4} {:cluster_4 33}, {:Inclination_radians 0.101927228} {:cluster_4 1}, {:Inclination_radians 0.003665191} {:cluster_4 1}, {:Inclination_radians 1.130449757} {:cluster_23 4}, {:Inclination_radians 1.012290966} {:cluster_6 2}, {:Inclination_radians 0.003141593} {:cluster_4 1}, {:Inclination_radians 1.720894642} {:cluster_2 10}, {:Inclination_radians 1.731366618} {:cluster_2 2}, {:Inclination_radians 0.055850536} {:cluster_4 1}, {:Inclination_radians 1.130798822} {:cluster_23 3}, {:Inclination_radians 0.389208423} {:cluster_93 1}, {:Inclination_radians 0.071209433} {:cluster_3 1}, {:Inclination_radians 0.436332313} {:cluster_6 2}, {:Inclination_radians 0.021293017} {:cluster_4 1}, {:Inclination_radians 1.438151304} {:cluster_6 1}, {:Inclination_radians 0.003839724} {:cluster_4 1}, {:Inclination_radians 0.013439035} {:cluster_4 1}, {:Inclination_radians 1.884955592} {:cluster_6 1}, {:Inclination_radians 0.907571211} {:cluster_6 40}, {:Inclination_radians 0.965167076} {:cluster_23 1}}, :hyperparameters {:m 2.073425751034483, :r 0.00227308450538132, :s 12.067899371631531, :nu 270.34208873303413}, :hyper-grid {:m (0.0 1.035489113 2.070978226 3.106467339 4.141956452 5.177445564999999 6.212934677999999 7.248423790999999 8.283912904 9.319402017 10.35489113 11.390380243000001 12.425869356000002 13.461358469000002 14.496847582000003 15.532336695000003 16.567825808000002 17.603314921000003 18.638804034000003 19.674293147000004 20.709782260000004 21.745271373000005 22.780760486000005 23.816249599000006 24.851738712000007 25.887227825000007 26.922716938000008 27.95820605100001 28.99369516400001 30.02918427700001 31.06467339000001), :r (8.583690987124466E-4 0.001374345114616742 0.002200480535592605 0.0035232159200945805 0.005641063494463031 0.009031974783909701 0.014461203738843202 0.02315400768709934 0.03707216091107643 0.05935668387043353 0.09503670229921549 0.1521644100540575 0.24363227181642744 0.3900825682519762 0.6245659038500072 1.0000000000000009 1.6011120585285052 2.5635598239653854 4.104546546910188 6.571838971049434 10.522250623254804 16.847302355752333 26.974418955470735 43.18906746140405 69.15053670905505 110.71775817858601 177.27153771297696 283.8315966661379 454.4461920135521 727.6192779852582), :s (12.05789937163154 14.058478525362458 16.390982571397497 19.11048262947997 22.28118691120772 25.977956695156657 30.288073824109176 35.31330145552679 41.1722867202034 48.003362016590295 55.96781108019156 65.25367694090747 76.0802016753403 88.70300277794519 103.42010836670089 120.57899371631532 140.58478525362443 163.9098257139747 191.10482629479935 222.81186911207666 259.7795669515658 302.88073824109074 353.1330145552666 411.7228672020323 480.0336201659007 559.6781108019127 652.5367694090713 760.8020167533991 887.0300277794473 1034.2010836670036), :nu (1.0 1.2653505674430718 1.601112058528504 2.0259680517989875 2.5635598239653836 3.2438018779288593 4.104546546910185 5.193690302229303 6.571838971049429 8.315680171161887 10.522250623254795 13.31433579691367 16.84730235575232 21.3177435957362 26.97441895547071 34.13209633175202 43.18906746140401 54.649311019624676 69.15053670905498 87.49967086379566 110.71775817858581 140.09677813729832 177.27153771297648 224.31064083662062 283.8315966661369 359.14647189976927 454.4461920135501 575.0337469366885 727.6192779852544 920.6934662811595)}, :metadata {}, :data {0 1.721418241, 893 1.106538746, 920 1.713913325, 558 1.507964474, 453 1.706932008, 584 1.507964474, 487 3.49066E-4, 637 1.21300383, 972 8.72665E-4, 519 0.191986218, 1097 0.0, 357 0.907571211, 716 1.74533E-4, 950 0.0, 275 0.002268928, 530 1.507964474, 929 1.70344135, 789 1.448623279, 389 1.128355361, 586 1.507964474, 410 1.130449757, 433 0.001570796, 765 0.785398163, 521 1.507964474, 451 1.713913325, 291 0.038222711, 443 5.23599E-4, 798 1.169370599, 779 0.706858347, 970 0.698131701, 249 0.001919862, 638 1.774999849, 299 2.09963109, 1101 0.0, 121 1.706932008, 734 0.001047198, 287 1.699078027, 65 1.713913325, 1086 0.175231057, 702 0.958883891, 70 1.74533E-4, 949 6.98132E-4, 218 1.74533E-4, 648 1.09484504, 1070 0.034382986, 812 0.70703288, 62 1.712167996, 74 0.901462559, 774 0.785398163, 475 0.001047198, 497 5.23599E-4, 1009 1.523672437, 580 1.507964474, 1138 1.702394152, 891 1.106538746, 164 1.256637061, 1040 0.0, 282 8.72665E-4, 769 0.785398163, 799 1.715658655, 273 3.49066E-4, 1147 1.106538746, 186 5.23599E-4, 430 0.004014257, 641 0.0, 529 1.507964474, 898 0.436332313, 370 0.907571211, 834 0.157079633, 233 0.008028515, 298 2.14675498, 188 0.00122173, 240 1.713913325, 110 5.23599E-4, 130 0.617846555, 982 3.49066E-4, 620 3.49066E-4, 311 1.74533E-4, 931 1.705186679, 882 1.706932008, 128 1.708677338, 399 1.130624289, 989 1.720894642, 377 0.907222145, 468 0.001396263, 259 0.00122173, 210 0.0, 229 1.74533E-4, 153 0.962723615, 621 8.72665E-4, 213 0.064228116, 670 1.74533E-4, 977 0.033510322, 343 0.907571211, 958 0.009250245, 887 1.099557429, 472 0.040142573, 7 0.055850536, 894 1.106538746, 59 1.74533E-4, 934 1.710248134, 473 0.040666172, 1010 1.523672437, 86 0.001396263, 756 0.785398163, 830 1.708677338, 613 5.23599E-4, 491 1.74533E-4, 154 0.961676418, 20 0.019547688, 224 8.72665E-4, 355 0.907571211, 592 1.708677338, 1146 1.75056524, 610 1.708677338, 806 1.708677338, 571 1.507964474, 466 1.109331273, 72 0.001047198, 454 1.74533E-4, 888 1.106538746, 463 nil, 851 1.439896633, 770 0.785398163, 814 0.70703288, 859 1.710422667, 58 1.74533E-4, 964 1.127482697, 980 0.34906585, 1001 1.726654229, 205 0.044331363, 555 1.507964474, 552 1.507964474, 60 1.710422667, 1102 0.0, 835 1.710422667, 459 1.698379895, 175 2.09963109, 322 0.965865208, 510 25.06467339, 1052 1.699950691, 1121 0.0, 662 1.439896633, 27 1.132369619, 352 0.907571211, 493 0.001047198, 899 0.436332313, 416 1.441641962, 777 0.785398163, 694 0.925024504, 1 1.74533E-4, 631 1.127482697, 854 1.439896633, 69 0.102799893, 101 0.001047198, 24 1.706932008, 901 0.488692191, 547 1.507964474, 102 5.23599E-4, 788 1.44687795, 1106 1.698205362, 713 5.23599E-4, 1110 1.21300383, 385 1.130973355, 988 0.70703288, 135 1.719149313, 1065 0.610865238, 397 1.130275224, 1011 1.527163095, 1006 1.74533E-4, 773 0.785398163, 490 5.23599E-4, 752 0.785398163, 354 0.907571211, 884 0.112573737, 360 0.907571211, 998 1.439896633, 961 0.105766953, 55 3.49066E-4, 568 1.507964474, 797 1.448623279, 688 0.961501885, 763 0.785398163, 269 0.001047198, 676 0.973544657, 448 1.699078027, 527 1.507964474, 206 1.74533E-4, 1075 0.066147979, 966 2.09963109, 165 1.256637061, 715 1.74533E-4, 387 1.132718685, 652 0.008028515, 683 0.958185759, 85 0.001047198, 721 1.729621289, 862 1.720894642, 615 1.710946266, 681 0.954695101, 225 1.74533E-4, 865 1.713738793, 297 2.14675498, 39 3.49066E-4, 805 1.713913325, 274 0.001047198, 88 0.002443461, 217 1.706932008, 1128 1.699950691, 46 8.72665E-4, 682 0.959931089, 508 1.74533E-4, 1157 0.00296706, 149 0.963945346, 415 1.713215194, 239 1.713913325, 478 0.00418879, 878 1.706932008, 157 1.74533E-4, 345 0.907571211, 300 2.09963109, 743 2.502802147, 921 1.712167996, 1039 1.701696021, 4 1.74533E-4, 550 1.507964474, 1115 0.001570796, 204 8.72665E-4, 470 0.001047198, 1164 5.23599E-4, 646 1.09606677, 77 0.0, 106 1.130973355, 197 1.724210768, 405 1.131322421, 897 1.106538746, 726 0.00122173, 776 0.785398163, 940 1.711469865, 755 0.785398163, 902 0.044854962, 518 0.900589894, 232 1.713913325, 260 0.00122173, 823 0.025132741, 1125 0.001047198, 267 0.001047198, 119 1.713913325, 319 1.74533E-4, 534 1.507964474, 222 8.72665E-4, 603 1.74533E-4, 293 1.724385301, 95 0.001047198, 450 0.0, 329 1.125737368, 144 0.032637657, 1087 1.706932008, 504 3.49066E-4, 819 1.696460033, 818 3.49066E-4, 505 1.74533E-4, 723 1.722639972, 1071 0.037699112, 1008 0.548033385, 992 1.439896633, 176 1.413542161, 863 1.719149313, 471 6.98132E-4, 349 0.907571211, 512 1.74533E-4, 710 0.003490659, 1058 0.035604717, 192 1.720894642, 54 1.769763862, 92 0.00122173, 221 0.001047198, 141 1.713913325, 502 0.0, 871 5.23599E-4, 464 1.712167996, 801 1.715658655, 307 8.72665E-4, 935 1.710248134, 758 0.785398163, 290 0.045553093, 1156 1.708677338, 1144 1.698205362, 627 1.713913325, 517 8.72665E-4, 1122 5.23599E-4, 361 0.907396678, 264 0.001396263, 137 8.72665E-4, 356 0.907571211, 728 0.0, 976 0.033859387, 678 0.954695101, 327 1.705186679, 234 1.714087858, 856 1.439896633, 817 1.706932008, 1017 2.09963109, 104 1.715658655, 353 0.907571211, 1145 1.710422667, 15 1.127482697, 48 5.23599E-4, 945 0.005235988, 759 0.785398163, 1066 1.129228026, 242 1.70344135, 832 1.713913325, 969 1.712167996, 50 8.72665E-4, 956 0.00122173, 917 3.49066E-4, 1030 3.49066E-4, 557 1.507964474, 251 3.49066E-4, 394 1.131496954, 116 0.00122173, 585 1.507964474, 583 1.507964474, 75 0.122696646, 437 1.712167996, 516 0.003141593, 1062 0.004712389, 994 1.439896633, 930 1.70344135, 967 1.717403984, 687 0.959058424, 159 0.001396263, 848 1.439896633, 995 1.439896633, 1096 1.710946266, 1159 6.98132E-4, 709 0.841248699, 99 1.731366618, 540 1.507964474, 645 0.127932634, 749 3.49066E-4, 479 0.002094395, 1081 1.09606677, 890 1.106538746, 1046 1.722639972, 630 1.127482697, 916 5.23599E-4, 815 0.70703288, 1080 0.039444441, 281 0.001570796, 402 1.131322421, 669 0.00122173, 781 0.706858347, 740 5.23599E-4, 1012 0.359537826, 975 0.898146433, 429 0.001570796, 309 1.74533E-4, 458 1.698205362, 21 5.23599E-4, 388 1.128529894, 495 0.001047198, 952 5.23599E-4, 626 0.995012207, 875 1.706932008, 31 1.712167996, 113 0.00122173, 32 6.98132E-4, 811 0.70703288, 827 1.708677338, 407 1.130973355, 398 1.130449757, 136 1.705186679, 691 0.966388807, 847 1.439896633, 825 0.001745329, 139 1.706932008, 506 3.49066E-4, 396 1.131147888, 460 1.705012146, 483 0.90931654, 589 1.521927108, 581 1.507964474, 932 1.705186679, 174 1.708677338, 578 1.507964474, 855 1.439896633, 331 0.389208423, 363 0.907571211, 1038 1.706932008, 284 0.001396263, 208 8.72665E-4, 305 1.706932008, 1019 1.583013632, 955 0.056374135, 796 1.448623279, 708 1.720894642, 182 1.705186679, 256 3.49066E-4, 1107 1.719149313, 1109 0.759218225, 657 0.104545222, 514 1.74533E-4, 1103 1.74533E-4, 731 3.49066E-4, 619 1.30428455, 985 3.49066E-4, 485 3.49066E-4, 214 0.024609142, 193 1.724385301, 685 0.959931089, 804 1.719149313, 869 0.012915436, 1002 1.012290966, 1104 0.500909495, 836 1.722639972, 1131 1.74881991, 785 0.00122173, 635 0.003839724, 442 0.541052068, 1073 0.058293997, 561 1.507964474, 954 0.08709193, 656 0.00122173, 607 5.23599E-4, 241 1.713913325, 314 8.72665E-4, 782 1.684242728, 226 3.49066E-4, 235 1.714087858, 672 nil, 420 1.439896633, 418 1.441641962, 262 0.001047198, 1016 1.110727536, 263 5.23599E-4, 304 1.221730476, 401 1.130449757, 673 1.717403984, 40 0.001047198, 129 1.413716694, 600 1.74533E-4, 729 3.49066E-4, 1042 8.72665E-4, 467 1.706932008, 1033 8.72665E-4, 1149 1.106538746, 445 0.00122173, 317 0.0, 1091 1.701696021, 1028 3.49066E-4, 294 1.724559834, 91 0.00122173, 1044 0.274016693, 810 0.70703288, 1137 1.107760476, 364 0.907571211, 987 1.256637061, 880 1.127482697, 515 3.49066E-4, 412 0.0, 553 1.507964474, 974 0.001047198, 341 0.907571211, 117 8.72665E-4, 1000 1.707106541, 1095 1.712691595, 665 1.706932008, 523 1.507964474, 172 1.706932008, 601 1.74533E-4, 108 1.708677338, 156 0.959931089, 358 0.907571211, 308 1.74533E-4, 908 1.713913325, 649 1.720894642, 531 1.507964474, 1085 0.175056524, 923 1.711469865, 1111 1.699078027, 223 0.00122173, 419 1.439896633, 365 0.907571211, 944 1.708677338, 181 1.706932008, 417 1.441641962, 1082 1.09606677, 979 1.713913325, 278 0.047996554, 56 3.49066E-4, 942 0.017627825, 33 5.23599E-4, 13 0.355872634, 1043 0.274016693, 867 1.713215194, 22 8.72665E-4, 618 1.70344135, 1141 1.708677338, 1093 3.49066E-4, 380 1.130449757, 257 0.00122173, 1061 1.710422667, 338 0.907571211, 1024 0.16406095, 500 5.23599E-4, 909 1.706932008, 1018 1.699950691, 993 0.148352986, 1089 0.706858347, 168 1.708677338, 833 1.74533E-4, 496 5.23599E-4, 1056 0.001047198, 1129 1.699950691, 947 1.104793417, 347 0.907571211, 501 0.104545222, 1007 1.74533E-4, 1077 1.710422667, 596 1.151917306, 872 3.49066E-4, 792 1.44687795, 90 0.001396263, 237 1.714087858, 826 1.570796327, 292 1.720894642, 109 1.701696021, 216 1.706932008, 191 5.23599E-4, 498 3.49066E-4, 829 1.708677338, 761 0.785398163, 1072 0.144338729, 375 0.907222145, 525 1.509709803, 367 0.907571211, 143 0.962723615, 742 1.70344135, 178 1.706932008, 640 0.019024089, 247 0.0, 328 1.125737368, 391 1.130798822, 990 1.439896633, 167 1.708677338, 707 0.962025484, 36 1.74533E-4, 41 8.72665E-4, 474 0.05253441, 187 8.72665E-4, 551 1.507964474, 1118 0.001745329, 996 1.439896633, 528 1.507964474, 971 0.001047198, 599 8.72665E-4, 376 0.907745744, 195 1.72613063, 889 1.106538746, 316 1.74533E-4, 668 1.699950691, 428 0.001047198, 303 1.727875959, 671 nil, 794 1.448623279, 905 1.047197551, 368 0.907571211, 560 1.507964474, 565 1.507964474, 310 0.001047198, 366 0.907571211, 118 0.226892803, 522 1.507964474, 150 1.682497399, 886 1.099557429, 313 3.49066E-4, 384 1.130973355, 567 1.507964474, 238 1.712167996, 846 1.439896633, 962 1.106538746, 1127 1.708677338, 845 1.439896633, 196 1.72613063, 162 1.256637061, 393 1.131322421, 184 5.23599E-4, 219 0.001047198, 999 1.401150324, 461 1.700997889, 1032 6.98132E-4, 89 0.002094395, 100 0.00122173, 426 1.553343034, 604 6.98132E-4, 477 6.98132E-4, 844 1.439896633, 541 1.507964474, 351 0.907571211, 243 1.699950691, 131 0.497418837, 790 1.44687795, 963 1.127482697, 1053 0.74700092, 629 1.705186679, 873 1.710422667, 122 1.720894642, 933 1.705186679, 43 3.49066E-4, 1067 1.239183769, 231 0.100007366, 61 1.713913325, 654 1.722639972, 883 0.112573737, 1003 1.012290966, 598 1.74533E-4, 413 0.007330383, 29 2.09963109, 784 8.72665E-4, 800 0.70703288, 151 0.963421747, 369 0.907571211, 348 0.907571211, 1124 0.002443461, 575 1.507964474, 693 0.958185759, 44 1.74533E-4, 739 5.23599E-4, 258 8.72665E-4, 250 0.003490659, 674 1.712167996, 539 1.507964474, 301 0.70703288, 838 1.696460033, 424 1.614255025, 93 0.00122173, 6 0.134739418, 684 0.95644043, 1026 0.185004901, 951 0.001396263, 573 1.507964474, 408 1.130624289, 563 1.507964474, 850 1.439896633, 616 1.713913325, 866 1.713389727, 111 0.014660766, 997 1.439896633, 689 0.961676418, 28 1.310742268, 456 1.706932008, 374 0.907571211, 608 1.106538746, 737 5.23599E-4, 1155 1.708677338, 548 1.507964474, 538 1.507964474, 1034 3.49066E-4, 895 1.106538746, 411 0.004886922, 957 0.00122173, 134 1.719149313, 943 6.98132E-4, 64 1.713913325, 623 0.706858347, 1135 1.106713279, 1133 1.10618968, 465 1.099557429, 816 0.70703288, 334 0.907571211, 1150 1.722639972, 323 0.965167076, 189 1.74533E-4, 280 6.98132E-4, 198 1.726654229, 155 0.959931089, 295 0.446804289, 808 1.72316357, 248 5.23599E-4, 587 1.507964474, 285 0.617846555, 507 1.74533E-4, 227 0.00122173, 724 0.706858347, 476 0.0, 941 1.713913325, 911 1.74533E-4, 853 1.439896633, 494 3.49066E-4, 220 5.23599E-4, 842 1.439896633, 103 8.72665E-4, 697 0.959931089, 611 1.706932008, 1105 1.706932008, 170 1.605702912, 1154 1.696460033, 51 6.98132E-4, 25 1.710422667, 261 1.74533E-4, 768 0.785398163, 822 1.127308164, 201 1.705186679, 904 1.106538746, 590 1.507964474, 489 0.00122173, 778 0.706858347, 166 1.708677338, 447 1.706932008, 34 5.23599E-4, 252 0.00122173, 978 1.720894642, 775 0.785398163, 325 0.001570796, 1005 0.002094395, 594 1.724385301, 436 1.70344135, 828 1.708677338, 535 1.507964474, 813 0.70703288, 146 0.024958208, 741 1.715658655, 1060 1.293288976, 876 1.706932008, 1064 1.705186679, 228 1.74533E-4, 907 0.085695666, 306 8.72665E-4, 125 1.708677338, 276 1.727875959, 340 0.907571211, 148 0.032114058, 1143 1.696460033, 482 5.23599E-4, 1049 3.49066E-4, 622 1.686686189, 588 1.507964474, 17 2.09963109, 312 3.49066E-4, 606 6.98132E-4, 3 1.74533E-4, 1148 1.106538746, 520 2.103121749, 1088 0.003665191, 760 0.785398163, 720 1.729621289, 1126 1.706932008, 286 1.256113463, 279 3.49066E-4, 879 1.706932008, 1020 0.0286234, 536 1.507964474, 1023 0.201236463, 663 1.72613063, 12 0.355872634, 440 0.663225116, 332 1.713913325, 330 1.712167996, 1162 0.00122173, 382 1.130973355, 152 0.964468945, 1112 1.74533E-4, 1140 1.710422667, 544 1.507964474, 803 1.713913325, 642 6.98132E-4, 435 1.734857276, 342 0.907571211, 703 0.960280154, 783 0.001745329, 695 0.958185759, 973 6.98132E-4, 2 0.032463124, 948 1.106538746, 66 1.706932008, 484 6.98132E-4, 439 1.74533E-4, 236 1.714087858, 556 1.507964474, 373 0.907571211, 1083 1.095892237, 142 0.031066861, 359 0.907571211, 727 0.001047198, 371 1.291543646, 772 1.884955592, 444 3.49066E-4, 1057 0.017453293, 570 1.507964474, 757 0.785398163, 107 1.708677338, 1094 0.001396263, 532 1.507964474, 984 0.001047198, 23 0.043633231, 1079 1.706932008, 745 2.474527813, 719 1.722639972, 230 1.74533E-4, 625 1.186823891, 47 1.74533E-4, 526 1.507964474, 180 1.710422667, 786 5.23599E-4, 1068 1.720894642, 1166 1.701696021, 870 3.49066E-4, 537 1.507964474, 659 0.078539816, 158 8.72665E-4, 991 1.439896633, 350 0.907571211, 35 5.23599E-4, 1116 0.670206433, 849 1.439896633, 1120 6.98132E-4, 644 0.089011792, 1069 1.74533E-4, 881 1.708677338, 127 1.708677338, 927 1.705186679, 675 0.127932634, 1055 1.699950691, 383 1.130973355, 533 1.507964474, 1100 1.74533E-4, 910 8.72665E-4, 302 0.156556034, 564 1.507964474, 701 0.961327352, 1090 0.34906585, 566 1.507964474, 821 1.720894642, 787 1.717403984, 82 6.98132E-4, 76 3.49066E-4, 735 0.104719755, 492 0.002268928, 718 6.98132E-4, 771 0.785398163, 215 1.710422667, 97 0.001396263, 704 0.95644043, 277 3.49066E-4, 926 1.706932008, 751 6.98132E-4, 1114 0.001396263, 19 0.002094395, 335 0.907571211, 597 0.020769418, 938 1.717403984, 57 1.74533E-4, 609 1.706932008, 202 3.49066E-4, 68 0.113446401, 452 0.497418837, 1054 1.699950691, 200 1.705186679, 1142 1.706932008, 868 1.713215194, 11 0.076096355, 115 5.23599E-4, 946 1.104793417, 1063 1.708677338, 983 5.23599E-4, 339 0.907571211, 431 6.98132E-4, 462 1.701696021, 337 0.907571211, 698 0.959931089, 255 0.001396263, 503 1.74533E-4, 546 1.507964474, 9 0.0, 953 0.164584548, 857 1.584758961, 706 0.961676418, 632 0.139102741, 457 1.698205362, 427 1.712167996, 145 0.031939525, 5 1.706932008, 733 3.49066E-4, 1163 0.003316126, 1165 1.720196511, 1152 1.706932008, 624 0.994837674, 831 1.708677338, 244 1.212654764, 918 1.712167996, 824 1.74533E-4, 289 0.013439035, 112 6.98132E-4, 925 1.706932008, 1059 1.698205362, 730 0.001396263, 699 0.959931089, 712 1.713913325, 1076 0.091455253, 1113 1.74533E-4, 414 0.249582083, 839 1.70344135, 802 0.901462559, 1084 1.706932008, 860 1.583013632, 1117 1.722639972, 179 1.413716694, 344 0.907571211, 481 6.98132E-4, 732 5.23599E-4, 661 0.0143117, 245 1.712691595, 378 0.907745744, 913 8.72665E-4, 906 0.085870199, 658 0.006108652, 266 6.98132E-4, 324 1.711644397, 793 1.448623279, 1134 1.10618968, 1132 1.10618968, 1014 0.0, 680 0.958185759, 446 1.706932008, 524 1.507964474, 254 0.00122173, 404 1.131671487, 1025 0.152541777, 617 1.713913325, 283 0.001919862, 1153 1.694714704, 513 1.74533E-4, 572 1.506219144, 705 0.959232957, 1098 5.23599E-4, 959 0.00122173, 1074 0.071733032, 83 5.23599E-4, 634 0.084648469, 138 1.127482697, 1050 0.052185345, 346 0.907571211, 14 3.49066E-4, 455 0.001047198, 265 0.001570796, 449 0.70703288, 333 0.907571211, 650 0.031415927, 639 2.09963109, 569 1.507964474, 326 0.021293017, 746 1.706932008, 647 1.09606677, 45 5.23599E-4, 53 0.001570796, 559 1.507964474, 78 0.0, 1037 0.103672558, 924 1.308647873, 562 1.507964474, 1119 1.75056524, 542 1.507964474, 912 8.72665E-4, 664 1.722639972, 1048 1.74533E-4, 315 5.23599E-4, 1031 6.98132E-4, 914 0.002268928, 480 5.23599E-4, 132 8.72665E-4, 753 0.785398163, 900 1.289798317, 1013 1.715658655, 26 1.438151304, 766 0.785398163, 123 1.706932008, 203 5.23599E-4, 667 0.070162236, 392 1.130798822, 1045 0.274016693, 577 1.507964474, 807 1.715658655, 140 1.706932008, 321 0.954346035, 795 1.448623279, 441 1.712167996, 700 0.958185759, 268 0.001047198, 840 0.719424718, 16 1.127482697, 320 0.954171502, 133 1.719149313, 288 1.699078027, 381 1.130973355, 605 0.34906585, 163 1.256637061, 81 0.020071286, 120 1.701696021, 643 0.34906585, 79 3.49066E-4, 211 0.001745329, 38 6.98132E-4, 173 1.722639972, 126 1.692969374, 981 1.710422667, 1161 0.009599311, 421 1.4397221, 593 0.472984227, 636 1.731366618, 1160 0.005235988, 98 6.98132E-4, 422 1.439896633, 423 1.4397221, 614 3.49066E-4, 762 0.785398163, 582 1.507964474, 666 0.023911011, 1123 6.98132E-4, 554 1.507964474, 409 1.131322421, 574 1.509709803, 595 1.717403984, 124 0.70703288, 747 3.49066E-4, 171 1.711295332, 87 8.72665E-4, 169 1.708677338, 653 0.005061455, 679 0.959931089, 843 1.439896633, 160 1.724385301, 30 3.49066E-4, 400 1.130973355, 767 0.785398163, 896 1.106538746, 928 1.705186679, 696 0.959931089, 1027 0.015707963, 738 6.98132E-4, 809 0.70703288, 509 1.74533E-4, 736 1.256113463, 207 6.98132E-4, 874 1.712167996, 434 1.717403984, 1130 1.698205362, 690 0.959931089, 194 1.72613063, 1047 0.00122173, 511 3.49066E-4, 73 1.74533E-4, 486 5.23599E-4, 336 0.907571211, 96 0.001047198, 837 1.219985147, 1136 1.106887812, 937 1.719149313, 10 0.0, 660 0.060213859, 272 0.001570796, 499 3.49066E-4, 488 8.72665E-4, 903 0.043807764, 386 1.132718685, 270 0.001047198, 576 1.507964474, 717 1.74533E-4, 543 1.507964474, 271 0.00122173, 18 2.09963109, 395 1.130798822, 403 1.131671487, 469 0.001396263, 105 1.130973355, 185 0.001570796, 52 1.74533E-4, 1051 0.101927228, 545 1.507964474, 633 1.172861257, 114 1.705186679, 1099 0.0, 968 2.09963109, 253 1.74533E-4, 612 1.706932008, 1151 1.439896633, 1015 5.23599E-4, 628 1.713913325, 748 3.49066E-4, 209 0.080110613, 147 0.961501885, 655 1.722639972, 1022 0.121998515, 750 5.23599E-4, 852 1.439896633, 425 1.553343034, 1158 0.01134464, 864 1.713913325, 67 1.706932008, 1108 1.706932008, 296 2.146580447, 602 0.00122173, 318 1.74533E-4, 161 1.256637061, 651 0.082205008, 725 3.49066E-4, 372 0.907571211, 1092 6.98132E-4, 406 1.130973355, 438 1.712167996, 780 0.698131701, 711 1.713913325, 1041 6.98132E-4, 71 5.23599E-4, 939 1.708677338, 579 1.507964474, 877 1.706932008, 722 1.72613063, 42 0.052359878, 919 1.713913325, 80 3.49066E-4, 885 1.710248134, 1078 1.712167996, 986 0.706858347, 1035 1.74533E-4, 714 8.72665E-4, 677 0.959931089, 199 1.132369619, 841 1.439896633, 754 0.785398163, 791 1.44687795, 1029 0.716108592, 861 1.579522973, 591 1.507964474, 1021 0.122173048, 744 2.474178748, 960 1.707106541, 37 6.98132E-4, 183 6.98132E-4, 1139 1.753706832, 965 2.09963109, 892 1.106538746, 432 0.003316126, 379 0.907745744, 63 1.712167996, 212 0.071209433, 94 0.001919862, 362 0.907571211, 8 0.050440015, 686 0.960454687, 692 0.95644043, 764 0.785398163, 246 3.49066E-4, 190 3.49066E-4, 1004 1.710422667, 1036 1.701696021, 549 1.507964474, 922 1.705186679, 177 1.722639972, 915 0.002268928, 936 1.701696021, 820 0.698131701, 49 8.72665E-4, 858 1.708677338, 390 1.128704427, 84 6.98132E-4}}, :Users #gensql.inference.gpm.column.Column{:var-name :Users, :stattype :categorical, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 3, :counts {"Commercial/Government/Government" 0, "Government/Civil" 3, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 7, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 1, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 4, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 15, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 13, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 2, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 1, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 4, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 4, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 4, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 4, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 278, :counts {"Commercial/Government/Government" 1, "Government/Civil" 5, "Military" 67, "Civil/Military" 1, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 21, "Commercial" 90, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 71, "Civil" 13, "Governmnet" 1, "Commerical" 0, "Commercial/Government" 8, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 1, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 7, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 5, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 2, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 1, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 1, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 4, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 0, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 4, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 434, :counts {"Commercial/Government/Government" 0, "Government/Civil" 4, "Military" 75, "Civil/Military" 0, "Commercial/Gov/Mil" 2, "Civil/Government" 0, "Military/Commercial" 10, "Government" 55, "Commercial" 277, "Commecial" 1, "Civil/Commercial" 0, "Government/Military" 1, "Government/Commercial" 3, "Civil" 1, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 3, "Military/Government" 2}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 29, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 23, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 4, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 2, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 295, :counts {"Commercial/Government/Government" 0, "Government/Civil" 10, "Military" 48, "Civil/Military" 1, "Commercial/Gov/Mil" 0, "Civil/Government" 3, "Military/Commercial" 4, "Government" 134, "Commercial" 30, "Commecial" 0, "Civil/Commercial" 1, "Government/Military" 5, "Government/Commercial" 4, "Civil" 51, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 1, "Military/Government" 3}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 72, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 5, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 63, "Government" 0, "Commercial" 3, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 1, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Users, :suff-stats {:n 2, :counts {"Commercial/Government/Government" 0, "Government/Civil" 0, "Military" 2, "Civil/Military" 0, "Commercial/Gov/Mil" 0, "Civil/Government" 0, "Military/Commercial" 0, "Government" 0, "Commercial" 0, "Commecial" 0, "Civil/Commercial" 0, "Government/Military" 0, "Government/Commercial" 0, "Civil" 0, "Governmnet" 0, "Commerical" 0, "Commercial/Government" 0, "Military/Government" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Users "Civil/Government"} {:cluster_2 3, :cluster_0 1}, {:Users "Civil"} {:cluster_2 51, :cluster_0 4, :cluster_6 13, :cluster_82 1, :cluster_4 1}, {:Users "Civil/Commercial"} {:cluster_2 1}, {:Users "Commercial/Government/Government"} {:cluster_6 1}, {:Users "Government/Civil"} {:cluster_6 5, :cluster_2 10, :cluster_4 4, :cluster_66 3}, {:Users "Governmnet"} {:cluster_6 1}, {:Users "Commercial/Gov/Mil"} {:cluster_4 2}, {:Users "Commerical"} {:cluster_23 1}, {:Users "Government/Commercial"} {:cluster_6 71, :cluster_2 4, :cluster_4 3, :cluster_9 2}, {:Users "Government/Military"} {:cluster_2 5, :cluster_4 1}, {:Users "Military/Commercial"} {:cluster_23 63, :cluster_4 10, :cluster_2 4}, {:Users "Commecial"} {:cluster_4 1}, {:Users "Government"} {:cluster_81 1, :cluster_93 1, :cluster_0 2, :cluster_62 2, :cluster_92 2, :cluster_73 1, :cluster_94 1, :cluster_78 4, :cluster_6 21, :cluster_85 2, :cluster_79 1, :cluster_4 55, :cluster_9 4, :cluster_2 134}, {:Users "Civil/Military"} {:cluster_6 1, :cluster_2 1}, {:Users "Military/Government"} {:cluster_2 3, :cluster_4 2}, {:Users "Commercial/Government"} {:cluster_4 3, :cluster_6 8, :cluster_2 1}, {:Users "Commercial"} {:cluster_80 1, :cluster_32 1, :cluster_75 1, :cluster_76 1, :cluster_6 90, :cluster_77 1, :cluster_59 4, :cluster_4 277, :cluster_2 30, :cluster_23 3}, {:Users "Military"} {:cluster_62 13, :cluster_3 4, :cluster_6 67, :cluster_85 5, :cluster_4 75, :cluster_9 23, :cluster_2 48, :cluster_23 5, :cluster_74 2}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Civil" "Commercial" "Government" "Military" "Commercial/Government" "Military/Commercial" "Government/Military" "Government/Civil" "Civil/Commercial" "Civil/Military" "Military/Government" "Civil/Government" "Commerical" "Commercial/Government/Government" "Commercial/Gov/Mil" "Government/Commercial" "Governmnet" "Commecial"], :data {0 "Civil", 893 "Military", 920 "Government", 558 "Government/Commercial", 453 "Civil", 584 "Government/Commercial", 487 "Commercial", 637 "Civil", 972 "Commercial", 519 "Government", 1097 "Military", 357 "Commercial", 716 "Commercial", 950 "Commercial", 275 "Commercial", 530 "Government/Commercial", 929 "Government", 789 "Military", 389 "Military/Commercial", 586 "Government/Commercial", 410 "Military/Commercial", 433 "Government", 765 "Commercial", 521 "Government/Commercial", 451 "Civil", 291 "Government", 443 "Commercial/Gov/Mil", 798 "Government", 779 "Military", 970 "Government/Civil", 249 "Commercial", 638 "Civil", 299 "Civil/Government", 1101 "Military", 121 "Civil", 734 "Commercial", 287 "Government", 65 "Commercial", 1086 "Government", 702 "Military/Commercial", 70 "Commercial", 949 "Commercial", 218 "Commercial", 648 "Military", 1070 "Military", 812 "Military", 62 "Commercial", 74 "Commercial", 774 "Commercial", 475 "Commercial", 497 "Commercial", 1009 "Government", 580 "Government/Commercial", 1138 "Military", 891 "Military", 164 "Government/Civil", 1040 "Commercial", 282 "Commercial", 769 "Commercial", 799 "Military", 273 "Commercial", 1147 "Government", 186 "Commercial", 430 "Government", 641 "Commercial", 529 "Government/Commercial", 898 "Government", 370 "Commercial", 834 "Government", 233 "Government", 298 "Military", 188 "Commercial", 240 "Government", 110 "Commercial", 130 "Government", 982 "Commercial", 620 "Military/Commercial", 311 "Commercial", 931 "Government", 882 "Government", 128 "Government", 399 "Military/Commercial", 989 "Commercial", 377 "Commercial", 468 "Commercial", 259 "Commercial", 210 "Military", 229 "Commercial", 153 "Military", 621 "Commercial", 213 "Military", 670 "Government", 977 "Military", 343 "Commercial", 958 "Military", 887 "Military", 472 "Commercial", 7 "Military", 894 "Military", 59 "Commercial", 934 "Government", 473 "Commercial", 1010 "Government", 86 "Commercial", 756 "Commercial", 830 "Commercial", 613 "Government", 491 "Commercial", 154 "Military", 20 "Commercial", 224 "Commercial", 355 "Commercial", 592 "Government", 1146 "Government", 610 "Military", 806 "Government", 571 "Government/Commercial", 466 "Military", 72 "Government", 454 "Commercial", 888 "Military", 463 "Government", 851 "Military", 770 "Commercial", 814 "Military", 859 "Government", 58 "Commercial", 964 "Military", 980 "Civil", 1001 "Military", 205 "Military", 555 "Government/Commercial", 552 "Government/Commercial", 60 "Commercial", 1102 "Military", 835 "Government", 459 "Government", 175 "Civil", 322 "Commercial", 510 "Commercial", 1052 "Civil", 1121 "Military/Commercial", 662 "Civil", 27 "Civil", 352 "Commercial", 493 "Commercial", 899 "Government", 416 "Commercial/Government/Government", 777 "Commercial", 694 "Military/Commercial", 1 "Commercial", 631 "Commercial", 854 "Military", 69 "Commercial", 101 "Government", 24 "Government", 901 "Government", 547 "Government/Commercial", 102 "Government", 788 "Military", 1106 "Military/Commercial", 713 "Government", 1110 "Civil", 385 "Military/Commercial", 988 "Military", 135 "Government", 1065 "Government", 397 "Military/Commercial", 1011 "Government", 1006 "Commercial", 773 "Commercial", 490 "Commercial", 752 "Commercial", 354 "Commercial", 884 "Military", 360 "Commercial", 998 "Military", 961 "Commercial", 55 "Commercial", 568 "Government/Commercial", 797 "Military", 688 "Military/Commercial", 763 "Commercial", 269 "Commercial", 676 "Military/Commercial", 448 "Government", 527 "Government/Commercial", 206 "Military", 1075 "Military", 966 "Military", 165 "Government/Civil", 715 "Commercial", 387 "Military/Commercial", 652 "Government/Civil", 683 "Military/Commercial", 85 "Commercial", 721 "Government", 862 "Military", 615 "Civil", 681 "Military/Commercial", 225 "Commercial", 865 "Military", 297 "Military", 39 "Commercial", 805 "Civil", 274 "Commercial", 88 "Commercial", 217 "Civil", 1128 "Military", 46 "Commercial", 682 "Military/Commercial", 508 "Commercial", 1157 "Government", 149 "Military", 415 "Military", 239 "Government", 478 "Government", 878 "Commercial", 157 "Government", 345 "Commercial", 300 "Civil/Government", 743 "Military", 921 "Government", 1039 "Commercial", 4 "Commercial", 550 "Government/Commercial", 1115 "Commercial", 204 "Military", 470 "Commercial", 1164 "Government", 646 "Military", 77 "Commercial", 106 "Civil", 197 "Military", 405 "Military/Commercial", 897 "Military", 726 "Commercial", 776 "Commercial", 940 "Military", 755 "Commercial", 902 "Military", 518 "Government", 232 "Civil", 260 "Commercial", 823 "Military", 1125 "Commercial", 267 "Commercial", 119 "Government", 319 "Commercial", 534 "Government/Commercial", 222 "Commercial", 603 "Commercial", 293 "Government", 95 "Commercial", 450 "Commercial", 329 "Commercial", 144 "Military", 1087 "Civil", 504 "Commercial", 819 "Commercial", 818 "Commercial", 505 "Commercial", 723 "Government", 1071 "Military", 1008 "Government", 992 "Military", 176 "Civil", 863 "Government", 471 "Commercial", 349 "Commercial", 512 "Commercial", 710 "Commercial", 1058 "Government", 192 "Government", 54 "Civil", 92 "Commercial", 221 "Commercial", 141 "Government/Civil", 502 "Commercial", 871 "Commercial", 464 "Commercial", 801 "Government", 307 "Commercial", 935 "Government", 758 "Commercial", 290 "Government", 1156 "Civil", 1144 "Government", 627 "Government", 517 "Commercial", 1122 "Commercial", 361 "Commercial", 264 "Commercial", 137 "Commercial", 356 "Commercial", 728 "Commercial", 976 "Military", 678 "Military/Commercial", 327 "Commercial", 234 "Military", 856 "Military", 817 "Civil", 1017 "Military", 104 "Civil", 353 "Commercial", 1145 "Government", 15 "Commercial", 48 "Commercial", 945 "Commercial", 759 "Commercial", 1066 "Military", 242 "Military/Commercial", 832 "Government", 969 "Civil", 50 "Military/Commercial", 956 "Military", 917 "Commercial", 1030 "Commercial", 557 "Government/Commercial", 251 "Commercial", 394 "Military/Commercial", 116 "Commercial", 585 "Government/Commercial", 583 "Government/Commercial", 75 "Commercial/Government", 437 "Military", 516 "Commercial", 1062 "Government", 994 "Military", 930 "Government", 967 "Government", 687 "Military/Commercial", 159 "Military", 848 "Military", 995 "Military", 1096 "Government", 1159 "Government", 709 "Military", 99 "Government/Military", 540 "Government/Commercial", 645 "Military", 749 "Commercial", 479 "Government", 1081 "Military", 890 "Military", 1046 "Government", 630 "Commercial", 916 "Commercial", 815 "Military", 1080 "Military", 281 "Commercial", 402 "Military/Commercial", 669 "Government", 781 "Military", 740 "Commercial", 1012 "Government/Civil", 975 "Government", 429 "Government", 309 "Commercial", 458 "Government", 21 "Commercial", 388 "Military/Commercial", 495 "Commercial", 952 "Commercial", 626 "Military", 875 "Commercial", 31 "Government", 113 "Commercial", 32 "Commercial", 811 "Military", 827 "Commercial", 407 "Military/Commercial", 398 "Military/Commercial", 136 "Government", 691 "Military/Commercial", 847 "Military", 825 "Military", 139 "Civil", 506 "Commercial", 396 "Military/Commercial", 460 "Government", 483 "Government", 589 "Government/Commercial", 581 "Government/Commercial", 932 "Government", 174 "Civil", 578 "Government/Commercial", 855 "Military", 331 "Government", 363 "Commercial", 1038 "Government/Military", 284 "Commercial", 208 "Military", 305 "Civil", 1019 "Government", 955 "Military", 796 "Military", 708 "Government", 182 "Civil", 256 "Commercial", 1107 "Military/Commercial", 1109 "Military", 657 "Military", 514 "Commercial", 1103 "Commercial", 731 "Commercial", 619 "Military", 985 "Commercial", 485 "Commercial", 214 "Military", 193 "Military", 685 "Military/Commercial", 804 "Government", 869 "Commercial", 1002 "Military", 1104 "Government", 836 "Government", 1131 "Military", 785 "Commercial", 635 "Government", 442 "Government", 1073 "Military", 561 "Government/Commercial", 954 "Military", 656 "Government/Military", 607 "Commercial", 241 "Government", 314 "Commercial", 782 "Government", 226 "Commercial", 235 "Military", 672 "Military", 420 "Commercial/Government", 418 "Commercial/Government", 262 "Commercial", 1016 "Military", 263 "Commercial", 304 "Government", 401 "Military/Commercial", 673 "Government", 40 "Commercial", 129 "Government", 600 "Commercial", 729 "Commercial", 1042 "Commercial", 467 "Government", 1033 "Commercial", 1149 "Government", 445 "Commercial", 317 "Commercial", 1091 "Commercial", 1028 "Government", 294 "Government", 91 "Commercial", 1044 "Government/Civil", 810 "Military", 1137 "Military", 364 "Commercial", 987 "Military", 880 "Government", 515 "Commercial", 412 "Government", 553 "Government/Commercial", 974 "Military", 341 "Commercial", 117 "Commercial", 1000 "Government", 1095 "Government", 665 "Civil", 523 "Government/Commercial", 172 "Civil", 601 "Commercial", 108 "Government/Civil", 156 "Military", 358 "Commercial", 308 "Commercial", 908 "Government", 649 "Government", 531 "Government/Commercial", 1085 "Government", 923 "Government", 1111 "Government", 223 "Commercial", 419 "Commercial/Government", 365 "Commercial", 944 "Government", 181 "Civil", 417 "Commercial/Government", 1082 "Military", 979 "Commercial", 278 "Commercial", 56 "Commercial", 942 "Military", 33 "Commercial", 13 "Military", 1043 "Government/Civil", 867 "Military", 22 "Commercial", 618 "Government/Commercial", 1141 "Military", 1093 "Government", 380 "Military/Commercial", 257 "Commercial", 1061 "Civil", 338 "Commercial", 1024 "Government/Commercial", 500 "Commercial", 909 "Civil", 1018 "Government", 993 "Military", 1089 "Civil", 168 "Military/Government", 833 "Commercial", 496 "Commercial", 1056 "Government", 1129 "Military", 947 "Commercial", 347 "Commercial", 501 "Commercial", 1007 "Commercial", 1077 "Government", 596 "Government", 872 "Commecial", 792 "Military", 90 "Commercial", 237 "Military", 826 "Military", 292 "Government", 109 "Government", 216 "Government", 191 "Commercial", 498 "Commercial", 829 "Commercial", 761 "Commercial", 1072 "Military", 375 "Commercial", 525 "Government/Commercial", 367 "Commercial", 143 "Military", 742 "Government", 178 "Civil", 640 "Commercial", 247 "Commercial", 328 "Commercial", 391 "Military/Commercial", 990 "Military", 167 "Military/Government", 707 "Military/Commercial", 36 "Commercial", 41 "Commercial", 474 "Commercial", 187 "Commercial", 551 "Government/Commercial", 1118 "Military/Government", 996 "Military", 528 "Government/Commercial", 971 "Commercial", 599 "Commercial", 376 "Commercial", 195 "Military", 889 "Military", 316 "Commercial", 668 "Government/Military", 428 "Government", 303 "Government/Military", 671 "Military", 794 "Military", 905 "Military", 368 "Commercial", 560 "Government/Commercial", 565 "Government/Commercial", 310 "Commercial", 366 "Commercial", 118 "Military", 522 "Government/Commercial", 150 "Military", 886 "Military", 313 "Commercial", 384 "Military/Commercial", 567 "Government/Commercial", 238 "Government", 846 "Military", 962 "Military", 1127 "Military", 845 "Military", 196 "Military", 162 "Government/Civil", 393 "Military/Commercial", 184 "Commercial", 219 "Commercial", 999 "Government", 461 "Government", 1032 "Commercial", 89 "Commercial", 100 "Government", 426 "Civil", 604 "Commercial", 477 "Government", 844 "Military", 541 "Government/Commercial", 351 "Commercial", 243 "Military/Commercial", 131 "Government", 790 "Military", 963 "Military", 1053 "Government", 629 "Government", 873 "Commercial", 122 "Civil", 933 "Government", 43 "Commercial", 1067 "Military", 231 "Commercial", 61 "Commercial", 654 "Government/Civil", 883 "Military", 1003 "Military", 598 "Commercial", 413 "Government", 29 "Military", 784 "Commercial", 800 "Government", 151 "Military", 369 "Commercial", 348 "Commercial", 1124 "Commercial", 575 "Government/Commercial", 693 "Military/Commercial", 44 "Commercial", 739 "Commercial", 258 "Commercial", 250 "Commercial", 674 "Government", 539 "Government/Commercial", 301 "Government/Civil", 838 "Government/Commercial", 424 "Commercial/Government", 93 "Commercial", 6 "Military", 684 "Military/Commercial", 1026 "Government", 951 "Commercial", 573 "Government/Commercial", 408 "Military/Commercial", 563 "Government/Commercial", 850 "Military", 616 "Government/Commercial", 866 "Military", 111 "Military/Commercial", 997 "Military", 689 "Military/Commercial", 28 "Civil", 456 "Government", 374 "Commercial", 608 "Military", 737 "Commercial", 1155 "Civil", 548 "Government/Commercial", 538 "Government/Commercial", 1034 "Commercial", 895 "Military", 411 "Government", 957 "Military", 134 "Government", 943 "Military/Commercial", 64 "Commercial", 623 "Civil", 1135 "Military", 1133 "Military", 465 "Military", 816 "Military", 334 "Commercial", 1150 "Government", 323 "Commercial", 189 "Commercial", 280 "Commercial", 198 "Military", 155 "Military", 295 "Government", 808 "Government", 248 "Commercial", 587 "Government/Commercial", 285 "Civil/Military", 507 "Commercial", 227 "Commercial", 724 "Governmnet", 476 "Government", 941 "Government", 911 "Commercial", 853 "Military", 494 "Commercial", 220 "Commercial", 842 "Military", 103 "Government", 697 "Military/Commercial", 611 "Military", 1105 "Commercial", 170 "Government", 1154 "Military", 51 "Military/Commercial", 25 "Government", 261 "Commercial", 768 "Commercial", 822 "Civil", 201 "Commercial", 904 "Military", 590 "Government/Commercial", 489 "Commercial", 778 "Military", 166 "Civil/Military", 447 "Government", 34 "Commercial", 252 "Commercial", 978 "Commercial", 775 "Commercial", 325 "Military", 1005 "Commercial", 594 "Government", 436 "Government/Civil", 828 "Commercial", 535 "Government/Commercial", 813 "Military", 146 "Military", 741 "Government", 1060 "Government/Civil", 876 "Commercial", 1064 "Commercial", 228 "Commercial", 907 "Military", 306 "Commercial", 125 "Government", 276 "Commercial", 340 "Commercial", 148 "Military", 1143 "Government", 482 "Government", 1049 "Commercial", 622 "Government", 588 "Government/Commercial", 17 "Commercial", 312 "Commercial", 606 "Government", 3 "Commercial", 1148 "Government", 520 "Government", 1088 "Government", 760 "Commercial", 720 "Government", 1126 "Military", 286 "Civil", 279 "Commercial", 879 "Commercial", 1020 "Government", 536 "Government/Commercial", 1023 "Government", 663 "Government", 12 "Military", 440 "Government/Civil", 332 "Government", 330 "Commercial/Government", 1162 "Military", 382 "Military/Commercial", 152 "Military", 1112 "Commercial", 1140 "Military", 544 "Government/Commercial", 803 "Government", 642 "Commercial", 435 "Government", 342 "Commercial", 703 "Military/Commercial", 783 "Government/Commercial", 695 "Military/Commercial", 973 "Commercial", 2 "Commercial", 948 "Commercial", 66 "Commercial", 484 "Commercial", 439 "Commercial", 236 "Military", 556 "Government/Commercial", 373 "Commercial", 1083 "Military", 142 "Military", 359 "Commercial", 727 "Commercial", 371 "Commercial", 772 "Commercial", 444 "Commercial/Gov/Mil", 1057 "Government", 570 "Government/Commercial", 757 "Commercial", 107 "Civil", 1094 "Government", 532 "Government/Commercial", 984 "Commercial", 23 "Government", 1079 "Civil", 745 "Military", 719 "Government", 230 "Commercial", 625 "Military", 47 "Commercial", 526 "Government/Commercial", 180 "Government", 786 "Military", 1068 "Civil", 1166 "Government", 870 "Commercial", 537 "Government/Commercial", 659 "Military", 158 "Military", 991 "Military", 350 "Commercial", 35 "Commercial", 1116 "Government", 849 "Military", 1120 "Military/Commercial", 644 "Military", 1069 "Commercial", 881 "Government", 127 "Military", 927 "Government", 675 "Military", 1055 "Government", 383 "Military/Commercial", 533 "Government/Commercial", 1100 "Military", 910 "Commercial", 302 "Military", 564 "Government/Commercial", 701 "Military/Commercial", 1090 "Commercial", 566 "Government/Commercial", 821 "Commercial", 787 "Government", 82 "Commercial", 76 "Commercial", 735 "Government", 492 "Commercial", 718 "Commercial", 771 "Commercial", 215 "Government", 97 "Commercial", 704 "Military/Commercial", 277 "Commercial", 926 "Government", 751 "Commercial", 1114 "Commercial", 19 "Commercial", 335 "Commercial", 597 "Commercial", 938 "Government", 57 "Commercial", 609 "Military", 202 "Government", 68 "Commercial", 452 "Government", 1054 "Government", 200 "Commercial", 1142 "Government", 868 "Military", 11 "Military", 115 "Commercial", 946 "Commercial", 1063 "Government", 983 "Commercial", 339 "Commercial", 431 "Government", 462 "Government", 337 "Commercial", 698 "Military/Commercial", 255 "Commercial", 503 "Commercial", 546 "Government/Commercial", 9 "Military", 953 "Military", 857 "Government", 706 "Military/Commercial", 632 "Military", 457 "Government", 427 "Civil", 145 "Military", 5 "Government", 733 "Commercial", 1163 "Military/Government", 1165 "Government", 1152 "Civil", 624 "Military", 831 "Commercial", 244 "Civil", 918 "Government", 824 "Military", 289 "Government", 112 "Commercial", 925 "Government", 1059 "Government", 730 "Commercial", 699 "Military/Commercial", 712 "Government", 1076 "Military", 1113 "Commercial", 414 "Civil", 839 "Military", 802 "Government", 1084 "Civil", 860 "Government", 1117 "Government", 179 "Civil/Government", 344 "Commercial", 481 "Government", 732 "Commercial", 661 "Military", 245 "Civil", 378 "Commercial", 913 "Commercial", 906 "Military", 658 "Military", 266 "Commercial", 324 "Government", 793 "Military", 1134 "Military", 1132 "Military", 1014 "Military", 680 "Military/Commercial", 446 "Government", 524 "Government/Commercial", 254 "Commercial", 404 "Military/Commercial", 1025 "Government/Commercial", 617 "Government/Commercial", 283 "Commercial", 1153 "Military", 513 "Commercial", 572 "Government/Commercial", 705 "Military/Commercial", 1098 "Military", 959 "Military", 1074 "Military", 83 "Commercial", 634 "Government", 138 "Civil", 1050 "Commercial", 346 "Commercial", 14 "Government", 455 "Commercial", 265 "Commercial", 449 "Civil", 333 "Commercial", 650 "Government/Civil", 639 "Civil", 569 "Government/Commercial", 326 "Commercial", 746 "Government", 647 "Military", 45 "Commercial", 53 "Military/Commercial", 559 "Government/Commercial", 78 "Commercial", 1037 "Commercial", 924 "Government", 562 "Government/Commercial", 1119 "Civil", 542 "Government/Commercial", 912 "Commercial", 664 "Government", 1048 "Commercial", 315 "Commercial", 1031 "Commercial", 914 "Commercial", 480 "Government", 132 "Commercial/Government", 753 "Commercial", 900 "Government", 1013 "Civil", 26 "Civil", 766 "Commercial", 123 "Civil/Commercial", 203 "Military", 667 "Commercial", 392 "Military/Commercial", 1045 "Government/Civil", 577 "Government/Commercial", 807 "Government", 140 "Civil", 321 "Commercial", 795 "Military", 441 "Government", 700 "Military/Commercial", 268 "Commercial", 840 "Military", 16 "Commercial", 320 "Commerical", 133 "Government", 288 "Government", 381 "Military/Commercial", 605 "Civil", 163 "Government/Civil", 81 "Commercial", 120 "Government", 643 "Government", 79 "Commercial", 211 "Military", 38 "Commercial", 173 "Civil", 126 "Government", 981 "Government/Military", 1161 "Military", 421 "Commercial/Government", 593 "Government", 636 "Government", 1160 "Military", 98 "Government", 422 "Commercial/Government", 423 "Commercial/Government", 614 "Government", 762 "Commercial", 582 "Government/Commercial", 666 "Commercial", 1123 "Commercial", 554 "Government/Commercial", 409 "Military/Commercial", 574 "Government/Commercial", 595 "Civil", 124 "Civil", 747 "Military/Commercial", 171 "Civil", 87 "Commercial", 169 "Military/Government", 653 "Government/Civil", 679 "Military/Commercial", 843 "Military", 160 "Military", 30 "Commercial/Government", 400 "Military/Commercial", 767 "Commercial", 896 "Military", 928 "Government", 696 "Military/Commercial", 1027 "Government", 738 "Commercial", 809 "Military", 509 "Commercial", 736 "Civil/Government", 207 "Military", 874 "Commercial", 434 "Government", 1130 "Military", 690 "Military/Commercial", 194 "Military", 1047 "Commercial", 511 "Commercial", 73 "Commercial", 486 "Commercial", 336 "Commercial", 96 "Commercial", 837 "Government/Commercial", 1136 "Military", 937 "Government", 10 "Military", 660 "Military", 272 "Commercial", 499 "Commercial", 488 "Commercial", 903 "Military", 386 "Military/Commercial", 270 "Commercial", 576 "Government/Commercial", 717 "Commercial", 543 "Government/Commercial", 271 "Commercial", 18 "Commercial", 395 "Military/Commercial", 403 "Military/Commercial", 469 "Commercial", 105 "Civil", 185 "Commercial", 52 "Military/Commercial", 1051 "Commercial", 545 "Government/Commercial", 633 "Military", 114 "Government", 1099 "Military", 968 "Military", 253 "Commercial", 612 "Military", 1151 "Civil", 1015 "Military", 628 "Government", 748 "Commercial", 209 "Military", 147 "Military", 655 "Government/Civil", 1022 "Government", 750 "Commercial", 852 "Military", 425 "Civil", 1158 "Government", 864 "Military", 67 "Commercial", 1108 "Commercial", 296 "Military", 602 "Commercial", 318 "Commercial", 161 "Government/Civil", 651 "Government/Civil", 725 "Commercial", 372 "Commercial", 1092 "Commercial", 406 "Military/Commercial", 438 "Military", 780 "Military", 711 "Government", 1041 "Commercial", 71 "Commercial", 939 "Government", 579 "Government/Commercial", 877 "Commercial", 722 "Government", 42 "Commercial", 919 "Government", 80 "Commercial", 885 "Military", 1078 "Civil", 986 "Military", 1035 "Commercial", 714 "Government", 677 "Military/Commercial", 199 "Commercial", 841 "Military", 754 "Commercial", 791 "Military", 1029 "Military", 861 "Government", 591 "Government/Commercial", 1021 "Government", 744 "Military", 960 "Commercial", 37 "Commercial", 183 "Commercial", 1139 "Military", 965 "Military", 892 "Military", 432 "Military", 379 "Commercial", 63 "Commercial", 212 "Military", 94 "Commercial", 362 "Commercial", 8 "Military", 686 "Military/Commercial", 692 "Military/Commercial", 764 "Commercial", 246 "Commercial", 190 "Commercial", 1004 "Civil", 1036 "Government/Commercial", 549 "Government/Commercial", 922 "Government", 177 "Civil", 915 "Commercial", 936 "Government", 820 "Government", 49 "Commercial", 858 "Civil", 390 "Military/Commercial", 84 "Commercial"}}, :Class_of_Orbit #gensql.inference.gpm.column.Column{:var-name :Class_of_Orbit, :stattype :categorical, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 3, :counts {"LEO" 0, "GEO" 0, "Elliptical" 3, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 1, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 7, :counts {"LEO" 5, "GEO" 0, "Elliptical" 2, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 15, :counts {"LEO" 0, "GEO" 0, "Elliptical" 15, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 2, :counts {"LEO" 0, "GEO" 0, "Elliptical" 2, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 4, :counts {"LEO" 0, "GEO" 4, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 4, :counts {"LEO" 0, "GEO" 0, "Elliptical" 4, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 278, :counts {"LEO" 276, "GEO" 0, "Elliptical" 1, "MEO" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 1, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 7, :counts {"LEO" 0, "GEO" 7, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 1, :counts {"LEO" 0, "GEO" 0, "Elliptical" 1, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 4, :counts {"LEO" 0, "GEO" 0, "Elliptical" 0, "MEO" 4}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 434, :counts {"LEO" 0, "GEO" 434, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 29, :counts {"LEO" 29, "GEO" 0, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 295, :counts {"LEO" 295, "GEO" 0, "Elliptical" 0, "MEO" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 72, :counts {"LEO" 0, "GEO" 0, "Elliptical" 0, "MEO" 72}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Class_of_Orbit, :suff-stats {:n 2, :counts {"LEO" 0, "GEO" 0, "Elliptical" 2, "MEO" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Class_of_Orbit "LEO"} {:cluster_2 295, :cluster_9 29, :cluster_6 276, :cluster_0 5}, {:Class_of_Orbit "GEO"} {:cluster_4 434, :cluster_32 1, :cluster_85 7, :cluster_3 4, :cluster_77 1}, {:Class_of_Orbit "Elliptical"} {:cluster_80 1, :cluster_66 3, :cluster_75 1, :cluster_81 1, :cluster_93 1, :cluster_0 2, :cluster_76 1, :cluster_62 15, :cluster_92 2, :cluster_82 1, :cluster_73 1, :cluster_94 1, :cluster_78 4, :cluster_6 1, :cluster_79 1, :cluster_74 2}, {:Class_of_Orbit "MEO"} {:cluster_23 72, :cluster_59 4, :cluster_6 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["LEO" "GEO" "Elliptical" "MEO"], :data {0 "LEO", 893 "LEO", 920 "LEO", 558 "LEO", 453 "LEO", 584 "LEO", 487 "GEO", 637 "LEO", 972 "GEO", 519 "Elliptical", 1097 "GEO", 357 "LEO", 716 "GEO", 950 "GEO", 275 "GEO", 530 "LEO", 929 "LEO", 789 "LEO", 389 "MEO", 586 "LEO", 410 "MEO", 433 "GEO", 765 "LEO", 521 "LEO", 451 "LEO", 291 "GEO", 443 "GEO", 798 "LEO", 779 "LEO", 970 "LEO", 249 "GEO", 638 "LEO", 299 "LEO", 1101 "GEO", 121 "LEO", 734 "GEO", 287 "LEO", 65 "LEO", 1086 "Elliptical", 702 "MEO", 70 "GEO", 949 "GEO", 218 "GEO", 648 "Elliptical", 1070 "GEO", 812 "LEO", 62 "LEO", 74 "LEO", 774 "LEO", 475 "GEO", 497 "GEO", 1009 "LEO", 580 "LEO", 1138 "LEO", 891 "LEO", 164 "LEO", 1040 "GEO", 282 "GEO", 769 "LEO", 799 "LEO", 273 "GEO", 1147 "LEO", 186 "GEO", 430 "GEO", 641 "GEO", 529 "LEO", 898 "LEO", 370 "LEO", 834 "LEO", 233 "GEO", 298 "LEO", 188 "GEO", 240 "LEO", 110 "GEO", 130 "LEO", 982 "GEO", 620 "GEO", 311 "GEO", 931 "LEO", 882 "LEO", 128 "LEO", 399 "MEO", 989 "LEO", 377 "LEO", 468 "GEO", 259 "GEO", 210 "GEO", 229 "GEO", 153 "MEO", 621 "GEO", 213 "GEO", 670 "GEO", 977 "Elliptical", 343 "LEO", 958 "GEO", 887 "LEO", 472 "GEO", 7 "GEO", 894 "LEO", 59 "GEO", 934 "LEO", 473 "GEO", 1010 "LEO", 86 "GEO", 756 "LEO", 830 "LEO", 613 "GEO", 491 "GEO", 154 "MEO", 20 "GEO", 224 "GEO", 355 "LEO", 592 "LEO", 1146 "LEO", 610 "LEO", 806 "LEO", 571 "LEO", 466 "Elliptical", 72 "GEO", 454 "GEO", 888 "LEO", 463 "LEO", 851 "LEO", 770 "LEO", 814 "LEO", 859 "LEO", 58 "GEO", 964 "LEO", 980 "LEO", 1001 "LEO", 205 "GEO", 555 "LEO", 552 "LEO", 60 "LEO", 1102 "GEO", 835 "LEO", 459 "LEO", 175 "LEO", 322 "MEO", 510 "GEO", 1052 "LEO", 1121 "GEO", 662 "LEO", 27 "LEO", 352 "LEO", 493 "GEO", 899 "LEO", 416 "LEO", 777 "LEO", 694 "MEO", 1 "GEO", 631 "LEO", 854 "LEO", 69 "GEO", 101 "GEO", 24 "LEO", 901 "GEO", 547 "LEO", 102 "GEO", 788 "LEO", 1106 "LEO", 713 "GEO", 1110 "LEO", 385 "MEO", 988 "LEO", 135 "LEO", 1065 "LEO", 397 "MEO", 1011 "LEO", 1006 "GEO", 773 "LEO", 490 "GEO", 752 "LEO", 354 "LEO", 884 "GEO", 360 "LEO", 998 "LEO", 961 "GEO", 55 "GEO", 568 "LEO", 797 "LEO", 688 "MEO", 763 "LEO", 269 "GEO", 676 "MEO", 448 "LEO", 527 "LEO", 206 "GEO", 1075 "GEO", 966 "LEO", 165 "LEO", 715 "GEO", 387 "MEO", 652 "GEO", 683 "MEO", 85 "GEO", 721 "LEO", 862 "LEO", 615 "LEO", 681 "MEO", 225 "GEO", 865 "LEO", 297 "LEO", 39 "GEO", 805 "LEO", 274 "GEO", 88 "GEO", 217 "LEO", 1128 "LEO", 46 "GEO", 682 "MEO", 508 "GEO", 1157 "GEO", 149 "GEO", 415 "LEO", 239 "LEO", 478 "GEO", 878 "LEO", 157 "GEO", 345 "LEO", 300 "LEO", 743 "LEO", 921 "LEO", 1039 "LEO", 4 "GEO", 550 "LEO", 1115 "GEO", 204 "GEO", 470 "GEO", 1164 "GEO", 646 "Elliptical", 77 "GEO", 106 "LEO", 197 "LEO", 405 "MEO", 897 "LEO", 726 "GEO", 776 "LEO", 940 "LEO", 755 "LEO", 902 "GEO", 518 "LEO", 232 "LEO", 260 "GEO", 823 "GEO", 1125 "GEO", 267 "GEO", 119 "LEO", 319 "GEO", 534 "LEO", 222 "GEO", 603 "GEO", 293 "LEO", 95 "GEO", 450 "GEO", 329 "LEO", 144 "GEO", 1087 "LEO", 504 "GEO", 819 "LEO", 818 "GEO", 505 "GEO", 723 "LEO", 1071 "GEO", 1008 "LEO", 992 "LEO", 176 "LEO", 863 "LEO", 471 "GEO", 349 "LEO", 512 "GEO", 710 "GEO", 1058 "GEO", 192 "LEO", 54 "LEO", 92 "GEO", 221 "GEO", 141 "LEO", 502 "GEO", 871 "GEO", 464 "LEO", 801 "LEO", 307 "GEO", 935 "LEO", 758 "LEO", 290 "GEO", 1156 "LEO", 1144 "LEO", 627 "LEO", 517 "GEO", 1122 "GEO", 361 "LEO", 264 "GEO", 137 "GEO", 356 "LEO", 728 "GEO", 976 "Elliptical", 678 "MEO", 327 "LEO", 234 "LEO", 856 "LEO", 817 "LEO", 1017 "LEO", 104 "LEO", 353 "LEO", 1145 "LEO", 15 "LEO", 48 "GEO", 945 "GEO", 759 "LEO", 1066 "Elliptical", 242 "LEO", 832 "LEO", 969 "LEO", 50 "GEO", 956 "GEO", 917 "GEO", 1030 "GEO", 557 "LEO", 251 "GEO", 394 "MEO", 116 "GEO", 585 "LEO", 583 "LEO", 75 "GEO", 437 "LEO", 516 "GEO", 1062 "GEO", 994 "LEO", 930 "LEO", 967 "LEO", 687 "MEO", 159 "GEO", 848 "LEO", 995 "LEO", 1096 "LEO", 1159 "GEO", 709 "LEO", 99 "LEO", 540 "LEO", 645 "GEO", 749 "GEO", 479 "GEO", 1081 "Elliptical", 890 "LEO", 1046 "LEO", 630 "LEO", 916 "GEO", 815 "LEO", 1080 "GEO", 281 "GEO", 402 "MEO", 669 "GEO", 781 "LEO", 740 "MEO", 1012 "LEO", 975 "Elliptical", 429 "GEO", 309 "GEO", 458 "LEO", 21 "GEO", 388 "MEO", 495 "GEO", 952 "GEO", 626 "LEO", 875 "LEO", 31 "LEO", 113 "GEO", 32 "GEO", 811 "LEO", 827 "LEO", 407 "MEO", 398 "MEO", 136 "LEO", 691 "MEO", 847 "LEO", 825 "GEO", 139 "LEO", 506 "GEO", 396 "MEO", 460 "LEO", 483 "Elliptical", 589 "LEO", 581 "LEO", 932 "LEO", 174 "LEO", 578 "LEO", 855 "LEO", 331 "Elliptical", 363 "LEO", 1038 "LEO", 284 "GEO", 208 "GEO", 305 "LEO", 1019 "Elliptical", 955 "GEO", 796 "LEO", 708 "LEO", 182 "LEO", 256 "GEO", 1107 "LEO", 1109 "LEO", 657 "GEO", 514 "GEO", 1103 "GEO", 731 "GEO", 619 "LEO", 985 "GEO", 485 "GEO", 214 "GEO", 193 "LEO", 685 "MEO", 804 "LEO", 869 "GEO", 1002 "LEO", 1104 "Elliptical", 836 "LEO", 1131 "LEO", 785 "GEO", 635 "GEO", 442 "Elliptical", 1073 "GEO", 561 "LEO", 954 "GEO", 656 "GEO", 607 "GEO", 241 "LEO", 314 "GEO", 782 "LEO", 226 "GEO", 235 "LEO", 672 "GEO", 420 "LEO", 418 "LEO", 262 "GEO", 1016 "Elliptical", 263 "GEO", 304 "LEO", 401 "MEO", 673 "LEO", 40 "GEO", 129 "Elliptical", 600 "GEO", 729 "GEO", 1042 "GEO", 467 "LEO", 1033 "GEO", 1149 "LEO", 445 "GEO", 317 "GEO", 1091 "LEO", 1028 "GEO", 294 "LEO", 91 "GEO", 1044 "Elliptical", 810 "LEO", 1137 "LEO", 364 "LEO", 987 "LEO", 880 "LEO", 515 "GEO", 412 "GEO", 553 "LEO", 974 "GEO", 341 "LEO", 117 "GEO", 1000 "LEO", 1095 "LEO", 665 "LEO", 523 "LEO", 172 "LEO", 601 "GEO", 108 "LEO", 156 "MEO", 358 "LEO", 308 "GEO", 908 "LEO", 649 "LEO", 531 "LEO", 1085 "Elliptical", 923 "LEO", 1111 "LEO", 223 "GEO", 419 "LEO", 365 "LEO", 944 "LEO", 181 "LEO", 417 "LEO", 1082 "Elliptical", 979 "LEO", 278 "GEO", 56 "GEO", 942 "GEO", 33 "GEO", 13 "GEO", 1043 "Elliptical", 867 "LEO", 22 "GEO", 618 "LEO", 1141 "LEO", 1093 "GEO", 380 "MEO", 257 "GEO", 1061 "LEO", 338 "LEO", 1024 "GEO", 500 "GEO", 909 "LEO", 1018 "LEO", 993 "LEO", 1089 "LEO", 168 "LEO", 833 "GEO", 496 "GEO", 1056 "GEO", 1129 "LEO", 947 "Elliptical", 347 "LEO", 501 "GEO", 1007 "GEO", 1077 "LEO", 596 "LEO", 872 "GEO", 792 "LEO", 90 "GEO", 237 "LEO", 826 "LEO", 292 "LEO", 109 "LEO", 216 "LEO", 191 "GEO", 498 "GEO", 829 "LEO", 761 "LEO", 1072 "GEO", 375 "LEO", 525 "LEO", 367 "LEO", 143 "GEO", 742 "LEO", 178 "LEO", 640 "GEO", 247 "GEO", 328 "LEO", 391 "MEO", 990 "LEO", 167 "LEO", 707 "MEO", 36 "GEO", 41 "GEO", 474 "GEO", 187 "GEO", 551 "LEO", 1118 "GEO", 996 "LEO", 528 "LEO", 971 "GEO", 599 "GEO", 376 "LEO", 195 "LEO", 889 "LEO", 316 "GEO", 668 "LEO", 428 "GEO", 303 "LEO", 671 "GEO", 794 "LEO", 905 "Elliptical", 368 "LEO", 560 "LEO", 565 "LEO", 310 "GEO", 366 "LEO", 118 "LEO", 522 "LEO", 150 "GEO", 886 "LEO", 313 "GEO", 384 "MEO", 567 "LEO", 238 "LEO", 846 "LEO", 962 "Elliptical", 1127 "LEO", 845 "LEO", 196 "LEO", 162 "LEO", 393 "MEO", 184 "GEO", 219 "GEO", 999 "LEO", 461 "LEO", 1032 "GEO", 89 "GEO", 100 "GEO", 426 "LEO", 604 "GEO", 477 "GEO", 844 "LEO", 541 "LEO", 351 "LEO", 243 "LEO", 131 "Elliptical", 790 "LEO", 963 "LEO", 1053 "LEO", 629 "LEO", 873 "LEO", 122 "LEO", 933 "LEO", 43 "GEO", 1067 "LEO", 231 "GEO", 61 "LEO", 654 "LEO", 883 "GEO", 1003 "LEO", 598 "GEO", 413 "GEO", 29 "LEO", 784 "GEO", 800 "LEO", 151 "GEO", 369 "LEO", 348 "LEO", 1124 "GEO", 575 "LEO", 693 "MEO", 44 "GEO", 739 "MEO", 258 "GEO", 250 "GEO", 674 "LEO", 539 "LEO", 301 "LEO", 838 "LEO", 424 "LEO", 93 "GEO", 6 "GEO", 684 "MEO", 1026 "GEO", 951 "GEO", 573 "LEO", 408 "MEO", 563 "LEO", 850 "LEO", 616 "LEO", 866 "LEO", 111 "GEO", 997 "LEO", 689 "MEO", 28 "Elliptical", 456 "LEO", 374 "LEO", 608 "LEO", 737 "MEO", 1155 "LEO", 548 "LEO", 538 "LEO", 1034 "GEO", 895 "LEO", 411 "GEO", 957 "GEO", 134 "LEO", 943 "GEO", 64 "LEO", 623 "LEO", 1135 "LEO", 1133 "LEO", 465 "Elliptical", 816 "LEO", 334 "LEO", 1150 "LEO", 323 "MEO", 189 "GEO", 280 "GEO", 198 "LEO", 155 "MEO", 295 "LEO", 808 "LEO", 248 "GEO", 587 "LEO", 285 "LEO", 507 "GEO", 227 "GEO", 724 "LEO", 476 "GEO", 941 "LEO", 911 "GEO", 853 "LEO", 494 "GEO", 220 "GEO", 842 "LEO", 103 "GEO", 697 "MEO", 611 "LEO", 1105 "LEO", 170 "LEO", 1154 "LEO", 51 "GEO", 25 "LEO", 261 "GEO", 768 "LEO", 822 "MEO", 201 "LEO", 904 "Elliptical", 590 "LEO", 489 "GEO", 778 "LEO", 166 "LEO", 447 "LEO", 34 "GEO", 252 "GEO", 978 "LEO", 775 "LEO", 325 "GEO", 1005 "GEO", 594 "LEO", 436 "LEO", 828 "LEO", 535 "LEO", 813 "LEO", 146 "GEO", 741 "LEO", 1060 "LEO", 876 "LEO", 1064 "LEO", 228 "GEO", 907 "GEO", 306 "GEO", 125 "LEO", 276 "LEO", 340 "LEO", 148 "GEO", 1143 "LEO", 482 "GEO", 1049 "GEO", 622 "LEO", 588 "LEO", 17 "LEO", 312 "GEO", 606 "GEO", 3 "GEO", 1148 "LEO", 520 "LEO", 1088 "GEO", 760 "LEO", 720 "LEO", 1126 "LEO", 286 "LEO", 279 "GEO", 879 "LEO", 1020 "GEO", 536 "LEO", 1023 "GEO", 663 "LEO", 12 "GEO", 440 "LEO", 332 "LEO", 330 "LEO", 1162 "GEO", 382 "MEO", 152 "MEO", 1112 "GEO", 1140 "LEO", 544 "LEO", 803 "LEO", 642 "GEO", 435 "LEO", 342 "LEO", 703 "MEO", 783 "GEO", 695 "MEO", 973 "GEO", 2 "GEO", 948 "Elliptical", 66 "LEO", 484 "GEO", 439 "GEO", 236 "LEO", 556 "LEO", 373 "LEO", 1083 "Elliptical", 142 "GEO", 359 "LEO", 727 "GEO", 371 "LEO", 772 "LEO", 444 "GEO", 1057 "GEO", 570 "LEO", 757 "LEO", 107 "LEO", 1094 "GEO", 532 "LEO", 984 "GEO", 23 "LEO", 1079 "LEO", 745 "LEO", 719 "LEO", 230 "GEO", 625 "LEO", 47 "GEO", 526 "LEO", 180 "LEO", 786 "GEO", 1068 "LEO", 1166 "LEO", 870 "GEO", 537 "LEO", 659 "GEO", 158 "GEO", 991 "LEO", 350 "LEO", 35 "GEO", 1116 "Elliptical", 849 "LEO", 1120 "GEO", 644 "GEO", 1069 "GEO", 881 "LEO", 127 "LEO", 927 "LEO", 675 "GEO", 1055 "LEO", 383 "MEO", 533 "LEO", 1100 "GEO", 910 "GEO", 302 "GEO", 564 "LEO", 701 "MEO", 1090 "LEO", 566 "LEO", 821 "LEO", 787 "LEO", 82 "GEO", 76 "GEO", 735 "LEO", 492 "GEO", 718 "GEO", 771 "LEO", 215 "LEO", 97 "GEO", 704 "MEO", 277 "GEO", 926 "LEO", 751 "GEO", 1114 "GEO", 19 "GEO", 335 "LEO", 597 "GEO", 938 "LEO", 57 "GEO", 609 "LEO", 202 "GEO", 68 "GEO", 452 "LEO", 1054 "LEO", 200 "LEO", 1142 "LEO", 868 "LEO", 11 "GEO", 115 "GEO", 946 "Elliptical", 1063 "LEO", 983 "GEO", 339 "LEO", 431 "GEO", 462 "LEO", 337 "LEO", 698 "MEO", 255 "GEO", 503 "GEO", 546 "LEO", 9 "GEO", 953 "GEO", 857 "Elliptical", 706 "MEO", 632 "GEO", 457 "LEO", 427 "LEO", 145 "GEO", 5 "LEO", 733 "GEO", 1163 "GEO", 1165 "LEO", 1152 "LEO", 624 "LEO", 831 "LEO", 244 "Elliptical", 918 "LEO", 824 "GEO", 289 "GEO", 112 "GEO", 925 "LEO", 1059 "LEO", 730 "GEO", 699 "MEO", 712 "LEO", 1076 "GEO", 1113 "GEO", 414 "GEO", 839 "LEO", 802 "LEO", 1084 "LEO", 860 "Elliptical", 1117 "LEO", 179 "LEO", 344 "LEO", 481 "GEO", 732 "GEO", 661 "GEO", 245 "LEO", 378 "LEO", 913 "GEO", 906 "GEO", 658 "GEO", 266 "GEO", 324 "LEO", 793 "LEO", 1134 "LEO", 1132 "LEO", 1014 "GEO", 680 "MEO", 446 "LEO", 524 "LEO", 254 "GEO", 404 "MEO", 1025 "GEO", 617 "LEO", 283 "GEO", 1153 "LEO", 513 "GEO", 572 "LEO", 705 "MEO", 1098 "GEO", 959 "GEO", 1074 "GEO", 83 "GEO", 634 "GEO", 138 "LEO", 1050 "GEO", 346 "LEO", 14 "LEO", 455 "GEO", 265 "GEO", 449 "LEO", 333 "LEO", 650 "GEO", 639 "LEO", 569 "LEO", 326 "GEO", 746 "LEO", 647 "Elliptical", 45 "GEO", 53 "GEO", 559 "LEO", 78 "GEO", 1037 "GEO", 924 "LEO", 562 "LEO", 1119 "LEO", 542 "LEO", 912 "GEO", 664 "LEO", 1048 "GEO", 315 "GEO", 1031 "GEO", 914 "GEO", 480 "GEO", 132 "GEO", 753 "LEO", 900 "LEO", 1013 "LEO", 26 "LEO", 766 "LEO", 123 "LEO", 203 "GEO", 667 "GEO", 392 "MEO", 1045 "Elliptical", 577 "LEO", 807 "LEO", 140 "LEO", 321 "MEO", 795 "LEO", 441 "LEO", 700 "MEO", 268 "GEO", 840 "LEO", 16 "LEO", 320 "MEO", 133 "LEO", 288 "LEO", 381 "MEO", 605 "LEO", 163 "LEO", 81 "GEO", 120 "LEO", 643 "LEO", 79 "GEO", 211 "GEO", 38 "GEO", 173 "LEO", 126 "LEO", 981 "LEO", 1161 "GEO", 421 "LEO", 593 "GEO", 636 "LEO", 1160 "GEO", 98 "GEO", 422 "LEO", 423 "LEO", 614 "GEO", 762 "LEO", 582 "LEO", 666 "GEO", 1123 "GEO", 554 "LEO", 409 "MEO", 574 "LEO", 595 "LEO", 124 "LEO", 747 "GEO", 171 "LEO", 87 "GEO", 169 "LEO", 653 "GEO", 679 "MEO", 843 "LEO", 160 "LEO", 30 "GEO", 400 "MEO", 767 "LEO", 896 "LEO", 928 "LEO", 696 "MEO", 1027 "GEO", 738 "MEO", 809 "LEO", 509 "GEO", 736 "LEO", 207 "GEO", 874 "LEO", 434 "LEO", 1130 "LEO", 690 "MEO", 194 "LEO", 1047 "GEO", 511 "GEO", 73 "GEO", 486 "GEO", 336 "LEO", 96 "GEO", 837 "LEO", 1136 "LEO", 937 "LEO", 10 "GEO", 660 "GEO", 272 "GEO", 499 "GEO", 488 "GEO", 903 "GEO", 386 "MEO", 270 "GEO", 576 "LEO", 717 "GEO", 543 "LEO", 271 "GEO", 18 "LEO", 395 "MEO", 403 "MEO", 469 "GEO", 105 "LEO", 185 "GEO", 52 "GEO", 1051 "GEO", 545 "LEO", 633 "LEO", 114 "LEO", 1099 "GEO", 968 "LEO", 253 "GEO", 612 "LEO", 1151 "LEO", 1015 "GEO", 628 "LEO", 748 "GEO", 209 "GEO", 147 "GEO", 655 "LEO", 1022 "GEO", 750 "GEO", 852 "LEO", 425 "LEO", 1158 "GEO", 864 "LEO", 67 "LEO", 1108 "LEO", 296 "LEO", 602 "GEO", 318 "GEO", 161 "LEO", 651 "GEO", 725 "GEO", 372 "LEO", 1092 "GEO", 406 "MEO", 438 "LEO", 780 "LEO", 711 "LEO", 1041 "GEO", 71 "GEO", 939 "LEO", 579 "LEO", 877 "LEO", 722 "LEO", 42 "GEO", 919 "LEO", 80 "GEO", 885 "LEO", 1078 "LEO", 986 "LEO", 1035 "GEO", 714 "GEO", 677 "MEO", 199 "LEO", 841 "LEO", 754 "LEO", 791 "LEO", 1029 "LEO", 861 "Elliptical", 591 "LEO", 1021 "GEO", 744 "LEO", 960 "LEO", 37 "GEO", 183 "GEO", 1139 "LEO", 965 "LEO", 892 "LEO", 432 "GEO", 379 "LEO", 63 "LEO", 212 "GEO", 94 "GEO", 362 "LEO", 8 "GEO", 686 "MEO", 692 "MEO", 764 "LEO", 246 "GEO", 190 "GEO", 1004 "LEO", 1036 "LEO", 549 "LEO", 922 "LEO", 177 "LEO", 915 "GEO", 936 "LEO", 820 "GEO", 49 "GEO", 858 "LEO", 390 "MEO", 84 "GEO"}}, :Launch_Site #gensql.inference.gpm.column.Column{:var-name :Launch_Site, :stattype :categorical, :categories {:cluster_80 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_66 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 3, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 3, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_32 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 1, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_75 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_81 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_93 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 1, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_0 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 7, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 3, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 3, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 1, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_76 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_62 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 15, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 2, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 2, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 5, "Plesetsk Cosmodrome" 6, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_92 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 2, :counts {"Baikonur Cosmodrome" 1, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 1, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_82 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_3 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 4, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 4, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_73 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 1, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_94 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 1, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_78 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 4, :counts {"Baikonur Cosmodrome" 4, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_6 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 278, :counts {"Baikonur Cosmodrome" 72, "Jiuquan Satellite Launch Center" 3, "L-1011 Aircraft" 1, "Vandenberg AFB" 59, "Taiyuan Launch Center" 9, "Kodiak Launch Complex" 1, "Guiana Space Center" 2, "Sea Launch" 0, "Sriharikota Launch Station" 5, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 47, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 1, "Yasny Cosmodrome" 1, "Naro Space Center" 0, "ISS" 2, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 2, "Cape Canaveral" 16, "Plesetsk Cosmodrome" 53, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 2, "Uchinoura Space Center" 2}}, :hyperparameters {:alpha 1.0}}, :cluster_77 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 1, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_85 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 7, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 1, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 1, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 5, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_79 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 1, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 1, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_59 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 4, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 4, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_4 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 434, :counts {"Baikonur Cosmodrome" 105, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 157, "Sea Launch" 4, "Sriharikota Launch Station" 3, "Kennedy Space Center" 1, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 5, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 36, "Kwajalein Island" 0, "Cape Canaveral" 95, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 26, "Satish Dhawan Space Center" 2, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_9 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 29, :counts {"Baikonur Cosmodrome" 3, "Jiuquan Satellite Launch Center" 1, "L-1011 Aircraft" 0, "Vandenberg AFB" 14, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 1, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 8, "Plesetsk Cosmodrome" 2, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_2 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 295, :counts {"Baikonur Cosmodrome" 30, "Jiuquan Satellite Launch Center" 31, "L-1011 Aircraft" 0, "Vandenberg AFB" 61, "Taiyuan Launch Center" 44, "Kodiak Launch Complex" 3, "Guiana Space Center" 13, "Sea Launch" 0, "Sriharikota Launch Station" 24, "Kennedy Space Center" 0, "Palmachim Launch Complex" 3, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 15, "Dombarovsky Launch Facility" 35, "Yasny Cosmodrome" 1, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 3, "Xichang Satellite Launch Center" 1, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 17, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 13, "Uchinoura Space Center" 1}}, :hyperparameters {:alpha 1.0}}, :cluster_23 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 72, :counts {"Baikonur Cosmodrome" 27, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 0, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 0, "Guiana Space Center" 4, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 5, "Kwajalein Island" 0, "Cape Canaveral" 32, "Plesetsk Cosmodrome" 4, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}, :cluster_74 #gensql.inference.gpm.primitive_gpms.categorical.Categorical{:var-name :Launch_Site, :suff-stats {:n 2, :counts {"Baikonur Cosmodrome" 0, "Jiuquan Satellite Launch Center" 0, "L-1011 Aircraft" 0, "Vandenberg AFB" 1, "Taiyuan Launch Center" 0, "Kodiak Launch Complex" 1, "Guiana Space Center" 0, "Sea Launch" 0, "Sriharikota Launch Station" 0, "Kennedy Space Center" 0, "Palmachim Launch Complex" 0, "Wallops Island Flight Facility" 0, "Tanegashima Space Center" 0, "Dombarovsky Launch Facility" 0, "Yasny Cosmodrome" 0, "Naro Space Center" 0, "ISS" 0, "Svobodny Cosmodrome" 0, "Xichang Satellite Launch Center" 0, "Kwajalein Island" 0, "Cape Canaveral" 0, "Plesetsk Cosmodrome" 0, "Sea Launch (Odyssey)" 0, "Satish Dhawan Space Center" 0, "Uchinoura Space Center" 0}}, :hyperparameters {:alpha 1.0}}}, :assignments {{:Launch_Site "Jiuquan Satellite Launch Center"} {:cluster_2 31, :cluster_6 3, :cluster_9 1}, {:Launch_Site "ISS"} {:cluster_6 2}, {:Launch_Site "Plesetsk Cosmodrome"} {:cluster_6 53, :cluster_23 4, :cluster_62 6, :cluster_2 17, :cluster_9 2}, {:Launch_Site "Tanegashima Space Center"} {:cluster_2 15, :cluster_4 5, :cluster_9 1, :cluster_85 1}, {:Launch_Site "Dombarovsky Launch Facility"} {:cluster_2 35, :cluster_6 1}, {:Launch_Site "L-1011 Aircraft"} {:cluster_6 1}, {:Launch_Site "Sea Launch"} {:cluster_4 4}, {:Launch_Site "Kwajalein Island"} {:cluster_92 1, :cluster_6 2}, {:Launch_Site "Cape Canaveral"} {:cluster_66 3, :cluster_93 1, :cluster_62 5, :cluster_3 4, :cluster_73 1, :cluster_6 16, :cluster_79 1, :cluster_4 95, :cluster_9 8, :cluster_23 32}, {:Launch_Site "Taiyuan Launch Center"} {:cluster_6 9, :cluster_2 44}, {:Launch_Site "Wallops Island Flight Facility"} {:cluster_6 47}, {:Launch_Site "Baikonur Cosmodrome"} {:cluster_80 1, :cluster_75 1, :cluster_81 1, :cluster_76 1, :cluster_92 1, :cluster_78 4, :cluster_6 72, :cluster_4 105, :cluster_9 3, :cluster_2 30, :cluster_23 27}, {:Launch_Site "Kennedy Space Center"} {:cluster_4 1}, {:Launch_Site "Naro Space Center"} {:cluster_0 1}, {:Launch_Site "Sea Launch (Odyssey)"} {:cluster_4 26}, {:Launch_Site "Svobodny Cosmodrome"} {:cluster_2 3}, {:Launch_Site "Vandenberg AFB"} {:cluster_6 59, :cluster_2 61, :cluster_9 14, :cluster_62 2, :cluster_0 3, :cluster_74 1}, {:Launch_Site "Guiana Space Center"} {:cluster_32 1, :cluster_0 3, :cluster_62 2, :cluster_94 1, :cluster_6 2, :cluster_77 1, :cluster_59 4, :cluster_4 157, :cluster_2 13, :cluster_23 4}, {:Launch_Site "Palmachim Launch Complex"} {:cluster_2 3}, {:Launch_Site "Kodiak Launch Complex"} {:cluster_6 1, :cluster_74 1, :cluster_2 3}, {:Launch_Site "Satish Dhawan Space Center"} {:cluster_2 13, :cluster_4 2, :cluster_6 2}, {:Launch_Site "Xichang Satellite Launch Center"} {:cluster_4 36, :cluster_23 5, :cluster_85 5, :cluster_2 1}, {:Launch_Site "Uchinoura Space Center"} {:cluster_6 2, :cluster_82 1, :cluster_2 1}, {:Launch_Site "Sriharikota Launch Station"} {:cluster_2 24, :cluster_4 3, :cluster_6 5, :cluster_85 1}, {:Launch_Site "Yasny Cosmodrome"} {:cluster_6 1, :cluster_2 1}}, :hyperparameters {:alpha 1.0}, :hyper-grid {:alpha (1.0 1.265422916616996 1.6012951578994645 2.026315589073813 2.5641461827122707 3.244729341160098 4.105954866523555 5.1957693826939835 6.574845646317909 8.319960354070167 10.528268497385243 13.32271222888807 16.85886536592846 21.333594582206448 26.996019478140223 34.16138170507743 43.22859527290556 54.70245511149586 69.22174029329938 87.59477649525111 110.84443755303454 140.2650914591314 177.49466113376374 224.60581177583265 284.22134142650214 359.6601988327193 455.1222577979483 575.922134879992 728.7850676641262 922.2213259104533)}, :metadata ["Satish Dhawan Space Center" "Baikonur Cosmodrome" "Cape Canaveral" "Guiana Space Center" "Vandenberg AFB" "Xichang Satellite Launch Center" "Sriharikota Launch Station" "Plesetsk Cosmodrome" "Uchinoura Space Center" "Dombarovsky Launch Facility" "ISS" "L-1011 Aircraft" "Wallops Island Flight Facility" "Taiyuan Launch Center" "Jiuquan Satellite Launch Center" "Sea Launch (Odyssey)" "Sea Launch" "Tanegashima Space Center" "Svobodny Cosmodrome" "Kodiak Launch Complex" "Yasny Cosmodrome" "Kwajalein Island" "Kennedy Space Center" "Palmachim Launch Complex" "Naro Space Center"], :data {0 "Satish Dhawan Space Center", 893 "Cape Canaveral", 920 "Jiuquan Satellite Launch Center", 558 "Vandenberg AFB", 453 "Dombarovsky Launch Facility", 584 "Vandenberg AFB", 487 "Cape Canaveral", 637 "Guiana Space Center", 972 "Sea Launch (Odyssey)", 519 "Kwajalein Island", 1097 "Cape Canaveral", 357 "Baikonur Cosmodrome", 716 "Baikonur Cosmodrome", 950 "Baikonur Cosmodrome", 275 "Baikonur Cosmodrome", 530 "Taiyuan Launch Center", 929 "Taiyuan Launch Center", 789 "Plesetsk Cosmodrome", 389 "Baikonur Cosmodrome", 586 "Vandenberg AFB", 410 "Plesetsk Cosmodrome", 433 "Guiana Space Center", 765 "Wallops Island Flight Facility", 521 "Baikonur Cosmodrome", 451 "Tanegashima Space Center", 291 "Xichang Satellite Launch Center", 443 "Cape Canaveral", 798 "Kodiak Launch Complex", 779 "Wallops Island Flight Facility", 970 "Cape Canaveral", 249 "Guiana Space Center", 638 "Vandenberg AFB", 299 "Vandenberg AFB", 1101 "Cape Canaveral", 121 "Sriharikota Launch Station", 734 "Guiana Space Center", 287 "Taiyuan Launch Center", 65 "Dombarovsky Launch Facility", 1086 "Cape Canaveral", 702 "Cape Canaveral", 70 "Xichang Satellite Launch Center", 949 "Baikonur Cosmodrome", 218 "Xichang Satellite Launch Center", 648 "Plesetsk Cosmodrome", 1070 "Cape Canaveral", 812 "Wallops Island Flight Facility", 62 "Baikonur Cosmodrome", 74 "ISS", 774 "Wallops Island Flight Facility", 475 "Baikonur Cosmodrome", 497 "Baikonur Cosmodrome", 1009 "Plesetsk Cosmodrome", 580 "Vandenberg AFB", 1138 "Taiyuan Launch Center", 891 "Cape Canaveral", 164 "Vandenberg AFB", 1040 "Guiana Space Center", 282 "Baikonur Cosmodrome", 769 "Wallops Island Flight Facility", 799 "Plesetsk Cosmodrome", 273 "Baikonur Cosmodrome", 1147 "Jiuquan Satellite Launch Center", 186 "Sea Launch (Odyssey)", 430 "Sriharikota Launch Station", 641 "Baikonur Cosmodrome", 529 "Taiyuan Launch Center", 898 "Cape Canaveral", 370 "Baikonur Cosmodrome", 834 "Kwajalein Island", 233 "Baikonur Cosmodrome", 298 "Vandenberg AFB", 188 "Baikonur Cosmodrome", 240 "Vandenberg AFB", 110 "Cape Canaveral", 130 "Cape Canaveral", 982 "Guiana Space Center", 620 "Sea Launch (Odyssey)", 311 "Sea Launch (Odyssey)", 931 "Taiyuan Launch Center", 882 "Baikonur Cosmodrome", 128 "Sriharikota Launch Station", 399 "Baikonur Cosmodrome", 989 "Sriharikota Launch Station", 377 "Baikonur Cosmodrome", 468 "Cape Canaveral", 259 "Cape Canaveral", 210 "Cape Canaveral", 229 "Baikonur Cosmodrome", 153 "Xichang Satellite Launch Center", 621 "Guiana Space Center", 213 "Cape Canaveral", 670 "Tanegashima Space Center", 977 "Guiana Space Center", 343 "Baikonur Cosmodrome", 958 "Guiana Space Center", 887 "Vandenberg AFB", 472 "Cape Canaveral", 7 "Cape Canaveral", 894 "Vandenberg AFB", 59 "Baikonur Cosmodrome", 934 "Taiyuan Launch Center", 473 "Sea Launch (Odyssey)", 1010 "Plesetsk Cosmodrome", 86 "Cape Canaveral", 756 "Wallops Island Flight Facility", 830 "Baikonur Cosmodrome", 613 "Tanegashima Space Center", 491 "Baikonur Cosmodrome", 154 "Xichang Satellite Launch Center", 20 "Guiana Space Center", 224 "Baikonur Cosmodrome", 355 "Baikonur Cosmodrome", 592 "Vandenberg AFB", 1146 "Taiyuan Launch Center", 610 "Vandenberg AFB", 806 "Sriharikota Launch Station", 571 "Vandenberg AFB", 466 "Vandenberg AFB", 72 "Guiana Space Center", 454 "Guiana Space Center", 888 "Vandenberg AFB", 463 "Tanegashima Space Center", 851 "Plesetsk Cosmodrome", 770 "Wallops Island Flight Facility", 814 "Wallops Island Flight Facility", 859 "Vandenberg AFB", 58 "Baikonur Cosmodrome", 964 "Vandenberg AFB", 980 "Sriharikota Launch Station", 1001 "Vandenberg AFB", 205 "Cape Canaveral", 555 "Vandenberg AFB", 552 "Taiyuan Launch Center", 60 "Baikonur Cosmodrome", 1102 "Cape Canaveral", 835 "Baikonur Cosmodrome", 459 "Tanegashima Space Center", 175 "Vandenberg AFB", 322 "Guiana Space Center", 510 "Guiana Space Center", 1052 "Taiyuan Launch Center", 1121 "Baikonur Cosmodrome", 662 "Plesetsk Cosmodrome", 27 "Baikonur Cosmodrome", 352 "Baikonur Cosmodrome", 493 "Guiana Space Center", 899 "Cape Canaveral", 416 "Plesetsk Cosmodrome", 777 "Wallops Island Flight Facility", 694 "Cape Canaveral", 1 "Baikonur Cosmodrome", 631 "Baikonur Cosmodrome", 854 "Plesetsk Cosmodrome", 69 "Xichang Satellite Launch Center", 101 "Baikonur Cosmodrome", 24 "Vandenberg AFB", 901 "Cape Canaveral", 547 "Vandenberg AFB", 102 "Guiana Space Center", 788 "Plesetsk Cosmodrome", 1106 "Vandenberg AFB", 713 "Guiana Space Center", 1110 "Guiana Space Center", 385 "Baikonur Cosmodrome", 988 "Wallops Island Flight Facility", 135 "Jiuquan Satellite Launch Center", 1065 "Tanegashima Space Center", 397 "Baikonur Cosmodrome", 1011 "Plesetsk Cosmodrome", 1006 "Guiana Space Center", 773 "Wallops Island Flight Facility", 490 "Guiana Space Center", 752 "Wallops Island Flight Facility", 354 "Baikonur Cosmodrome", 884 "Cape Canaveral", 360 "Baikonur Cosmodrome", 998 "Plesetsk Cosmodrome", 961 "Baikonur Cosmodrome", 55 "Guiana Space Center", 568 "Baikonur Cosmodrome", 797 "Plesetsk Cosmodrome", 688 "Cape Canaveral", 763 "Wallops Island Flight Facility", 269 "Baikonur Cosmodrome", 676 "Cape Canaveral", 448 "Taiyuan Launch Center", 527 "Vandenberg AFB", 206 "Cape Canaveral", 1075 "Cape Canaveral", 966 "Vandenberg AFB", 165 "Vandenberg AFB", 715 "Baikonur Cosmodrome", 387 "Baikonur Cosmodrome", 652 "Guiana Space Center", 683 "Cape Canaveral", 85 "Baikonur Cosmodrome", 721 "Vandenberg AFB", 862 "Satish Dhawan Space Center", 615 "Tanegashima Space Center", 681 "Cape Canaveral", 225 "Guiana Space Center", 865 "Plesetsk Cosmodrome", 297 "Vandenberg AFB", 39 "Cape Canaveral", 805 "Tanegashima Space Center", 274 "Guiana Space Center", 88 "Baikonur Cosmodrome", 217 "Dombarovsky Launch Facility", 1128 "Taiyuan Launch Center", 46 "Baikonur Cosmodrome", 682 "Cape Canaveral", 508 "Sea Launch (Odyssey)", 1157 "Xichang Satellite Launch Center", 149 "Xichang Satellite Launch Center", 415 "Jiuquan Satellite Launch Center", 239 "Vandenberg AFB", 478 "Guiana Space Center", 878 "Baikonur Cosmodrome", 157 "Guiana Space Center", 345 "Baikonur Cosmodrome", 300 "Vandenberg AFB", 743 "Palmachim Launch Complex", 921 "Jiuquan Satellite Launch Center", 1039 "Baikonur Cosmodrome", 4 "Guiana Space Center", 550 "Vandenberg AFB", 1115 "Sea Launch (Odyssey)", 204 "Cape Canaveral", 470 "Guiana Space Center", 1164 "Xichang Satellite Launch Center", 646 "Plesetsk Cosmodrome", 77 "Cape Canaveral", 106 "Baikonur Cosmodrome", 197 "Vandenberg AFB", 405 "Plesetsk Cosmodrome", 897 "Vandenberg AFB", 726 "Baikonur Cosmodrome", 776 "Wallops Island Flight Facility", 940 "Taiyuan Launch Center", 755 "Wallops Island Flight Facility", 902 "Cape Canaveral", 518 "Baikonur Cosmodrome", 232 "Dombarovsky Launch Facility", 260 "Baikonur Cosmodrome", 823 "Baikonur Cosmodrome", 1125 "Baikonur Cosmodrome", 267 "Sea Launch (Odyssey)", 119 "Vandenberg AFB", 319 "Sea Launch (Odyssey)", 534 "Baikonur Cosmodrome", 222 "Baikonur Cosmodrome", 603 "Sea Launch (Odyssey)", 293 "Taiyuan Launch Center", 95 "Guiana Space Center", 450 "Guiana Space Center", 329 "Yasny Cosmodrome", 144 "Xichang Satellite Launch Center", 1087 "Dombarovsky Launch Facility", 504 "Guiana Space Center", 819 "Vandenberg AFB", 818 "Baikonur Cosmodrome", 505 "Cape Canaveral", 723 "Vandenberg AFB", 1071 "Cape Canaveral", 1008 "Uchinoura Space Center", 992 "Plesetsk Cosmodrome", 176 "Vandenberg AFB", 863 "Satish Dhawan Space Center", 471 "Guiana Space Center", 349 "Baikonur Cosmodrome", 512 "Baikonur Cosmodrome", 710 "Xichang Satellite Launch Center", 1058 "Xichang Satellite Launch Center", 192 "Satish Dhawan Space Center", 54 "Vandenberg AFB", 92 "Baikonur Cosmodrome", 221 "Cape Canaveral", 141 "Vandenberg AFB", 502 "Guiana Space Center", 871 "Guiana Space Center", 464 "Vandenberg AFB", 801 "Dombarovsky Launch Facility", 307 "Guiana Space Center", 935 "Taiyuan Launch Center", 758 "Wallops Island Flight Facility", 290 "Xichang Satellite Launch Center", 1156 "Jiuquan Satellite Launch Center", 1144 "Taiyuan Launch Center", 627 "Vandenberg AFB", 517 "Guiana Space Center", 1122 "Baikonur Cosmodrome", 361 "Baikonur Cosmodrome", 264 "Cape Canaveral", 137 "Baikonur Cosmodrome", 356 "Baikonur Cosmodrome", 728 "Guiana Space Center", 976 "Guiana Space Center", 678 "Cape Canaveral", 327 "Dombarovsky Launch Facility", 234 "Guiana Space Center", 856 "Plesetsk Cosmodrome", 817 "Dombarovsky Launch Facility", 1017 "Vandenberg AFB", 104 "Sriharikota Launch Station", 353 "Baikonur Cosmodrome", 1145 "Jiuquan Satellite Launch Center", 15 "Vandenberg AFB", 48 "Guiana Space Center", 945 "Xichang Satellite Launch Center", 759 "Wallops Island Flight Facility", 1066 "Cape Canaveral", 242 "Svobodny Cosmodrome", 832 "Dombarovsky Launch Facility", 969 "Tanegashima Space Center", 50 "Baikonur Cosmodrome", 956 "Guiana Space Center", 917 "Cape Canaveral", 1030 "Guiana Space Center", 557 "Vandenberg AFB", 251 "Guiana Space Center", 394 "Baikonur Cosmodrome", 116 "Guiana Space Center", 585 "Vandenberg AFB", 583 "Vandenberg AFB", 75 "Guiana Space Center", 437 "Guiana Space Center", 516 "Xichang Satellite Launch Center", 1062 "Xichang Satellite Launch Center", 994 "Plesetsk Cosmodrome", 930 "Taiyuan Launch Center", 967 "Plesetsk Cosmodrome", 687 "Cape Canaveral", 159 "Guiana Space Center", 848 "Plesetsk Cosmodrome", 995 "Plesetsk Cosmodrome", 1096 "Jiuquan Satellite Launch Center", 1159 "Xichang Satellite Launch Center", 709 "Wallops Island Flight Facility", 99 "Baikonur Cosmodrome", 540 "Vandenberg AFB", 645 "Cape Canaveral", 749 "Guiana Space Center", 479 "Guiana Space Center", 1081 "Plesetsk Cosmodrome", 890 "Cape Canaveral", 1046 "Dombarovsky Launch Facility", 630 "Baikonur Cosmodrome", 916 "Baikonur Cosmodrome", 815 "Wallops Island Flight Facility", 1080 "Baikonur Cosmodrome", 281 "Baikonur Cosmodrome", 402 "Baikonur Cosmodrome", 669 "Tanegashima Space Center", 781 "Wallops Island Flight Facility", 740 "Guiana Space Center", 1012 "Cape Canaveral", 975 "Baikonur Cosmodrome", 429 "Sriharikota Launch Station", 309 "Baikonur Cosmodrome", 458 "Tanegashima Space Center", 21 "Guiana Space Center", 388 "Baikonur Cosmodrome", 495 "Sea Launch (Odyssey)", 952 "Baikonur Cosmodrome", 626 "Cape Canaveral", 875 "Baikonur Cosmodrome", 31 "Sriharikota Launch Station", 113 "Guiana Space Center", 32 "Baikonur Cosmodrome", 811 "Wallops Island Flight Facility", 827 "Baikonur Cosmodrome", 407 "Baikonur Cosmodrome", 398 "Baikonur Cosmodrome", 136 "Taiyuan Launch Center", 691 "Cape Canaveral", 847 "Plesetsk Cosmodrome", 825 "Baikonur Cosmodrome", 139 "Dombarovsky Launch Facility", 506 "Baikonur Cosmodrome", 396 "Baikonur Cosmodrome", 460 "Tanegashima Space Center", 483 "Baikonur Cosmodrome", 589 "Vandenberg AFB", 581 "Vandenberg AFB", 932 "Taiyuan Launch Center", 174 "Plesetsk Cosmodrome", 578 "Vandenberg AFB", 855 "Plesetsk Cosmodrome", 331 "Cape Canaveral", 363 "Baikonur Cosmodrome", 1038 "Sriharikota Launch Station", 284 "Baikonur Cosmodrome", 208 "Cape Canaveral", 305 "Dombarovsky Launch Facility", 1019 "Baikonur Cosmodrome", 955 "Guiana Space Center", 796 "Plesetsk Cosmodrome", 708 "Satish Dhawan Space Center", 182 "Dombarovsky Launch Facility", 256 "Cape Canaveral", 1107 "Vandenberg AFB", 1109 "Cape Canaveral", 657 "Cape Canaveral", 514 "Guiana Space Center", 1103 "Guiana Space Center", 731 "Guiana Space Center", 619 "Baikonur Cosmodrome", 985 "Guiana Space Center", 485 "Baikonur Cosmodrome", 214 "Cape Canaveral", 193 "Vandenberg AFB", 685 "Cape Canaveral", 804 "Guiana Space Center", 869 "Guiana Space Center", 1002 "Cape Canaveral", 1104 "Cape Canaveral", 836 "Sriharikota Launch Station", 1131 "Taiyuan Launch Center", 785 "Xichang Satellite Launch Center", 635 "Baikonur Cosmodrome", 442 "Uchinoura Space Center", 1073 "Cape Canaveral", 561 "Vandenberg AFB", 954 "Guiana Space Center", 656 "Guiana Space Center", 607 "Baikonur Cosmodrome", 241 "Vandenberg AFB", 314 "Sea Launch (Odyssey)", 782 "Vandenberg AFB", 226 "Cape Canaveral", 235 "Guiana Space Center", 672 "Cape Canaveral", 420 "Plesetsk Cosmodrome", 418 "Plesetsk Cosmodrome", 262 "Guiana Space Center", 1016 "Kodiak Launch Complex", 263 "Baikonur Cosmodrome", 304 "Vandenberg AFB", 401 "Baikonur Cosmodrome", 673 "Guiana Space Center", 40 "Guiana Space Center", 129 "Vandenberg AFB", 600 "Guiana Space Center", 729 "Guiana Space Center", 1042 "Cape Canaveral", 467 "Sriharikota Launch Station", 1033 "Guiana Space Center", 1149 "Jiuquan Satellite Launch Center", 445 "Guiana Space Center", 317 "Guiana Space Center", 1091 "Taiyuan Launch Center", 1028 "Cape Canaveral", 294 "Taiyuan Launch Center", 91 "Guiana Space Center", 1044 "Cape Canaveral", 810 "Wallops Island Flight Facility", 1137 "Jiuquan Satellite Launch Center", 364 "Baikonur Cosmodrome", 987 "Kodiak Launch Complex", 880 "Baikonur Cosmodrome", 515 "Guiana Space Center", 412 "Cape Canaveral", 553 "Vandenberg AFB", 974 "Guiana Space Center", 341 "Baikonur Cosmodrome", 117 "Guiana Space Center", 1000 "Dombarovsky Launch Facility", 1095 "Guiana Space Center", 665 "Plesetsk Cosmodrome", 523 "Baikonur Cosmodrome", 172 "Dombarovsky Launch Facility", 601 "Guiana Space Center", 108 "Satish Dhawan Space Center", 156 "Xichang Satellite Launch Center", 358 "Baikonur Cosmodrome", 308 "Sea Launch (Odyssey)", 908 "Tanegashima Space Center", 649 "Baikonur Cosmodrome", 531 "Vandenberg AFB", 1085 "Cape Canaveral", 923 "Taiyuan Launch Center", 1111 "Taiyuan Launch Center", 223 "Baikonur Cosmodrome", 419 "Plesetsk Cosmodrome", 365 "Baikonur Cosmodrome", 944 "Plesetsk Cosmodrome", 181 "Sriharikota Launch Station", 417 "Plesetsk Cosmodrome", 1082 "Plesetsk Cosmodrome", 979 "Sriharikota Launch Station", 278 "Baikonur Cosmodrome", 56 "Baikonur Cosmodrome", 942 "Guiana Space Center", 33 "Guiana Space Center", 13 "Cape Canaveral", 1043 "Cape Canaveral", 867 "Plesetsk Cosmodrome", 22 "Xichang Satellite Launch Center", 618 "Yasny Cosmodrome", 1141 "Taiyuan Launch Center", 1093 "Guiana Space Center", 380 "Plesetsk Cosmodrome", 257 "Guiana Space Center", 1061 "Sriharikota Launch Station", 338 "Cape Canaveral", 1024 "Cape Canaveral", 500 "Baikonur Cosmodrome", 909 "Sriharikota Launch Station", 1018 "Baikonur Cosmodrome", 993 "Plesetsk Cosmodrome", 1089 "Wallops Island Flight Facility", 168 "Vandenberg AFB", 833 "Guiana Space Center", 496 "Baikonur Cosmodrome", 1056 "Xichang Satellite Launch Center", 1129 "Taiyuan Launch Center", 947 "Baikonur Cosmodrome", 347 "Cape Canaveral", 501 "Guiana Space Center", 1007 "Cape Canaveral", 1077 "Baikonur Cosmodrome", 596 "Vandenberg AFB", 872 "Baikonur Cosmodrome", 792 "Plesetsk Cosmodrome", 90 "Baikonur Cosmodrome", 237 "Guiana Space Center", 826 "Vandenberg AFB", 292 "Taiyuan Launch Center", 109 "Baikonur Cosmodrome", 216 "Dombarovsky Launch Facility", 191 "Guiana Space Center", 498 "Guiana Space Center", 829 "Baikonur Cosmodrome", 761 "Wallops Island Flight Facility", 1072 "Cape Canaveral", 375 "Baikonur Cosmodrome", 525 "Taiyuan Launch Center", 367 "Baikonur Cosmodrome", 143 "Xichang Satellite Launch Center", 742 "Svobodny Cosmodrome", 178 "Sriharikota Launch Station", 640 "Guiana Space Center", 247 "Guiana Space Center", 328 "Dombarovsky Launch Facility", 391 "Baikonur Cosmodrome", 990 "Plesetsk Cosmodrome", 167 "Vandenberg AFB", 707 "Cape Canaveral", 36 "Cape Canaveral", 41 "Guiana Space Center", 474 "Baikonur Cosmodrome", 187 "Guiana Space Center", 551 "Vandenberg AFB", 1118 "Guiana Space Center", 996 "Plesetsk Cosmodrome", 528 "Vandenberg AFB", 971 "Guiana Space Center", 599 "Guiana Space Center", 376 "Baikonur Cosmodrome", 195 "Vandenberg AFB", 889 "Vandenberg AFB", 316 "Baikonur Cosmodrome", 668 "Vandenberg AFB", 428 "Guiana Space Center", 303 "Vandenberg AFB", 671 "Cape Canaveral", 794 "Plesetsk Cosmodrome", 905 "Cape Canaveral", 368 "Baikonur Cosmodrome", 560 "Vandenberg AFB", 565 "Baikonur Cosmodrome", 310 "Guiana Space Center", 366 "Baikonur Cosmodrome", 118 "L-1011 Aircraft", 522 "Taiyuan Launch Center", 150 "Xichang Satellite Launch Center", 886 "Vandenberg AFB", 313 "Sea Launch (Odyssey)", 384 "Baikonur Cosmodrome", 567 "Baikonur Cosmodrome", 238 "Vandenberg AFB", 846 "Plesetsk Cosmodrome", 962 "Vandenberg AFB", 1127 "Jiuquan Satellite Launch Center", 845 "Plesetsk Cosmodrome", 196 "Vandenberg AFB", 162 "Vandenberg AFB", 393 "Baikonur Cosmodrome", 184 "Sea Launch (Odyssey)", 219 "Sea Launch", 999 "Naro Space Center", 461 "Tanegashima Space Center", 1032 "Sea Launch (Odyssey)", 89 "Guiana Space Center", 100 "Baikonur Cosmodrome", 426 "Plesetsk Cosmodrome", 604 "Guiana Space Center", 477 "Guiana Space Center", 844 "Plesetsk Cosmodrome", 541 "Vandenberg AFB", 351 "Baikonur Cosmodrome", 243 "Svobodny Cosmodrome", 131 "Cape Canaveral", 790 "Plesetsk Cosmodrome", 963 "Vandenberg AFB", 1053 "Jiuquan Satellite Launch Center", 629 "Satish Dhawan Space Center", 873 "Baikonur Cosmodrome", 122 "Satish Dhawan Space Center", 933 "Jiuquan Satellite Launch Center", 43 "Cape Canaveral", 1067 "Baikonur Cosmodrome", 231 "Cape Canaveral", 61 "Baikonur Cosmodrome", 654 "Baikonur Cosmodrome", 883 "Cape Canaveral", 1003 "Cape Canaveral", 598 "Guiana Space Center", 413 "Cape Canaveral", 29 "Vandenberg AFB", 784 "Guiana Space Center", 800 "Wallops Island Flight Facility", 151 "Xichang Satellite Launch Center", 369 "Baikonur Cosmodrome", 348 "Baikonur Cosmodrome", 1124 "Baikonur Cosmodrome", 575 "Vandenberg AFB", 693 "Cape Canaveral", 44 "Guiana Space Center", 739 "Guiana Space Center", 258 "Guiana Space Center", 250 "Xichang Satellite Launch Center", 674 "Baikonur Cosmodrome", 539 "Vandenberg AFB", 301 "Wallops Island Flight Facility", 838 "Baikonur Cosmodrome", 424 "Plesetsk Cosmodrome", 93 "Guiana Space Center", 6 "Cape Canaveral", 684 "Cape Canaveral", 1026 "Cape Canaveral", 951 "Baikonur Cosmodrome", 573 "Vandenberg AFB", 408 "Baikonur Cosmodrome", 563 "Taiyuan Launch Center", 850 "Plesetsk Cosmodrome", 616 "Plesetsk Cosmodrome", 866 "Plesetsk Cosmodrome", 111 "Guiana Space Center", 997 "Plesetsk Cosmodrome", 689 "Cape Canaveral", 28 "Uchinoura Space Center", 456 "Dombarovsky Launch Facility", 374 "Baikonur Cosmodrome", 608 "Vandenberg AFB", 737 "Guiana Space Center", 1155 "Jiuquan Satellite Launch Center", 548 "Vandenberg AFB", 538 "Baikonur Cosmodrome", 1034 "Baikonur Cosmodrome", 895 "Vandenberg AFB", 411 "Cape Canaveral", 957 "Guiana Space Center", 134 "Jiuquan Satellite Launch Center", 943 "Sea Launch (Odyssey)", 64 "Dombarovsky Launch Facility", 623 "Wallops Island Flight Facility", 1135 "Jiuquan Satellite Launch Center", 1133 "Jiuquan Satellite Launch Center", 465 "Vandenberg AFB", 816 "Wallops Island Flight Facility", 334 "Cape Canaveral", 1150 "Sriharikota Launch Station", 323 "Guiana Space Center", 189 "Sea Launch", 280 "Baikonur Cosmodrome", 198 "Vandenberg AFB", 155 "Xichang Satellite Launch Center", 295 "Cape Canaveral", 808 "Guiana Space Center", 248 "Baikonur Cosmodrome", 587 "Vandenberg AFB", 285 "Cape Canaveral", 507 "Guiana Space Center", 227 "Cape Canaveral", 724 "Wallops Island Flight Facility", 476 "Guiana Space Center", 941 "Dombarovsky Launch Facility", 911 "Guiana Space Center", 853 "Plesetsk Cosmodrome", 494 "Guiana Space Center", 220 "Sea Launch", 842 "Plesetsk Cosmodrome", 103 "Guiana Space Center", 697 "Cape Canaveral", 611 "Vandenberg AFB", 1105 "Dombarovsky Launch Facility", 170 "Baikonur Cosmodrome", 1154 "Taiyuan Launch Center", 51 "Baikonur Cosmodrome", 25 "Sriharikota Launch Station", 261 "Xichang Satellite Launch Center", 768 "Wallops Island Flight Facility", 822 "Baikonur Cosmodrome", 201 "Dombarovsky Launch Facility", 904 "Cape Canaveral", 590 "Plesetsk Cosmodrome", 489 "Baikonur Cosmodrome", 778 "Wallops Island Flight Facility", 166 "Vandenberg AFB", 447 "Taiyuan Launch Center", 34 "Guiana Space Center", 252 "Baikonur Cosmodrome", 978 "Guiana Space Center", 775 "Wallops Island Flight Facility", 325 "Baikonur Cosmodrome", 1005 "Guiana Space Center", 594 "Sriharikota Launch Station", 436 "Satish Dhawan Space Center", 828 "Baikonur Cosmodrome", 535 "Taiyuan Launch Center", 813 "Wallops Island Flight Facility", 146 "Xichang Satellite Launch Center", 741 "Sriharikota Launch Station", 1060 "Vandenberg AFB", 876 "Baikonur Cosmodrome", 1064 "Dombarovsky Launch Facility", 228 "Cape Canaveral", 907 "Cape Canaveral", 306 "Guiana Space Center", 125 "Satish Dhawan Space Center", 276 "Baikonur Cosmodrome", 340 "Baikonur Cosmodrome", 148 "Xichang Satellite Launch Center", 1143 "Taiyuan Launch Center", 482 "Sriharikota Launch Station", 1049 "Guiana Space Center", 622 "Jiuquan Satellite Launch Center", 588 "Vandenberg AFB", 17 "Vandenberg AFB", 312 "Guiana Space Center", 606 "Satish Dhawan Space Center", 3 "Cape Canaveral", 1148 "Jiuquan Satellite Launch Center", 520 "Vandenberg AFB", 1088 "Xichang Satellite Launch Center", 760 "Wallops Island Flight Facility", 720 "Vandenberg AFB", 1126 "Taiyuan Launch Center", 286 "Kodiak Launch Complex", 279 "Baikonur Cosmodrome", 879 "Baikonur Cosmodrome", 1020 "Cape Canaveral", 536 "Baikonur Cosmodrome", 1023 "Cape Canaveral", 663 "Baikonur Cosmodrome", 12 "Cape Canaveral", 440 "Cape Canaveral", 332 "Tanegashima Space Center", 330 "Vandenberg AFB", 1162 "Xichang Satellite Launch Center", 382 "Baikonur Cosmodrome", 152 "Xichang Satellite Launch Center", 1112 "Sea Launch (Odyssey)", 1140 "Jiuquan Satellite Launch Center", 544 "Vandenberg AFB", 803 "Guiana Space Center", 642 "Baikonur Cosmodrome", 435 "Taiyuan Launch Center", 342 "Baikonur Cosmodrome", 703 "Cape Canaveral", 783 "Xichang Satellite Launch Center", 695 "Cape Canaveral", 973 "Guiana Space Center", 2 "Cape Canaveral", 948 "Baikonur Cosmodrome", 66 "Dombarovsky Launch Facility", 484 "Baikonur Cosmodrome", 439 "Cape Canaveral", 236 "Guiana Space Center", 556 "Vandenberg AFB", 373 "Baikonur Cosmodrome", 1083 "Plesetsk Cosmodrome", 142 "Xichang Satellite Launch Center", 359 "Baikonur Cosmodrome", 727 "Guiana Space Center", 371 "Baikonur Cosmodrome", 772 "Vandenberg AFB", 444 "Cape Canaveral", 1057 "Xichang Satellite Launch Center", 570 "Baikonur Cosmodrome", 757 "Wallops Island Flight Facility", 107 "Plesetsk Cosmodrome", 1094 "Guiana Space Center", 532 "Vandenberg AFB", 984 "Guiana Space Center", 23 "Satish Dhawan Space Center", 1079 "Dombarovsky Launch Facility", 745 "Palmachim Launch Complex", 719 "Vandenberg AFB", 230 "Sea Launch", 625 "Vandenberg AFB", 47 "Guiana Space Center", 526 "Vandenberg AFB", 180 "Baikonur Cosmodrome", 786 "Cape Canaveral", 1068 "Satish Dhawan Space Center", 1166 "Taiyuan Launch Center", 870 "Guiana Space Center", 537 "Baikonur Cosmodrome", 659 "Cape Canaveral", 158 "Guiana Space Center", 991 "Plesetsk Cosmodrome", 350 "Baikonur Cosmodrome", 35 "Cape Canaveral", 1116 "Guiana Space Center", 849 "Plesetsk Cosmodrome", 1120 "Guiana Space Center", 644 "Cape Canaveral", 1069 "Guiana Space Center", 881 "Baikonur Cosmodrome", 127 "Sriharikota Launch Station", 927 "Taiyuan Launch Center", 675 "Cape Canaveral", 1055 "Jiuquan Satellite Launch Center", 383 "Baikonur Cosmodrome", 533 "Vandenberg AFB", 1100 "Cape Canaveral", 910 "Baikonur Cosmodrome", 302 "Cape Canaveral", 564 "Baikonur Cosmodrome", 701 "Cape Canaveral", 1090 "Sriharikota Launch Station", 566 "Baikonur Cosmodrome", 821 "Baikonur Cosmodrome", 787 "Guiana Space Center", 82 "Guiana Space Center", 76 "Baikonur Cosmodrome", 735 "Kwajalein Island", 492 "Sea Launch (Odyssey)", 718 "Baikonur Cosmodrome", 771 "Wallops Island Flight Facility", 215 "Baikonur Cosmodrome", 97 "Guiana Space Center", 704 "Cape Canaveral", 277 "Baikonur Cosmodrome", 926 "Taiyuan Launch Center", 751 "Guiana Space Center", 1114 "Sea Launch (Odyssey)", 19 "Guiana Space Center", 335 "Baikonur Cosmodrome", 597 "Guiana Space Center", 938 "Jiuquan Satellite Launch Center", 57 "Guiana Space Center", 609 "Vandenberg AFB", 202 "Tanegashima Space Center", 68 "Xichang Satellite Launch Center", 452 "Cape Canaveral", 1054 "Jiuquan Satellite Launch Center", 200 "Dombarovsky Launch Facility", 1142 "Jiuquan Satellite Launch Center", 868 "Plesetsk Cosmodrome", 11 "Cape Canaveral", 115 "Guiana Space Center", 946 "Baikonur Cosmodrome", 1063 "Plesetsk Cosmodrome", 983 "Guiana Space Center", 339 "Baikonur Cosmodrome", 431 "Satish Dhawan Space Center", 462 "Tanegashima Space Center", 337 "Cape Canaveral", 698 "Cape Canaveral", 255 "Guiana Space Center", 503 "Guiana Space Center", 546 "Vandenberg AFB", 9 "Cape Canaveral", 953 "Guiana Space Center", 857 "Baikonur Cosmodrome", 706 "Cape Canaveral", 632 "Kennedy Space Center", 457 "Tanegashima Space Center", 427 "Tanegashima Space Center", 145 "Xichang Satellite Launch Center", 5 "Vandenberg AFB", 733 "Guiana Space Center", 1163 "Xichang Satellite Launch Center", 1165 "Taiyuan Launch Center", 1152 "Dombarovsky Launch Facility", 624 "Vandenberg AFB", 831 "Baikonur Cosmodrome", 244 "Guiana Space Center", 918 "Jiuquan Satellite Launch Center", 824 "Baikonur Cosmodrome", 289 "Xichang Satellite Launch Center", 112 "Guiana Space Center", 925 "Taiyuan Launch Center", 1059 "Taiyuan Launch Center", 730 "Guiana Space Center", 699 "Cape Canaveral", 712 "Dombarovsky Launch Facility", 1076 "Cape Canaveral", 1113 "Sea Launch (Odyssey)", 414 "Cape Canaveral", 839 "Satish Dhawan Space Center", 802 "ISS", 1084 "Dombarovsky Launch Facility", 860 "Baikonur Cosmodrome", 1117 "Sriharikota Launch Station", 179 "Vandenberg AFB", 344 "Cape Canaveral", 481 "Guiana Space Center", 732 "Guiana Space Center", 661 "Cape Canaveral", 245 "Guiana Space Center", 378 "Baikonur Cosmodrome", 913 "Baikonur Cosmodrome", 906 "Cape Canaveral", 658 "Cape Canaveral", 266 "Guiana Space Center", 324 "Jiuquan Satellite Launch Center", 793 "Plesetsk Cosmodrome", 1134 "Jiuquan Satellite Launch Center", 1132 "Jiuquan Satellite Launch Center", 1014 "Guiana Space Center", 680 "Cape Canaveral", 446 "Taiyuan Launch Center", 524 "Baikonur Cosmodrome", 254 "Guiana Space Center", 404 "Baikonur Cosmodrome", 1025 "Cape Canaveral", 617 "Tanegashima Space Center", 283 "Baikonur Cosmodrome", 1153 "Taiyuan Launch Center", 513 "Guiana Space Center", 572 "Vandenberg AFB", 705 "Cape Canaveral", 1098 "Cape Canaveral", 959 "Guiana Space Center", 1074 "Cape Canaveral", 83 "Baikonur Cosmodrome", 634 "Baikonur Cosmodrome", 138 "Vandenberg AFB", 1050 "Sea Launch (Odyssey)", 346 "Baikonur Cosmodrome", 14 "Vandenberg AFB", 455 "Guiana Space Center", 265 "Guiana Space Center", 449 "Wallops Island Flight Facility", 333 "Cape Canaveral", 650 "Guiana Space Center", 639 "Vandenberg AFB", 569 "Baikonur Cosmodrome", 326 "Baikonur Cosmodrome", 746 "Dombarovsky Launch Facility", 647 "Plesetsk Cosmodrome", 45 "Guiana Space Center", 53 "Baikonur Cosmodrome", 559 "Vandenberg AFB", 78 "Baikonur Cosmodrome", 1037 "Guiana Space Center", 924 "Jiuquan Satellite Launch Center", 562 "Vandenberg AFB", 1119 "Taiyuan Launch Center", 542 "Vandenberg AFB", 912 "Baikonur Cosmodrome", 664 "Plesetsk Cosmodrome", 1048 "Baikonur Cosmodrome", 315 "Baikonur Cosmodrome", 1031 "Guiana Space Center", 914 "Baikonur Cosmodrome", 480 "Guiana Space Center", 132 "Xichang Satellite Launch Center", 753 "Wallops Island Flight Facility", 900 "Vandenberg AFB", 1013 "Sriharikota Launch Station", 26 "Plesetsk Cosmodrome", 766 "Wallops Island Flight Facility", 123 "Sriharikota Launch Station", 203 "Cape Canaveral", 667 "Cape Canaveral", 392 "Baikonur Cosmodrome", 1045 "Cape Canaveral", 577 "Vandenberg AFB", 807 "Plesetsk Cosmodrome", 140 "Dombarovsky Launch Facility", 321 "Guiana Space Center", 795 "Plesetsk Cosmodrome", 441 "Uchinoura Space Center", 700 "Cape Canaveral", 268 "Sea Launch (Odyssey)", 840 "Satish Dhawan Space Center", 16 "Vandenberg AFB", 320 "Guiana Space Center", 133 "Taiyuan Launch Center", 288 "Taiyuan Launch Center", 381 "Baikonur Cosmodrome", 605 "Sriharikota Launch Station", 163 "Vandenberg AFB", 81 "Guiana Space Center", 120 "Baikonur Cosmodrome", 643 "Sriharikota Launch Station", 79 "Baikonur Cosmodrome", 211 "Cape Canaveral", 38 "Baikonur Cosmodrome", 173 "Plesetsk Cosmodrome", 126 "Satish Dhawan Space Center", 981 "Guiana Space Center", 1161 "Xichang Satellite Launch Center", 421 "Plesetsk Cosmodrome", 593 "Sriharikota Launch Station", 636 "Baikonur Cosmodrome", 1160 "Xichang Satellite Launch Center", 98 "Guiana Space Center", 422 "Plesetsk Cosmodrome", 423 "Plesetsk Cosmodrome", 614 "Tanegashima Space Center", 762 "Wallops Island Flight Facility", 582 "Vandenberg AFB", 666 "Guiana Space Center", 1123 "Baikonur Cosmodrome", 554 "Vandenberg AFB", 409 "Plesetsk Cosmodrome", 574 "Vandenberg AFB", 595 "Sriharikota Launch Station", 124 "Wallops Island Flight Facility", 747 "Guiana Space Center", 171 "Jiuquan Satellite Launch Center", 87 "Guiana Space Center", 169 "Vandenberg AFB", 653 "Guiana Space Center", 679 "Cape Canaveral", 843 "Plesetsk Cosmodrome", 160 "Vandenberg AFB", 30 "Guiana Space Center", 400 "Baikonur Cosmodrome", 767 "Wallops Island Flight Facility", 896 "Vandenberg AFB", 928 "Taiyuan Launch Center", 696 "Cape Canaveral", 1027 "Cape Canaveral", 738 "Guiana Space Center", 809 "Wallops Island Flight Facility", 509 "Cape Canaveral", 736 "Kodiak Launch Complex", 207 "Cape Canaveral", 874 "Baikonur Cosmodrome", 434 "Taiyuan Launch Center", 1130 "Taiyuan Launch Center", 690 "Cape Canaveral", 194 "Vandenberg AFB", 1047 "Cape Canaveral", 511 "Guiana Space Center", 73 "Baikonur Cosmodrome", 486 "Guiana Space Center", 336 "Cape Canaveral", 96 "Guiana Space Center", 837 "Baikonur Cosmodrome", 1136 "Jiuquan Satellite Launch Center", 937 "Jiuquan Satellite Launch Center", 10 "Cape Canaveral", 660 "Cape Canaveral", 272 "Cape Canaveral", 499 "Cape Canaveral", 488 "Baikonur Cosmodrome", 903 "Cape Canaveral", 386 "Baikonur Cosmodrome", 270 "Guiana Space Center", 576 "Taiyuan Launch Center", 717 "Baikonur Cosmodrome", 543 "Vandenberg AFB", 271 "Guiana Space Center", 18 "Vandenberg AFB", 395 "Baikonur Cosmodrome", 403 "Baikonur Cosmodrome", 469 "Baikonur Cosmodrome", 105 "Baikonur Cosmodrome", 185 "Baikonur Cosmodrome", 52 "Baikonur Cosmodrome", 1051 "Sea Launch (Odyssey)", 545 "Taiyuan Launch Center", 633 "Plesetsk Cosmodrome", 114 "Dombarovsky Launch Facility", 1099 "Cape Canaveral", 968 "Vandenberg AFB", 253 "Baikonur Cosmodrome", 612 "Vandenberg AFB", 1151 "Plesetsk Cosmodrome", 1015 "Guiana Space Center", 628 "Vandenberg AFB", 748 "Xichang Satellite Launch Center", 209 "Cape Canaveral", 147 "Xichang Satellite Launch Center", 655 "Baikonur Cosmodrome", 1022 "Cape Canaveral", 750 "Guiana Space Center", 852 "Plesetsk Cosmodrome", 425 "Plesetsk Cosmodrome", 1158 "Xichang Satellite Launch Center", 864 "Plesetsk Cosmodrome", 67 "Dombarovsky Launch Facility", 1108 "Dombarovsky Launch Facility", 296 "Vandenberg AFB", 602 "Cape Canaveral", 318 "Sea Launch (Odyssey)", 161 "Vandenberg AFB", 651 "Guiana Space Center", 725 "Baikonur Cosmodrome", 372 "Baikonur Cosmodrome", 1092 "Baikonur Cosmodrome", 406 "Baikonur Cosmodrome", 438 "Guiana Space Center", 780 "Wallops Island Flight Facility", 711 "Dombarovsky Launch Facility", 1041 "Guiana Space Center", 71 "Xichang Satellite Launch Center", 939 "Jiuquan Satellite Launch Center", 579 "Vandenberg AFB", 877 "Baikonur Cosmodrome", 722 "Vandenberg AFB", 42 "Guiana Space Center", 919 "Jiuquan Satellite Launch Center", 80 "Guiana Space Center", 885 "Vandenberg AFB", 1078 "Baikonur Cosmodrome", 986 "Wallops Island Flight Facility", 1035 "Sea Launch (Odyssey)", 714 "Guiana Space Center", 677 "Cape Canaveral", 199 "Baikonur Cosmodrome", 841 "Plesetsk Cosmodrome", 754 "Wallops Island Flight Facility", 791 "Plesetsk Cosmodrome", 1029 "Sriharikota Launch Station", 861 "Baikonur Cosmodrome", 591 "Plesetsk Cosmodrome", 1021 "Cape Canaveral", 744 "Palmachim Launch Complex", 960 "Dombarovsky Launch Facility", 37 "Cape Canaveral", 183 "Baikonur Cosmodrome", 1139 "Taiyuan Launch Center", 965 "Vandenberg AFB", 892 "Cape Canaveral", 432 "Guiana Space Center", 379 "Baikonur Cosmodrome", 63 "Baikonur Cosmodrome", 212 "Cape Canaveral", 94 "Baikonur Cosmodrome", 362 "Baikonur Cosmodrome", 8 "Cape Canaveral", 686 "Cape Canaveral", 692 "Cape Canaveral", 764 "Wallops Island Flight Facility", 246 "Guiana Space Center", 190 "Baikonur Cosmodrome", 1004 "Sriharikota Launch Station", 1036 "Baikonur Cosmodrome", 549 "Vandenberg AFB", 922 "Jiuquan Satellite Launch Center", 177 "Plesetsk Cosmodrome", 915 "Baikonur Cosmodrome", 936 "Xichang Satellite Launch Center", 820 "Tanegashima Space Center", 49 "Baikonur Cosmodrome", 858 "Vandenberg AFB", 390 "Baikonur Cosmodrome", 84 "Baikonur Cosmodrome"}}}, :latents {:alpha 5.499553712280129, :counts {:cluster_80 1, :cluster_66 3, :cluster_32 1, :cluster_75 1, :cluster_81 1, :cluster_93 1, :cluster_0 7, :cluster_76 1, :cluster_62 15, :cluster_92 2, :cluster_82 1, :cluster_3 4, :cluster_73 1, :cluster_94 1, :cluster_78 4, :cluster_6 278, :cluster_77 1, :cluster_85 7, :cluster_79 1, :cluster_59 4, :cluster_4 434, :cluster_9 29, :cluster_2 295, :cluster_23 72, :cluster_74 2}, :y {0 :cluster_2, 893 :cluster_9, 920 :cluster_2, 558 :cluster_6, 453 :cluster_2, 584 :cluster_6, 487 :cluster_4, 637 :cluster_0, 972 :cluster_4, 519 :cluster_92, 1097 :cluster_4, 357 :cluster_6, 716 :cluster_4, 950 :cluster_4, 275 :cluster_4, 530 :cluster_6, 929 :cluster_2, 789 :cluster_6, 389 :cluster_23, 586 :cluster_6, 410 :cluster_23, 433 :cluster_4, 765 :cluster_6, 521 :cluster_6, 451 :cluster_2, 291 :cluster_4, 443 :cluster_4, 798 :cluster_6, 779 :cluster_6, 970 :cluster_6, 249 :cluster_4, 638 :cluster_2, 299 :cluster_2, 1101 :cluster_4, 121 :cluster_2, 734 :cluster_4, 287 :cluster_2, 65 :cluster_2, 1086 :cluster_62, 702 :cluster_23, 70 :cluster_4, 949 :cluster_4, 218 :cluster_4, 648 :cluster_62, 1070 :cluster_4, 812 :cluster_6, 62 :cluster_2, 74 :cluster_6, 774 :cluster_6, 475 :cluster_4, 497 :cluster_4, 1009 :cluster_2, 580 :cluster_6, 1138 :cluster_2, 891 :cluster_9, 164 :cluster_2, 1040 :cluster_4, 282 :cluster_4, 769 :cluster_6, 799 :cluster_9, 273 :cluster_4, 1147 :cluster_2, 186 :cluster_4, 430 :cluster_4, 641 :cluster_4, 529 :cluster_6, 898 :cluster_6, 370 :cluster_6, 834 :cluster_6, 233 :cluster_4, 298 :cluster_2, 188 :cluster_4, 240 :cluster_2, 110 :cluster_4, 130 :cluster_6, 982 :cluster_4, 620 :cluster_4, 311 :cluster_4, 931 :cluster_2, 882 :cluster_2, 128 :cluster_2, 399 :cluster_23, 989 :cluster_2, 377 :cluster_6, 468 :cluster_4, 259 :cluster_4, 210 :cluster_4, 229 :cluster_4, 153 :cluster_23, 621 :cluster_4, 213 :cluster_4, 670 :cluster_4, 977 :cluster_62, 343 :cluster_6, 958 :cluster_4, 887 :cluster_9, 472 :cluster_4, 7 :cluster_4, 894 :cluster_9, 59 :cluster_4, 934 :cluster_2, 473 :cluster_4, 1010 :cluster_6, 86 :cluster_4, 756 :cluster_6, 830 :cluster_2, 613 :cluster_4, 491 :cluster_4, 154 :cluster_23, 20 :cluster_4, 224 :cluster_4, 355 :cluster_6, 592 :cluster_2, 1146 :cluster_2, 610 :cluster_9, 806 :cluster_2, 571 :cluster_6, 466 :cluster_62, 72 :cluster_4, 454 :cluster_4, 888 :cluster_9, 463 :cluster_2, 851 :cluster_6, 770 :cluster_6, 814 :cluster_6, 859 :cluster_2, 58 :cluster_4, 964 :cluster_6, 980 :cluster_6, 1001 :cluster_2, 205 :cluster_4, 555 :cluster_6, 552 :cluster_6, 60 :cluster_2, 1102 :cluster_4, 835 :cluster_2, 459 :cluster_2, 175 :cluster_2, 322 :cluster_23, 510 :cluster_32, 1052 :cluster_2, 1121 :cluster_4, 662 :cluster_2, 27 :cluster_6, 352 :cluster_6, 493 :cluster_4, 899 :cluster_6, 416 :cluster_6, 777 :cluster_6, 694 :cluster_23, 1 :cluster_4, 631 :cluster_6, 854 :cluster_6, 69 :cluster_4, 101 :cluster_4, 24 :cluster_2, 901 :cluster_4, 547 :cluster_6, 102 :cluster_4, 788 :cluster_6, 1106 :cluster_2, 713 :cluster_4, 1110 :cluster_0, 385 :cluster_23, 988 :cluster_6, 135 :cluster_2, 1065 :cluster_9, 397 :cluster_23, 1011 :cluster_2, 1006 :cluster_4, 773 :cluster_6, 490 :cluster_4, 752 :cluster_6, 354 :cluster_6, 884 :cluster_4, 360 :cluster_6, 998 :cluster_6, 961 :cluster_4, 55 :cluster_4, 568 :cluster_6, 797 :cluster_6, 688 :cluster_23, 763 :cluster_6, 269 :cluster_4, 676 :cluster_23, 448 :cluster_2, 527 :cluster_6, 206 :cluster_4, 1075 :cluster_4, 966 :cluster_2, 165 :cluster_2, 715 :cluster_4, 387 :cluster_23, 652 :cluster_4, 683 :cluster_23, 85 :cluster_4, 721 :cluster_2, 862 :cluster_2, 615 :cluster_2, 681 :cluster_23, 225 :cluster_4, 865 :cluster_6, 297 :cluster_2, 39 :cluster_4, 805 :cluster_2, 274 :cluster_4, 88 :cluster_4, 217 :cluster_2, 1128 :cluster_2, 46 :cluster_4, 682 :cluster_23, 508 :cluster_4, 1157 :cluster_4, 149 :cluster_85, 415 :cluster_2, 239 :cluster_2, 478 :cluster_4, 878 :cluster_6, 157 :cluster_4, 345 :cluster_6, 300 :cluster_2, 743 :cluster_2, 921 :cluster_2, 1039 :cluster_2, 4 :cluster_4, 550 :cluster_6, 1115 :cluster_4, 204 :cluster_4, 470 :cluster_4, 1164 :cluster_4, 646 :cluster_62, 77 :cluster_4, 106 :cluster_6, 197 :cluster_2, 405 :cluster_23, 897 :cluster_9, 726 :cluster_4, 776 :cluster_6, 940 :cluster_2, 755 :cluster_6, 902 :cluster_4, 518 :cluster_6, 232 :cluster_2, 260 :cluster_4, 823 :cluster_4, 1125 :cluster_4, 267 :cluster_4, 119 :cluster_2, 319 :cluster_4, 534 :cluster_6, 222 :cluster_4, 603 :cluster_4, 293 :cluster_2, 95 :cluster_4, 450 :cluster_4, 329 :cluster_6, 144 :cluster_4, 1087 :cluster_2, 504 :cluster_4, 819 :cluster_2, 818 :cluster_4, 505 :cluster_4, 723 :cluster_2, 1071 :cluster_4, 1008 :cluster_6, 992 :cluster_6, 176 :cluster_0, 863 :cluster_2, 471 :cluster_4, 349 :cluster_6, 512 :cluster_4, 710 :cluster_4, 1058 :cluster_4, 192 :cluster_2, 54 :cluster_2, 92 :cluster_4, 221 :cluster_4, 141 :cluster_2, 502 :cluster_4, 871 :cluster_4, 464 :cluster_2, 801 :cluster_2, 307 :cluster_4, 935 :cluster_2, 758 :cluster_6, 290 :cluster_4, 1156 :cluster_2, 1144 :cluster_2, 627 :cluster_2, 517 :cluster_4, 1122 :cluster_4, 361 :cluster_6, 264 :cluster_4, 137 :cluster_4, 356 :cluster_6, 728 :cluster_4, 976 :cluster_62, 678 :cluster_23, 327 :cluster_2, 234 :cluster_2, 856 :cluster_6, 817 :cluster_2, 1017 :cluster_2, 104 :cluster_2, 353 :cluster_6, 1145 :cluster_2, 15 :cluster_6, 48 :cluster_4, 945 :cluster_4, 759 :cluster_6, 1066 :cluster_62, 242 :cluster_2, 832 :cluster_2, 969 :cluster_2, 50 :cluster_4, 956 :cluster_4, 917 :cluster_4, 1030 :cluster_4, 557 :cluster_6, 251 :cluster_4, 394 :cluster_23, 116 :cluster_4, 585 :cluster_6, 583 :cluster_6, 75 :cluster_4, 437 :cluster_2, 516 :cluster_4, 1062 :cluster_4, 994 :cluster_6, 930 :cluster_2, 967 :cluster_2, 687 :cluster_23, 159 :cluster_4, 848 :cluster_6, 995 :cluster_6, 1096 :cluster_2, 1159 :cluster_4, 709 :cluster_6, 99 :cluster_2, 540 :cluster_6, 645 :cluster_4, 749 :cluster_4, 479 :cluster_4, 1081 :cluster_62, 890 :cluster_9, 1046 :cluster_2, 630 :cluster_6, 916 :cluster_4, 815 :cluster_6, 1080 :cluster_4, 281 :cluster_4, 402 :cluster_23, 669 :cluster_4, 781 :cluster_6, 740 :cluster_59, 1012 :cluster_6, 975 :cluster_92, 429 :cluster_4, 309 :cluster_4, 458 :cluster_2, 21 :cluster_4, 388 :cluster_23, 495 :cluster_4, 952 :cluster_4, 626 :cluster_9, 875 :cluster_6, 31 :cluster_2, 113 :cluster_4, 32 :cluster_4, 811 :cluster_6, 827 :cluster_2, 407 :cluster_23, 398 :cluster_23, 136 :cluster_2, 691 :cluster_23, 847 :cluster_6, 825 :cluster_4, 139 :cluster_2, 506 :cluster_4, 396 :cluster_23, 460 :cluster_2, 483 :cluster_81, 589 :cluster_6, 581 :cluster_6, 932 :cluster_2, 174 :cluster_2, 578 :cluster_6, 855 :cluster_6, 331 :cluster_93, 363 :cluster_6, 1038 :cluster_2, 284 :cluster_4, 208 :cluster_4, 305 :cluster_2, 1019 :cluster_78, 955 :cluster_4, 796 :cluster_6, 708 :cluster_2, 182 :cluster_2, 256 :cluster_4, 1107 :cluster_2, 1109 :cluster_9, 657 :cluster_4, 514 :cluster_4, 1103 :cluster_4, 731 :cluster_4, 619 :cluster_6, 985 :cluster_4, 485 :cluster_4, 214 :cluster_4, 193 :cluster_2, 685 :cluster_23, 804 :cluster_2, 869 :cluster_4, 1002 :cluster_6, 1104 :cluster_73, 836 :cluster_2, 1131 :cluster_2, 785 :cluster_4, 635 :cluster_4, 442 :cluster_6, 1073 :cluster_4, 561 :cluster_6, 954 :cluster_4, 656 :cluster_4, 607 :cluster_4, 241 :cluster_2, 314 :cluster_4, 782 :cluster_2, 226 :cluster_4, 235 :cluster_2, 672 :cluster_4, 420 :cluster_6, 418 :cluster_6, 262 :cluster_4, 1016 :cluster_74, 263 :cluster_4, 304 :cluster_6, 401 :cluster_23, 673 :cluster_6, 40 :cluster_4, 129 :cluster_0, 600 :cluster_4, 729 :cluster_4, 1042 :cluster_4, 467 :cluster_2, 1033 :cluster_4, 1149 :cluster_2, 445 :cluster_4, 317 :cluster_4, 1091 :cluster_2, 1028 :cluster_4, 294 :cluster_2, 91 :cluster_4, 1044 :cluster_66, 810 :cluster_6, 1137 :cluster_6, 364 :cluster_6, 987 :cluster_2, 880 :cluster_6, 515 :cluster_4, 412 :cluster_4, 553 :cluster_6, 974 :cluster_4, 341 :cluster_6, 117 :cluster_4, 1000 :cluster_2, 1095 :cluster_2, 665 :cluster_2, 523 :cluster_6, 172 :cluster_2, 601 :cluster_4, 108 :cluster_2, 156 :cluster_23, 358 :cluster_6, 308 :cluster_4, 908 :cluster_2, 649 :cluster_2, 531 :cluster_6, 1085 :cluster_62, 923 :cluster_2, 1111 :cluster_2, 223 :cluster_4, 419 :cluster_6, 365 :cluster_6, 944 :cluster_2, 181 :cluster_2, 417 :cluster_6, 1082 :cluster_62, 979 :cluster_2, 278 :cluster_4, 56 :cluster_4, 942 :cluster_4, 33 :cluster_4, 13 :cluster_4, 1043 :cluster_66, 867 :cluster_6, 22 :cluster_4, 618 :cluster_2, 1141 :cluster_2, 1093 :cluster_4, 380 :cluster_23, 257 :cluster_4, 1061 :cluster_2, 338 :cluster_6, 1024 :cluster_4, 500 :cluster_4, 909 :cluster_2, 1018 :cluster_2, 993 :cluster_6, 1089 :cluster_6, 168 :cluster_2, 833 :cluster_4, 496 :cluster_4, 1056 :cluster_4, 1129 :cluster_2, 947 :cluster_76, 347 :cluster_6, 501 :cluster_4, 1007 :cluster_4, 1077 :cluster_2, 596 :cluster_6, 872 :cluster_4, 792 :cluster_6, 90 :cluster_4, 237 :cluster_2, 826 :cluster_2, 292 :cluster_2, 109 :cluster_2, 216 :cluster_2, 191 :cluster_4, 498 :cluster_4, 829 :cluster_2, 761 :cluster_6, 1072 :cluster_4, 375 :cluster_6, 525 :cluster_6, 367 :cluster_6, 143 :cluster_85, 742 :cluster_2, 178 :cluster_2, 640 :cluster_4, 247 :cluster_4, 328 :cluster_6, 391 :cluster_23, 990 :cluster_6, 167 :cluster_2, 707 :cluster_23, 36 :cluster_4, 41 :cluster_4, 474 :cluster_4, 187 :cluster_4, 551 :cluster_6, 1118 :cluster_4, 996 :cluster_6, 528 :cluster_6, 971 :cluster_4, 599 :cluster_4, 376 :cluster_6, 195 :cluster_2, 889 :cluster_9, 316 :cluster_4, 668 :cluster_2, 428 :cluster_4, 303 :cluster_2, 671 :cluster_4, 794 :cluster_6, 905 :cluster_62, 368 :cluster_6, 560 :cluster_6, 565 :cluster_6, 310 :cluster_4, 366 :cluster_6, 118 :cluster_6, 522 :cluster_6, 150 :cluster_85, 886 :cluster_9, 313 :cluster_4, 384 :cluster_23, 567 :cluster_6, 238 :cluster_2, 846 :cluster_6, 962 :cluster_74, 1127 :cluster_2, 845 :cluster_6, 196 :cluster_2, 162 :cluster_2, 393 :cluster_23, 184 :cluster_4, 219 :cluster_4, 999 :cluster_0, 461 :cluster_2, 1032 :cluster_4, 89 :cluster_4, 100 :cluster_4, 426 :cluster_2, 604 :cluster_4, 477 :cluster_4, 844 :cluster_6, 541 :cluster_6, 351 :cluster_6, 243 :cluster_2, 131 :cluster_79, 790 :cluster_6, 963 :cluster_6, 1053 :cluster_9, 629 :cluster_2, 873 :cluster_2, 122 :cluster_2, 933 :cluster_2, 43 :cluster_4, 1067 :cluster_9, 231 :cluster_4, 61 :cluster_6, 654 :cluster_2, 883 :cluster_4, 1003 :cluster_6, 598 :cluster_4, 413 :cluster_4, 29 :cluster_2, 784 :cluster_4, 800 :cluster_6, 151 :cluster_85, 369 :cluster_6, 348 :cluster_6, 1124 :cluster_4, 575 :cluster_6, 693 :cluster_23, 44 :cluster_4, 739 :cluster_59, 258 :cluster_4, 250 :cluster_4, 674 :cluster_6, 539 :cluster_6, 301 :cluster_6, 838 :cluster_9, 424 :cluster_6, 93 :cluster_4, 6 :cluster_4, 684 :cluster_23, 1026 :cluster_4, 951 :cluster_4, 573 :cluster_6, 408 :cluster_23, 563 :cluster_6, 850 :cluster_6, 616 :cluster_2, 866 :cluster_6, 111 :cluster_4, 997 :cluster_6, 689 :cluster_23, 28 :cluster_82, 456 :cluster_2, 374 :cluster_6, 608 :cluster_9, 737 :cluster_59, 1155 :cluster_2, 548 :cluster_6, 538 :cluster_6, 1034 :cluster_4, 895 :cluster_6, 411 :cluster_4, 957 :cluster_4, 134 :cluster_2, 943 :cluster_4, 64 :cluster_2, 623 :cluster_6, 1135 :cluster_2, 1133 :cluster_2, 465 :cluster_62, 816 :cluster_6, 334 :cluster_6, 1150 :cluster_2, 323 :cluster_23, 189 :cluster_4, 280 :cluster_4, 198 :cluster_2, 155 :cluster_23, 295 :cluster_9, 808 :cluster_2, 248 :cluster_4, 587 :cluster_6, 285 :cluster_6, 507 :cluster_4, 227 :cluster_4, 724 :cluster_6, 476 :cluster_4, 941 :cluster_2, 911 :cluster_4, 853 :cluster_6, 494 :cluster_4, 220 :cluster_4, 842 :cluster_6, 103 :cluster_4, 697 :cluster_23, 611 :cluster_9, 1105 :cluster_2, 170 :cluster_2, 1154 :cluster_2, 51 :cluster_4, 25 :cluster_2, 261 :cluster_4, 768 :cluster_6, 822 :cluster_6, 201 :cluster_2, 904 :cluster_62, 590 :cluster_6, 489 :cluster_4, 778 :cluster_6, 166 :cluster_2, 447 :cluster_2, 34 :cluster_4, 252 :cluster_4, 978 :cluster_2, 775 :cluster_6, 325 :cluster_4, 1005 :cluster_4, 594 :cluster_2, 436 :cluster_2, 828 :cluster_6, 535 :cluster_6, 813 :cluster_6, 146 :cluster_4, 741 :cluster_2, 1060 :cluster_6, 876 :cluster_6, 1064 :cluster_2, 228 :cluster_4, 907 :cluster_3, 306 :cluster_4, 125 :cluster_2, 276 :cluster_2, 340 :cluster_6, 148 :cluster_4, 1143 :cluster_2, 482 :cluster_4, 1049 :cluster_4, 622 :cluster_2, 588 :cluster_6, 17 :cluster_2, 312 :cluster_4, 606 :cluster_4, 3 :cluster_4, 1148 :cluster_2, 520 :cluster_2, 1088 :cluster_4, 760 :cluster_6, 720 :cluster_2, 1126 :cluster_2, 286 :cluster_2, 279 :cluster_4, 879 :cluster_6, 1020 :cluster_4, 536 :cluster_6, 1023 :cluster_4, 663 :cluster_2, 12 :cluster_4, 440 :cluster_6, 332 :cluster_2, 330 :cluster_2, 1162 :cluster_4, 382 :cluster_23, 152 :cluster_23, 1112 :cluster_4, 1140 :cluster_2, 544 :cluster_6, 803 :cluster_2, 642 :cluster_4, 435 :cluster_2, 342 :cluster_6, 703 :cluster_23, 783 :cluster_4, 695 :cluster_23, 973 :cluster_4, 2 :cluster_4, 948 :cluster_80, 66 :cluster_2, 484 :cluster_4, 439 :cluster_4, 236 :cluster_6, 556 :cluster_6, 373 :cluster_6, 1083 :cluster_62, 142 :cluster_4, 359 :cluster_6, 727 :cluster_4, 371 :cluster_6, 772 :cluster_6, 444 :cluster_4, 1057 :cluster_4, 570 :cluster_6, 757 :cluster_6, 107 :cluster_2, 1094 :cluster_4, 532 :cluster_6, 984 :cluster_4, 23 :cluster_6, 1079 :cluster_2, 745 :cluster_2, 719 :cluster_2, 230 :cluster_4, 625 :cluster_9, 47 :cluster_4, 526 :cluster_6, 180 :cluster_2, 786 :cluster_4, 1068 :cluster_2, 1166 :cluster_2, 870 :cluster_4, 537 :cluster_6, 659 :cluster_4, 158 :cluster_4, 991 :cluster_6, 350 :cluster_6, 35 :cluster_4, 1116 :cluster_94, 849 :cluster_6, 1120 :cluster_4, 644 :cluster_4, 1069 :cluster_4, 881 :cluster_2, 127 :cluster_2, 927 :cluster_2, 675 :cluster_4, 1055 :cluster_2, 383 :cluster_23, 533 :cluster_6, 1100 :cluster_4, 910 :cluster_4, 302 :cluster_4, 564 :cluster_6, 701 :cluster_23, 1090 :cluster_6, 566 :cluster_6, 821 :cluster_2, 787 :cluster_2, 82 :cluster_4, 76 :cluster_4, 735 :cluster_6, 492 :cluster_4, 718 :cluster_4, 771 :cluster_6, 215 :cluster_2, 97 :cluster_4, 704 :cluster_23, 277 :cluster_4, 926 :cluster_2, 751 :cluster_4, 1114 :cluster_4, 19 :cluster_4, 335 :cluster_6, 597 :cluster_4, 938 :cluster_2, 57 :cluster_4, 609 :cluster_9, 202 :cluster_4, 68 :cluster_4, 452 :cluster_9, 1054 :cluster_2, 200 :cluster_2, 1142 :cluster_2, 868 :cluster_2, 11 :cluster_4, 115 :cluster_4, 946 :cluster_75, 1063 :cluster_2, 983 :cluster_4, 339 :cluster_6, 431 :cluster_4, 462 :cluster_2, 337 :cluster_6, 698 :cluster_23, 255 :cluster_4, 503 :cluster_4, 546 :cluster_6, 9 :cluster_4, 953 :cluster_4, 857 :cluster_78, 706 :cluster_23, 632 :cluster_4, 457 :cluster_2, 427 :cluster_2, 145 :cluster_4, 5 :cluster_2, 733 :cluster_4, 1163 :cluster_4, 1165 :cluster_2, 1152 :cluster_2, 624 :cluster_9, 831 :cluster_6, 244 :cluster_0, 918 :cluster_2, 824 :cluster_4, 289 :cluster_4, 112 :cluster_4, 925 :cluster_2, 1059 :cluster_2, 730 :cluster_4, 699 :cluster_23, 712 :cluster_2, 1076 :cluster_4, 1113 :cluster_4, 414 :cluster_4, 839 :cluster_2, 802 :cluster_6, 1084 :cluster_2, 860 :cluster_78, 1117 :cluster_2, 179 :cluster_0, 344 :cluster_6, 481 :cluster_4, 732 :cluster_4, 661 :cluster_4, 245 :cluster_2, 378 :cluster_6, 913 :cluster_4, 906 :cluster_3, 658 :cluster_4, 266 :cluster_4, 324 :cluster_2, 793 :cluster_6, 1134 :cluster_6, 1132 :cluster_2, 1014 :cluster_4, 680 :cluster_23, 446 :cluster_2, 524 :cluster_6, 254 :cluster_4, 404 :cluster_23, 1025 :cluster_4, 617 :cluster_2, 283 :cluster_4, 1153 :cluster_2, 513 :cluster_4, 572 :cluster_6, 705 :cluster_23, 1098 :cluster_4, 959 :cluster_4, 1074 :cluster_4, 83 :cluster_4, 634 :cluster_4, 138 :cluster_6, 1050 :cluster_4, 346 :cluster_6, 14 :cluster_6, 455 :cluster_4, 265 :cluster_4, 449 :cluster_6, 333 :cluster_6, 650 :cluster_4, 639 :cluster_2, 569 :cluster_6, 326 :cluster_4, 746 :cluster_2, 647 :cluster_62, 45 :cluster_4, 53 :cluster_4, 559 :cluster_6, 78 :cluster_4, 1037 :cluster_4, 924 :cluster_2, 562 :cluster_6, 1119 :cluster_2, 542 :cluster_6, 912 :cluster_4, 664 :cluster_2, 1048 :cluster_4, 315 :cluster_4, 1031 :cluster_4, 914 :cluster_4, 480 :cluster_4, 132 :cluster_4, 753 :cluster_6, 900 :cluster_6, 1013 :cluster_2, 26 :cluster_6, 766 :cluster_6, 123 :cluster_2, 203 :cluster_4, 667 :cluster_4, 392 :cluster_23, 1045 :cluster_66, 577 :cluster_6, 807 :cluster_2, 140 :cluster_2, 321 :cluster_23, 795 :cluster_6, 441 :cluster_2, 700 :cluster_23, 268 :cluster_4, 840 :cluster_6, 16 :cluster_6, 320 :cluster_23, 133 :cluster_2, 288 :cluster_2, 381 :cluster_23, 605 :cluster_6, 163 :cluster_2, 81 :cluster_4, 120 :cluster_2, 643 :cluster_6, 79 :cluster_4, 211 :cluster_4, 38 :cluster_4, 173 :cluster_2, 126 :cluster_2, 981 :cluster_2, 1161 :cluster_4, 421 :cluster_6, 593 :cluster_85, 636 :cluster_2, 1160 :cluster_4, 98 :cluster_4, 422 :cluster_6, 423 :cluster_6, 614 :cluster_4, 762 :cluster_6, 582 :cluster_6, 666 :cluster_4, 1123 :cluster_4, 554 :cluster_6, 409 :cluster_23, 574 :cluster_6, 595 :cluster_2, 124 :cluster_6, 747 :cluster_4, 171 :cluster_2, 87 :cluster_4, 169 :cluster_2, 653 :cluster_4, 679 :cluster_23, 843 :cluster_6, 160 :cluster_2, 30 :cluster_4, 400 :cluster_23, 767 :cluster_6, 896 :cluster_9, 928 :cluster_2, 696 :cluster_23, 1027 :cluster_4, 738 :cluster_59, 809 :cluster_6, 509 :cluster_4, 736 :cluster_2, 207 :cluster_4, 874 :cluster_2, 434 :cluster_2, 1130 :cluster_2, 690 :cluster_23, 194 :cluster_2, 1047 :cluster_4, 511 :cluster_77, 73 :cluster_4, 486 :cluster_4, 336 :cluster_6, 96 :cluster_4, 837 :cluster_9, 1136 :cluster_6, 937 :cluster_2, 10 :cluster_3, 660 :cluster_4, 272 :cluster_4, 499 :cluster_4, 488 :cluster_4, 903 :cluster_4, 386 :cluster_23, 270 :cluster_4, 576 :cluster_6, 717 :cluster_4, 543 :cluster_6, 271 :cluster_4, 18 :cluster_2, 395 :cluster_23, 403 :cluster_23, 469 :cluster_4, 105 :cluster_2, 185 :cluster_4, 52 :cluster_4, 1051 :cluster_4, 545 :cluster_6, 633 :cluster_9, 114 :cluster_2, 1099 :cluster_4, 968 :cluster_6, 253 :cluster_4, 612 :cluster_9, 1151 :cluster_6, 1015 :cluster_4, 628 :cluster_2, 748 :cluster_4, 209 :cluster_4, 147 :cluster_85, 655 :cluster_2, 1022 :cluster_4, 750 :cluster_4, 852 :cluster_6, 425 :cluster_6, 1158 :cluster_4, 864 :cluster_2, 67 :cluster_2, 1108 :cluster_2, 296 :cluster_2, 602 :cluster_4, 318 :cluster_4, 161 :cluster_2, 651 :cluster_4, 725 :cluster_4, 372 :cluster_6, 1092 :cluster_4, 406 :cluster_23, 438 :cluster_2, 780 :cluster_6, 711 :cluster_2, 1041 :cluster_4, 71 :cluster_4, 939 :cluster_2, 579 :cluster_6, 877 :cluster_6, 722 :cluster_2, 42 :cluster_4, 919 :cluster_2, 80 :cluster_4, 885 :cluster_2, 1078 :cluster_2, 986 :cluster_6, 1035 :cluster_4, 714 :cluster_4, 677 :cluster_23, 199 :cluster_6, 841 :cluster_6, 754 :cluster_6, 791 :cluster_6, 1029 :cluster_6, 861 :cluster_78, 591 :cluster_6, 1021 :cluster_4, 744 :cluster_2, 960 :cluster_2, 37 :cluster_4, 183 :cluster_4, 1139 :cluster_2, 965 :cluster_2, 892 :cluster_9, 432 :cluster_4, 379 :cluster_6, 63 :cluster_2, 212 :cluster_3, 94 :cluster_4, 362 :cluster_6, 8 :cluster_4, 686 :cluster_23, 692 :cluster_23, 764 :cluster_6, 246 :cluster_4, 190 :cluster_4, 1004 :cluster_2, 1036 :cluster_2, 549 :cluster_6, 922 :cluster_2, 177 :cluster_2, 915 :cluster_4, 936 :cluster_2, 820 :cluster_85, 49 :cluster_4, 858 :cluster_2, 390 :cluster_23, 84 :cluster_4}}, :assignments {{:Eccentricity 3.2E-4, :Launch_Mass_kg 2081.0, :Apogee_km 35800.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{40}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 5000.0, :Apogee_km 35790.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001570796, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{325}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 2400.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{750}}, {:Eccentricity 4.6E-4, :Launch_Mass_kg 4630.0, :Apogee_km 35805.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{72}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{338}}, {:Eccentricity 0.00104, :Launch_Mass_kg nil, :Apogee_km 829.0, :Perigee_km 814.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{177}}, {:Eccentricity 0.00168, :Launch_Mass_kg 6150.0, :Apogee_km 35856.0, :Perigee_km 35714.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.01, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{275}}, {:Eccentricity 0.01508, :Launch_Mass_kg 1816.0, :Apogee_km 20582.0, :Perigee_km 19781.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.94, :Inclination_radians 0.973544657, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{676}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 270.0, :Apogee_km 1508.0, :Perigee_km 1493.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 116.0, :Inclination_radians 1.4397221, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{423}}, {:Eccentricity 0.00421, :Launch_Mass_kg 1415.0, :Apogee_km 19123.0, :Perigee_km 18909.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 671.2, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{402}}, {:Eccentricity 0.00236, :Launch_Mass_kg 225.0, :Apogee_km 1502.0, :Perigee_km 1465.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.6, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{996}}, {:Eccentricity 0.00448, :Launch_Mass_kg 8000.0, :Apogee_km 35976.0, :Perigee_km 35598.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 1436.13, :Inclination_radians 0.089011792, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{644}}, {:Eccentricity 5.5E-4, :Launch_Mass_kg 2070.0, :Apogee_km 35809.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{469}}, {:Eccentricity 0.00197, :Launch_Mass_kg 280.0, :Apogee_km 1511.0, :Perigee_km 1480.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{842}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 4703.0, :Apogee_km 35790.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1112}}, {:Eccentricity 0.00103, :Launch_Mass_kg 434.0, :Apogee_km 410.0, :Perigee_km 396.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 92.62, :Inclination_radians 0.698131701, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{780}}, {:Eccentricity 0.00156, :Launch_Mass_kg 800.0, :Apogee_km 698.0, :Perigee_km 676.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 98.5, :Inclination_radians 1.713913325, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{616}}, {:Eccentricity 0.00118, :Launch_Mass_kg 1155.0, :Apogee_km 859.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.94, :Inclination_radians 1.726654229, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{198}}, {:Eccentricity 0.00129, :Launch_Mass_kg nil, :Apogee_km 601.0, :Perigee_km 583.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.5, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{922}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 400.0, :Apogee_km 507.0, :Perigee_km 503.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{109}}, {:Eccentricity 0.00103, :Launch_Mass_kg 450.0, :Apogee_km 1422.0, :Perigee_km 1406.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{335}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3100.0, :Apogee_km 35791.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 1436.03, :Inclination_radians 0.488692191, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{901}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 4291.0, :Apogee_km 35801.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 0.021293017, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{326}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 5613.0, :Apogee_km 35800.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{487}}, {:Eccentricity 0.00193, :Launch_Mass_kg nil, :Apogee_km 626.0, :Perigee_km 599.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.438151304, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{26}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 33}, :row-ids #{558 580 571 547 527 550 557 583 540 581 578 553 531 528 541 575 539 573 588 544 556 532 526 533 546 559 562 542 582 554 543 579 549}}, {:Eccentricity 0.07979, :Launch_Mass_kg 490.0, :Apogee_km 1486.0, :Perigee_km 325.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 103.11, :Inclination_radians 1.413716694, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_0 1}, :row-ids #{129}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 4640.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{311}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1414.0, :Perigee_km 1411.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{351}}, {:Eccentricity 0.00268, :Launch_Mass_kg 35.0, :Apogee_km 734.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Research", :Period_minutes 99.1, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{881}}, {:Eccentricity 0.00255, :Launch_Mass_kg 225.0, :Apogee_km 1506.0, :Perigee_km 1466.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.7, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{994}}, {:Eccentricity 0.00108, :Launch_Mass_kg 2380.0, :Apogee_km 35832.0, :Perigee_km 35741.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.12, :Inclination_radians 0.024609142, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{214}}, {:Eccentricity 0.00129, :Launch_Mass_kg 300.0, :Apogee_km 603.0, :Perigee_km 585.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 96.56, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{216}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 5521.0, :Apogee_km 35803.0, :Perigee_km 35789.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.57, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{223}}, {:Eccentricity 0.00118, :Launch_Mass_kg 1630.0, :Apogee_km 20247.0, :Perigee_km 20184.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 719.32, :Inclination_radians 0.961501885, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{688}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg nil, :Apogee_km 35805.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 23.94, :Inclination_radians 0.085695666, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{907}}, {:Eccentricity 0.06917, :Launch_Mass_kg 1.0, :Apogee_km 1297.0, :Perigee_km 305.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 100.9, :Inclination_radians 1.21300383, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_0 1}, :row-ids #{637}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3325.0, :Apogee_km 35796.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.3, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1042}}, {:Eccentricity 9.2E-4, :Launch_Mass_kg 2059.0, :Apogee_km 20209.0, :Perigee_km 20160.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.07, :Inclination_radians 0.962025484, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{707}}, {:Eccentricity 0.00121, :Launch_Mass_kg 120.0, :Apogee_km 692.0, :Perigee_km 675.0, :Type_of_Orbit "Polar", :Purpose "Electronic Intelligence/Technology Development", :Period_minutes 98.43, :Inclination_radians 1.714087858, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1, :cluster_6 1}, :row-ids #{234 236}}, {:Eccentricity 0.00166, :Launch_Mass_kg 5.8, :Apogee_km 582.0, :Perigee_km 559.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.08, :Inclination_radians 1.132369619, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{199}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 117.0, :Apogee_km 624.0, :Perigee_km 622.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.2, :Inclination_radians 1.710422667, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{981}}, {:Eccentricity 0.00115, :Launch_Mass_kg nil, :Apogee_km 602.0, :Perigee_km 586.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{932}}, {:Eccentricity 0.00234, :Launch_Mass_kg 1816.0, :Apogee_km 20244.0, :Perigee_km 20120.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.954695101, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{678}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 3250.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{98}}, {:Eccentricity 0.00169, :Launch_Mass_kg 1415.0, :Apogee_km 19173.0, :Perigee_km 19087.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.73, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{410}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2090.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.09, :Inclination_radians 0.00418879, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{478}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 4710.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{55}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 2600.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.047996554, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{278}}, {:Eccentricity 0.00919, :Launch_Mass_kg 2217.0, :Apogee_km 20426.0, :Perigee_km 19938.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.0, :Inclination_radians 0.95644043, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{692}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35805.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{513}}, {:Eccentricity 0.00114, :Launch_Mass_kg 3.0, :Apogee_km 667.0, :Perigee_km 651.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.92, :Inclination_radians 1.710946266, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{615}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 700.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.08, :Inclination_radians 0.907396678, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{361}}, {:Eccentricity 0.00303, :Launch_Mass_kg 2060.0, :Apogee_km 20311.0, :Perigee_km 20150.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 719.92, :Inclination_radians 0.959232957, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{705}}, {:Eccentricity 8.0E-4, :Launch_Mass_kg 35.0, :Apogee_km 475.0, :Perigee_km 464.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.0, :Inclination_radians 1.699950691, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1052}}, {:Eccentricity 0.00147, :Launch_Mass_kg 500.0, :Apogee_km 803.0, :Perigee_km 782.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 100.7, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{434}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35799.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.15, :Inclination_radians 0.032637657, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{144}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 2750.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{477}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 13}, :row-ids #{521 568 534 523 565 567 538 536 570 537 564 566 569}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 3642.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{731}}, {:Eccentricity 0.00106, :Launch_Mass_kg 120.0, :Apogee_km 692.0, :Perigee_km 677.0, :Type_of_Orbit "Polar", :Purpose "Electronic Intelligence/Technology Development", :Period_minutes 98.46, :Inclination_radians 1.714087858, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{235}}, {:Eccentricity 0.00635, :Launch_Mass_kg 1.0, :Apogee_km 683.0, :Perigee_km 594.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 97.4, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{305}}, {:Eccentricity 0.00135, :Launch_Mass_kg 700.0, :Apogee_km 1391.0, :Perigee_km 1370.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 113.96, :Inclination_radians 0.907745744, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{379}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 1383.0, :Apogee_km 35790.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 0.102799893, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{69}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1700.0, :Apogee_km 623.0, :Perigee_km 622.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 97.2, :Inclination_radians 1.708677338, :Users "Military/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 3}, :row-ids #{168 167 169}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 5456.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{871}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 115.0, :Apogee_km 685.0, :Perigee_km 682.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 98.43, :Inclination_radians 1.712691595, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{1095}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35775.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.22, :Inclination_radians 0.058293997, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1073}}, {:Eccentricity 0.00184, :Launch_Mass_kg 45.0, :Apogee_km 1508.0, :Perigee_km 1479.0, :Type_of_Orbit "Intermediate", :Purpose "Technology Development", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{1151}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4600.0, :Apogee_km 35797.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial/Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{132}}, {:Eccentricity 9.4E-4, :Launch_Mass_kg 215.0, :Apogee_km 583.0, :Perigee_km 570.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 96.2, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{24}}, {:Eccentricity 0.00143, :Launch_Mass_kg 16.0, :Apogee_km 631.0, :Perigee_km 611.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.706932008, :Users "Civil/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{123}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 96.5, :Apogee_km 662.0, :Perigee_km 660.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.0, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1077}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3790.0, :Apogee_km 35794.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{317}}, {:Eccentricity 0.00185, :Launch_Mass_kg 2300.0, :Apogee_km 35864.0, :Perigee_km 35708.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.08, :Inclination_radians 0.962723615, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{143}}, {:Eccentricity 0.74119, :Launch_Mass_kg nil, :Apogee_km 39850.0, :Perigee_km 500.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 717.7, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{904}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 2700.0, :Apogee_km 35805.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001919862, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{249}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 680.0, :Apogee_km 635.0, :Perigee_km 632.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.4, :Inclination_radians 1.692969374, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{126}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 45.0, :Apogee_km 792.0, :Perigee_km 790.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{765}}, {:Eccentricity 0.08154, :Launch_Mass_kg 93.0, :Apogee_km 1482.0, :Perigee_km 298.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 102.77, :Inclination_radians 1.401150324, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Naro Space Center"} {:categories {:cluster_0 1}, :row-ids #{999}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 5396.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{725}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35809.0, :Perigee_km 35765.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.006108652, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{658}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2340.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{37}}, {:Eccentricity 0.00195, :Launch_Mass_kg nil, :Apogee_km 317.0, :Perigee_km 291.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 90.61, :Inclination_radians 1.686686189, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{622}}, {:Eccentricity 5.9E-4, :Launch_Mass_kg 1410.0, :Apogee_km 35811.0, :Perigee_km 35761.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001570796, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_4 1}, :row-ids #{429}}, {:Eccentricity 0.00138, :Launch_Mass_kg 28.7, :Apogee_km 867.0, :Perigee_km 847.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 102.1, :Inclination_radians 0.34906585, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{1090}}, {:Eccentricity 0.00236, :Launch_Mass_kg 315.0, :Apogee_km 633.0, :Perigee_km 600.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 97.0, :Inclination_radians 0.698131701, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{970}}, {:Eccentricity 0.00101, :Launch_Mass_kg nil, :Apogee_km 1081.0, :Perigee_km 1066.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 106.7, :Inclination_radians 2.14675498, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{298}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 5420.0, :Apogee_km 35883.0, :Perigee_km 35834.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1439.76, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{101}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 2894.0, :Apogee_km 35794.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3093.0, :Apogee_km 35796.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications/Navigation", :Period_minutes 1436.23, :Inclination_radians 0.001570796, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{433}}, {:Eccentricity 0.0014, :Launch_Mass_kg 100.0, :Apogee_km 804.0, :Perigee_km 784.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.7, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{135}}, {:Eccentricity 0.00143, :Launch_Mass_kg 3.0, :Apogee_km 627.0, :Perigee_km 607.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{909}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 2000.0, :Apogee_km 35803.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{471}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3600.0, :Apogee_km 35793.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{715}}, {:Eccentricity 0.01437, :Launch_Mass_kg 3.0, :Apogee_km 797.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{746}}, {:Eccentricity 0.0034, :Launch_Mass_kg 825.0, :Apogee_km 1011.0, :Perigee_km 961.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.8, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{792}}, {:Eccentricity 7.1E-4, :Launch_Mass_kg 2417.0, :Apogee_km 35788.0, :Perigee_km 35728.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.6, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{642}}, {:Eccentricity 0.68262, :Launch_Mass_kg 647.6, :Apogee_km 30534.0, :Perigee_km 591.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 539.06, :Inclination_radians 0.175056524, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{1085}}, {:Eccentricity 0.02525, :Launch_Mass_kg 2300.0, :Apogee_km 37872.0, :Perigee_km 35693.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1435.93, :Inclination_radians 1.682497399, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{150}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 5953.0, :Apogee_km 35823.0, :Perigee_km 35743.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.92, :Inclination_radians 6.98132E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1120}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1415.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{343}}, {:Eccentricity 0.00248, :Launch_Mass_kg 100.0, :Apogee_km 696.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 98.3, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{712}}, {:Eccentricity 0.00243, :Launch_Mass_kg 3.5, :Apogee_km 653.0, :Perigee_km 619.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.4, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1155}}, {:Eccentricity 0.00355, :Launch_Mass_kg 2217.0, :Apogee_km 20344.0, :Perigee_km 20155.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 720.71, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{699}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4300.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{187}}, {:Eccentricity 0.00133, :Launch_Mass_kg 100.8, :Apogee_km 804.0, :Perigee_km 785.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.5, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{134}}, {:Eccentricity 0.05288, :Launch_Mass_kg 18000.0, :Apogee_km 997.0, :Perigee_km 257.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.25, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{612}}, {:Eccentricity 7.1E-4, :Launch_Mass_kg 1.0, :Apogee_km 720.0, :Perigee_km 710.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.1, :Inclination_radians 1.715658655, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1013}}, {:Eccentricity 7.5E-4, :Launch_Mass_kg 2500.0, :Apogee_km 35817.0, :Perigee_km 35754.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{252}}, {:Eccentricity 0.00278, :Launch_Mass_kg 770.0, :Apogee_km 486.0, :Perigee_km 448.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.4, :Inclination_radians 1.713215194, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{867}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 4892.0, :Apogee_km 35806.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{262}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 700.0, :Apogee_km 8068.0, :Perigee_km 8064.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 287.94, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_59 1}, :row-ids #{739}}, {:Eccentricity 0.01597, :Launch_Mass_kg 3.0, :Apogee_km 819.0, :Perigee_km 593.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.9, :Inclination_radians 1.705186679, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{327}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 10.0, :Apogee_km 796.0, :Perigee_km 789.0, :Type_of_Orbit "Intermediate", :Purpose "Technology Development/Communications", :Period_minutes 100.7, :Inclination_radians 1.169370599, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_6 1}, :row-ids #{798}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg nil, :Apogee_km 502.0, :Perigee_km 498.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 7}, :row-ids #{812 814 815 811 810 816 813}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 700.0, :Apogee_km 8069.0, :Perigee_km 8062.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 287.93, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_59 1}, :row-ids #{738}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35798.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.19, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{911}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3659.0, :Apogee_km 35792.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.14, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{508}}, {:Eccentricity 0.01798, :Launch_Mass_kg 10.0, :Apogee_km 849.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 99.2, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1105}}, {:Eccentricity 0.86407, :Launch_Mass_kg 126.0, :Apogee_km 87304.0, :Perigee_km 461.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 1868.98, :Inclination_radians 0.274016693, :Users "Government/Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_66 1}, :row-ids #{1043}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{498}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 1500.0, :Apogee_km 454.0, :Perigee_km 444.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 93.6, :Inclination_radians 1.694714704, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1153}}, {:Eccentricity 0.00129, :Launch_Mass_kg 6.5, :Apogee_km 616.0, :Perigee_km 598.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.8, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{181}}, {:Eccentricity 0.00194, :Launch_Mass_kg nil, :Apogee_km 35796.0, :Perigee_km 35633.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1432.0, :Inclination_radians 1.74533E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{52}}, {:Eccentricity 0.00176, :Launch_Mass_kg 110.0, :Apogee_km 760.0, :Perigee_km 735.0, :Type_of_Orbit "Intermediate", :Purpose "Meteorology/Earth Observation", :Period_minutes 99.8, :Inclination_radians 0.436332313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{899}}, {:Eccentricity 0.00388, :Launch_Mass_kg 810.0, :Apogee_km 1011.0, :Perigee_km 954.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.8, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{795}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 14500.0, :Apogee_km 675.0, :Perigee_km 671.0, :Type_of_Orbit "Intermediate", :Purpose "Surveillance", :Period_minutes 98.2, :Inclination_radians 0.994837674, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{624}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 45.0, :Apogee_km 774.0, :Perigee_km 772.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{774 773}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 2650.0, :Apogee_km 504.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1166}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3800.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{190}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3833.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{502}}, {:Eccentricity 5.5E-4, :Launch_Mass_kg 2850.0, :Apogee_km 35809.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.023911011, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{666}}, {:Eccentricity 0.0, :Launch_Mass_kg 18000.0, :Apogee_km 800.0, :Perigee_km 800.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 100.87, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{608}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 450.0, :Apogee_km 1412.0, :Perigee_km 1407.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{333}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 3600.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{73}}, {:Eccentricity 0.00184, :Launch_Mass_kg 280.0, :Apogee_km 1511.0, :Perigee_km 1482.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{856}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 3311.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.14, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{455}}, {:Eccentricity 0.00174, :Launch_Mass_kg 325.0, :Apogee_km 534.0, :Perigee_km 510.0, :Type_of_Orbit nil, :Purpose "Scientific Research", :Period_minutes 95.1, :Inclination_radians 0.043633231, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_6 1}, :row-ids #{23}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 130.0, :Apogee_km 674.0, :Perigee_km 672.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.2, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{31}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 1.0, :Apogee_km 414.0, :Perigee_km 410.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 92.81, :Inclination_radians 0.901462559, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "ISS"} {:categories {:cluster_6 1}, :row-ids #{802}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1060.0, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_4 1}, :row-ids #{606}}, {:Eccentricity 0.00156, :Launch_Mass_kg 166.0, :Apogee_km 703.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{107}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.11, :Inclination_radians 0.112573737, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{883}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 4536.0, :Apogee_km 35768.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.04, :Inclination_radians 0.078539816, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{659}}, {:Eccentricity 0.00193, :Launch_Mass_kg 55.0, :Apogee_km 654.0, :Perigee_km 627.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.54, :Inclination_radians 1.256113463, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{286}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2400.0, :Apogee_km 35797.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.001745329, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{825}}, {:Eccentricity 0.001, :Launch_Mass_kg 2310.0, :Apogee_km 35829.0, :Perigee_km 35745.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.156556034, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{302}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 4900.0, :Apogee_km 35812.0, :Perigee_km 35759.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{273}}, {:Eccentricity 0.00149, :Launch_Mass_kg 409.0, :Apogee_km 690.0, :Perigee_km 669.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.35, :Inclination_radians 1.713215194, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{415}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 850.0, :Apogee_km 492.0, :Perigee_km 484.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.37, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{458}}, {:Eccentricity 0.01562, :Launch_Mass_kg 6.0, :Apogee_km 815.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.8, :Inclination_radians 1.705186679, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 2}, :row-ids #{201 200}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 1040.0, :Apogee_km 1207.0, :Perigee_km 1201.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 109.5, :Inclination_radians 1.74881991, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1131}}, {:Eccentricity 0.00192, :Launch_Mass_kg 1156.0, :Apogee_km 35868.0, :Perigee_km 35706.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 1.74533E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{206}}, {:Eccentricity 0.00156, :Launch_Mass_kg 170.0, :Apogee_km 703.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Research", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{944}}, {:Eccentricity 0.00326, :Launch_Mass_kg 795.0, :Apogee_km 1008.0, :Perigee_km 960.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.8, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{791}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 4060.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{308}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 3.0, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.6, :Inclination_radians 0.706858347, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{986}}, {:Eccentricity 0.00149, :Launch_Mass_kg 64.0, :Apogee_km 690.0, :Perigee_km 669.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.3, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{665}}, {:Eccentricity 7.4E-4, :Launch_Mass_kg nil, :Apogee_km 1090.0, :Perigee_km 1079.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 106.93, :Inclination_radians 1.10618968, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1133}}, {:Eccentricity 0.00391, :Launch_Mass_kg 70.0, :Apogee_km 828.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{165}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 3460.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.002094395, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{19}}, {:Eccentricity 0.01799, :Launch_Mass_kg 300.0, :Apogee_km 589.0, :Perigee_km 343.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 93.91, :Inclination_radians 2.474527813, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Palmachim Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{745}}, {:Eccentricity 0.00233, :Launch_Mass_kg 2217.0, :Apogee_km 20247.0, :Perigee_km 20123.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.09, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{693}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4027.0, :Apogee_km 35789.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{228}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1858.0, :Apogee_km 541.0, :Perigee_km 538.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Surveillance", :Period_minutes 95.4, :Inclination_radians 1.70344135, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{839}}, {:Eccentricity 0.00411, :Launch_Mass_kg nil, :Apogee_km 591.0, :Perigee_km 534.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 95.9, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{933}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 4970.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1034}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 2440.0, :Apogee_km 35794.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001396263, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{159}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4450.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{620}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 1825.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications/Technology Development", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_4 1}, :row-ids #{431}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19141.0, :Perigee_km 19134.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.1, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{381}}, {:Eccentricity 0.02986, :Launch_Mass_kg 1.0, :Apogee_km 890.0, :Perigee_km 469.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.3, :Inclination_radians 2.103121749, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{520}}, {:Eccentricity 0.00696, :Launch_Mass_kg 12.0, :Apogee_km 795.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 99.7, :Inclination_radians 1.712167996, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1078}}, {:Eccentricity 0.00358, :Launch_Mass_kg 1.0, :Apogee_km 640.0, :Perigee_km 590.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{453}}, {:Eccentricity 0.00149, :Launch_Mass_kg 200.0, :Apogee_km 677.0, :Perigee_km 656.0, :Type_of_Orbit nil, :Purpose "Earth Observation/Research", :Period_minutes 98.1, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{882}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1478.0, :Perigee_km 1477.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{340}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg nil, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 14.36, :Inclination_radians 0.085870199, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{906}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 3105.0, :Apogee_km 35803.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications/Research", :Period_minutes 1436.12, :Inclination_radians 0.122696646, :Users "Commercial/Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{75}}, {:Eccentricity 0.00258, :Launch_Mass_kg 700.0, :Apogee_km 1400.0, :Perigee_km 1360.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 113.35, :Inclination_radians 0.907222145, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{375}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5990.0, :Apogee_km 35786.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 3}, :row-ids #{1101 1102 1099}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 3150.0, :Apogee_km 35806.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{270}}, {:Eccentricity 0.00353, :Launch_Mass_kg 12.0, :Apogee_km 747.0, :Perigee_km 697.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.2, :Inclination_radians 1.710422667, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{873}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1800.0, :Apogee_km 512.0, :Perigee_km 511.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.9, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1144}}, {:Eccentricity 0.03149, :Launch_Mass_kg 2.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Civil/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 2}, :row-ids #{299 300}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 2315.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{36}}, {:Eccentricity 0.89688, :Launch_Mass_kg 4000.0, :Apogee_km 152812.0, :Perigee_km 2284.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 4032.86, :Inclination_radians 0.90931654, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_81 1}, :row-ids #{483}}, {:Eccentricity 0.01243, :Launch_Mass_kg 5000.0, :Apogee_km 1203.0, :Perigee_km 1017.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{891}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 45.0, :Apogee_km 792.0, :Perigee_km 791.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{761}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2460.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Earth Observation/Meteorology/Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{157}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 6600.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.100007366, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{231}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 0.009599311, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1161}}, {:Eccentricity 0.00128, :Launch_Mass_kg 200.0, :Apogee_km 680.0, :Perigee_km 662.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.2, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{215}}, {:Eccentricity 0.83044, :Launch_Mass_kg 980.0, :Apogee_km 104552.0, :Perigee_km 3905.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 2474.83, :Inclination_radians 0.389208423, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_93 1}, :row-ids #{331}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 4010.0, :Apogee_km 35801.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1032}}, {:Eccentricity 0.00367, :Launch_Mass_kg 820.0, :Apogee_km 1022.0, :Perigee_km 968.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 105.0, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{797}}, {:Eccentricity 0.0, :Launch_Mass_kg 5000.0, :Apogee_km 35500.0, :Perigee_km 35500.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes nil, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{9}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 45.0, :Apogee_km 793.0, :Perigee_km 789.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{762}}, {:Eccentricity 0.92129, :Launch_Mass_kg 462.0, :Apogee_km 320000.0, :Perigee_km 7000.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 0.22, :Inclination_radians 0.191986218, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Kwajalein Island"} {:categories {:cluster_92 1}, :row-ids #{519}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 5360.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.105766953, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{961}}, {:Eccentricity 0.00193, :Launch_Mass_kg nil, :Apogee_km 651.0, :Perigee_km 624.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.46, :Inclination_radians 1.710248134, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{935}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{509}}, {:Eccentricity 0.0, :Launch_Mass_kg 4745.0, :Apogee_km 35700.0, :Perigee_km 35700.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{717}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg nil, :Apogee_km 35815.0, :Perigee_km 35758.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1436.13, :Inclination_radians 0.044854962, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{902}}, {:Eccentricity 0.03261, :Launch_Mass_kg 2060.0, :Apogee_km 35725.0, :Perigee_km 33066.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1365.61, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{116}}, {:Eccentricity 0.4072, :Launch_Mass_kg nil, :Apogee_km 11600.0, :Perigee_km 1200.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 240.0, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_74 1}, :row-ids #{962}}, {:Eccentricity 8.6E-4, :Launch_Mass_kg nil, :Apogee_km 1205.0, :Perigee_km 1192.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 109.4, :Inclination_radians 1.75056524, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1146}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{524}}, {:Eccentricity 0.01757, :Launch_Mass_kg 700.0, :Apogee_km 1739.0, :Perigee_km 1459.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 118.2, :Inclination_radians 1.291543646, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{371}}, {:Eccentricity 1.0E-4, :Launch_Mass_kg 2130.0, :Apogee_km 37791.0, :Perigee_km 37782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_4 1}, :row-ids #{482}}, {:Eccentricity 7.6E-4, :Launch_Mass_kg 5000.0, :Apogee_km 911.0, :Perigee_km 900.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 103.1, :Inclination_radians 1.172861257, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{633}}, {:Eccentricity 6.4E-4, :Launch_Mass_kg 1.0, :Apogee_km 718.0, :Perigee_km 709.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.0, :Inclination_radians 1.715658655, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{104}}, {:Eccentricity 0.00187, :Launch_Mass_kg 3.0, :Apogee_km 866.0, :Perigee_km 839.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 102.0, :Inclination_radians 0.34906585, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{605}}, {:Eccentricity 0.02191, :Launch_Mass_kg 3.15, :Apogee_km 791.0, :Perigee_km 484.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 97.4, :Inclination_radians 1.127482697, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{138}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5150.0, :Apogee_km 35795.0, :Perigee_km 35793.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.003490659, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{710}}, {:Eccentricity 3.7E-4, :Launch_Mass_kg 4700.0, :Apogee_km 35802.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{956}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 5500.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{191}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 4680.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{70}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1417.0, :Perigee_km 1411.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{341}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 5200.0, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.003316126, :Users "Military/Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1163}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 700.0, :Apogee_km 1414.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 10}, :row-ids #{360 356 363 365 367 366 369 374 372 362}}, {:Eccentricity 0.0012, :Launch_Mass_kg 169.0, :Apogee_km 701.0, :Perigee_km 684.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.6, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{941}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2.5, :Apogee_km 499.0, :Perigee_km 498.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.58, :Inclination_radians 0.706858347, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{623}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 5900.0, :Apogee_km 35822.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{248}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{346}}, {:Eccentricity 9.9E-4, :Launch_Mass_kg 300.0, :Apogee_km 705.0, :Perigee_km 691.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{711}}, {:Eccentricity 0.00241, :Launch_Mass_kg 770.0, :Apogee_km 503.0, :Perigee_km 470.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.34, :Inclination_radians 1.713738793, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{865}}, {:Eccentricity 0.0023, :Launch_Mass_kg 215.0, :Apogee_km 823.0, :Perigee_km 790.0, :Type_of_Orbit "Intermediate", :Purpose "Earth Observation", :Period_minutes 101.0, :Inclination_radians 1.221730476, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{304}}, {:Eccentricity 0.00127, :Launch_Mass_kg nil, :Apogee_km 704.0, :Perigee_km 686.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{919}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3813.0, :Apogee_km 35793.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.17, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{79}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 3635.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{90}}, {:Eccentricity 9.6E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19199.0, :Perigee_km 19150.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 677.5, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{407}}, {:Eccentricity 0.00136, :Launch_Mass_kg 680.0, :Apogee_km 643.0, :Perigee_km 624.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.4, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{127}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 3300.0, :Apogee_km 35803.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{439}}, {:Eccentricity 0.00108, :Launch_Mass_kg 204.0, :Apogee_km 601.0, :Perigee_km 586.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 96.6, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{936}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg 2650.0, :Apogee_km 35814.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.003316126, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{432}}, {:Eccentricity 0.00419, :Launch_Mass_kg 1415.0, :Apogee_km 19135.0, :Perigee_km 18922.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 671.71, :Inclination_radians 1.130798822, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{395}}, {:Eccentricity 0.00104, :Launch_Mass_kg 53.0, :Apogee_km 832.0, :Perigee_km 817.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Astrophysics", :Period_minutes 101.4, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{664}}, {:Eccentricity 0.00762, :Launch_Mass_kg 1.0, :Apogee_km 700.0, :Perigee_km 593.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 97.6, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1084}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 45.0, :Apogee_km 778.0, :Perigee_km 768.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{776}}, {:Eccentricity 0.002, :Launch_Mass_kg 1200.0, :Apogee_km 661.0, :Perigee_km 633.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.710422667, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1140}}, {:Eccentricity 0.00836, :Launch_Mass_kg 1816.0, :Apogee_km 20403.0, :Perigee_km 19959.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.93, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{677}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 6007.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{914}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 6020.0, :Apogee_km 35791.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{951}}, {:Eccentricity 0.0044, :Launch_Mass_kg 12.0, :Apogee_km 714.0, :Perigee_km 652.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.4, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{875}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 4137.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{77}}, {:Eccentricity 0.01506, :Launch_Mass_kg nil, :Apogee_km 1112.0, :Perigee_km 890.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 105.14, :Inclination_radians 1.107760476, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_6 1}, :row-ids #{1137}}, {:Eccentricity 0.00279, :Launch_Mass_kg 1816.0, :Apogee_km 20257.0, :Perigee_km 20109.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.01, :Inclination_radians 0.95644043, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{684}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 1698.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{45}}, {:Eccentricity 0.0023, :Launch_Mass_kg nil, :Apogee_km 599.0, :Perigee_km 567.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 96.34, :Inclination_radians 1.707106541, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{960}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5993.0, :Apogee_km 35787.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{972}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 2982.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{600}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1093}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 3800.0, :Apogee_km 35815.0, :Perigee_km 35756.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{272}}, {:Eccentricity 0.00121, :Launch_Mass_kg 2217.0, :Apogee_km 20213.0, :Perigee_km 20149.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.93, :Inclination_radians 0.95644043, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{704}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 6000.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{95}}, {:Eccentricity 5.9E-4, :Launch_Mass_kg 935.0, :Apogee_km 19146.0, :Perigee_km 19116.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.78, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{380}}, {:Eccentricity 0.00299, :Launch_Mass_kg nil, :Apogee_km 668.0, :Perigee_km 626.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1127}}, {:Eccentricity 0.0, :Launch_Mass_kg 1480.0, :Apogee_km 19130.0, :Perigee_km 19130.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.75, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 3}, :row-ids #{385 384 383}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 5345.0, :Apogee_km 35852.0, :Perigee_km 35804.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1438.2, :Inclination_radians 0.002443461, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{88}}, {:Eccentricity 0.00123, :Launch_Mass_kg 1000.0, :Apogee_km 552.0, :Perigee_km 535.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 95.5, :Inclination_radians 1.70344135, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Yasny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{618}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4400.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{603}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 5540.0, :Apogee_km 35804.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{490}}, {:Eccentricity 7.9E-4, :Launch_Mass_kg nil, :Apogee_km 598.0, :Perigee_km 587.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{926}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3304.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.00122173, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{100}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3100.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{480}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5474.0, :Apogee_km 35795.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commecial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{872}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 5800.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{950}}, {:Eccentricity 0.00187, :Launch_Mass_kg nil, :Apogee_km 607.0, :Perigee_km 581.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.6, :Inclination_radians 1.70344135, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{929}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1700.0, :Apogee_km 623.0, :Perigee_km 622.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Imaging", :Period_minutes 97.2, :Inclination_radians 1.708677338, :Users "Civil/Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{166}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg nil, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{913}}, {:Eccentricity 8.5E-4, :Launch_Mass_kg 50.0, :Apogee_km 673.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.1, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{908}}, {:Eccentricity 6.4E-4, :Launch_Mass_kg 240.0, :Apogee_km 1415.0, :Perigee_km 1405.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 1.441641962, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{417}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5993.0, :Apogee_km 35787.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{973}}, {:Eccentricity 6.4E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35814.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{204}}, {:Eccentricity 6.0E-4, :Launch_Mass_kg nil, :Apogee_km 35812.0, :Perigee_km 35761.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.043807764, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{903}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 0.00296706, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1157}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 3515.0, :Apogee_km 35801.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{315}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3130.0, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1007}}, {:Eccentricity 0.01277, :Launch_Mass_kg 6500.0, :Apogee_km 1203.0, :Perigee_km 1012.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 2}, :row-ids #{897 896}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 4685.0, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{515}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 1560.0, :Apogee_km 619.0, :Perigee_km 618.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.1, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{125}}, {:Eccentricity 0.00122, :Launch_Mass_kg nil, :Apogee_km 616.0, :Perigee_km 599.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.85, :Inclination_radians 1.308647873, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{924}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 400.0, :Apogee_km 505.0, :Perigee_km 501.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{120}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35790.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.11, :Inclination_radians 0.112573737, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{884}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 5000.0, :Apogee_km 35796.0, :Perigee_km 35794.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.005235988, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{945}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 1.0, :Apogee_km 504.0, :Perigee_km 494.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.6, :Inclination_radians 0.706858347, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{1089}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.506219144, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{572}}, {:Eccentricity 0.72382, :Launch_Mass_kg 2500.0, :Apogee_km 39388.0, :Perigee_km 961.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 645.98, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{646}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2648.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{41}}, {:Eccentricity 0.04729, :Launch_Mass_kg 2900.0, :Apogee_km 37768.0, :Perigee_km 33782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.52, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{602}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg nil, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{555}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3631.0, :Apogee_km 35792.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.001745329, :Users "Military/Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1118}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.05, :Inclination_radians 0.031939525, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{145}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2300.0, :Apogee_km 828.0, :Perigee_km 827.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 101.5, :Inclination_radians 1.724385301, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{293}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 6094.0, :Apogee_km 35790.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{494}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 2500.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.052359878, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{42}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{49}}, {:Eccentricity 0.00235, :Launch_Mass_kg 3.5, :Apogee_km 653.0, :Perigee_km 620.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.5, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1156}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 764.0, :Apogee_km 893.0, :Perigee_km 890.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 102.8, :Inclination_radians 1.727875959, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{303}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 1415.0, :Apogee_km 19133.0, :Perigee_km 19131.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.81, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{398}}, {:Eccentricity 0.01011, :Launch_Mass_kg 1816.0, :Apogee_km 20449.0, :Perigee_km 19912.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.91, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{683}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35798.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{87}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 4200.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.104545222, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{501}}, {:Eccentricity 0.00352, :Launch_Mass_kg 2217.0, :Apogee_km 20276.0, :Perigee_km 20089.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.98, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{690}}, {:Eccentricity 0.68969, :Launch_Mass_kg 1200.0, :Apogee_km 120923.0, :Perigee_km 17007.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3430.28, :Inclination_radians 1.579522973, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{861}}, {:Eccentricity 0.00203, :Launch_Mass_kg 280.0, :Apogee_km 1509.0, :Perigee_km 1477.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{843}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 140.0, :Apogee_km 820.0, :Perigee_km 813.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.21, :Inclination_radians 1.72316357, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{808}}, {:Eccentricity 0.00456, :Launch_Mass_kg 825.0, :Apogee_km 1016.0, :Perigee_km 949.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.74, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{788}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 6052.0, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001919862, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{94}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 4193.0, :Apogee_km 821.0, :Perigee_km 820.0, :Type_of_Orbit "Polar", :Purpose "Earth Science/Meteorology", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{654}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 6650.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications/Technology Development", :Period_minutes 1436.09, :Inclination_radians 3.49066E-4, :Users "Commercial/Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{30}}, {:Eccentricity 0.00173, :Launch_Mass_kg 1.0, :Apogee_km 579.0, :Perigee_km 555.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.01, :Inclination_radians 1.130973355, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{105}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35808.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.2, :Inclination_radians 0.015707963, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1027}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 280.0, :Apogee_km 1506.0, :Perigee_km 1495.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 116.0, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{847}}, {:Eccentricity 0.27883, :Launch_Mass_kg 3727.0, :Apogee_km 47100.0, :Perigee_km 23783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1418.5, :Inclination_radians 1.104793417, :Users "Commercial", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_75 1}, :row-ids #{946}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 658.0, :Apogee_km 760.0, :Perigee_km 759.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.0, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{967}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 689.0, :Apogee_km 753.0, :Perigee_km 744.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{585}}, {:Eccentricity 0.00236, :Launch_Mass_kg 175.0, :Apogee_km 646.0, :Perigee_km 613.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{827}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 2064.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{468}}, {:Eccentricity 5.0E-4, :Launch_Mass_kg 6650.0, :Apogee_km 571.0, :Perigee_km 564.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 96.0, :Inclination_radians 1.219985147, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{837}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 779.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 5}, :row-ids #{529 552 522 563 545}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4200.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{38}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4735.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1103}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 3535.0, :Apogee_km 35810.0, :Perigee_km 35761.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{246}}, {:Eccentricity 0.00143, :Launch_Mass_kg 0.85, :Apogee_km 634.0, :Perigee_km 614.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.2, :Inclination_radians 1.710422667, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1004}}, {:Eccentricity nil, :Launch_Mass_kg nil, :Apogee_km nil, :Perigee_km nil, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes nil, :Inclination_radians nil, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{463}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35807.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1162}}, {:Eccentricity 0.0, :Launch_Mass_kg 3820.0, :Apogee_km 400.0, :Perigee_km 400.0, :Type_of_Orbit "Intermediate", :Purpose "Earth Observation", :Period_minutes 92.6, :Inclination_radians 0.610865238, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_9 1}, :row-ids #{1065}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2000.0, :Apogee_km 35795.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.0, :Inclination_radians 0.005061455, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{653}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4545.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{32}}, {:Eccentricity 0.0062, :Launch_Mass_kg 1816.0, :Apogee_km 20315.0, :Perigee_km 19986.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 716.69, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{680}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3760.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{78}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4850.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{614}}, {:Eccentricity 7.2E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35817.0, :Perigee_km 35756.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.080110613, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{209}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 1630.0, :Apogee_km 20464.0, :Perigee_km 20451.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 729.18, :Inclination_radians 0.960454687, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{686}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{261}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 1360.0, :Apogee_km 823.0, :Perigee_km 817.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 101.3, :Inclination_radians 1.724385301, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{594}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 1600.0, :Apogee_km 492.0, :Perigee_km 484.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.37, :Inclination_radians 1.698379895, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{459}}, {:Eccentricity 6.1E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19129.0, :Perigee_km 19098.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.08, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{400}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 726.0, :Apogee_km 680.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.3, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{464}}, {:Eccentricity 0.00414, :Launch_Mass_kg 2217.0, :Apogee_km 20292.0, :Perigee_km 20072.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.96, :Inclination_radians 0.966388807, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{691}}, {:Eccentricity 0.00173, :Launch_Mass_kg 53.0, :Apogee_km 582.0, :Perigee_km 558.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.06, :Inclination_radians 1.132369619, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{27}}, {:Eccentricity 0.0025, :Launch_Mass_kg 42.5, :Apogee_km 636.0, :Perigee_km 601.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 97.1, :Inclination_radians 1.70344135, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{436}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 11110.0, :Apogee_km 559.0, :Perigee_km 555.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics/Planetary Science", :Period_minutes 95.8, :Inclination_radians 0.497418837, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{452}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 6658.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{224}}, {:Eccentricity 0.00432, :Launch_Mass_kg 70.0, :Apogee_km 831.0, :Perigee_km 769.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{162}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 4715.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{58}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg nil, :Apogee_km 513.0, :Perigee_km 509.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.84, :Inclination_radians 1.702394152, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1138}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 6265.0, :Apogee_km 35791.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{34}}, {:Eccentricity 0.29184, :Launch_Mass_kg nil, :Apogee_km 5732.0, :Perigee_km 264.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 150.4, :Inclination_radians 1.310742268, :Users "Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_82 1}, :row-ids #{28}}, {:Eccentricity 3.5E-4, :Launch_Mass_kg 2780.0, :Apogee_km 705.0, :Perigee_km 700.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{628}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 120.0, :Apogee_km 505.0, :Perigee_km 501.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.7, :Inclination_radians 1.701696021, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1039}}, {:Eccentricity 0.00106, :Launch_Mass_kg nil, :Apogee_km 703.0, :Perigee_km 688.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{920}}, {:Eccentricity 0.00105, :Launch_Mass_kg 148.0, :Apogee_km 787.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Observation", :Period_minutes 100.4, :Inclination_radians 1.720894642, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{862}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 46.0, :Apogee_km 540.0, :Perigee_km 538.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.4, :Inclination_radians 0.617846555, :Users "Civil/Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{285}}, {:Eccentricity 0.00371, :Launch_Mass_kg 470.0, :Apogee_km 673.0, :Perigee_km 621.0, :Type_of_Orbit "Polar", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{447}}, {:Eccentricity 7.9E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35820.0, :Perigee_km 35753.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.060213859, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{660}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19162.0, :Perigee_km 19130.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.38, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{409}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 1430.0, :Apogee_km 35795.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.127932634, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{675}}, {:Eccentricity 4.5E-4, :Launch_Mass_kg 5471.0, :Apogee_km 35806.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{97}}, {:Eccentricity 0.00134, :Launch_Mass_kg 7000.0, :Apogee_km 733.0, :Perigee_km 714.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 99.2, :Inclination_radians 1.715658655, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{799}}, {:Eccentricity 0.00219, :Launch_Mass_kg 3180.0, :Apogee_km 35878.0, :Perigee_km 35693.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.201236463, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1023}}, {:Eccentricity 0.79904, :Launch_Mass_kg 3764.0, :Apogee_km 114027.0, :Perigee_km 7079.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 2872.15, :Inclination_radians 0.670206433, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_94 1}, :row-ids #{1116}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3500.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{4}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 6}, :row-ids #{584 561 551 560 548 577}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35796.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{514}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 1625.0, :Apogee_km 35799.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{734}}, {:Eccentricity 0.00131, :Launch_Mass_kg 1420.0, :Apogee_km 864.0, :Perigee_km 845.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Meteorology", :Period_minutes 102.0, :Inclination_radians 1.72613063, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{722}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 280.0, :Apogee_km 1509.0, :Perigee_km 1498.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 116.0, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{845}}, {:Eccentricity 6.9E-4, :Launch_Mass_kg 2915.0, :Apogee_km 35815.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{264}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg nil, :Apogee_km 1207.0, :Perigee_km 1201.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 109.51, :Inclination_radians 1.753706832, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1139}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 2783.0, :Apogee_km 35800.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{35}}, {:Eccentricity 0.71556, :Launch_Mass_kg 117.0, :Apogee_km 35717.0, :Perigee_km 608.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 637.65, :Inclination_radians 0.033859387, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_62 1}, :row-ids #{976}}, {:Eccentricity 0.68635, :Launch_Mass_kg 1200.0, :Apogee_km 120961.0, :Perigee_km 17313.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3442.0, :Inclination_radians 1.583013632, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{1019}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 494.0, :Apogee_km 405.0, :Perigee_km 398.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.6, :Inclination_radians 0.841248699, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{709}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4200.0, :Apogee_km 682.0, :Perigee_km 679.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 98.37, :Inclination_radians 1.712167996, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{438}}, {:Eccentricity 0.00109, :Launch_Mass_kg 240.0, :Apogee_km 1415.0, :Perigee_km 1398.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 113.9, :Inclination_radians 1.441641962, :Users "Commercial/Government/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{416}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 700.0, :Apogee_km 1418.0, :Perigee_km 1409.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.08, :Inclination_radians 0.907222145, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{377}}, {:Eccentricity 0.00109, :Launch_Mass_kg 3000.0, :Apogee_km 35892.0, :Perigee_km 35800.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1439.15, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{517}}, {:Eccentricity 0.03149, :Launch_Mass_kg nil, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{968}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 5090.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{982}}, {:Eccentricity 0.00111, :Launch_Mass_kg 700.0, :Apogee_km 23306.0, :Perigee_km 23240.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 846.88, :Inclination_radians 0.954346035, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{321}}, {:Eccentricity 0.00618, :Launch_Mass_kg 3400.0, :Apogee_km 35940.0, :Perigee_km 35420.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1430.6, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{284}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 553.0, :Apogee_km 1344.0, :Perigee_km 1332.0, :Type_of_Orbit "Intermediate", :Purpose "Earth Science", :Period_minutes 112.4, :Inclination_radians 1.151917306, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{596}}, {:Eccentricity 0.00121, :Launch_Mass_kg 1415.0, :Apogee_km 19204.0, :Perigee_km 19142.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 677.46, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{406}}, {:Eccentricity 0.02184, :Launch_Mass_kg 3.0, :Apogee_km 789.0, :Perigee_km 483.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.4, :Inclination_radians 1.127482697, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{964}}, {:Eccentricity 0.86413, :Launch_Mass_kg 126.0, :Apogee_km 87526.0, :Perigee_km 474.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 1875.53, :Inclination_radians 0.274016693, :Users "Government/Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_66 1}, :row-ids #{1045}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg 1630.0, :Apogee_km 20224.0, :Perigee_km 20188.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.94, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{685}}, {:Eccentricity 0.00145, :Launch_Mass_kg 2223.0, :Apogee_km 864.0, :Perigee_km 843.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Meteorology", :Period_minutes 102.0, :Inclination_radians 1.729621289, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{721}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 750.0, :Apogee_km 826.0, :Perigee_km 824.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.4, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1046}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{271}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 3643.0, :Apogee_km 35804.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{92}}, {:Eccentricity 0.00683, :Launch_Mass_kg 70.0, :Apogee_km 849.0, :Perigee_km 751.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{164}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2730.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{500}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 700.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 3}, :row-ids #{370 364 359}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 240.0, :Apogee_km 1417.0, :Perigee_km 1408.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.0, :Inclination_radians 1.441641962, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{418}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 1900.0, :Apogee_km 704.0, :Perigee_km 701.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{332}}, {:Eccentricity 5.1E-4, :Launch_Mass_kg 5250.0, :Apogee_km 35807.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.052185345, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1050}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35787.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.7, :Inclination_radians 0.152541777, :Users "Government/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1025}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 270.0, :Apogee_km 1509.0, :Perigee_km 1494.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 116.02, :Inclination_radians 1.614255025, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{424}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 1383.0, :Apogee_km 35795.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.21, :Inclination_radians 0.113446401, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{68}}, {:Eccentricity 6.9E-4, :Launch_Mass_kg 700.0, :Apogee_km 928.0, :Perigee_km 918.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 103.48, :Inclination_radians 0.907745744, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{378}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 3750.0, :Apogee_km 35813.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1056}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 5900.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{183}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3901.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{46}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1600.0, :Apogee_km 591.0, :Perigee_km 588.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.47, :Inclination_radians 1.705012146, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{460}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 4900.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{641}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1750.0, :Apogee_km 670.0, :Perigee_km 668.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.1, :Inclination_radians 1.712167996, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{427}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 1600.0, :Apogee_km 514.0, :Perigee_km 509.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.85, :Inclination_radians 1.701696021, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{462}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 2885.0, :Apogee_km 35810.0, :Perigee_km 35762.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{251}}, {:Eccentricity 0.00179, :Launch_Mass_kg 175.0, :Apogee_km 642.0, :Perigee_km 617.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{831}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 45.0, :Apogee_km 774.0, :Perigee_km 771.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{775}}, {:Eccentricity 0.00468, :Launch_Mass_kg 4500.0, :Apogee_km 35984.0, :Perigee_km 35589.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1436.1, :Inclination_radians 0.055850536, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{7}}, {:Eccentricity 0.00414, :Launch_Mass_kg nil, :Apogee_km 668.0, :Perigee_km 610.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 97.5, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{630}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 2704.0, :Apogee_km 35802.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{21}}, {:Eccentricity 8.3E-4, :Launch_Mass_kg 270.0, :Apogee_km 1510.0, :Perigee_km 1497.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 116.1, :Inclination_radians 1.439896633, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{419}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 2276.0, :Apogee_km 35794.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.012915436, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{869}}, {:Eccentricity 0.00524, :Launch_Mass_kg 12.0, :Apogee_km 725.0, :Perigee_km 651.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.5, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{877}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 1450.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.019024089, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{640}}, {:Eccentricity 0.00294, :Launch_Mass_kg 1816.0, :Apogee_km 20260.0, :Perigee_km 20104.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{679}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 3400.0, :Apogee_km 35805.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{103}}, {:Eccentricity 0.00488, :Launch_Mass_kg 45.0, :Apogee_km 838.0, :Perigee_km 768.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.9, :Inclination_radians 1.884955592, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{772}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3124.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{499}}, {:Eccentricity 0.0018, :Launch_Mass_kg nil, :Apogee_km 603.0, :Perigee_km 578.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.70344135, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{930}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 696.0, :Apogee_km 35797.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1435.96, :Inclination_radians 0.082205008, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{651}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3400.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{428}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 5100.0, :Apogee_km 35803.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.24, :Inclination_radians 0.01134464, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1158}}, {:Eccentricity 0.00193, :Launch_Mass_kg nil, :Apogee_km 650.0, :Perigee_km 623.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.44, :Inclination_radians 1.710248134, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{934}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 4463.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1125}}, {:Eccentricity 0.00174, :Launch_Mass_kg 3800.0, :Apogee_km 21574.0, :Perigee_km 21477.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.1, :Inclination_radians 0.959931089, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{156}}, {:Eccentricity 0.01668, :Launch_Mass_kg nil, :Apogee_km 2165.0, :Perigee_km 1885.0, :Type_of_Orbit nil, :Purpose "Amateur Radio", :Period_minutes 127.45, :Inclination_radians 1.127308164, :Users "Civil", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{822}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 3050.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{833}}, {:Eccentricity 5.0E-4, :Launch_Mass_kg 2750.0, :Apogee_km 35807.0, :Perigee_km 35765.0, :Type_of_Orbit nil, :Purpose "Communications/Earth Science", :Period_minutes 1436.08, :Inclination_radians 0.002094395, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{479}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 5102.0, :Apogee_km 35797.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{265}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 4500.0, :Apogee_km 494.0, :Perigee_km 491.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 94.5, :Inclination_radians 1.698205362, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1106}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 1452.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{110}}, {:Eccentricity 0.06, :Launch_Mass_kg 18000.0, :Apogee_km 1041.0, :Perigee_km 202.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.13, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{609}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 700.0, :Apogee_km 23233.0, :Perigee_km 23214.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 844.76, :Inclination_radians 0.965865208, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{322}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 1320.0, :Apogee_km 35796.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1123}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 350.0, :Apogee_km 514.0, :Perigee_km 508.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.8, :Inclination_radians 1.699950691, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Svobodny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{243}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 5120.0, :Apogee_km 35800.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001745329, :Users "Government/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{783}}, {:Eccentricity 0.00115, :Launch_Mass_kg 3200.0, :Apogee_km 35835.0, :Perigee_km 35738.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.066147979, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1075}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 720.0, :Apogee_km 724.0, :Perigee_km 713.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 99.2, :Inclination_radians 1.605702912, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{170}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 3}, :row-ids #{337 344 336}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg nil, :Apogee_km 672.0, :Perigee_km 668.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.15, :Inclination_radians 1.711469865, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{940}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 2910.0, :Apogee_km 35787.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{117}}, {:Eccentricity 4.5E-4, :Launch_Mass_kg 5465.0, :Apogee_km 35805.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{33}}, {:Eccentricity 0.06675, :Launch_Mass_kg 1.0, :Apogee_km 1261.0, :Perigee_km 306.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 100.5, :Inclination_radians 1.21300383, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_0 1}, :row-ids #{1110}}, {:Eccentricity 9.6E-4, :Launch_Mass_kg 3680.0, :Apogee_km 35826.0, :Perigee_km 35745.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{974}}, {:Eccentricity 3.5E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 775.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 1}, :row-ids #{530}}, {:Eccentricity 0.00143, :Launch_Mass_kg 1415.0, :Apogee_km 19212.0, :Perigee_km 19139.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 677.54, :Inclination_radians 1.130624289, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{408}}, {:Eccentricity 0.01367, :Launch_Mass_kg 348.0, :Apogee_km 1155.0, :Perigee_km 952.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 106.27, :Inclination_radians 0.541052068, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_6 1}, :row-ids #{442}}, {:Eccentricity 9.0E-4, :Launch_Mass_kg 1134.0, :Apogee_km 855.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.9, :Inclination_radians 1.72613063, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{194}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5900.0, :Apogee_km 35786.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{185}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 5350.0, :Apogee_km 35780.0, :Perigee_km 35715.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.1, :Inclination_radians 0.002094395, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{89}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 5576.0, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{485}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 3674.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{226}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2924.0, :Apogee_km 793.0, :Perigee_km 791.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.7, :Inclination_radians 1.720894642, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{821}}, {:Eccentricity 0.0, :Launch_Mass_kg 2128.0, :Apogee_km 827.0, :Perigee_km 827.0, :Type_of_Orbit "Polar", :Purpose "Meteorology", :Period_minutes 101.4, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{723}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 4000.0, :Apogee_km 35794.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{604}}, {:Eccentricity 0.00143, :Launch_Mass_kg 7.0, :Apogee_km 629.0, :Perigee_km 609.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{121}}, {:Eccentricity 0.00606, :Launch_Mass_kg 2060.0, :Apogee_km 20342.0, :Perigee_km 20020.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.93, :Inclination_radians 0.958883891, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{702}}, {:Eccentricity 0.05739, :Launch_Mass_kg 18000.0, :Apogee_km 1000.0, :Perigee_km 200.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{611}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 225.0, :Apogee_km 1419.0, :Perigee_km 1415.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.2, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{992}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 1390.0, :Apogee_km 35791.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 1436.0, :Inclination_radians 0.013439035, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{289}}, {:Eccentricity 0.07902, :Launch_Mass_kg 50.0, :Apogee_km 1475.0, :Perigee_km 326.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 103.0, :Inclination_radians 1.413716694, :Users "Civil/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_0 1}, :row-ids #{179}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 1760.0, :Apogee_km 35796.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{307}}, {:Eccentricity 0.72223, :Launch_Mass_kg nil, :Apogee_km 39362.0, :Perigee_km 1006.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 718.04, :Inclination_radians 1.09484504, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{648}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1500.0, :Apogee_km 967.0, :Perigee_km 965.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 104.4, :Inclination_radians 1.734857276, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{435}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 4850.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{716}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2744.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{627}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{491}}, {:Eccentricity 0.00123, :Launch_Mass_kg 240.0, :Apogee_km 547.0, :Perigee_km 530.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 95.4, :Inclination_radians 1.70344135, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Svobodny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{242}}, {:Eccentricity 0.00705, :Launch_Mass_kg 10.0, :Apogee_km 702.0, :Perigee_km 603.0, :Type_of_Orbit "Intermediate", :Purpose "Scientific Research", :Period_minutes 97.8, :Inclination_radians 1.127482697, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{880}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 3454.0, :Apogee_km 35785.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.88, :Inclination_radians 0.121998515, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1022}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg nil, :Apogee_km 628.0, :Perigee_km 625.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.2, :Inclination_radians 1.706932008, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1126}}, {:Eccentricity 0.00159, :Launch_Mass_kg 270.0, :Apogee_km 1507.0, :Perigee_km 1482.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 115.86, :Inclination_radians 1.4397221, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{421}}, {:Eccentricity 0.00308, :Launch_Mass_kg 70.0, :Apogee_km 638.0, :Perigee_km 595.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.0, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{835}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 4723.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 25.06467339, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_32 1}, :row-ids #{510}}, {:Eccentricity 8.7E-4, :Launch_Mass_kg nil, :Apogee_km 501.0, :Perigee_km 489.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.51, :Inclination_radians 1.699078027, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1111}}, {:Eccentricity 0.00122, :Launch_Mass_kg 6.0, :Apogee_km 632.0, :Perigee_km 615.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Maritime Tracking/Technology Development", :Period_minutes 97.2, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{25}}, {:Eccentricity 0.00313, :Launch_Mass_kg 795.0, :Apogee_km 1013.0, :Perigee_km 967.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.9, :Inclination_radians 1.44687795, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{790}}, {:Eccentricity 0.0019, :Launch_Mass_kg 2217.0, :Apogee_km 20234.0, :Perigee_km 20133.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.03, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{695}}, {:Eccentricity 0.00141, :Launch_Mass_kg 130.0, :Apogee_km 728.0, :Perigee_km 708.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Demonstration", :Period_minutes 99.2, :Inclination_radians 1.715658655, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{807}}, {:Eccentricity 8.8E-4, :Launch_Mass_kg nil, :Apogee_km 481.0, :Perigee_km 469.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.1, :Inclination_radians 1.698205362, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1130}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 2596.0, :Apogee_km 35802.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.017627825, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{942}}, {:Eccentricity 0.00391, :Launch_Mass_kg 10.0, :Apogee_km 694.0, :Perigee_km 639.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.1, :Inclination_radians 1.713913325, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{232}}, {:Eccentricity 0.00367, :Launch_Mass_kg nil, :Apogee_km 606.0, :Perigee_km 555.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.3, :Inclination_radians 1.696460033, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1154}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 2000.0, :Apogee_km 35791.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.15, :Inclination_radians 0.031415927, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{650}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{281}}, {:Eccentricity 0.00136, :Launch_Mass_kg nil, :Apogee_km 603.0, :Perigee_km 584.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 96.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{931}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 950.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.8, :Inclination_radians 0.084648469, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{634}}, {:Eccentricity 0.05012, :Launch_Mass_kg 8000.0, :Apogee_km 37900.0, :Perigee_km 33674.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 1436.12, :Inclination_radians 0.127932634, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{645}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 6000.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.0, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1121}}, {:Eccentricity 0.00102, :Launch_Mass_kg 890.0, :Apogee_km 503.0, :Perigee_km 489.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.53, :Inclination_radians 1.699078027, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{448}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 689.0, :Apogee_km 778.0, :Perigee_km 777.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{590}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 468.0, :Apogee_km 496.0, :Perigee_km 486.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 94.0, :Inclination_radians 1.527163095, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1011}}, {:Eccentricity 0.00203, :Launch_Mass_kg 2300.0, :Apogee_km 35879.0, :Perigee_km 35708.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1435.1, :Inclination_radians 0.963421747, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{151}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 1300.0, :Apogee_km 35788.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{607}}, {:Eccentricity 0.00285, :Launch_Mass_kg 1480.0, :Apogee_km 19126.0, :Perigee_km 18981.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 672.7, :Inclination_radians 1.128355361, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{389}}, {:Eccentricity 0.00182, :Launch_Mass_kg 587.0, :Apogee_km 525.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.9, :Inclination_radians 1.699950691, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{668}}, {:Eccentricity 0.00208, :Launch_Mass_kg nil, :Apogee_km 1111.0, :Perigee_km 1080.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 107.13, :Inclination_radians 1.106887812, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_6 1}, :row-ids #{1136}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 960.0, :Apogee_km 724.0, :Perigee_km 722.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 99.2, :Inclination_radians 1.715658655, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{741}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19135.0, :Perigee_km 19128.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.81, :Inclination_radians 1.130449757, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{401}}, {:Eccentricity 0.00134, :Launch_Mass_kg 100.0, :Apogee_km 748.0, :Perigee_km 729.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 99.6, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{133}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2380.0, :Apogee_km 35800.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.27, :Inclination_radians 0.001745329, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{211}}, {:Eccentricity 0.00104, :Launch_Mass_kg 2223.0, :Apogee_km 857.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.9, :Inclination_radians 1.729621289, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{720}}, {:Eccentricity 7.2E-4, :Launch_Mass_kg 1600.0, :Apogee_km 558.0, :Perigee_km 548.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 95.7, :Inclination_radians 0.548033385, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_6 1}, :row-ids #{1008}}, {:Eccentricity 0.00114, :Launch_Mass_kg 3200.0, :Apogee_km 35834.0, :Perigee_km 35738.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.034382986, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1070}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 2240.0, :Apogee_km 1352.0, :Perigee_km 1347.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 112.68, :Inclination_radians 1.012290966, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{1002}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2700.0, :Apogee_km 627.0, :Perigee_km 625.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.2, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1141}}, {:Eccentricity 0.0125, :Launch_Mass_kg 5000.0, :Apogee_km 1203.0, :Perigee_km 1016.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{890}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 4682.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1114}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3206.0, :Apogee_km 35794.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.94, :Inclination_radians 0.091455253, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1076}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{450}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 5193.0, :Apogee_km 35787.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1113}}, {:Eccentricity 0.0012, :Launch_Mass_kg nil, :Apogee_km 703.0, :Perigee_km 686.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 98.7, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{918}}, {:Eccentricity 0.07013, :Launch_Mass_kg nil, :Apogee_km 1313.0, :Perigee_km 306.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 101.08, :Inclination_radians 1.212654764, :Users "Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_0 1}, :row-ids #{244}}, {:Eccentricity 0.00242, :Launch_Mass_kg 2200.0, :Apogee_km 21595.0, :Perigee_km 21460.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.19, :Inclination_radians 0.962723615, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{153}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 468.0, :Apogee_km 476.0, :Perigee_km 473.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 93.9, :Inclination_radians 1.523672437, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1, :cluster_6 1}, :row-ids #{1009 1010}}, {:Eccentricity 0.00308, :Launch_Mass_kg 2.0, :Apogee_km 639.0, :Perigee_km 596.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{217}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 1400.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 8.72665E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{50}}, {:Eccentricity 0.00121, :Launch_Mass_kg 175.0, :Apogee_km 638.0, :Perigee_km 621.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1, :cluster_6 1}, :row-ids #{830 828}}, {:Eccentricity 0.00264, :Launch_Mass_kg 470.0, :Apogee_km 665.0, :Perigee_km 628.0, :Type_of_Orbit "Polar", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{446}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 3.5, :Apogee_km 504.0, :Perigee_km 499.0, :Type_of_Orbit nil, :Purpose "Radar Calibration", :Period_minutes 94.65, :Inclination_radians 0.70703288, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{449}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 2066.0, :Apogee_km 35642.0, :Perigee_km 35609.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1427.91, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{470}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1414.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 2}, :row-ids #{345 350}}, {:Eccentricity 0.01237, :Launch_Mass_kg 5000.0, :Apogee_km 1200.0, :Perigee_km 1015.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{892}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 1510.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.08709193, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{954}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3420.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{507}}, {:Eccentricity 0.00199, :Launch_Mass_kg 810.0, :Apogee_km 945.0, :Perigee_km 916.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 103.6, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{796}}, {:Eccentricity 0.00162, :Launch_Mass_kg 1156.0, :Apogee_km 35855.0, :Perigee_km 35718.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{208}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 4051.0, :Apogee_km 35793.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1006}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 485.0, :Apogee_km 704.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Research", :Period_minutes 98.8, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{858}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 2242.0, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{454}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 4488.0, :Apogee_km 35795.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{306}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35803.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.185004901, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1026}}, {:Eccentricity 0.01237, :Launch_Mass_kg 5000.0, :Apogee_km 1201.0, :Perigee_km 1016.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{893}}, {:Eccentricity 0.00151, :Launch_Mass_kg 1480.0, :Apogee_km 19171.0, :Perigee_km 19094.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.83, :Inclination_radians 1.132718685, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{386}}, {:Eccentricity 0.0, :Launch_Mass_kg 1156.0, :Apogee_km 35784.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{210}}, {:Eccentricity 0.00213, :Launch_Mass_kg 113.0, :Apogee_km 697.0, :Perigee_km 667.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.4, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{832}}, {:Eccentricity 0.0, :Launch_Mass_kg 5900.0, :Apogee_km 35786.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{184}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 5585.0, :Apogee_km 35788.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.05, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{137}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 5600.0, :Apogee_km 35801.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.01, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{492}}, {:Eccentricity 9.0E-4, :Launch_Mass_kg 1154.0, :Apogee_km 855.0, :Perigee_km 842.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.89, :Inclination_radians 1.724210768, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{197}}, {:Eccentricity 6.8E-4, :Launch_Mass_kg 3225.0, :Apogee_km 35848.0, :Perigee_km 35791.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1437.78, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{985}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 4400.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.020769418, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{597}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3690.0, :Apogee_km 35794.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{85}}, {:Eccentricity 0.00106, :Launch_Mass_kg nil, :Apogee_km 704.0, :Perigee_km 689.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.7, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{921}}, {:Eccentricity 8.3E-4, :Launch_Mass_kg nil, :Apogee_km 879.0, :Perigee_km 867.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 102.41, :Inclination_radians 1.726654229, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1001}}, {:Eccentricity 9.2E-4, :Launch_Mass_kg 970.0, :Apogee_km 691.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.45, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{804}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1031.0, :Apogee_km 541.0, :Perigee_km 538.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 95.43, :Inclination_radians 1.710248134, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{885}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1350.0, :Apogee_km 510.0, :Perigee_km 507.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 94.8, :Inclination_radians 1.699950691, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1018}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 5984.0, :Apogee_km 35811.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.39, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{495}}, {:Eccentricity 8.4E-4, :Launch_Mass_kg 5.0, :Apogee_km 783.0, :Perigee_km 771.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 100.3, :Inclination_radians 1.720894642, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{122}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19133.0, :Perigee_km 19124.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.67, :Inclination_radians 1.132718685, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{387}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 2440.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{158}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 120.0, :Apogee_km 694.0, :Perigee_km 692.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.6, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{787}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 689.0, :Apogee_km 750.0, :Perigee_km 748.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{591}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 1360.0, :Apogee_km 35800.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1122}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 4050.0, :Apogee_km 35805.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{266}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg nil, :Apogee_km 450.0, :Perigee_km 448.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 93.6, :Inclination_radians 1.696460033, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{819}}, {:Eccentricity 0.00985, :Launch_Mass_kg nil, :Apogee_km 1164.0, :Perigee_km 1017.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 107.1, :Inclination_radians 1.106538746, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 3}, :row-ids #{1147 1149 1148}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 4860.0, :Apogee_km 35788.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{319}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2967.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{240}}, {:Eccentricity 0.00143, :Launch_Mass_kg 1.0, :Apogee_km 631.0, :Perigee_km 611.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.710422667, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1061}}, {:Eccentricity 0.00119, :Launch_Mass_kg 4990.0, :Apogee_km 358.0, :Perigee_km 342.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 91.54, :Inclination_radians 0.759218225, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{1109}}, {:Eccentricity 5.0E-4, :Launch_Mass_kg nil, :Apogee_km 35767.0, :Perigee_km 35725.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.03, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{255}}, {:Eccentricity 0.03149, :Launch_Mass_kg 5.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 3}, :row-ids #{966 29 965}}, {:Eccentricity 0.00748, :Launch_Mass_kg 1.0, :Apogee_km 699.0, :Perigee_km 594.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.6, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1087}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.002094395, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1005}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 6070.0, :Apogee_km 35790.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{475}}, {:Eccentricity 0.00116, :Launch_Mass_kg 293.0, :Apogee_km 551.0, :Perigee_km 535.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 95.5, :Inclination_radians 0.663225116, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{440}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 2491.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{486}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 5180.0, :Apogee_km 35807.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.101927228, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1051}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5400.0, :Apogee_km 35795.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.003490659, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{250}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4007.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{916}}, {:Eccentricity 0.00149, :Launch_Mass_kg 2217.0, :Apogee_km 20221.0, :Perigee_km 20142.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.95, :Inclination_radians 0.961327352, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{701}}, {:Eccentricity 0.00564, :Launch_Mass_kg 1360.0, :Apogee_km 586.0, :Perigee_km 508.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.6, :Inclination_radians 1.125737368, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Yasny Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{329}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 150.0, :Apogee_km 729.0, :Perigee_km 725.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Solar Physics", :Period_minutes 99.3, :Inclination_radians 1.715658655, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{801}}, {:Eccentricity 0.05593, :Launch_Mass_kg 18000.0, :Apogee_km 1050.0, :Perigee_km 264.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 97.0, :Inclination_radians 1.708677338, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{610}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35813.0, :Perigee_km 35795.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.23, :Inclination_radians 8.72665E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{714}}, {:Eccentricity 0.00133, :Launch_Mass_kg 3454.0, :Apogee_km 35844.0, :Perigee_km 35732.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.18, :Inclination_radians 0.122173048, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1021}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 2500.0, :Apogee_km 35788.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 1.74533E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{824}}, {:Eccentricity 0.00163, :Launch_Mass_kg 120.0, :Apogee_km 704.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1063}}, {:Eccentricity 8.8E-4, :Launch_Mass_kg 93.0, :Apogee_km 427.0, :Perigee_km 415.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 41.2, :Inclination_radians 0.719424718, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_6 1}, :row-ids #{840}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4300.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{188}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 2542.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{280}}, {:Eccentricity 0.00155, :Launch_Mass_kg nil, :Apogee_km 422.0, :Perigee_km 401.0, :Type_of_Orbit "Intermediate", :Purpose "Scientific Research", :Period_minutes 92.8, :Inclination_radians 0.900589894, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{518}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3010.0, :Apogee_km 35797.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{83}}, {:Eccentricity 0.00203, :Launch_Mass_kg 280.0, :Apogee_km 1510.0, :Perigee_km 1478.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{844}}, {:Eccentricity 0.0098, :Launch_Mass_kg 12.0, :Apogee_km 640.0, :Perigee_km 504.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1079}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 50.0, :Apogee_km 665.0, :Perigee_km 657.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 1.712167996, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{969}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35807.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.144338729, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1072}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4905.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{59}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4085.0, :Apogee_km 822.0, :Perigee_km 819.0, :Type_of_Orbit "Polar", :Purpose "Earth Science/Meteorology", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{655}}, {:Eccentricity 0.6916, :Launch_Mass_kg 1200.0, :Apogee_km 120768.0, :Perigee_km 16809.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3418.2, :Inclination_radians 1.583013632, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{860}}, {:Eccentricity 0.00861, :Launch_Mass_kg 2.0, :Apogee_km 715.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.8, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{172}}, {:Eccentricity 0.00261, :Launch_Mass_kg nil, :Apogee_km 1107.0, :Perigee_km 1068.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 107.0, :Inclination_radians 2.14675498, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{297}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 2015.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{48}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 700.0, :Apogee_km 8069.0, :Perigee_km 8063.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 287.93, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_59 2}, :row-ids #{740 737}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 5514.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{818}}, {:Eccentricity 0.00236, :Launch_Mass_kg 150.0, :Apogee_km 626.0, :Perigee_km 593.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.88, :Inclination_radians 1.707106541, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1000}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 3138.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{917}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{785}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2000.0, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.1, :Inclination_radians 0.008028515, :Users "Government/Civil", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{652}}, {:Eccentricity 6.2E-4, :Launch_Mass_kg 3400.0, :Apogee_km 35812.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.139102741, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Kennedy Space Center"} {:categories {:cluster_4 1}, :row-ids #{632}}, {:Eccentricity 9.7E-4, :Launch_Mass_kg 3200.0, :Apogee_km 858.0, :Perigee_km 844.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance", :Period_minutes 102.0, :Inclination_radians 1.239183769, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{1067}}, {:Eccentricity 0.00598, :Launch_Mass_kg 12.0, :Apogee_km 694.0, :Perigee_km 610.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.8, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{64}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 587.0, :Apogee_km 613.0, :Perigee_km 612.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 97.0, :Inclination_radians 1.293288976, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{1060}}, {:Eccentricity 0.00184, :Launch_Mass_kg 65.0, :Apogee_km 1510.0, :Perigee_km 1481.0, :Type_of_Orbit nil, :Purpose "Earth Observation/Technology Development", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{662}}, {:Eccentricity 0.07838, :Launch_Mass_kg nil, :Apogee_km 1465.0, :Perigee_km 326.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 102.89, :Inclination_radians 1.413542161, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_0 1}, :row-ids #{176}}, {:Eccentricity 0.00111, :Launch_Mass_kg 2223.0, :Apogee_km 816.0, :Perigee_km 800.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.0, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{719}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1411.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 3}, :row-ids #{352 348 342}}, {:Eccentricity 0.00177, :Launch_Mass_kg 1.0, :Apogee_km 703.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.6, :Inclination_radians 1.708677338, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{174}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19145.0, :Perigee_km 19134.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.1, :Inclination_radians 1.130798822, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{392}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 5983.0, :Apogee_km 35795.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{952}}, {:Eccentricity 0.00283, :Launch_Mass_kg 115.0, :Apogee_km 710.0, :Perigee_km 670.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Solar Physics", :Period_minutes 98.6, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{5}}, {:Eccentricity 0.70905, :Launch_Mass_kg 4200.0, :Apogee_km 37580.0, :Perigee_km 1112.0, :Type_of_Orbit "Molniya", :Purpose "Electronic Surveillance", :Period_minutes 684.0, :Inclination_radians 1.109331273, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_62 1}, :row-ids #{466}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 3190.0, :Apogee_km 35806.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{259}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1930.0, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1031}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 45.0, :Apogee_km 796.0, :Perigee_km 787.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{769 759}}, {:Eccentricity 0.00191, :Launch_Mass_kg 280.0, :Apogee_km 1507.0, :Perigee_km 1477.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.8, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{855}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1000.0, :Apogee_km 699.0, :Perigee_km 697.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.7, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{803}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 1400.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1047}}, {:Eccentricity 0.00686, :Launch_Mass_kg 2217.0, :Apogee_km 20327.0, :Perigee_km 19963.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 716.47, :Inclination_radians 0.961676418, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{689}}, {:Eccentricity 0.00422, :Launch_Mass_kg 110.0, :Apogee_km 776.0, :Perigee_km 716.0, :Type_of_Orbit "Intermediate", :Purpose "Meteorology/Earth Observation", :Period_minutes 99.7, :Inclination_radians 0.436332313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{898}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2532.0, :Apogee_km 35995.0, :Perigee_km 35987.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1446.57, :Inclination_radians 0.001919862, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{283}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{277}}, {:Eccentricity 0.68665, :Launch_Mass_kg 1200.0, :Apogee_km 120715.0, :Perigee_km 17240.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Space Physics", :Period_minutes 3431.1, :Inclination_radians 1.584758961, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_78 1}, :row-ids #{857}}, {:Eccentricity 0.00273, :Launch_Mass_kg 6169.0, :Apogee_km 36103.0, :Perigee_km 35872.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1446.36, :Inclination_radians 0.076096355, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{11}}, {:Eccentricity 0.00422, :Launch_Mass_kg 12.0, :Apogee_km 653.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.17, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{66}}, {:Eccentricity 0.00811, :Launch_Mass_kg nil, :Apogee_km 717.0, :Perigee_km 603.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 97.9, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{631}}, {:Eccentricity 8.7E-4, :Launch_Mass_kg nil, :Apogee_km 500.0, :Perigee_km 488.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.49, :Inclination_radians 1.699078027, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 2}, :row-ids #{287 288}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 700.0, :Apogee_km 1415.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 4}, :row-ids #{357 358 368 373}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 3.0, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{301}}, {:Eccentricity 0.00197, :Launch_Mass_kg 280.0, :Apogee_km 1509.0, :Perigee_km 1478.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{854}}, {:Eccentricity 0.00234, :Launch_Mass_kg nil, :Apogee_km 1111.0, :Perigee_km 1076.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 107.12, :Inclination_radians 1.106713279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1135}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3050.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1049}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 4.5, :Apogee_km 504.0, :Perigee_km 499.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.6, :Inclination_radians 0.706858347, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 3}, :row-ids #{779 781 778}}, {:Eccentricity 0.00193, :Launch_Mass_kg 5.0, :Apogee_km 627.0, :Perigee_km 600.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 97.0, :Inclination_radians 1.713913325, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{805}}, {:Eccentricity 8.0E-4, :Launch_Mass_kg 29.0, :Apogee_km 490.0, :Perigee_km 479.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 94.3, :Inclination_radians 1.701696021, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1091}}, {:Eccentricity 0.00544, :Launch_Mass_kg 70.0, :Apogee_km 746.0, :Perigee_km 669.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{163}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1600.0, :Apogee_km 655.0, :Perigee_km 653.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 97.8, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{859}}, {:Eccentricity 0.44297, :Launch_Mass_kg 450.0, :Apogee_km 11836.0, :Perigee_km 658.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 235.16, :Inclination_radians 1.110727536, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_74 1}, :row-ids #{1016}}, {:Eccentricity 0.0011, :Launch_Mass_kg 700.0, :Apogee_km 23307.0, :Perigee_km 23242.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 846.98, :Inclination_radians 0.954171502, :Users "Commerical", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{320}}, {:Eccentricity 0.0019, :Launch_Mass_kg 1425.0, :Apogee_km 35872.0, :Perigee_km 35712.0, :Type_of_Orbit nil, :Purpose "Navigation", :Period_minutes 1436.0, :Inclination_radians 0.472984227, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_85 1}, :row-ids #{593}}, {:Eccentricity 0.01251, :Launch_Mass_kg 5000.0, :Apogee_km 1200.0, :Perigee_km 1013.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{888}}, {:Eccentricity 3.7E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35802.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{203}}, {:Eccentricity 0.00119, :Launch_Mass_kg 2200.0, :Apogee_km 35817.0, :Perigee_km 35717.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.12, :Inclination_radians 0.963945346, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{149}}, {:Eccentricity 0.00729, :Launch_Mass_kg 14500.0, :Apogee_km 676.0, :Perigee_km 574.0, :Type_of_Orbit "Intermediate", :Purpose "Surveillance", :Period_minutes 97.21, :Inclination_radians 1.186823891, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{625}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 1980.0, :Apogee_km 35794.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{115}}, {:Eccentricity 0.00417, :Launch_Mass_kg 825.0, :Apogee_km 968.0, :Perigee_km 907.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 103.8, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{794}}, {:Eccentricity 0.68335, :Launch_Mass_kg 666.0, :Apogee_km 30657.0, :Perigee_km 595.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 541.4, :Inclination_radians 0.175231057, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{1086}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3720.0, :Apogee_km 35794.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{732}}, {:Eccentricity 5.8E-4, :Launch_Mass_kg 1.0, :Apogee_km 507.0, :Perigee_km 499.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{800}}, {:Eccentricity 0.0, :Launch_Mass_kg 180.0, :Apogee_km 650.0, :Perigee_km 650.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.73, :Inclination_radians 1.256637061, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{987}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3725.0, :Apogee_km 35792.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1014}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 689.0, :Apogee_km 782.0, :Perigee_km 773.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{587}}, {:Eccentricity 0.00537, :Launch_Mass_kg 4500.0, :Apogee_km 36013.0, :Perigee_km 35560.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1436.14, :Inclination_radians 0.134739418, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{6}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2800.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1041}}, {:Eccentricity 0.72377, :Launch_Mass_kg 2500.0, :Apogee_km 39396.0, :Perigee_km 964.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 717.88, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{647}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 6505.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1040}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4333.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{219}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 6100.0, :Apogee_km 35794.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{225}}, {:Eccentricity 0.00248, :Launch_Mass_kg 250.0, :Apogee_km 1514.0, :Perigee_km 1475.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.86, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{853}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 5900.0, :Apogee_km 35790.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1097}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 2024.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1048}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 1420.0, :Apogee_km 35802.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{93}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 4.3, :Apogee_km 783.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 100.4, :Inclination_radians 1.720894642, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{989}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 45.0, :Apogee_km 795.0, :Perigee_km 788.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 6}, :row-ids #{770 755 760 757 771 767}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4690.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{314}}, {:Eccentricity 0.00601, :Launch_Mass_kg 2217.0, :Apogee_km 20498.0, :Perigee_km 20177.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 724.28, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{697}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5987.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1098}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35797.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.21, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{497}}, {:Eccentricity 0.02938, :Launch_Mass_kg 384.0, :Apogee_km 813.0, :Perigee_km 403.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 96.85, :Inclination_radians 0.226892803, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "L-1011 Aircraft"} {:categories {:cluster_6 1}, :row-ids #{118}}, {:Eccentricity 9.7E-4, :Launch_Mass_kg 1152.0, :Apogee_km 851.0, :Perigee_km 837.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.8, :Inclination_radians 1.72613063, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{195}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2900.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Meteorology/Navigation", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{669}}, {:Eccentricity 0.00101, :Launch_Mass_kg 3200.0, :Apogee_km 35829.0, :Perigee_km 35744.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.071733032, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1074}}, {:Eccentricity 8.5E-4, :Launch_Mass_kg nil, :Apogee_km 673.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.08, :Inclination_radians 1.711469865, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{923}}, {:Eccentricity 3.6E-4, :Launch_Mass_kg 20.0, :Apogee_km 659.0, :Perigee_km 654.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 97.9, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_6 1}, :row-ids #{673}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 1525.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{258}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 3531.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{598}}, {:Eccentricity 0.00117, :Launch_Mass_kg 2500.0, :Apogee_km 504.0, :Perigee_km 488.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 94.5, :Inclination_radians 1.699950691, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1054}}, {:Eccentricity 9.0E-4, :Launch_Mass_kg 225.0, :Apogee_km 1431.0, :Perigee_km 1417.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.3, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{990}}, {:Eccentricity 0.00141, :Launch_Mass_kg 45.0, :Apogee_km 732.0, :Perigee_km 712.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 99.2, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{192}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 6910.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.103672558, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1037}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 4400.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{949}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 3775.0, :Apogee_km 35802.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{22}}, {:Eccentricity 9.6E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19141.0, :Perigee_km 19092.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.2, :Inclination_radians 1.130798822, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{391}}, {:Eccentricity 0.00336, :Launch_Mass_kg 2.5, :Apogee_km 640.0, :Perigee_km 593.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.3, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1108}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19146.0, :Perigee_km 19119.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.85, :Inclination_radians 1.130275224, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{397}}, {:Eccentricity 0.00134, :Launch_Mass_kg 225.0, :Apogee_km 1505.0, :Perigee_km 1484.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{849}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 6140.0, :Apogee_km 35816.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.002268928, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{915}}, {:Eccentricity 0.00197, :Launch_Mass_kg 270.0, :Apogee_km 1511.0, :Perigee_km 1480.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{422}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 3200.0, :Apogee_km 35801.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.0, :Inclination_radians 0.004886922, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{411}}, {:Eccentricity 0.0033, :Launch_Mass_kg nil, :Apogee_km 1081.0, :Perigee_km 1032.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 106.33, :Inclination_radians 1.10618968, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_6 1}, :row-ids #{1134}}, {:Eccentricity 0.709, :Launch_Mass_kg 4000.0, :Apogee_km 37564.0, :Perigee_km 1111.0, :Type_of_Orbit "Molniya", :Purpose "Electronic Surveillance", :Period_minutes 684.0, :Inclination_radians 1.099557429, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_62 1}, :row-ids #{465}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 1510.0, :Apogee_km 35801.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 0.056374135, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{955}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2934.0, :Apogee_km 704.0, :Perigee_km 701.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{241}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 90.0, :Apogee_km 662.0, :Perigee_km 661.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.0, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{180}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 1206.0, :Apogee_km 823.0, :Perigee_km 817.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{836}}, {:Eccentricity 0.00273, :Launch_Mass_kg 250.0, :Apogee_km 1516.0, :Perigee_km 1473.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.86, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 2}, :row-ids #{851 852}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 1630.0, :Apogee_km 20191.0, :Perigee_km 20174.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.0, :Inclination_radians 0.959058424, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{687}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 4143.0, :Apogee_km 35793.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{3}}, {:Eccentricity 1.0E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19141.0, :Perigee_km 19136.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.07, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{393}}, {:Eccentricity 0.0, :Launch_Mass_kg 5000.0, :Apogee_km 1100.0, :Perigee_km 1100.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.26, :Inclination_radians 1.099557429, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 2}, :row-ids #{887 886}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3582.0, :Apogee_km 35798.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{726}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 225.0, :Apogee_km 1448.0, :Perigee_km 1436.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.7, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{841}}, {:Eccentricity 0.8639, :Launch_Mass_kg 126.0, :Apogee_km 87260.0, :Perigee_km 467.0, :Type_of_Orbit nil, :Purpose "Space Physics", :Period_minutes 1867.91, :Inclination_radians 0.274016693, :Users "Government/Civil", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_66 1}, :row-ids #{1044}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2858.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{748}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2500.0, :Apogee_km 35794.0, :Perigee_km 35788.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{601}}, {:Eccentricity 8.2E-4, :Launch_Mass_kg 700.0, :Apogee_km 927.0, :Perigee_km 915.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 103.44, :Inclination_radians 0.907745744, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{376}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 2300.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{749}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 1825.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{713}}, {:Eccentricity 0.00536, :Launch_Mass_kg 12.0, :Apogee_km 669.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.99, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{67}}, {:Eccentricity 3.8E-4, :Launch_Mass_kg 2490.0, :Apogee_km 35802.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{254}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 3288.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 3.49066E-4, :Users "Commercial/Gov/Mil", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{444}}, {:Eccentricity 0.00137, :Launch_Mass_kg 1463.0, :Apogee_km 590.0, :Perigee_km 571.0, :Type_of_Orbit "Intermediate", :Purpose "Astrophysics", :Period_minutes 96.3, :Inclination_radians 0.359537826, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{1012}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 5250.0, :Apogee_km 35800.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.28, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{268}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 350.0, :Apogee_km 1202.0, :Perigee_km 1199.0, :Type_of_Orbit "Polar", :Purpose "Technology Development", :Period_minutes 109.42, :Inclination_radians 1.570796327, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{826}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2800.0, :Apogee_km 767.0, :Perigee_km 765.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.2, :Inclination_radians 1.719149313, :Users "Military/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1107}}, {:Eccentricity 0.00125, :Launch_Mass_kg 480.0, :Apogee_km 451.0, :Perigee_km 434.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 93.4, :Inclination_radians 1.553343034, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{426}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 150.0, :Apogee_km 649.0, :Perigee_km 638.0, :Type_of_Orbit "Intermediate", :Purpose "Space Science", :Period_minutes 97.6, :Inclination_radians 1.289798317, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{900}}, {:Eccentricity 0.00153, :Launch_Mass_kg 92.0, :Apogee_km 824.0, :Perigee_km 802.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 101.2, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1150}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 689.0, :Apogee_km 711.0, :Perigee_km 708.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.0, :Inclination_radians 1.509709803, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 1}, :row-ids #{525}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 4328.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{221}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 3175.0, :Apogee_km 35788.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.14, :Inclination_radians 0.007330383, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{413}}, {:Eccentricity 0.00118, :Launch_Mass_kg 6804.0, :Apogee_km 35900.0, :Perigee_km 35800.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians nil, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{672}}, {:Eccentricity 0.00502, :Launch_Mass_kg 70.0, :Apogee_km 836.0, :Perigee_km 764.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 100.9, :Inclination_radians 1.256637061, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{161}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 3200.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.037699112, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1071}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 4600.0, :Apogee_km 35803.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.009250245, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{958}}, {:Eccentricity 0.00305, :Launch_Mass_kg 2217.0, :Apogee_km 20266.0, :Perigee_km 20104.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 718.09, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{698}}, {:Eccentricity 0.00121, :Launch_Mass_kg 29.0, :Apogee_km 1459.0, :Perigee_km 1440.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Amateur Radio", :Period_minutes 114.9, :Inclination_radians 1.769763862, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{54}}, {:Eccentricity 0.02053, :Launch_Mass_kg 10.0, :Apogee_km 886.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 99.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{114}}, {:Eccentricity 0.00264, :Launch_Mass_kg 2700.0, :Apogee_km 665.0, :Perigee_km 628.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.710422667, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1145}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 2850.0, :Apogee_km 35794.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{621}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 450.0, :Apogee_km 1416.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{355}}, {:Eccentricity 0.00175, :Launch_Mass_kg 1816.0, :Apogee_km 20227.0, :Perigee_km 20134.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.91, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{682}}, {:Eccentricity 0.00188, :Launch_Mass_kg 1415.0, :Apogee_km 19175.0, :Perigee_km 19079.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.61, :Inclination_radians 1.131671487, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{404}}, {:Eccentricity 0.00591, :Launch_Mass_kg 12.0, :Apogee_km 780.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.6, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{874}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{312}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg nil, :Apogee_km 35812.0, :Perigee_km 35759.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1164}}, {:Eccentricity 9.5E-4, :Launch_Mass_kg 5900.0, :Apogee_km 472.0, :Perigee_km 459.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 93.9, :Inclination_radians 1.696460033, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_9 1}, :row-ids #{838}}, {:Eccentricity 0.0034, :Launch_Mass_kg 1360.0, :Apogee_km 569.0, :Perigee_km 522.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.6, :Inclination_radians 1.125737368, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_6 1}, :row-ids #{328}}, {:Eccentricity 9.8E-4, :Launch_Mass_kg 74.0, :Apogee_km 786.0, :Perigee_km 772.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Observation", :Period_minutes 100.4, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{708}}, {:Eccentricity 0.003, :Launch_Mass_kg 2060.0, :Apogee_km 20366.0, :Perigee_km 20206.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 722.19, :Inclination_radians 0.960280154, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{703}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 6000.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.1, :Inclination_radians 0.024958208, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{146}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 2900.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{670}}, {:Eccentricity 0.01277, :Launch_Mass_kg 5000.0, :Apogee_km 1202.0, :Perigee_km 1011.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{889}}, {:Eccentricity 8.5E-4, :Launch_Mass_kg 572.0, :Apogee_km 690.0, :Perigee_km 678.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Research", :Period_minutes 98.4, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{238}}, {:Eccentricity 0.00686, :Launch_Mass_kg 12.0, :Apogee_km 746.0, :Perigee_km 649.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.7, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{876}}, {:Eccentricity 0.00479, :Launch_Mass_kg 12.0, :Apogee_km 764.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications (experimental)", :Period_minutes 99.4, :Inclination_radians 1.710422667, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{60}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2950.0, :Apogee_km 35794.0, :Perigee_km 35788.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{257}}, {:Eccentricity 5.6E-4, :Launch_Mass_kg 45.0, :Apogee_km 777.0, :Perigee_km 769.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{777 753}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg nil, :Apogee_km 507.0, :Perigee_km 506.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.8, :Inclination_radians 1.699950691, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1129}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 587.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{119}}, {:Eccentricity 0.61976, :Launch_Mass_kg 3727.0, :Apogee_km 47086.0, :Perigee_km 6179.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 994.83, :Inclination_radians 1.106538746, :Users "Commercial", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_80 1}, :row-ids #{948}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 14500.0, :Apogee_km 716.0, :Perigee_km 713.0, :Type_of_Orbit "Intermediate", :Purpose "Surveillance", :Period_minutes 99.08, :Inclination_radians 0.995012207, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{626}}, {:Eccentricity 0.00195, :Launch_Mass_kg 1.0, :Apogee_km 581.0, :Perigee_km 554.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.01, :Inclination_radians 1.130973355, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{106}}, {:Eccentricity 0.02562, :Launch_Mass_kg 2.0, :Apogee_km 816.0, :Perigee_km 457.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.45, :Inclination_radians 1.774999849, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{638}}, {:Eccentricity 0.0012, :Launch_Mass_kg 1000.0, :Apogee_km 696.0, :Perigee_km 679.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.5, :Inclination_radians 1.713913325, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{617}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2086.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{309}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 1480.0, :Apogee_km 19125.0, :Perigee_km 19118.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.39, :Inclination_radians 1.130973355, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{382}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 4642.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{313}}, {:Eccentricity 0.00974, :Launch_Mass_kg 3.0, :Apogee_km 731.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 98.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{139}}, {:Eccentricity 0.00164, :Launch_Mass_kg 2700.0, :Apogee_km 658.0, :Perigee_km 635.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.7, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1142}}, {:Eccentricity 4.7E-4, :Launch_Mass_kg 2200.0, :Apogee_km 21545.0, :Perigee_km 21519.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.39, :Inclination_radians 0.964468945, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{152}}, {:Eccentricity 6.0E-4, :Launch_Mass_kg nil, :Apogee_km 1089.0, :Perigee_km 1080.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 106.93, :Inclination_radians 1.10618968, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1132}}, {:Eccentricity 0.0011, :Launch_Mass_kg 480.0, :Apogee_km 450.0, :Perigee_km 435.0, :Type_of_Orbit "Polar", :Purpose "Earth Science", :Period_minutes 93.4, :Inclination_radians 1.553343034, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{425}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg nil, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.67, :Inclination_radians 0.70703288, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{124}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 720.0, :Apogee_km 699.0, :Perigee_km 696.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 98.73, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{979}}, {:Eccentricity 0.03149, :Launch_Mass_kg 1.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 2}, :row-ids #{175 639}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 3592.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{506}}, {:Eccentricity 0.00104, :Launch_Mass_kg 1000.0, :Apogee_km 868.0, :Perigee_km 853.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 102.2, :Inclination_radians 0.34906585, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{643}}, {:Eccentricity 0.00104, :Launch_Mass_kg nil, :Apogee_km 830.0, :Perigee_km 815.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 101.3, :Inclination_radians 1.722639972, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{173}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 3642.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{503}}, {:Eccentricity 0.00137, :Launch_Mass_kg 4303.0, :Apogee_km 556.0, :Perigee_km 537.0, :Type_of_Orbit nil, :Purpose "Astrophysics", :Period_minutes 95.6, :Inclination_radians 0.446804289, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_9 1}, :row-ids #{295}}, {:Eccentricity 0.00159, :Launch_Mass_kg 280.0, :Apogee_km 1507.0, :Perigee_km 1482.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{846}}, {:Eccentricity 9.8E-4, :Launch_Mass_kg 14.0, :Apogee_km 784.0, :Perigee_km 770.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 100.3, :Inclination_radians 1.720894642, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{1068}}, {:Eccentricity 0.03408, :Launch_Mass_kg 450.0, :Apogee_km 1413.0, :Perigee_km 900.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{339}}, {:Eccentricity 0.00136, :Launch_Mass_kg nil, :Apogee_km 628.0, :Perigee_km 609.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.1, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{178}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 3014.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{82}}, {:Eccentricity 9.2E-4, :Launch_Mass_kg 1.0, :Apogee_km 671.0, :Perigee_km 658.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.03, :Inclination_radians 1.712691595, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{245}}, {:Eccentricity 0.00488, :Launch_Mass_kg 1600.0, :Apogee_km 36007.0, :Perigee_km 35595.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001570796, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{53}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2763.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1030}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 2550.0, :Apogee_km 35798.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{488}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 4312.0, :Apogee_km 35793.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{39}}, {:Eccentricity 0.00143, :Launch_Mass_kg 60.0, :Apogee_km 637.0, :Perigee_km 617.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation/Technology Development", :Period_minutes 97.2, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{629}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35799.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{253}}, {:Eccentricity 0.00104, :Launch_Mass_kg 2300.0, :Apogee_km 835.0, :Perigee_km 820.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 101.5, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{292}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.004712389, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1062}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 6740.0, :Apogee_km 35796.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1092}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 3700.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{227}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg nil, :Apogee_km 35793.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{727}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 751.0, :Perigee_km 747.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.509709803, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{574}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 689.0, :Apogee_km 754.0, :Perigee_km 745.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 99.8, :Inclination_radians 1.521927108, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{589}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 3100.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1069}}, {:Eccentricity 0.00351, :Launch_Mass_kg 1.0, :Apogee_km 639.0, :Perigee_km 590.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{456}}, {:Eccentricity 0.00265, :Launch_Mass_kg 2200.0, :Apogee_km 35893.0, :Perigee_km 35670.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1435.82, :Inclination_radians 0.961501885, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_85 1}, :row-ids #{147}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 627.0, :Apogee_km 35800.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.249582083, :Users "Civil", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{414}}, {:Eccentricity 8.9E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35778.0, :Perigee_km 35703.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{983}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 1459.0, :Apogee_km 35789.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.032463124, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{2}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{56}}, {:Eccentricity 0.73961, :Launch_Mass_kg 2400.0, :Apogee_km 39807.0, :Perigee_km 542.0, :Type_of_Orbit "Molniya", :Purpose "Early Warning", :Period_minutes 717.66, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{1081}}, {:Eccentricity 6.0E-4, :Launch_Mass_kg 3028.0, :Apogee_km 35811.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{481}}, {:Eccentricity 0.00126, :Launch_Mass_kg 300.0, :Apogee_km 802.0, :Perigee_km 784.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Research", :Period_minutes 100.7, :Inclination_radians 1.717403984, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{938}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4100.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{984}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 3379.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{84}}, {:Eccentricity 0.79737, :Launch_Mass_kg 4742.0, :Apogee_km 138825.0, :Perigee_km 9999.0, :Type_of_Orbit "Deep Highly Eccentric", :Purpose "Astrophysics", :Period_minutes 3808.92, :Inclination_radians 0.497418837, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_79 1}, :row-ids #{131}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 2240.0, :Apogee_km 1351.0, :Perigee_km 1339.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 112.58, :Inclination_radians 1.012290966, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{1003}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 6.98132E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{207}}, {:Eccentricity 0.00197, :Launch_Mass_kg 280.0, :Apogee_km 1512.0, :Perigee_km 1481.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{850}}, {:Eccentricity 0.00271, :Launch_Mass_kg 2200.0, :Apogee_km 21603.0, :Perigee_km 21452.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.21, :Inclination_radians 0.961676418, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{154}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3642.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{504}}, {:Eccentricity 0.97287, :Launch_Mass_kg 1200.0, :Apogee_km 470310.0, :Perigee_km 186.0, :Type_of_Orbit "Cislunar", :Purpose "Astrophysics", :Period_minutes 19700.45, :Inclination_radians 0.500909495, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_73 1}, :row-ids #{1104}}, {:Eccentricity 0.00204, :Launch_Mass_kg 1640.0, :Apogee_km 35866.0, :Perigee_km 35694.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.76, :Inclination_radians 0.002443461, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1124}}, {:Eccentricity 5.6E-4, :Launch_Mass_kg 45.0, :Apogee_km 796.0, :Perigee_km 788.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{766}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35803.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.05, :Inclination_radians 0.031066861, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{142}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 3014.0, :Apogee_km 35789.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{784}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3765.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{316}}, {:Eccentricity 0.00119, :Launch_Mass_kg 0.8, :Apogee_km 787.0, :Perigee_km 770.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 100.42, :Inclination_radians 1.721418241, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{0}}, {:Eccentricity 0.00194, :Launch_Mass_kg nil, :Apogee_km 606.0, :Perigee_km 579.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{925}}, {:Eccentricity 0.00168, :Launch_Mass_kg 770.0, :Apogee_km 496.0, :Perigee_km 473.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.3, :Inclination_radians 1.713389727, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{866}}, {:Eccentricity 0.00228, :Launch_Mass_kg 880.0, :Apogee_km 654.0, :Perigee_km 622.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 97.48, :Inclination_radians 1.710946266, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1096}}, {:Eccentricity 6.3E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19158.0, :Perigee_km 19126.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 676.2, :Inclination_radians 1.131322421, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{405}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 4745.0, :Apogee_km 35809.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{718}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2700.0, :Apogee_km 820.0, :Perigee_km 818.0, :Type_of_Orbit "Polar", :Purpose "Meteorology", :Period_minutes 101.3, :Inclination_radians 1.720894642, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{649}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 9.3, :Apogee_km 459.0, :Perigee_km 456.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 93.7, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1059}}, {:Eccentricity 0.03149, :Launch_Mass_kg nil, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{1017}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 5054.0, :Apogee_km 35874.0, :Perigee_km 35864.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1440.31, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{71}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5600.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{260}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4680.0, :Apogee_km 35789.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{512}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2924.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.020071286, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{81}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 5910.0, :Apogee_km 35790.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{57}}, {:Eccentricity 0.00365, :Launch_Mass_kg 1.0, :Apogee_km 640.0, :Perigee_km 589.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.9, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{817}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 1450.0, :Apogee_km 35787.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.06, :Inclination_radians 0.019547688, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{20}}, {:Eccentricity 0.00204, :Launch_Mass_kg 47.0, :Apogee_km 1014.0, :Perigee_km 984.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 105.1, :Inclination_radians 1.731366618, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{636}}, {:Eccentricity 0.00324, :Launch_Mass_kg 2217.0, :Apogee_km 20268.0, :Perigee_km 20096.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.925024504, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{694}}, {:Eccentricity 0.00231, :Launch_Mass_kg 3800.0, :Apogee_km 21591.0, :Perigee_km 21462.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 773.1, :Inclination_radians 0.959931089, :Users "Military", :Class_of_Orbit "MEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_23 1}, :row-ids #{155}}, {:Eccentricity 3.9E-4, :Launch_Mass_kg 4300.0, :Apogee_km 35802.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{269}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 4800.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{747}}, {:Eccentricity 0.95712, :Launch_Mass_kg 3660.0, :Apogee_km 330000.0, :Perigee_km 1000.0, :Type_of_Orbit nil, :Purpose "Astrophysics", :Period_minutes 0.22, :Inclination_radians 0.898146433, :Users "Government", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_92 1}, :row-ids #{975}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35802.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 0.0286234, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1020}}, {:Eccentricity 0.0027, :Launch_Mass_kg 770.0, :Apogee_km 505.0, :Perigee_km 468.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.3, :Inclination_radians 1.713913325, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{864}}, {:Eccentricity 5.9E-4, :Launch_Mass_kg 1415.0, :Apogee_km 19142.0, :Perigee_km 19112.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 675.62, :Inclination_radians 1.131496954, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{394}}, {:Eccentricity 0.00204, :Launch_Mass_kg 70.0, :Apogee_km 1014.0, :Perigee_km 984.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Technology Development", :Period_minutes 105.1, :Inclination_radians 1.731366618, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{99}}, {:Eccentricity 0.00136, :Launch_Mass_kg 360.0, :Apogee_km 632.0, :Perigee_km 613.0, :Type_of_Orbit nil, :Purpose "Space Science", :Period_minutes 97.2, :Inclination_radians 0.104719755, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Kwajalein Island"} {:categories {:cluster_6 1}, :row-ids #{735}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 1230.0, :Apogee_km 509.0, :Perigee_km 507.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 94.8, :Inclination_radians 1.701696021, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{1036}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 1780.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.014660766, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{111}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 5990.0, :Apogee_km 35786.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1100}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 1600.0, :Apogee_km 514.0, :Perigee_km 512.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.89, :Inclination_radians 1.700997889, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{461}}, {:Eccentricity 0.00104, :Launch_Mass_kg 100.0, :Apogee_km 821.0, :Perigee_km 806.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Maritime Tracking", :Period_minutes 101.2, :Inclination_radians 1.727875959, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{276}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg nil, :Apogee_km 506.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.68, :Inclination_radians 0.70703288, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{809}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 2217.0, :Apogee_km 20152.0, :Perigee_km 20135.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 716.4, :Inclination_radians 0.961676418, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{706}}, {:Eccentricity 0.73497, :Launch_Mass_kg 2400.0, :Apogee_km 39697.0, :Perigee_km 667.0, :Type_of_Orbit "Molniya", :Purpose "Early Warning", :Period_minutes 717.9, :Inclination_radians 1.09606677, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{1082}}, {:Eccentricity 6.6E-4, :Launch_Mass_kg 1390.0, :Apogee_km 35816.0, :Perigee_km 35760.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 1436.19, :Inclination_radians 0.038222711, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{291}}, {:Eccentricity 5.3E-4, :Launch_Mass_kg 2380.0, :Apogee_km 35810.0, :Perigee_km 35765.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.14, :Inclination_radians 0.064228116, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{213}}, {:Eccentricity 0.01275, :Launch_Mass_kg 300.0, :Apogee_km 580.0, :Perigee_km 405.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 94.5, :Inclination_radians 0.716108592, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{1029}}, {:Eccentricity 0.00695, :Launch_Mass_kg 2217.0, :Apogee_km 20433.0, :Perigee_km 20063.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 720.65, :Inclination_radians 0.958185759, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{700}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 159.0, :Apogee_km 544.0, :Perigee_km 538.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 95.5, :Inclination_radians 0.617846555, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{130}}, {:Eccentricity 0.00106, :Launch_Mass_kg 120.0, :Apogee_km 692.0, :Perigee_km 677.0, :Type_of_Orbit "Polar", :Purpose "Electronic Intelligence/Technology Development", :Period_minutes 98.45, :Inclination_radians 1.714087858, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{237}}, {:Eccentricity 0.00635, :Launch_Mass_kg 1.0, :Apogee_km 683.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.4, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1152}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 5200.0, :Apogee_km 35796.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.005235988, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1160}}, {:Eccentricity 5.6E-4, :Launch_Mass_kg 1982.0, :Apogee_km 35810.0, :Perigee_km 35763.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.004014257, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_4 1}, :row-ids #{430}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 4640.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1035}}, {:Eccentricity 6.5E-4, :Launch_Mass_kg 12.0, :Apogee_km 572.0, :Perigee_km 563.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.0, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{62}}, {:Eccentricity 0.0, :Launch_Mass_kg 3200.0, :Apogee_km 35170.0, :Perigee_km 35170.0, :Type_of_Orbit nil, :Purpose "Earth Science/Meteorology", :Period_minutes 1436.0, :Inclination_radians 0.0, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{412}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 2845.0, :Apogee_km 35795.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{43}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2501.0, :Apogee_km 35795.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{751}}, {:Eccentricity 0.00177, :Launch_Mass_kg 180.0, :Apogee_km 688.0, :Perigee_km 663.0, :Type_of_Orbit "Intermediate", :Purpose "Remote Sensing", :Period_minutes 98.3, :Inclination_radians 0.157079633, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Kwajalein Island"} {:categories {:cluster_6 1}, :row-ids #{834}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3909.0, :Apogee_km 35791.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{44}}, {:Eccentricity 0.00515, :Launch_Mass_kg 1415.0, :Apogee_km 19380.0, :Perigee_km 19116.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 680.43, :Inclination_radians 1.131671487, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{403}}, {:Eccentricity 0.00314, :Launch_Mass_kg 236.0, :Apogee_km 664.0, :Perigee_km 620.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 97.5, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{592}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 4854.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{239}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 4000.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{230}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 5100.0, :Apogee_km 35796.0, :Perigee_km 35777.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.003665191, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1088}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 2250.0, :Apogee_km 37794.0, :Perigee_km 37778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.017453293, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1057}}, {:Eccentricity 0.00146, :Launch_Mass_kg 817.0, :Apogee_km 841.0, :Perigee_km 820.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth/Space Science", :Period_minutes 101.5, :Inclination_radians 1.724385301, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{160}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 2200.0, :Apogee_km 35802.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.0, :Inclination_radians 0.035604717, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1058}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 1150.0, :Apogee_km 501.0, :Perigee_km 497.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 94.6, :Inclination_radians 1.30428455, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{619}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35809.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1028}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 2775.0, :Apogee_km 35801.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.15, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{80}}, {:Eccentricity 0.00455, :Launch_Mass_kg 2217.0, :Apogee_km 20427.0, :Perigee_km 20184.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 722.98, :Inclination_radians 0.959931089, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{696}}, {:Eccentricity 0.00498, :Launch_Mass_kg 1108.0, :Apogee_km 598.0, :Perigee_km 529.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 95.9, :Inclination_radians 1.706932008, :Users "Government/Military", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1038}}, {:Eccentricity 0.00146, :Launch_Mass_kg 2500.0, :Apogee_km 505.0, :Perigee_km 485.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 94.5, :Inclination_radians 1.699950691, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1055}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 5483.0, :Apogee_km 35797.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{189}}, {:Eccentricity 2.9E-4, :Launch_Mass_kg 250.0, :Apogee_km 573.0, :Perigee_km 569.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Astrophysics/Earth Science", :Period_minutes 96.1, :Inclination_radians 1.70344135, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Svobodny Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{742}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 4940.0, :Apogee_km 35623.0, :Perigee_km 35605.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1427.27, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{102}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 5800.0, :Apogee_km 35792.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 1436.04, :Inclination_radians 5.23599E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{613}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg nil, :Apogee_km 1107.0, :Perigee_km 1101.0, :Type_of_Orbit nil, :Purpose "Reconnaissance", :Period_minutes 107.35, :Inclination_radians 2.146580447, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{296}}, {:Eccentricity 0.74504, :Launch_Mass_kg nil, :Apogee_km 39966.0, :Perigee_km 400.0, :Type_of_Orbit "Molniya", :Purpose "Communications", :Period_minutes 718.0, :Inclination_radians 1.047197551, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{905}}, {:Eccentricity 1.1E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35791.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{282}}, {:Eccentricity 0.00124, :Launch_Mass_kg 10.9, :Apogee_km 868.0, :Perigee_km 850.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 102.1, :Inclination_radians 0.34906585, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_6 1}, :row-ids #{980}}, {:Eccentricity 4.4E-4, :Launch_Mass_kg 850.0, :Apogee_km 491.0, :Perigee_km 485.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 94.36, :Inclination_radians 1.698205362, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{457}}, {:Eccentricity 0.01243, :Launch_Mass_kg nil, :Apogee_km 1205.0, :Perigee_km 1019.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.5, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{895}}, {:Eccentricity 0.0125, :Launch_Mass_kg 5000.0, :Apogee_km 1201.0, :Perigee_km 1014.0, :Type_of_Orbit "Intermediate", :Purpose "Electronic Surveillance/Ocean", :Period_minutes 107.4, :Inclination_radians 1.106538746, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_9 1}, :row-ids #{894}}, {:Eccentricity 3.1E-4, :Launch_Mass_kg 3878.0, :Apogee_km 35799.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1033}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 848.0, :Apogee_km 703.0, :Perigee_km 702.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 98.8, :Inclination_radians 1.713913325, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{141}}, {:Eccentricity 4.5E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35806.0, :Perigee_km 35768.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.0143117, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{661}}, {:Eccentricity 6.9E-4, :Launch_Mass_kg 1134.0, :Apogee_km 855.0, :Perigee_km 845.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.93, :Inclination_radians 1.724385301, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{193}}, {:Eccentricity 0.02213, :Launch_Mass_kg 3.0, :Apogee_km 790.0, :Perigee_km 480.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.4, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{14}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35791.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.03, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{599}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 3800.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 1436.11, :Inclination_radians 0.032114058, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{148}}, {:Eccentricity 0.00242, :Launch_Mass_kg 225.0, :Apogee_km 1506.0, :Perigee_km 1468.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.7, :Inclination_radians 0.148352986, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{993}}, {:Eccentricity 0.03149, :Launch_Mass_kg 5.0, :Apogee_km 886.0, :Perigee_km 443.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 98.0, :Inclination_radians 2.09963109, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 2}, :row-ids #{17 18}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3287.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{218}}, {:Eccentricity 0.00401, :Launch_Mass_kg 825.0, :Apogee_km 1008.0, :Perigee_km 949.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 104.7, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{793}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 2970.0, :Apogee_km 35776.0, :Perigee_km 35742.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1434.69, :Inclination_radians 0.001396263, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1094}}, {:Eccentricity 0.00214, :Launch_Mass_kg 5.5, :Apogee_km 654.0, :Perigee_km 624.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Scientific Research", :Period_minutes 97.48, :Inclination_radians 1.256113463, :Users "Civil/Government", :Class_of_Orbit "LEO", :Launch_Site "Kodiak Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{736}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 689.0, :Apogee_km 778.0, :Perigee_km 777.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{586}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 6199.0, :Apogee_km 35792.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{496}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2238.0, :Apogee_km 35792.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.17, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{733}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3412.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{728}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 5493.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{318}}, {:Eccentricity 1.8E-4, :Launch_Mass_kg 5500.0, :Apogee_km 35793.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch"} {:categories {:cluster_4 1}, :row-ids #{220}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 3315.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{91}}, {:Eccentricity 0.79307, :Launch_Mass_kg 4723.0, :Apogee_km 358802.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_77 1}, :row-ids #{511}}, {:Eccentricity 0.00319, :Launch_Mass_kg 820.0, :Apogee_km 1016.0, :Perigee_km 969.0, :Type_of_Orbit "Intermediate", :Purpose "Navigation", :Period_minutes 105.0, :Inclination_radians 1.448623279, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{789}}, {:Eccentricity 6.0E-5, :Launch_Mass_kg 450.0, :Apogee_km 1414.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{347}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 3038.0, :Apogee_km 35802.0, :Perigee_km 35788.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.52, :Inclination_radians 6.98132E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{943}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 5960.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.05253441, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{474}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 5404.0, :Apogee_km 35794.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.21, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{263}}, {:Eccentricity 0.00229, :Launch_Mass_kg 225.0, :Apogee_km 1503.0, :Perigee_km 1467.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.7, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{995}}, {:Eccentricity 5.7E-4, :Launch_Mass_kg 5500.0, :Apogee_km 35807.0, :Perigee_km 35759.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.92, :Inclination_radians 6.98132E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{1159}}, {:Eccentricity 3.3E-4, :Launch_Mass_kg 2495.0, :Apogee_km 35800.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{113}}, {:Eccentricity 0.0, :Launch_Mass_kg 6169.0, :Apogee_km 35700.0, :Perigee_km 35700.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1306.29, :Inclination_radians 0.355872634, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 2}, :row-ids #{13 12}}, {:Eccentricity 2.5E-4, :Launch_Mass_kg 4575.0, :Apogee_km 35797.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{729}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 2300.0, :Apogee_km 828.0, :Perigee_km 827.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 101.45, :Inclination_radians 1.724559834, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{294}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3480.0, :Apogee_km 35792.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{76}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 2550.0, :Apogee_km 35804.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.003141593, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{516}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 3653.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{505}}, {:Eccentricity 0.01435, :Launch_Mass_kg 60.6, :Apogee_km 839.0, :Perigee_km 635.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 99.5, :Inclination_radians 1.684242728, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{782}}, {:Eccentricity 2.6E-4, :Launch_Mass_kg 1474.0, :Apogee_km 35797.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.164584548, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{953}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg nil, :Apogee_km 594.0, :Perigee_km 591.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.5, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{927}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 3750.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{1015}}, {:Eccentricity 3.4E-4, :Launch_Mass_kg 1282.0, :Apogee_km 35801.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.003839724, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{635}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg nil, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 6.98132E-4, :Users "Military/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{51}}, {:Eccentricity 0.01318, :Launch_Mass_kg 4.5, :Apogee_km 780.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.5, :Inclination_radians 1.705186679, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{182}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 3180.0, :Apogee_km 35796.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.99, :Inclination_radians 0.16406095, :Users "Government/Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{1024}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2650.0, :Apogee_km 35799.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 1436.12, :Inclination_radians 3.49066E-4, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_4 1}, :row-ids #{202}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 4667.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001570796, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{1115}}, {:Eccentricity 0.07511, :Launch_Mass_kg 4000.0, :Apogee_km 38950.0, :Perigee_km 32618.0, :Type_of_Orbit nil, :Purpose "Navigation", :Period_minutes 1436.0, :Inclination_radians 0.698131701, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_85 1}, :row-ids #{820}}, {:Eccentricity 0.00264, :Launch_Mass_kg 5000.0, :Apogee_km 35937.0, :Perigee_km 35714.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 1438.8, :Inclination_radians 0.050440015, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{8}}, {:Eccentricity 0.01728, :Launch_Mass_kg 300.0, :Apogee_km 576.0, :Perigee_km 340.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 93.75, :Inclination_radians 2.474178748, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Palmachim Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{744}}, {:Eccentricity 0.00171, :Launch_Mass_kg 1000.0, :Apogee_km 654.0, :Perigee_km 630.0, :Type_of_Orbit nil, :Purpose "Remote Sensing", :Period_minutes 97.56, :Inclination_radians 1.711644397, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{324}}, {:Eccentricity 0.00609, :Launch_Mass_kg 12.0, :Apogee_km 736.0, :Perigee_km 650.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.6, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{879}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 3542.0, :Apogee_km 35792.0, :Perigee_km 35779.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{870}}, {:Eccentricity 0.00134, :Launch_Mass_kg 225.0, :Apogee_km 1495.0, :Perigee_km 1474.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.6, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{998}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 2900.0, :Apogee_km 35791.0, :Perigee_km 35784.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.16, :Inclination_radians 0.00122173, :Users "Government/Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{656}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 3030.0, :Apogee_km 826.0, :Perigee_km 824.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.4, :Inclination_radians 1.720894642, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{978}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 45.0, :Apogee_km 776.0, :Perigee_km 770.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.3, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{752 754}}, {:Eccentricity 0.00881, :Launch_Mass_kg 100.0, :Apogee_km 676.0, :Perigee_km 553.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Demonstration", :Period_minutes 96.98, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{806}}, {:Eccentricity 0.02088, :Launch_Mass_kg 4.5, :Apogee_km 792.0, :Perigee_km 499.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.6, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{16}}, {:Eccentricity 0.73554, :Launch_Mass_kg 2400.0, :Apogee_km 39128.0, :Perigee_km 563.0, :Type_of_Orbit "Molniya", :Purpose "Early Warning", :Period_minutes 704.3, :Inclination_radians 1.095892237, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_62 1}, :row-ids #{1083}}, {:Eccentricity 0.00778, :Launch_Mass_kg 12.0, :Apogee_km 758.0, :Perigee_km 648.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 98.8, :Inclination_radians 1.706932008, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{878}}, {:Eccentricity 0.01087, :Launch_Mass_kg 3.0, :Apogee_km 747.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Science", :Period_minutes 98.0, :Inclination_radians 1.706932008, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{140}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 1500.0, :Apogee_km 773.0, :Perigee_km 763.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 100.2, :Inclination_radians 1.720196511, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1165}}, {:Eccentricity 0.47082, :Launch_Mass_kg 3792.0, :Apogee_km 47048.0, :Perigee_km 12849.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1148.43, :Inclination_radians 1.104793417, :Users "Commercial", :Class_of_Orbit "Elliptical", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_76 1}, :row-ids #{947}}, {:Eccentricity 0.00384, :Launch_Mass_kg 1816.0, :Apogee_km 20284.0, :Perigee_km 20080.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 717.97, :Inclination_radians 0.954695101, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_23 1}, :row-ids #{681}}, {:Eccentricity 0.00114, :Launch_Mass_kg 175.0, :Apogee_km 637.0, :Perigee_km 621.0, :Type_of_Orbit nil, :Purpose "Earth Observation", :Period_minutes 97.3, :Inclination_radians 1.708677338, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{829}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 1500.0, :Apogee_km 35804.0, :Perigee_km 35770.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{96}}, {:Eccentricity 1.7E-4, :Launch_Mass_kg 700.0, :Apogee_km 23227.0, :Perigee_km 23217.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 844.69, :Inclination_radians 0.965167076, :Users "Commercial", :Class_of_Orbit "MEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_23 1}, :row-ids #{323}}, {:Eccentricity 0.71228, :Launch_Mass_kg 8000.0, :Apogee_km 38740.0, :Perigee_km 1210.0, :Type_of_Orbit "Molniya", :Purpose "Electronic Surveillance", :Period_minutes 709.61, :Inclination_radians 1.129228026, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Cape Canaveral"} {:categories {:cluster_62 1}, :row-ids #{1066}}, {:Eccentricity 0.00122, :Launch_Mass_kg 4635.0, :Apogee_km 35803.0, :Perigee_km 35700.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{957}}, {:Eccentricity 0.00153, :Launch_Mass_kg 225.0, :Apogee_km 1495.0, :Perigee_km 1471.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.5, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{997}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 2600.0, :Apogee_km 35798.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{279}}, {:Eccentricity 4.3E-4, :Launch_Mass_kg 1390.0, :Apogee_km 35803.0, :Perigee_km 35767.0, :Type_of_Orbit nil, :Purpose "Earth Science", :Period_minutes 1436.04, :Inclination_radians 0.045553093, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Xichang Satellite Launch Center"} {:categories {:cluster_4 1}, :row-ids #{290}}, {:Eccentricity 9.0E-5, :Launch_Mass_kg 2450.0, :Apogee_km 35791.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.19, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{489}}, {:Eccentricity 0.00636, :Launch_Mass_kg 20.0, :Apogee_km 672.0, :Perigee_km 583.0, :Type_of_Orbit "Polar", :Purpose "Communications/Technology Development", :Period_minutes 97.3, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{674}}, {:Eccentricity 5.1E-4, :Launch_Mass_kg 225.0, :Apogee_km 1425.0, :Perigee_km 1417.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.2, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{991}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 137.0, :Apogee_km 507.0, :Perigee_km 497.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 94.66, :Inclination_radians 0.70703288, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{988}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 225.0, :Apogee_km 1496.0, :Perigee_km 1493.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{848}}, {:Eccentricity 2.3E-4, :Launch_Mass_kg 2033.0, :Apogee_km 35795.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{310}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 6384.0, :Apogee_km 35789.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{222}}, {:Eccentricity 2.0E-4, :Launch_Mass_kg 3420.0, :Apogee_km 35795.0, :Perigee_km 35778.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 5.23599E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{186}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 2850.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.070162236, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{667}}, {:Eccentricity 0.00203, :Launch_Mass_kg 270.0, :Apogee_km 1510.0, :Perigee_km 1478.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 115.9, :Inclination_radians 1.439896633, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{420}}, {:Eccentricity 0.00153, :Launch_Mass_kg 92.0, :Apogee_km 521.0, :Perigee_km 500.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Technology Development", :Period_minutes 94.8, :Inclination_radians 1.708677338, :Users "Government/Civil", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{108}}, {:Eccentricity 8.0E-5, :Launch_Mass_kg 4638.0, :Apogee_km 35793.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.24, :Inclination_radians 0.00122173, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{959}}, {:Eccentricity 7.9E-4, :Launch_Mass_kg 60.0, :Apogee_km 1205.0, :Perigee_km 1193.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications", :Period_minutes 109.4, :Inclination_radians 1.75056524, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1119}}, {:Eccentricity 1.2E-4, :Launch_Mass_kg 3170.0, :Apogee_km 35790.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.04, :Inclination_radians 3.49066E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{256}}, {:Eccentricity 6.6E-4, :Launch_Mass_kg nil, :Apogee_km 496.0, :Perigee_km 487.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 94.4, :Inclination_radians 1.699950691, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1128}}, {:Eccentricity 2.2E-4, :Launch_Mass_kg 1.0, :Apogee_km 502.0, :Perigee_km 499.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 94.63, :Inclination_radians 0.706858347, :Users "Governmnet", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{724}}, {:Eccentricity 5.0E-5, :Launch_Mass_kg 5320.0, :Apogee_km 35786.0, :Perigee_km 35782.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.95, :Inclination_radians 0.00122173, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{445}}, {:Eccentricity 0.00476, :Launch_Mass_kg 12.0, :Apogee_km 694.0, :Perigee_km 627.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 98.0, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{65}}, {:Eccentricity 1.5E-4, :Launch_Mass_kg 2950.0, :Apogee_km 35793.0, :Perigee_km 35780.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1436.1, :Inclination_radians 0.0, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{476}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 2380.0, :Apogee_km 35909.0, :Perigee_km 35897.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 142.08, :Inclination_radians 0.071209433, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{212}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 1935.0, :Apogee_km 35798.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{47}}, {:Eccentricity 0.00499, :Launch_Mass_kg 12.0, :Apogee_km 674.0, :Perigee_km 604.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications/Maritime Tracking", :Period_minutes 97.5, :Inclination_radians 1.712167996, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{63}}, {:Eccentricity 0.00524, :Launch_Mass_kg 1415.0, :Apogee_km 19130.0, :Perigee_km 18864.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 670.47, :Inclination_radians 1.130624289, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{399}}, {:Eccentricity 0.00126, :Launch_Mass_kg 300.0, :Apogee_km 803.0, :Perigee_km 785.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Research", :Period_minutes 100.8, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{937}}, {:Eccentricity 0.00121, :Launch_Mass_kg 83.0, :Apogee_km 637.0, :Perigee_km 620.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.3, :Inclination_radians 1.706932008, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{467}}, {:Eccentricity 0.01206, :Launch_Mass_kg 2.5, :Apogee_km 764.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 98.1, :Inclination_radians 1.705186679, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Dombarovsky Launch Facility"} {:categories {:cluster_2 1}, :row-ids #{1064}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 3112.0, :Apogee_km 35852.0, :Perigee_km 35850.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1439.41, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{912}}, {:Eccentricity 3.0E-4, :Launch_Mass_kg 4600.0, :Apogee_km 35799.0, :Perigee_km 35774.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{267}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg nil, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 5.23599E-4, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{786}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 8506.0, :Apogee_km 361.0, :Perigee_km 360.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 91.8, :Inclination_radians 0.74700092, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_9 1}, :row-ids #{1053}}, {:Eccentricity 0.00135, :Launch_Mass_kg 7.1, :Apogee_km 669.0, :Perigee_km 650.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.9, :Inclination_radians 1.713913325, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Tanegashima Space Center"} {:categories {:cluster_2 1}, :row-ids #{451}}, {:Eccentricity 0.0, :Launch_Mass_kg 6804.0, :Apogee_km 35800.0, :Perigee_km 35800.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians nil, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{671}}, {:Eccentricity 6.2E-4, :Launch_Mass_kg 1154.0, :Apogee_km 852.0, :Perigee_km 843.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science/Meteorology", :Period_minutes 101.87, :Inclination_radians 1.72613063, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{196}}, {:Eccentricity 2.1E-4, :Launch_Mass_kg 407.0, :Apogee_km 785.0, :Perigee_km 782.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Science", :Period_minutes 100.53, :Inclination_radians 1.719149313, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Satish Dhawan Space Center"} {:categories {:cluster_2 1}, :row-ids #{863}}, {:Eccentricity 4.0E-5, :Launch_Mass_kg 4793.0, :Apogee_km 35788.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{493}}, {:Eccentricity 7.3E-4, :Launch_Mass_kg 2700.0, :Apogee_km 450.0, :Perigee_km 440.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 93.5, :Inclination_radians 1.696460033, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{1143}}, {:Eccentricity 4.2E-4, :Launch_Mass_kg 45.0, :Apogee_km 794.0, :Perigee_km 788.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{763 764}}, {:Eccentricity 5.2E-4, :Launch_Mass_kg 3112.0, :Apogee_km 35808.0, :Perigee_km 35764.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 5.23599E-4, :Users "Commercial/Gov/Mil", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{443}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg nil, :Apogee_km 35793.0, :Perigee_km 35781.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 8.72665E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{910}}, {:Eccentricity 0.00112, :Launch_Mass_kg 204.0, :Apogee_km 755.0, :Perigee_km 739.0, :Type_of_Orbit nil, :Purpose "Remote Sensing/Research", :Period_minutes 99.7, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{939}}, {:Eccentricity 0.00338, :Launch_Mass_kg 200.0, :Apogee_km 611.0, :Perigee_km 564.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 96.43, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{136}}, {:Eccentricity 7.0E-4, :Launch_Mass_kg 45.0, :Apogee_km 796.0, :Perigee_km 786.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 1}, :row-ids #{768}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 1.0, :Apogee_km 415.0, :Perigee_km 410.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 92.81, :Inclination_radians 0.901462559, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "ISS"} {:categories {:cluster_6 1}, :row-ids #{74}}, {:Eccentricity 0.00111, :Launch_Mass_kg 110.0, :Apogee_km 821.0, :Perigee_km 805.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing/Earth Science", :Period_minutes 101.2, :Inclination_radians 1.72613063, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{663}}, {:Eccentricity 0.00204, :Launch_Mass_kg 770.0, :Apogee_km 502.0, :Perigee_km 474.0, :Type_of_Orbit nil, :Purpose "Surveillance", :Period_minutes 94.37, :Inclination_radians 1.713215194, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Plesetsk Cosmodrome"} {:categories {:cluster_2 1}, :row-ids #{868}}, {:Eccentricity 3.5E-4, :Launch_Mass_kg 45.0, :Apogee_km 794.0, :Perigee_km 789.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 100.7, :Inclination_radians 0.785398163, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Wallops Island Flight Facility"} {:categories {:cluster_6 2}, :row-ids #{756 758}}, {:Eccentricity 0.00153, :Launch_Mass_kg 91.0, :Apogee_km 823.0, :Perigee_km 801.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Earth Observation", :Period_minutes 101.1, :Inclination_radians 1.722639972, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{1117}}, {:Eccentricity 0.00106, :Launch_Mass_kg 1955.0, :Apogee_km 686.0, :Perigee_km 671.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 98.3, :Inclination_radians 1.712167996, :Users "Commercial/Government", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_2 1}, :row-ids #{330}}, {:Eccentricity 7.1E-4, :Launch_Mass_kg 1156.0, :Apogee_km 35817.0, :Perigee_km 35757.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.044331363, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{205}}, {:Eccentricity 0.71478, :Launch_Mass_kg 117.0, :Apogee_km 35697.0, :Perigee_km 627.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 637.64, :Inclination_radians 0.033510322, :Users "Military", :Class_of_Orbit "Elliptical", :Launch_Site "Guiana Space Center"} {:categories {:cluster_62 1}, :row-ids #{977}}, {:Eccentricity 4.9E-4, :Launch_Mass_kg 4332.0, :Apogee_km 35807.0, :Perigee_km 35766.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{86}}, {:Eccentricity 0.00184, :Launch_Mass_kg 700.0, :Apogee_km 696.0, :Perigee_km 670.0, :Type_of_Orbit nil, :Purpose "Solar Physics", :Period_minutes 98.4, :Inclination_radians 1.712167996, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Uchinoura Space Center"} {:categories {:cluster_2 1}, :row-ids #{441}}, {:Eccentricity 1.3E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1413.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_6 1}, :row-ids #{334}}, {:Eccentricity 1.4E-4, :Launch_Mass_kg 4200.0, :Apogee_km 683.0, :Perigee_km 681.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Reconnaissance", :Period_minutes 98.0, :Inclination_radians 1.712167996, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_2 1}, :row-ids #{437}}, {:Eccentricity 0.00509, :Launch_Mass_kg 1766.0, :Apogee_km 35750.0, :Perigee_km 35323.0, :Type_of_Orbit nil, :Purpose "Meteorology", :Period_minutes 1423.35, :Inclination_radians 0.008028515, :Users "Government", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{233}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 1780.0, :Apogee_km 35803.0, :Perigee_km 35769.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.07, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{112}}, {:Eccentricity 0.00425, :Launch_Mass_kg 1480.0, :Apogee_km 19365.0, :Perigee_km 19147.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 680.75, :Inclination_radians 1.128704427, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{390}}, {:Eccentricity 4.0E-4, :Launch_Mass_kg 5000.0, :Apogee_km 35805.0, :Perigee_km 35771.0, :Type_of_Orbit nil, :Purpose "Electronic Surveillance", :Period_minutes 23.94, :Inclination_radians 0.0, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_3 1}, :row-ids #{10}}, {:Eccentricity 2.7E-4, :Launch_Mass_kg 4500.0, :Apogee_km 35798.0, :Perigee_km 35775.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.12, :Inclination_radians 0.001396263, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{730}}, {:Eccentricity 0.00247, :Launch_Mass_kg 2400.0, :Apogee_km 35904.0, :Perigee_km 35696.0, :Type_of_Orbit nil, :Purpose "Early Warning", :Period_minutes 1436.39, :Inclination_radians 0.039444441, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{1080}}, {:Eccentricity 1.9E-4, :Launch_Mass_kg 450.0, :Apogee_km 1415.0, :Perigee_km 1412.0, :Type_of_Orbit "Intermediate", :Purpose "Communications", :Period_minutes 114.1, :Inclination_radians 0.907571211, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 3}, :row-ids #{354 349 353}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 3739.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 6.98132E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{484}}, {:Eccentricity 0.0046, :Launch_Mass_kg 1480.0, :Apogee_km 19378.0, :Perigee_km 19142.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 680.91, :Inclination_radians 1.128529894, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{388}}, {:Eccentricity 7.7E-4, :Launch_Mass_kg 4536.0, :Apogee_km 35819.0, :Perigee_km 35754.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.13, :Inclination_radians 0.104545222, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{657}}, {:Eccentricity 0.00164, :Launch_Mass_kg 2.0, :Apogee_km 653.0, :Perigee_km 630.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 97.55, :Inclination_radians 1.711295332, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Jiuquan Satellite Launch Center"} {:categories {:cluster_2 1}, :row-ids #{171}}, {:Eccentricity 0.0056, :Launch_Mass_kg 1415.0, :Apogee_km 19419.0, :Perigee_km 19132.0, :Type_of_Orbit nil, :Purpose "Navigation/Global Positioning", :Period_minutes 681.53, :Inclination_radians 1.131147888, :Users "Military/Commercial", :Class_of_Orbit "MEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_23 1}, :row-ids #{396}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg nil, :Apogee_km 595.0, :Perigee_km 594.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Space Physics", :Period_minutes 96.6, :Inclination_radians 1.705186679, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_2 1}, :row-ids #{928}}, {:Eccentricity 0.004, :Launch_Mass_kg 2400.0, :Apogee_km 35949.0, :Perigee_km 35612.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1435.79, :Inclination_radians 0.025132741, :Users "Military", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{823}}, {:Eccentricity 1.0E-5, :Launch_Mass_kg 4880.0, :Apogee_km 35787.0, :Perigee_km 35786.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{274}}, {:Eccentricity 0.00164, :Launch_Mass_kg 694.0, :Apogee_km 645.0, :Perigee_km 622.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Remote Sensing", :Period_minutes 97.4, :Inclination_radians 1.708677338, :Users "Government", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{128}}, {:Eccentricity 2.8E-4, :Launch_Mass_kg 689.0, :Apogee_km 780.0, :Perigee_km 776.0, :Type_of_Orbit "Polar", :Purpose "Communications", :Period_minutes 100.4, :Inclination_radians 1.507964474, :Users "Government/Commercial", :Class_of_Orbit "LEO", :Launch_Site "Taiyuan Launch Center"} {:categories {:cluster_6 2}, :row-ids #{535 576}}, {:Eccentricity 7.0E-5, :Launch_Mass_kg 4660.0, :Apogee_km 35789.0, :Perigee_km 35783.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 1.74533E-4, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_4 1}, :row-ids #{229}}, {:Eccentricity 0.0211, :Launch_Mass_kg 4.5, :Apogee_km 791.0, :Perigee_km 495.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.5, :Inclination_radians 1.127482697, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{15}}, {:Eccentricity 0.02862, :Launch_Mass_kg 300.0, :Apogee_km 764.0, :Perigee_km 367.0, :Type_of_Orbit "Retrograde", :Purpose "Remote Sensing/Reconnaissance", :Period_minutes 95.97, :Inclination_radians 2.502802147, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Palmachim Launch Complex"} {:categories {:cluster_2 1}, :row-ids #{743}}, {:Eccentricity 2.4E-4, :Launch_Mass_kg 4167.0, :Apogee_km 35796.0, :Perigee_km 35776.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.09, :Inclination_radians 0.0, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{247}}, {:Eccentricity 2.0E-5, :Launch_Mass_kg 6100.0, :Apogee_km 35787.0, :Perigee_km 35785.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.1, :Inclination_radians 0.001047198, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Guiana Space Center"} {:categories {:cluster_4 1}, :row-ids #{971}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 5458.0, :Apogee_km 35800.0, :Perigee_km 35773.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.11, :Inclination_radians 0.040666172, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Sea Launch (Odyssey)"} {:categories {:cluster_4 1}, :row-ids #{473}}, {:Eccentricity 0.0211, :Launch_Mass_kg 4.5, :Apogee_km 791.0, :Perigee_km 495.0, :Type_of_Orbit nil, :Purpose "Technology Development", :Period_minutes 97.5, :Inclination_radians 1.127482697, :Users "Military", :Class_of_Orbit "LEO", :Launch_Site "Vandenberg AFB"} {:categories {:cluster_6 1}, :row-ids #{963}}, {:Eccentricity 3.2E-4, :Launch_Mass_kg 5959.0, :Apogee_km 35799.0, :Perigee_km 35772.0, :Type_of_Orbit nil, :Purpose "Communications", :Period_minutes 1436.08, :Inclination_radians 0.040142573, :Users "Commercial", :Class_of_Orbit "GEO", :Launch_Site "Cape Canaveral"} {:categories {:cluster_4 1}, :row-ids #{472}}, {:Eccentricity 0.01092, :Launch_Mass_kg 12.0, :Apogee_km 850.0, :Perigee_km 694.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Communications (experimental)", :Period_minutes 100.3, :Inclination_radians 1.713913325, :Users "Commercial", :Class_of_Orbit "LEO", :Launch_Site "Baikonur Cosmodrome"} {:categories {:cluster_6 1}, :row-ids #{61}}, {:Eccentricity 7.8E-4, :Launch_Mass_kg 1.0, :Apogee_km 721.0, :Perigee_km 710.0, :Type_of_Orbit "Sun-Synchronous", :Purpose "Technology Development", :Period_minutes 99.1, :Inclination_radians 1.717403984, :Users "Civil", :Class_of_Orbit "LEO", :Launch_Site "Sriharikota Launch Station"} {:categories {:cluster_2 1}, :row-ids #{595}}}}}, :latents {:alpha 0.16539558986648006, :counts {:view_1 1, :view_0 11}, :z {:Country_of_Operator :view_1, :Eccentricity :view_0, :Launch_Mass_kg :view_0, :Apogee_km :view_0, :Perigee_km :view_0, :Type_of_Orbit :view_0, :Purpose :view_0, :Period_minutes :view_0, :Inclination_radians :view_0, :Users :view_0, :Class_of_Orbit :view_0, :Launch_Site :view_0}}}}} diff --git a/examples/satellites.adoc b/examples/satellites.adoc index 0365385..25faa27 100644 --- a/examples/satellites.adoc +++ b/examples/satellites.adoc @@ -1,8 +1,8 @@ -= Exploring satellite data with InferenceQL += Exploring satellite data with GenSQL -The InferenceQL query language extends a subset of SQL. +The GenSQL query language extends a subset of SQL. -[iql] +[source,gensql] ---- SELECT * FROM satellites LIMIT 10 ---- @@ -11,7 +11,7 @@ SELECT * FROM satellites LIMIT 10 In addition to querying the data you can query infinite streams of synthetic data generated by the model. Here are a few rows of synthetic data. -[iql] +[source,gensql] ---- SELECT * FROM GENERATE @@ -24,7 +24,7 @@ LIMIT 10 These infinite streams of data can be used to explore hypotheticals. Which country most likely to operate of a satellite in geosynchronous orbit with a dry mass of 500 kilograms? -[iql] +[source,gensql] ---- SELECT COUNT(*) AS count, @@ -42,7 +42,7 @@ LIMIT 10 What is the most likely purpose of a satellite in geosynchronous orbit with a dry mass of 500 kilograms? -[iql] +[source,gensql] ---- SELECT COUNT(*) AS Count_Purpose_Country, @@ -63,7 +63,7 @@ LIMIT 10 In addition to querying the data you can query how probable the data is under the model. -[iql] +[source,gensql] ---- SELECT PROBABILITY OF Period_minutes @@ -79,7 +79,7 @@ LIMIT 10 You can also find values that are anomalous only if you consider other values in the row. -[iql] +[source,gensql] ---- SELECT PROBABILITY OF Period_minutes diff --git a/js/main.js b/js/main.js index 7dfa58c..7509a37 100644 --- a/js/main.js +++ b/js/main.js @@ -1,6 +1,6 @@ const React = require('react'); const ReactDOM = require('react-dom'); -const components = require('@inferenceql/inferenceql.react'); +const components = require('@OpenGen/GenSQL.react'); const execute = function(s) { return fetch('/api/query', { diff --git a/package.json b/package.json index e498256..270c029 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "dependencies": { "@emotion/react": "^11.10.4", - "@inferenceql/inferenceql.react": "inferenceql/inferenceql.react#b54a02e5dad1a26bfa73873262f411f8b3019974", + "@OpenGen/GenSQL.react": "OpenGen/GenSQL.react#409d0df92af339abb86b2aea9da29ba49caa9bab", "highlight.js": "^11.5.1", "prop-types": "^15.8.1", "react": "^17.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5eb9641..189abd2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,26 +1,36 @@ -lockfileVersion: 5.4 - -specifiers: - '@babel/core': ^7.0.0 - '@emotion/react': ^11.10.4 - '@inferenceql/inferenceql.react': inferenceql/inferenceql.react#b54a02e5dad1a26bfa73873262f411f8b3019974 - esbuild: ^0.15.12 - highlight.js: ^11.5.1 - prop-types: ^15.8.1 - react: ^17.0 - react-dom: ^17.0 +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false dependencies: - '@emotion/react': 11.10.5_suifg2tpibp7yrhp2co27vag4i - '@inferenceql/inferenceql.react': github.com/inferenceql/inferenceql.react/b54a02e5dad1a26bfa73873262f411f8b3019974_telfbygo27ajj4kewizuczeq6a - highlight.js: 11.6.0 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@OpenGen/GenSQL.react': + specifier: OpenGen/GenSQL.react#409d0df92af339abb86b2aea9da29ba49caa9bab + version: github.com/OpenGen/GenSQL.react/409d0df92af339abb86b2aea9da29ba49caa9bab(@emotion/react@11.10.5)(react-dom@17.0.2)(react@17.0.2) + '@emotion/react': + specifier: ^11.10.4 + version: 11.10.5(@babel/core@7.19.6)(react@17.0.2) + highlight.js: + specifier: ^11.5.1 + version: 11.6.0 + prop-types: + specifier: ^15.8.1 + version: 15.8.1 + react: + specifier: ^17.0 + version: 17.0.2 + react-dom: + specifier: ^17.0 + version: 17.0.2(react@17.0.2) devDependencies: - '@babel/core': 7.19.6 - esbuild: 0.15.12 + '@babel/core': + specifier: ^7.0.0 + version: 7.19.6 + esbuild: + specifier: ^0.15.12 + version: 0.15.12 dependenciesMeta: '@inferenceql/components': @@ -28,31 +38,31 @@ dependenciesMeta: packages: - /@ampproject/remapping/2.2.0: + /@ampproject/remapping@2.2.0: resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 '@jridgewell/trace-mapping': 0.3.17 - /@babel/code-frame/7.18.6: + /@babel/code-frame@7.18.6: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.20.1: + /@babel/compat-data@7.20.1: resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} engines: {node: '>=6.9.0'} - /@babel/core/7.19.6: + /@babel/core@7.19.6: resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 '@babel/generator': 7.20.1 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 + '@babel/helper-compilation-targets': 7.20.0(@babel/core@7.19.6) '@babel/helper-module-transforms': 7.19.6 '@babel/helpers': 7.20.1 '@babel/parser': 7.20.1 @@ -67,7 +77,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/generator/7.20.1: + /@babel/generator@7.20.1: resolution: {integrity: sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==} engines: {node: '>=6.9.0'} dependencies: @@ -75,7 +85,7 @@ packages: '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.6: + /@babel/helper-compilation-targets@7.20.0(@babel/core@7.19.6): resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -87,30 +97,30 @@ packages: browserslist: 4.21.4 semver: 6.3.0 - /@babel/helper-environment-visitor/7.18.9: + /@babel/helper-environment-visitor@7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} engines: {node: '>=6.9.0'} - /@babel/helper-function-name/7.19.0: + /@babel/helper-function-name@7.19.0: resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 '@babel/types': 7.20.0 - /@babel/helper-hoist-variables/7.18.6: + /@babel/helper-hoist-variables@7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.0 - /@babel/helper-module-imports/7.18.6: + /@babel/helper-module-imports@7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.0 - /@babel/helper-module-transforms/7.19.6: + /@babel/helper-module-transforms@7.19.6: resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==} engines: {node: '>=6.9.0'} dependencies: @@ -125,36 +135,36 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-plugin-utils/7.19.0: + /@babel/helper-plugin-utils@7.19.0: resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} engines: {node: '>=6.9.0'} dev: false - /@babel/helper-simple-access/7.19.4: + /@babel/helper-simple-access@7.19.4: resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.0 - /@babel/helper-split-export-declaration/7.18.6: + /@babel/helper-split-export-declaration@7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.0 - /@babel/helper-string-parser/7.19.4: + /@babel/helper-string-parser@7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.19.1: + /@babel/helper-validator-identifier@7.19.1: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option/7.18.6: + /@babel/helper-validator-option@7.18.6: resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} engines: {node: '>=6.9.0'} - /@babel/helpers/7.20.1: + /@babel/helpers@7.20.1: resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} engines: {node: '>=6.9.0'} dependencies: @@ -164,7 +174,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/highlight/7.18.6: + /@babel/highlight@7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: @@ -172,14 +182,14 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.20.1: + /@babel/parser@7.20.1: resolution: {integrity: sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.20.0 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.6: + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.19.6): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -189,14 +199,14 @@ packages: '@babel/helper-plugin-utils': 7.19.0 dev: false - /@babel/runtime/7.18.9: + /@babel/runtime@7.18.9: resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 dev: false - /@babel/template/7.18.10: + /@babel/template@7.18.10: resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} engines: {node: '>=6.9.0'} dependencies: @@ -204,7 +214,7 @@ packages: '@babel/parser': 7.20.1 '@babel/types': 7.20.0 - /@babel/traverse/7.20.1: + /@babel/traverse@7.20.1: resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} engines: {node: '>=6.9.0'} dependencies: @@ -221,7 +231,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/types/7.20.0: + /@babel/types@7.20.0: resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==} engines: {node: '>=6.9.0'} dependencies: @@ -229,14 +239,14 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - /@emotion/babel-plugin/11.10.5_@babel+core@7.19.6: + /@emotion/babel-plugin@11.10.5(@babel/core@7.19.6): resolution: {integrity: sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.19.6 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.19.6) '@babel/runtime': 7.18.9 '@emotion/hash': 0.9.0 '@emotion/memoize': 0.8.0 @@ -249,7 +259,7 @@ packages: stylis: 4.1.3 dev: false - /@emotion/cache/11.10.5: + /@emotion/cache@11.10.5: resolution: {integrity: sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==} dependencies: '@emotion/memoize': 0.8.0 @@ -259,15 +269,15 @@ packages: stylis: 4.1.3 dev: false - /@emotion/hash/0.9.0: + /@emotion/hash@0.9.0: resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==} dev: false - /@emotion/memoize/0.8.0: + /@emotion/memoize@0.8.0: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} dev: false - /@emotion/react/11.10.5_suifg2tpibp7yrhp2co27vag4i: + /@emotion/react@11.10.5(@babel/core@7.19.6)(react@17.0.2): resolution: {integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==} peerDependencies: '@babel/core': ^7.0.0 @@ -281,17 +291,17 @@ packages: dependencies: '@babel/core': 7.19.6 '@babel/runtime': 7.18.9 - '@emotion/babel-plugin': 11.10.5_@babel+core@7.19.6 + '@emotion/babel-plugin': 11.10.5(@babel/core@7.19.6) '@emotion/cache': 11.10.5 '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 hoist-non-react-statics: 3.3.2 react: 17.0.2 dev: false - /@emotion/serialize/1.1.1: + /@emotion/serialize@1.1.1: resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==} dependencies: '@emotion/hash': 0.9.0 @@ -301,15 +311,15 @@ packages: csstype: 3.1.1 dev: false - /@emotion/sheet/1.2.1: + /@emotion/sheet@1.2.1: resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==} dev: false - /@emotion/unitless/0.8.0: + /@emotion/unitless@0.8.0: resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} dev: false - /@emotion/use-insertion-effect-with-fallbacks/1.0.0_react@17.0.2: + /@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@17.0.2): resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==} peerDependencies: react: '>=16.8.0' @@ -317,15 +327,15 @@ packages: react: 17.0.2 dev: false - /@emotion/utils/1.2.0: + /@emotion/utils@1.2.0: resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==} dev: false - /@emotion/weak-memoize/0.3.0: + /@emotion/weak-memoize@0.3.0: resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==} dev: false - /@esbuild/android-arm/0.15.12: + /@esbuild/android-arm@0.15.12: resolution: {integrity: sha512-IC7TqIqiyE0MmvAhWkl/8AEzpOtbhRNDo7aph47We1NbE5w2bt/Q+giAhe0YYeVpYnIhGMcuZY92qDK6dQauvA==} engines: {node: '>=12'} cpu: [arm] @@ -334,7 +344,7 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.15.12: + /@esbuild/linux-loong64@0.15.12: resolution: {integrity: sha512-tZEowDjvU7O7I04GYvWQOS4yyP9E/7YlsB0jjw1Ycukgr2ycEzKyIk5tms5WnLBymaewc6VmRKnn5IJWgK4eFw==} engines: {node: '>=12'} cpu: [loong64] @@ -343,31 +353,32 @@ packages: dev: true optional: true - /@floating-ui/core/1.0.1: + /@floating-ui/core@1.0.1: resolution: {integrity: sha512-bO37brCPfteXQfFY0DyNDGB3+IMe4j150KFQcgJ5aBP295p9nBGeHEs/p0czrRbtlHq4Px/yoPXO/+dOCcF4uA==} dev: false - /@floating-ui/dom/1.0.4: + /@floating-ui/dom@1.0.4: resolution: {integrity: sha512-maYJRv+sAXTy4K9mzdv0JPyNW5YPVHrqtY90tEdI6XNpuLOP26Ci2pfwPsKBA/Wh4Z3FX5sUrtUFTdMYj9v+ug==} dependencies: '@floating-ui/core': 1.0.1 dev: false - /@floating-ui/react-dom-interactions/0.10.3_sfoxds7t5ydpegc3knd667wn6m: + /@floating-ui/react-dom-interactions@0.10.3(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-UEHqdnzyoiWNU5az/tAljr9iXFzN18DcvpMqW+/cXz4FEhDEB1ogLtWldOWCujLerPBnSRocADALafelOReMpw==} + deprecated: Package renamed to @floating-ui/react peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/react-dom': 1.0.0_sfoxds7t5ydpegc3knd667wn6m - aria-hidden: 1.2.1_react@17.0.2 + '@floating-ui/react-dom': 1.0.0(react-dom@17.0.2)(react@17.0.2) + aria-hidden: 1.2.1(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) transitivePeerDependencies: - '@types/react' dev: false - /@floating-ui/react-dom/1.0.0_sfoxds7t5ydpegc3knd667wn6m: + /@floating-ui/react-dom@1.0.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-uiOalFKPG937UCLm42RxjESTWUVpbbatvlphQAU6bsv+ence6IoVG8JOUZcy8eW81NkU+Idiwvx10WFLmR4MIg==} peerDependencies: react: '>=16.8.0' @@ -375,17 +386,17 @@ packages: dependencies: '@floating-ui/dom': 1.0.4 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@jridgewell/gen-mapping/0.1.1: + /@jridgewell/gen-mapping@0.1.1: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 - /@jridgewell/gen-mapping/0.3.2: + /@jridgewell/gen-mapping@0.3.2: resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} engines: {node: '>=6.0.0'} dependencies: @@ -393,44 +404,44 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.17 - /@jridgewell/resolve-uri/3.1.0: + /@jridgewell/resolve-uri@3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} - /@jridgewell/set-array/1.1.2: + /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} - /@jridgewell/sourcemap-codec/1.4.14: + /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/trace-mapping/0.3.17: + /@jridgewell/trace-mapping@0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@mantine/core/5.7.0_ifqvihu4dz3rtor56hakl3u7pu: + /@mantine/core@5.7.0(@emotion/react@11.10.5)(@mantine/hooks@5.7.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-lgsqtltKrUC+bonKn+sWmDw8fICKprSAZY39Sx2tyOF//nXkEbVc+XySvaehvSoOw33i+JuspLA2GAATCZo8HA==} peerDependencies: '@mantine/hooks': 5.7.0 react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/react-dom-interactions': 0.10.3_sfoxds7t5ydpegc3knd667wn6m - '@mantine/hooks': 5.7.0_react@17.0.2 - '@mantine/styles': 5.7.0_telfbygo27ajj4kewizuczeq6a - '@mantine/utils': 5.7.0_react@17.0.2 - '@radix-ui/react-scroll-area': 1.0.0_sfoxds7t5ydpegc3knd667wn6m + '@floating-ui/react-dom-interactions': 0.10.3(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': 5.7.0(react@17.0.2) + '@mantine/styles': 5.7.0(@emotion/react@11.10.5)(react-dom@17.0.2)(react@17.0.2) + '@mantine/utils': 5.7.0(react@17.0.2) + '@radix-ui/react-scroll-area': 1.0.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-textarea-autosize: 8.3.4_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-textarea-autosize: 8.3.4(react@17.0.2) transitivePeerDependencies: - '@emotion/react' - '@types/react' dev: false - /@mantine/hooks/5.7.0_react@17.0.2: + /@mantine/hooks@5.7.0(react@17.0.2): resolution: {integrity: sha512-VxZcnwqhTFr6qptIM6a1u1OC3wsEiCHZF6yJSw/ikM1/pzSaUIvCVAr7wWR8R2DCM2yYoN0KZB+Df6JcCMjvmg==} peerDependencies: react: '>=16.8.0' @@ -438,21 +449,21 @@ packages: react: 17.0.2 dev: false - /@mantine/styles/5.7.0_telfbygo27ajj4kewizuczeq6a: + /@mantine/styles@5.7.0(@emotion/react@11.10.5)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-jiiYcAYDTDS8MmnTs+55M/ATuntmvWPBnIGOKl34KIZwjxcPlG8Vkp8xgPsHGm8OBW9Kg+gyE37TcsXNVyYQhQ==} peerDependencies: '@emotion/react': '>=11.9.0' react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@emotion/react': 11.10.5_suifg2tpibp7yrhp2co27vag4i + '@emotion/react': 11.10.5(@babel/core@7.19.6)(react@17.0.2) clsx: 1.1.1 csstype: 3.0.9 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@mantine/utils/5.7.0_react@17.0.2: + /@mantine/utils@5.7.0(react@17.0.2): resolution: {integrity: sha512-gL/CqwaAZ8OBONfyr/o3PgfS+9xzIso+sG8OSaE46AJ+t5Erap4+GidYJ0Eixez0nrpTlX+BfFwYUssRhSyRSA==} peerDependencies: react: '>=16.8.0' @@ -460,19 +471,19 @@ packages: react: 17.0.2 dev: false - /@radix-ui/number/1.0.0: + /@radix-ui/number@1.0.0: resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} dependencies: '@babel/runtime': 7.18.9 dev: false - /@radix-ui/primitive/1.0.0: + /@radix-ui/primitive@1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: '@babel/runtime': 7.18.9 dev: false - /@radix-ui/react-compose-refs/1.0.0_react@17.0.2: + /@radix-ui/react-compose-refs@1.0.0(react@17.0.2): resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -481,7 +492,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-context/1.0.0_react@17.0.2: + /@radix-ui/react-context@1.0.0(react@17.0.2): resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -490,7 +501,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-direction/1.0.0_react@17.0.2: + /@radix-ui/react-direction@1.0.0(react@17.0.2): resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -499,32 +510,32 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-presence/1.0.0_sfoxds7t5ydpegc3knd667wn6m: + /@radix-ui/react-presence@1.0.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: '@babel/runtime': 7.18.9 - '@radix-ui/react-compose-refs': 1.0.0_react@17.0.2 - '@radix-ui/react-use-layout-effect': 1.0.0_react@17.0.2 + '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@radix-ui/react-primitive/1.0.0_sfoxds7t5ydpegc3knd667wn6m: + /@radix-ui/react-primitive@1.0.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: '@babel/runtime': 7.18.9 - '@radix-ui/react-slot': 1.0.0_react@17.0.2 + '@radix-ui/react-slot': 1.0.0(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@radix-ui/react-scroll-area/1.0.0_sfoxds7t5ydpegc3knd667wn6m: + /@radix-ui/react-scroll-area@1.0.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-3SNFukAjS5remgtpAVR9m3Zgo23ZojBZ8V3TCyR3A+56x2mtVqKlPV4+e8rScZUFMuvtbjIdQCmsJBFBazKZig==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -533,28 +544,28 @@ packages: '@babel/runtime': 7.18.9 '@radix-ui/number': 1.0.0 '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0_react@17.0.2 - '@radix-ui/react-context': 1.0.0_react@17.0.2 - '@radix-ui/react-direction': 1.0.0_react@17.0.2 - '@radix-ui/react-presence': 1.0.0_sfoxds7t5ydpegc3knd667wn6m - '@radix-ui/react-primitive': 1.0.0_sfoxds7t5ydpegc3knd667wn6m - '@radix-ui/react-use-callback-ref': 1.0.0_react@17.0.2 - '@radix-ui/react-use-layout-effect': 1.0.0_react@17.0.2 + '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) + '@radix-ui/react-context': 1.0.0(react@17.0.2) + '@radix-ui/react-direction': 1.0.0(react@17.0.2) + '@radix-ui/react-presence': 1.0.0(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.0(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@radix-ui/react-slot/1.0.0_react@17.0.2: + /@radix-ui/react-slot@1.0.0(react@17.0.2): resolution: {integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: '@babel/runtime': 7.18.9 - '@radix-ui/react-compose-refs': 1.0.0_react@17.0.2 + '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) react: 17.0.2 dev: false - /@radix-ui/react-use-callback-ref/1.0.0_react@17.0.2: + /@radix-ui/react-use-callback-ref@1.0.0(react@17.0.2): resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -563,7 +574,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-use-layout-effect/1.0.0_react@17.0.2: + /@radix-ui/react-use-layout-effect@1.0.0(react@17.0.2): resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -572,23 +583,23 @@ packages: react: 17.0.2 dev: false - /@types/clone/2.1.1: + /@types/clone@2.1.1: resolution: {integrity: sha512-BZIU34bSYye0j/BFcPraiDZ5ka6MJADjcDVELGf7glr9K+iE8NYVjFslJFVWzskSxkLLyCrSPScE82/UUoBSvg==} dev: false - /@types/estree/0.0.50: + /@types/estree@0.0.50: resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} dev: false - /@types/parse-json/4.0.0: + /@types/parse-json@4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: false - /@types/prop-types/15.7.5: + /@types/prop-types@15.7.5: resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} dev: false - /@types/react/18.0.21: + /@types/react@18.0.21: resolution: {integrity: sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==} dependencies: '@types/prop-types': 15.7.5 @@ -596,29 +607,29 @@ packages: csstype: 3.1.1 dev: false - /@types/scheduler/0.16.2: + /@types/scheduler@0.16.2: resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} dev: false - /ansi-regex/5.0.1: + /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} dev: false - /ansi-styles/3.2.1: + /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} dependencies: color-convert: 1.9.3 - /ansi-styles/4.3.0: + /ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} dependencies: color-convert: 2.0.1 dev: false - /aria-hidden/1.2.1_react@17.0.2: + /aria-hidden@1.2.1(react@17.0.2): resolution: {integrity: sha512-PN344VAf9j1EAi+jyVHOJ8XidQdPVssGco39eNcsGdM4wcsILtxrKLkbuiMfLWYROK1FjRQasMWCBttrhjnr6A==} engines: {node: '>=10'} peerDependencies: @@ -632,7 +643,7 @@ packages: tslib: 2.4.0 dev: false - /babel-plugin-macros/3.1.0: + /babel-plugin-macros@3.1.0: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: @@ -641,7 +652,7 @@ packages: resolve: 1.22.1 dev: false - /browserslist/4.21.4: + /browserslist@4.21.4: resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -649,17 +660,17 @@ packages: caniuse-lite: 1.0.30001430 electron-to-chromium: 1.4.284 node-releases: 2.0.6 - update-browserslist-db: 1.0.10_browserslist@4.21.4 + update-browserslist-db: 1.0.10(browserslist@4.21.4) - /callsites/3.1.0: + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} dev: false - /caniuse-lite/1.0.30001430: + /caniuse-lite@1.0.30001430: resolution: {integrity: sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==} - /chalk/2.4.2: + /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: @@ -667,7 +678,7 @@ packages: escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /cliui/8.0.1: + /cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} dependencies: @@ -676,48 +687,48 @@ packages: wrap-ansi: 7.0.0 dev: false - /clone/2.1.2: + /clone@2.1.2: resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} engines: {node: '>=0.8'} dev: false - /clsx/1.1.1: + /clsx@1.1.1: resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==} engines: {node: '>=6'} dev: false - /color-convert/1.9.3: + /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 - /color-convert/2.0.1: + /color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 dev: false - /color-name/1.1.3: + /color-name@1.1.3: resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - /color-name/1.1.4: + /color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: false - /commander/2.20.3: + /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: false - /commander/7.2.0: + /commander@7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} dev: false - /convert-source-map/1.9.0: + /convert-source-map@1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - /cosmiconfig/7.0.1: + /cosmiconfig@7.0.1: resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} engines: {node: '>=10'} dependencies: @@ -728,46 +739,46 @@ packages: yaml: 1.10.2 dev: false - /csstype/3.0.9: + /csstype@3.0.9: resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} dev: false - /csstype/3.1.1: + /csstype@3.1.1: resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} dev: false - /d3-array/3.1.1: + /d3-array@3.1.1: resolution: {integrity: sha512-33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ==} engines: {node: '>=12'} dependencies: internmap: 2.0.3 dev: false - /d3-array/3.2.0: + /d3-array@3.2.0: resolution: {integrity: sha512-3yXFQo0oG3QCxbF06rMPFyGRMGJNS7NvsV1+2joOjbBE+9xvWQ8+GcMJAjRCzw06zQ3/arXeJgbPYcjUCuC+3g==} engines: {node: '>=12'} dependencies: internmap: 2.0.3 dev: false - /d3-color/3.1.0: + /d3-color@3.1.0: resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} engines: {node: '>=12'} dev: false - /d3-delaunay/6.0.2: + /d3-delaunay@6.0.2: resolution: {integrity: sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ==} engines: {node: '>=12'} dependencies: delaunator: 5.0.0 dev: false - /d3-dispatch/3.0.1: + /d3-dispatch@3.0.1: resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} engines: {node: '>=12'} dev: false - /d3-dsv/3.0.1: + /d3-dsv@3.0.1: resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} engines: {node: '>=12'} hasBin: true @@ -777,7 +788,7 @@ packages: rw: 1.3.3 dev: false - /d3-force/3.0.0: + /d3-force@3.0.0: resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} engines: {node: '>=12'} dependencies: @@ -786,12 +797,12 @@ packages: d3-timer: 3.0.1 dev: false - /d3-format/3.1.0: + /d3-format@3.1.0: resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} engines: {node: '>=12'} dev: false - /d3-geo-projection/4.0.0: + /d3-geo-projection@4.0.0: resolution: {integrity: sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==} engines: {node: '>=12'} hasBin: true @@ -801,36 +812,36 @@ packages: d3-geo: 3.0.1 dev: false - /d3-geo/3.0.1: + /d3-geo@3.0.1: resolution: {integrity: sha512-Wt23xBych5tSy9IYAM1FR2rWIBFWa52B/oF/GYe5zbdHrg08FU8+BuI6X4PvTwPDdqdAdq04fuWJpELtsaEjeA==} engines: {node: '>=12'} dependencies: d3-array: 3.2.0 dev: false - /d3-hierarchy/3.1.2: + /d3-hierarchy@3.1.2: resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} engines: {node: '>=12'} dev: false - /d3-interpolate/3.0.1: + /d3-interpolate@3.0.1: resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} engines: {node: '>=12'} dependencies: d3-color: 3.1.0 dev: false - /d3-path/3.0.1: + /d3-path@3.0.1: resolution: {integrity: sha512-gq6gZom9AFZby0YLduxT1qmrp4xpBA1YZr19OI717WIdKE2OM5ETq5qrHLb301IgxhLwcuxvGZVLeeWc/k1I6w==} engines: {node: '>=12'} dev: false - /d3-quadtree/3.0.1: + /d3-quadtree@3.0.1: resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} engines: {node: '>=12'} dev: false - /d3-scale/4.0.2: + /d3-scale@4.0.2: resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} engines: {node: '>=12'} dependencies: @@ -841,33 +852,33 @@ packages: d3-time-format: 4.1.0 dev: false - /d3-shape/3.1.0: + /d3-shape@3.1.0: resolution: {integrity: sha512-tGDh1Muf8kWjEDT/LswZJ8WF85yDZLvVJpYU9Nq+8+yW1Z5enxrmXOhTArlkaElU+CTn0OTVNli+/i+HP45QEQ==} engines: {node: '>=12'} dependencies: d3-path: 3.0.1 dev: false - /d3-time-format/4.1.0: + /d3-time-format@4.1.0: resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} engines: {node: '>=12'} dependencies: d3-time: 3.0.0 dev: false - /d3-time/3.0.0: + /d3-time@3.0.0: resolution: {integrity: sha512-zmV3lRnlaLI08y9IMRXSDshQb5Nj77smnfpnd2LrBa/2K281Jijactokeak14QacHs/kKq0AQ121nidNYlarbQ==} engines: {node: '>=12'} dependencies: d3-array: 3.2.0 dev: false - /d3-timer/3.0.1: + /d3-timer@3.0.1: resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} engines: {node: '>=12'} dev: false - /debug/4.3.4: + /debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: @@ -878,26 +889,26 @@ packages: dependencies: ms: 2.1.2 - /delaunator/5.0.0: + /delaunator@5.0.0: resolution: {integrity: sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==} dependencies: robust-predicates: 3.0.1 dev: false - /electron-to-chromium/1.4.284: + /electron-to-chromium@1.4.284: resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} - /emoji-regex/8.0.0: + /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: false - /error-ex/1.3.2: + /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 dev: false - /esbuild-android-64/0.15.12: + /esbuild-android-64@0.15.12: resolution: {integrity: sha512-MJKXwvPY9g0rGps0+U65HlTsM1wUs9lbjt5CU19RESqycGFDRijMDQsh68MtbzkqWSRdEtiKS1mtPzKneaAI0Q==} engines: {node: '>=12'} cpu: [x64] @@ -906,7 +917,7 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.15.12: + /esbuild-android-arm64@0.15.12: resolution: {integrity: sha512-Hc9SEcZbIMhhLcvhr1DH+lrrec9SFTiRzfJ7EGSBZiiw994gfkVV6vG0sLWqQQ6DD7V4+OggB+Hn0IRUdDUqvA==} engines: {node: '>=12'} cpu: [arm64] @@ -915,7 +926,7 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.15.12: + /esbuild-darwin-64@0.15.12: resolution: {integrity: sha512-qkmqrTVYPFiePt5qFjP8w/S+GIUMbt6k8qmiPraECUWfPptaPJUGkCKrWEfYFRWB7bY23FV95rhvPyh/KARP8Q==} engines: {node: '>=12'} cpu: [x64] @@ -924,7 +935,7 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.15.12: + /esbuild-darwin-arm64@0.15.12: resolution: {integrity: sha512-z4zPX02tQ41kcXMyN3c/GfZpIjKoI/BzHrdKUwhC/Ki5BAhWv59A9M8H+iqaRbwpzYrYidTybBwiZAIWCLJAkw==} engines: {node: '>=12'} cpu: [arm64] @@ -933,7 +944,7 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.15.12: + /esbuild-freebsd-64@0.15.12: resolution: {integrity: sha512-XFL7gKMCKXLDiAiBjhLG0XECliXaRLTZh6hsyzqUqPUf/PY4C6EJDTKIeqqPKXaVJ8+fzNek88285krSz1QECw==} engines: {node: '>=12'} cpu: [x64] @@ -942,7 +953,7 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.15.12: + /esbuild-freebsd-arm64@0.15.12: resolution: {integrity: sha512-jwEIu5UCUk6TjiG1X+KQnCGISI+ILnXzIzt9yDVrhjug2fkYzlLbl0K43q96Q3KB66v6N1UFF0r5Ks4Xo7i72g==} engines: {node: '>=12'} cpu: [arm64] @@ -951,7 +962,7 @@ packages: dev: true optional: true - /esbuild-linux-32/0.15.12: + /esbuild-linux-32@0.15.12: resolution: {integrity: sha512-uSQuSEyF1kVzGzuIr4XM+v7TPKxHjBnLcwv2yPyCz8riV8VUCnO/C4BF3w5dHiVpCd5Z1cebBtZJNlC4anWpwA==} engines: {node: '>=12'} cpu: [ia32] @@ -960,7 +971,7 @@ packages: dev: true optional: true - /esbuild-linux-64/0.15.12: + /esbuild-linux-64@0.15.12: resolution: {integrity: sha512-QcgCKb7zfJxqT9o5z9ZUeGH1k8N6iX1Y7VNsEi5F9+HzN1OIx7ESxtQXDN9jbeUSPiRH1n9cw6gFT3H4qbdvcA==} engines: {node: '>=12'} cpu: [x64] @@ -969,25 +980,25 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.15.12: - resolution: {integrity: sha512-Wf7T0aNylGcLu7hBnzMvsTfEXdEdJY/hY3u36Vla21aY66xR0MS5I1Hw8nVquXjTN0A6fk/vnr32tkC/C2lb0A==} + /esbuild-linux-arm64@0.15.12: + resolution: {integrity: sha512-HtNq5xm8fUpZKwWKS2/YGwSfTF+339L4aIA8yphNKYJckd5hVdhfdl6GM2P3HwLSCORS++++7++//ApEwXEuAQ==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /esbuild-linux-arm64/0.15.12: - resolution: {integrity: sha512-HtNq5xm8fUpZKwWKS2/YGwSfTF+339L4aIA8yphNKYJckd5hVdhfdl6GM2P3HwLSCORS++++7++//ApEwXEuAQ==} + /esbuild-linux-arm@0.15.12: + resolution: {integrity: sha512-Wf7T0aNylGcLu7hBnzMvsTfEXdEdJY/hY3u36Vla21aY66xR0MS5I1Hw8nVquXjTN0A6fk/vnr32tkC/C2lb0A==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /esbuild-linux-mips64le/0.15.12: + /esbuild-linux-mips64le@0.15.12: resolution: {integrity: sha512-Qol3+AvivngUZkTVFgLpb0H6DT+N5/zM3V1YgTkryPYFeUvuT5JFNDR3ZiS6LxhyF8EE+fiNtzwlPqMDqVcc6A==} engines: {node: '>=12'} cpu: [mips64el] @@ -996,7 +1007,7 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.15.12: + /esbuild-linux-ppc64le@0.15.12: resolution: {integrity: sha512-4D8qUCo+CFKaR0cGXtGyVsOI7w7k93Qxb3KFXWr75An0DHamYzq8lt7TNZKoOq/Gh8c40/aKaxvcZnTgQ0TJNg==} engines: {node: '>=12'} cpu: [ppc64] @@ -1005,7 +1016,7 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.15.12: + /esbuild-linux-riscv64@0.15.12: resolution: {integrity: sha512-G9w6NcuuCI6TUUxe6ka0enjZHDnSVK8bO+1qDhMOCtl7Tr78CcZilJj8SGLN00zO5iIlwNRZKHjdMpfFgNn1VA==} engines: {node: '>=12'} cpu: [riscv64] @@ -1014,7 +1025,7 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.15.12: + /esbuild-linux-s390x@0.15.12: resolution: {integrity: sha512-Lt6BDnuXbXeqSlVuuUM5z18GkJAZf3ERskGZbAWjrQoi9xbEIsj/hEzVnSAFLtkfLuy2DE4RwTcX02tZFunXww==} engines: {node: '>=12'} cpu: [s390x] @@ -1023,7 +1034,7 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.15.12: + /esbuild-netbsd-64@0.15.12: resolution: {integrity: sha512-jlUxCiHO1dsqoURZDQts+HK100o0hXfi4t54MNRMCAqKGAV33JCVvMplLAa2FwviSojT/5ZG5HUfG3gstwAG8w==} engines: {node: '>=12'} cpu: [x64] @@ -1032,7 +1043,7 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.15.12: + /esbuild-openbsd-64@0.15.12: resolution: {integrity: sha512-1o1uAfRTMIWNOmpf8v7iudND0L6zRBYSH45sofCZywrcf7NcZA+c7aFsS1YryU+yN7aRppTqdUK1PgbZVaB1Dw==} engines: {node: '>=12'} cpu: [x64] @@ -1041,7 +1052,7 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.15.12: + /esbuild-sunos-64@0.15.12: resolution: {integrity: sha512-nkl251DpoWoBO9Eq9aFdoIt2yYmp4I3kvQjba3jFKlMXuqQ9A4q+JaqdkCouG3DHgAGnzshzaGu6xofGcXyPXg==} engines: {node: '>=12'} cpu: [x64] @@ -1050,7 +1061,7 @@ packages: dev: true optional: true - /esbuild-windows-32/0.15.12: + /esbuild-windows-32@0.15.12: resolution: {integrity: sha512-WlGeBZHgPC00O08luIp5B2SP4cNCp/PcS+3Pcg31kdcJPopHxLkdCXtadLU9J82LCfw4TVls21A6lilQ9mzHrw==} engines: {node: '>=12'} cpu: [ia32] @@ -1059,7 +1070,7 @@ packages: dev: true optional: true - /esbuild-windows-64/0.15.12: + /esbuild-windows-64@0.15.12: resolution: {integrity: sha512-VActO3WnWZSN//xjSfbiGOSyC+wkZtI8I4KlgrTo5oHJM6z3MZZBCuFaZHd8hzf/W9KPhF0lY8OqlmWC9HO5AA==} engines: {node: '>=12'} cpu: [x64] @@ -1068,7 +1079,7 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.15.12: + /esbuild-windows-arm64@0.15.12: resolution: {integrity: sha512-Of3MIacva1OK/m4zCNIvBfz8VVROBmQT+gRX6pFTLPngFYcj6TFH/12VveAqq1k9VB2l28EoVMNMUCcmsfwyuA==} engines: {node: '>=12'} cpu: [arm64] @@ -1077,7 +1088,7 @@ packages: dev: true optional: true - /esbuild/0.15.12: + /esbuild@0.15.12: resolution: {integrity: sha512-PcT+/wyDqJQsRVhaE9uX/Oq4XLrFh0ce/bs2TJh4CSaw9xuvI+xFrH2nAYOADbhQjUgAhNWC5LKoUsakm4dxng==} engines: {node: '>=12'} hasBin: true @@ -1107,82 +1118,82 @@ packages: esbuild-windows-arm64: 0.15.12 dev: true - /escalade/3.1.1: + /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} - /escape-string-regexp/1.0.5: + /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} - /escape-string-regexp/4.0.0: + /escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} dev: false - /fast-deep-equal/3.1.3: + /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: false - /fast-json-patch/3.1.1: + /fast-json-patch@3.1.1: resolution: {integrity: sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==} dev: false - /fast-json-stable-stringify/2.1.0: + /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: false - /find-root/1.1.0: + /find-root@1.1.0: resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} dev: false - /function-bind/1.1.1: + /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: false - /gensync/1.0.0-beta.2: + /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} - /get-caller-file/2.0.5: + /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} dev: false - /globals/11.12.0: + /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /has-flag/3.0.0: + /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} - /has/1.0.3: + /has@1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 dev: false - /highlight.js/11.6.0: + /highlight.js@11.6.0: resolution: {integrity: sha512-ig1eqDzJaB0pqEvlPVIpSSyMaO92bH1N2rJpLMN/nX396wTpDA4Eq0uK+7I/2XG17pFaaKE0kjV/XPeGt7Evjw==} engines: {node: '>=12.0.0'} dev: false - /hoist-non-react-statics/3.3.2: + /hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: react-is: 16.13.1 dev: false - /iconv-lite/0.6.3: + /iconv-lite@0.6.3: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 dev: false - /import-fresh/3.3.0: + /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} dependencies: @@ -1190,69 +1201,69 @@ packages: resolve-from: 4.0.0 dev: false - /internmap/2.0.3: + /internmap@2.0.3: resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} engines: {node: '>=12'} dev: false - /is-arrayish/0.2.1: + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: false - /is-core-module/2.11.0: + /is-core-module@2.11.0: resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} dependencies: has: 1.0.3 dev: false - /is-fullwidth-code-point/3.0.0: + /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} dev: false - /js-tokens/4.0.0: + /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - /jsesc/2.5.2: + /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true - /json-parse-even-better-errors/2.3.1: + /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: false - /json-stringify-pretty-compact/3.0.0: + /json-stringify-pretty-compact@3.0.0: resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==} dev: false - /json5/2.2.1: + /json5@2.2.1: resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} engines: {node: '>=6'} hasBin: true - /lines-and-columns/1.2.4: + /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: false - /loose-envify/1.4.0: + /loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 dev: false - /lru-cache/6.0.0: + /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} dependencies: yallist: 4.0.0 dev: false - /ms/2.1.2: + /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - /node-fetch/2.6.7: + /node-fetch@2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} engines: {node: 4.x || >=6.0.0} peerDependencies: @@ -1264,22 +1275,22 @@ packages: whatwg-url: 5.0.0 dev: false - /node-releases/2.0.6: + /node-releases@2.0.6: resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} - /object-assign/4.1.1: + /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} dev: false - /parent-module/1.0.1: + /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} dependencies: callsites: 3.1.0 dev: false - /parse-json/5.2.0: + /parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: @@ -1289,19 +1300,19 @@ packages: lines-and-columns: 1.2.4 dev: false - /path-parse/1.0.7: + /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} dev: false - /path-type/4.0.0: + /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} dev: false - /picocolors/1.0.0: + /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - /prism-react-renderer/1.3.5_react@17.0.2: + /prism-react-renderer@1.3.5(react@17.0.2): resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} peerDependencies: react: '>=0.14.9' @@ -1309,12 +1320,12 @@ packages: react: 17.0.2 dev: false - /prismjs/1.29.0: + /prismjs@1.29.0: resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} engines: {node: '>=6'} dev: false - /prop-types/15.8.1: + /prop-types@15.8.1: resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} dependencies: loose-envify: 1.4.0 @@ -1322,11 +1333,11 @@ packages: react-is: 16.13.1 dev: false - /ramda/0.28.0: + /ramda@0.28.0: resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} dev: false - /react-dom/17.0.2_react@17.0.2: + /react-dom@17.0.2(react@17.0.2): resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} peerDependencies: react: 17.0.2 @@ -1337,11 +1348,11 @@ packages: scheduler: 0.20.2 dev: false - /react-is/16.13.1: + /react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} dev: false - /react-textarea-autosize/8.3.4_react@17.0.2: + /react-textarea-autosize@8.3.4(react@17.0.2): resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==} engines: {node: '>=10'} peerDependencies: @@ -1349,13 +1360,13 @@ packages: dependencies: '@babel/runtime': 7.18.9 react: 17.0.2 - use-composed-ref: 1.3.0_react@17.0.2 - use-latest: 1.2.1_react@17.0.2 + use-composed-ref: 1.3.0(react@17.0.2) + use-latest: 1.2.1(react@17.0.2) transitivePeerDependencies: - '@types/react' dev: false - /react-vega/7.6.0_flk2bpchr7x2zsi5hrvxgvedae: + /react-vega@7.6.0(react@17.0.2)(vega-lite@5.6.0)(vega@5.22.1): resolution: {integrity: sha512-2oMML4wH9qWLnZPRxJm06ozwrVN/K+nkjqdI5/ofWWsrBnnH4iB9rRKrsV8px0nlWgZrwfdCH4g5RUiyyJHWSA==} peerDependencies: react: ^16 || ^17 || ^18 @@ -1367,11 +1378,11 @@ packages: prop-types: 15.8.1 react: 17.0.2 vega: 5.22.1 - vega-embed: 6.21.0_36sthfwhgi34qytpvkzggbhnle - vega-lite: 5.6.0_vega@5.22.1 + vega-embed: 6.21.0(vega-lite@5.6.0)(vega@5.22.1) + vega-lite: 5.6.0(vega@5.22.1) dev: false - /react/17.0.2: + /react@17.0.2: resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} engines: {node: '>=0.10.0'} dependencies: @@ -1379,21 +1390,21 @@ packages: object-assign: 4.1.1 dev: false - /regenerator-runtime/0.13.9: + /regenerator-runtime@0.13.9: resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} dev: false - /require-directory/2.1.1: + /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} dev: false - /resolve-from/4.0.0: + /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} dev: false - /resolve/1.22.1: + /resolve@1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: @@ -1402,30 +1413,30 @@ packages: supports-preserve-symlinks-flag: 1.0.0 dev: false - /robust-predicates/3.0.1: + /robust-predicates@3.0.1: resolution: {integrity: sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==} dev: false - /rw/1.3.3: + /rw@1.3.3: resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} dev: false - /safer-buffer/2.1.2: + /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: false - /scheduler/0.20.2: + /scheduler@0.20.2: resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 dev: false - /semver/6.3.0: + /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true - /semver/7.3.8: + /semver@7.3.8: resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} engines: {node: '>=10'} hasBin: true @@ -1433,12 +1444,12 @@ packages: lru-cache: 6.0.0 dev: false - /source-map/0.5.7: + /source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} dev: false - /string-width/4.2.3: + /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} dependencies: @@ -1447,29 +1458,29 @@ packages: strip-ansi: 6.0.1 dev: false - /strip-ansi/6.0.1: + /strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 dev: false - /stylis/4.1.3: + /stylis@4.1.3: resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} dev: false - /supports-color/5.5.0: + /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - /supports-preserve-symlinks-flag/1.0.0: + /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} dev: false - /tabler-icons-react/1.55.0_react@17.0.2: + /tabler-icons-react@1.55.0(react@17.0.2): resolution: {integrity: sha512-+5zz2mQ2wl5658tMtK4mxUCFdF7TyPiPqLAvCUHHOeltZWukExE3aftY04HDMcap8skob/UFbzSzVhifCCMeUQ==} peerDependencies: react: '>= 16.8.0' @@ -1477,26 +1488,26 @@ packages: react: 17.0.2 dev: false - /to-fast-properties/2.0.0: + /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} - /topojson-client/3.1.0: + /topojson-client@3.1.0: resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==} hasBin: true dependencies: commander: 2.20.3 dev: false - /tr46/0.0.3: + /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: false - /tslib/2.4.0: + /tslib@2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} dev: false - /update-browserslist-db/1.0.10_browserslist@4.21.4: + /update-browserslist-db@1.0.10(browserslist@4.21.4): resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} hasBin: true peerDependencies: @@ -1506,7 +1517,7 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /use-composed-ref/1.3.0_react@17.0.2: + /use-composed-ref@1.3.0(react@17.0.2): resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -1514,7 +1525,7 @@ packages: react: 17.0.2 dev: false - /use-editable/2.3.3_react@17.0.2: + /use-editable@2.3.3(react@17.0.2): resolution: {integrity: sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA==} peerDependencies: react: '>= 16.8.0' @@ -1522,7 +1533,7 @@ packages: react: 17.0.2 dev: false - /use-isomorphic-layout-effect/1.1.2_react@17.0.2: + /use-isomorphic-layout-effect@1.1.2(react@17.0.2): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -1534,7 +1545,7 @@ packages: react: 17.0.2 dev: false - /use-latest/1.2.1_react@17.0.2: + /use-latest@1.2.1(react@17.0.2): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -1544,14 +1555,14 @@ packages: optional: true dependencies: react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2_react@17.0.2 + use-isomorphic-layout-effect: 1.1.2(react@17.0.2) dev: false - /vega-canvas/1.2.6: + /vega-canvas@1.2.6: resolution: {integrity: sha512-rgeYUpslYn/amIfnuv3Sw6n4BGns94OjjZNtUc9IDji6b+K8LGS/kW+Lvay8JX/oFqtulBp8RLcHN6QjqPLA9Q==} dev: false - /vega-crossfilter/4.1.0: + /vega-crossfilter@4.1.0: resolution: {integrity: sha512-aiOJcvVpiEDIu5uNc4Kf1hakkkPaVOO5fw5T4RSFAw6GEDbdqcB6eZ1xePcsLVic1hxYD5SGiUPdiiIs0SMh2g==} dependencies: d3-array: 3.2.0 @@ -1561,7 +1572,7 @@ packages: - encoding dev: false - /vega-dataflow/5.7.4: + /vega-dataflow@5.7.4: resolution: {integrity: sha512-JGHTpUo8XGETH3b1V892we6hdjzCWB977ybycIu8DPqRoyrZuj6t1fCVImazfMgQD1LAfJlQybWP+alwKDpKig==} dependencies: vega-format: 1.1.0 @@ -1571,7 +1582,7 @@ packages: - encoding dev: false - /vega-embed/6.21.0_36sthfwhgi34qytpvkzggbhnle: + /vega-embed@6.21.0(vega-lite@5.6.0)(vega@5.22.1): resolution: {integrity: sha512-Tzo9VAfgNRb6XpxSFd7uphSeK2w5OxDY2wDtmpsQ+rQlPSEEI9TE6Jsb2nHRLD5J4FrmXKLrTcORqidsNQSXEg==} peerDependencies: vega: ^5.21.0 @@ -1583,15 +1594,15 @@ packages: tslib: 2.4.0 vega: 5.22.1 vega-interpreter: 1.0.4 - vega-lite: 5.6.0_vega@5.22.1 + vega-lite: 5.6.0(vega@5.22.1) vega-schema-url-parser: 2.2.0 - vega-themes: 2.12.0_36sthfwhgi34qytpvkzggbhnle + vega-themes: 2.12.0(vega-lite@5.6.0)(vega@5.22.1) vega-tooltip: 0.28.0 dev: false bundledDependencies: - yallist - /vega-encode/4.9.0: + /vega-encode@4.9.0: resolution: {integrity: sha512-etv2BHuCn9bzEc0cxyA2TnbtcAFQGVFmsaqmB4sgBCaqTSEfXMoX68LK3yxBrsdm5LU+y3otJVoewi3qWYCx2g==} dependencies: d3-array: 3.2.0 @@ -1603,18 +1614,18 @@ packages: - encoding dev: false - /vega-event-selector/3.0.0: + /vega-event-selector@3.0.0: resolution: {integrity: sha512-Gls93/+7tEJGE3kUuUnxrBIxtvaNeF01VIFB2Q2Of2hBIBvtHX74jcAdDtkh5UhhoYGD8Q1J30P5cqEBEwtPoQ==} dev: false - /vega-expression/5.0.0: + /vega-expression@5.0.0: resolution: {integrity: sha512-y5+c2frq0tGwJ7vYXzZcfVcIRF/QGfhf2e+bV1Z0iQs+M2lI1II1GPDdmOcMKimpoCVp/D61KUJDIGE1DSmk2w==} dependencies: '@types/estree': 0.0.50 vega-util: 1.17.0 dev: false - /vega-force/4.1.0: + /vega-force@4.1.0: resolution: {integrity: sha512-Sssf8iH48vYlz+E7/RpU+SUaJbuLoIL87U4tG2Av4gf/hRiImU49x2TI3EuhFWg1zpaCFxlz0CAaX++Oh/gjdw==} dependencies: d3-force: 3.0.0 @@ -1624,7 +1635,7 @@ packages: - encoding dev: false - /vega-format/1.1.0: + /vega-format@1.1.0: resolution: {integrity: sha512-6mgpeWw8yGdG0Zdi8aVkx5oUrpJGOpNxqazC2858RSDPvChM/jDFlgRMTYw52qk7cxU0L08ARp4BwmXaI75j0w==} dependencies: d3-array: 3.2.0 @@ -1634,7 +1645,7 @@ packages: vega-util: 1.17.0 dev: false - /vega-functions/5.13.0: + /vega-functions@5.13.0: resolution: {integrity: sha512-Mf53zNyx+c9fFqagEI0T8zc9nMlx0zozOngr8oOpG1tZDKOgwOnUgN99zQKbLHjyv+UzWrq3LYTnSLyVe0ZmhQ==} dependencies: d3-array: 3.2.0 @@ -1652,7 +1663,7 @@ packages: - encoding dev: false - /vega-geo/4.4.0: + /vega-geo@4.4.0: resolution: {integrity: sha512-3YX41y+J5pu0PMjvBCASg0/lgvu9+QXWJZ+vl6FFKa8AlsIopQ67ZL7ObwqjZcoZMolJ4q0rc+ZO8aj1pXCYcw==} dependencies: d3-array: 3.2.0 @@ -1667,7 +1678,7 @@ packages: - encoding dev: false - /vega-hierarchy/4.1.0: + /vega-hierarchy@4.1.0: resolution: {integrity: sha512-DWBK39IEt4FiQru12twzKSFUvFFZ7KtlH9+lAaqrJnKuIZFCyQ1XOUfKScfbKIlk4KS+DuCTNLI/pxC/f7Sk9Q==} dependencies: d3-hierarchy: 3.1.2 @@ -1677,11 +1688,11 @@ packages: - encoding dev: false - /vega-interpreter/1.0.4: + /vega-interpreter@1.0.4: resolution: {integrity: sha512-6tpYIa/pJz0cZo5fSxDSkZkAA51pID2LjOtQkOQvbzn+sJiCaWKPFhur8MBqbcmYZ9bnap1OYNwlrvpd2qBLvg==} dev: false - /vega-label/1.2.0: + /vega-label@1.2.0: resolution: {integrity: sha512-1prOqkCAfXaUvMqavbGI0nbYGqV8UQR9qvuVwrPJ6Yxm3GIUIOA/JRqNY8eZR8USwMP/kzsqlfVEixj9+Y75VQ==} dependencies: vega-canvas: 1.2.6 @@ -1692,7 +1703,7 @@ packages: - encoding dev: false - /vega-lite/5.6.0_vega@5.22.1: + /vega-lite@5.6.0(vega@5.22.1): resolution: {integrity: sha512-aTjQk//SzL9ctHY4ItA8yZSGflHMWPJmCXEs8LeRlixuOaAbamZmeL8xNMbQpS/vAZQeFAqjcJ32Fuztz/oGww==} engines: {node: '>=12'} hasBin: true @@ -1712,7 +1723,7 @@ packages: yargs: 17.6.0 dev: false - /vega-loader/4.5.0: + /vega-loader@4.5.0: resolution: {integrity: sha512-EkAyzbx0pCYxH3v3wghGVCaKINWxHfgbQ2pYDiYv0yo8e04S8Mv/IlRGTt6BAe7cLhrk1WZ4zh20QOppnGG05w==} dependencies: d3-dsv: 3.0.1 @@ -1724,7 +1735,7 @@ packages: - encoding dev: false - /vega-parser/6.1.4: + /vega-parser@6.1.4: resolution: {integrity: sha512-tORdpWXiH/kkXcpNdbSVEvtaxBuuDtgYp9rBunVW9oLsjFvFXbSWlM1wvJ9ZFSaTfx6CqyTyGMiJemmr1QnTjQ==} dependencies: vega-dataflow: 5.7.4 @@ -1736,14 +1747,14 @@ packages: - encoding dev: false - /vega-projection/1.5.0: + /vega-projection@1.5.0: resolution: {integrity: sha512-aob7qojh555x3hQWZ/tr8cIJNSWQbm6EoWTJaheZgFOY2x3cDa4Qrg3RJbGw6KwVj/IQk2p40paRzixKZ2kr+A==} dependencies: d3-geo: 3.0.1 d3-geo-projection: 4.0.0 dev: false - /vega-regression/1.1.0: + /vega-regression@1.1.0: resolution: {integrity: sha512-09K0RemY6cdaXBAyakDUNFfEkRcLkGjkDJyWQPAUqGK59hV2J+G3i4uxkZp18Vu0t8oqU7CgzwWim1s5uEpOcA==} dependencies: d3-array: 3.2.0 @@ -1754,7 +1765,7 @@ packages: - encoding dev: false - /vega-runtime/6.1.3: + /vega-runtime@6.1.3: resolution: {integrity: sha512-gE+sO2IfxMUpV0RkFeQVnHdmPy3K7LjHakISZgUGsDI/ZFs9y+HhBf8KTGSL5pcZPtQsZh3GBQ0UonqL1mp9PA==} dependencies: vega-dataflow: 5.7.4 @@ -1763,7 +1774,7 @@ packages: - encoding dev: false - /vega-scale/7.2.0: + /vega-scale@7.2.0: resolution: {integrity: sha512-QYltO/otrZHLrCGGf06Y99XtPtqWXITr6rw7rO9oL+l3d9o5RFl9sjHrVxiM7v+vGoZVWbBd5IPbFhPsXZ6+TA==} dependencies: d3-array: 3.2.0 @@ -1773,7 +1784,7 @@ packages: vega-util: 1.17.0 dev: false - /vega-scenegraph/4.10.1: + /vega-scenegraph@4.10.1: resolution: {integrity: sha512-takIpkmNxYHhJYALOYzhTin3EDzbys6U4g+l1yJZVlXG9YTdiCMuEVAdtaQOCqF9/7qytD6pCrMxJY2HaoN0qQ==} dependencies: d3-path: 3.0.1 @@ -1786,11 +1797,11 @@ packages: - encoding dev: false - /vega-schema-url-parser/2.2.0: + /vega-schema-url-parser@2.2.0: resolution: {integrity: sha512-yAtdBnfYOhECv9YC70H2gEiqfIbVkq09aaE4y/9V/ovEFmH9gPKaEgzIZqgT7PSPQjKhsNkb6jk6XvSoboxOBw==} dev: false - /vega-selections/5.4.0: + /vega-selections@5.4.0: resolution: {integrity: sha512-Un3JdLDPjIpF9Dh4sw6m1c/QAcfam6m1YXHJ9vJxE/GdJ+sOrPxc7bcEU8VhOmTUN7IQUn4/1ry4JqqOVMbEhw==} dependencies: d3-array: 3.1.1 @@ -1798,23 +1809,23 @@ packages: vega-util: 1.17.0 dev: false - /vega-statistics/1.8.0: + /vega-statistics@1.8.0: resolution: {integrity: sha512-dl+LCRS6qS4jWDme/NEdPVt5r649uB4IK6Kyr2/czmGA5JqjuFmtQ9lHQOnRu8945XLkqLf+JIQQo7vnw+nslA==} dependencies: d3-array: 3.2.0 dev: false - /vega-themes/2.12.0_36sthfwhgi34qytpvkzggbhnle: + /vega-themes@2.12.0(vega-lite@5.6.0)(vega@5.22.1): resolution: {integrity: sha512-gHNYCzDgexSQDmGzQsxH57OYgFVbAOmvhIYN3MPOvVucyI+zhbUawBVIVNzG9ftucRp0MaaMVXi6ctC5HLnBsg==} peerDependencies: vega: '*' vega-lite: '*' dependencies: vega: 5.22.1 - vega-lite: 5.6.0_vega@5.22.1 + vega-lite: 5.6.0(vega@5.22.1) dev: false - /vega-time/2.1.0: + /vega-time@2.1.0: resolution: {integrity: sha512-Q9/l3S6Br1RPX5HZvyLD/cQ4K6K8DtpR09/1y7D66gxNorg2+HGzYZINH9nUvN3mxoXcBWg4cCUh3+JvmkDaEg==} dependencies: d3-array: 3.2.0 @@ -1822,13 +1833,13 @@ packages: vega-util: 1.17.0 dev: false - /vega-tooltip/0.28.0: + /vega-tooltip@0.28.0: resolution: {integrity: sha512-DbK0V5zzk+p9cphZZXV91ZGeKq0zr6JIS0VndUoGTisldzw4tRgmpGQcTfMjew53o7/voeTM2ELTnJAJRzX4tg==} dependencies: vega-util: 1.17.0 dev: false - /vega-transforms/4.10.0: + /vega-transforms@4.10.0: resolution: {integrity: sha512-Yk6ByzVq5F2niFfPlSsrU5wi+NZhsF7IBpJCcTfms4U7eoyNepUXagdFEJ3VWBD/Lit6GorLXFgO17NYcyS5gg==} dependencies: d3-array: 3.2.0 @@ -1840,7 +1851,7 @@ packages: - encoding dev: false - /vega-typings/0.22.3: + /vega-typings@0.22.3: resolution: {integrity: sha512-PREcya3nXT9Tk7xU0IhEpOLVTlqizNtKXV55NhI6ApBjJtqVYbJL7IBh2ckKxGBy3YeUQ37BQZl56UqqiYVWBw==} dependencies: vega-event-selector: 3.0.0 @@ -1848,11 +1859,11 @@ packages: vega-util: 1.17.0 dev: false - /vega-util/1.17.0: + /vega-util@1.17.0: resolution: {integrity: sha512-HTaydZd9De3yf+8jH66zL4dXJ1d1p5OIFyoBzFiOli4IJbwkL1jrefCKz6AHDm1kYBzDJ0X4bN+CzZSCTvNk1w==} dev: false - /vega-view-transforms/4.5.8: + /vega-view-transforms@4.5.8: resolution: {integrity: sha512-966m7zbzvItBL8rwmF2nKG14rBp7q+3sLCKWeMSUrxoG+M15Smg5gWEGgwTG3A/RwzrZ7rDX5M1sRaAngRH25g==} dependencies: vega-dataflow: 5.7.4 @@ -1862,7 +1873,7 @@ packages: - encoding dev: false - /vega-view/5.11.0: + /vega-view@5.11.0: resolution: {integrity: sha512-MI9NTRFmtFX6ADk6KOHhi8bhHjC9pPm42Bj2+74c6l1d3NQZf9Jv7lkiGqKohdkQDNH9LPwz/6slhKwPU9JdkQ==} dependencies: d3-array: 3.2.0 @@ -1877,7 +1888,7 @@ packages: - encoding dev: false - /vega-voronoi/4.2.0: + /vega-voronoi@4.2.0: resolution: {integrity: sha512-1iuNAVZgUHRlBpdq4gSga3KlQmrgFfwy+KpyDgPLQ8HbLkhcVeT7RDh2L6naluqD7Op0xVLms3clR920WsYryQ==} dependencies: d3-delaunay: 6.0.2 @@ -1887,7 +1898,7 @@ packages: - encoding dev: false - /vega-wordcloud/4.1.3: + /vega-wordcloud@4.1.3: resolution: {integrity: sha512-is4zYn9FMAyp9T4SAcz2P/U/wqc0Lx3P5YtpWKCbOH02a05vHjUQrQ2TTPOuvmMfAEDCSKvbMSQIJMOE018lJA==} dependencies: vega-canvas: 1.2.6 @@ -1899,7 +1910,7 @@ packages: - encoding dev: false - /vega/5.22.1: + /vega@5.22.1: resolution: {integrity: sha512-KJBI7OWSzpfCPbmWl3GQCqBqbf2TIdpWS0mzO6MmWbvdMhWHf74P9IVnx1B1mhg0ZTqWFualx9ZYhWzMMwudaQ==} dependencies: vega-crossfilter: 4.1.0 @@ -1933,18 +1944,18 @@ packages: - encoding dev: false - /webidl-conversions/3.0.1: + /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} dev: false - /whatwg-url/5.0.0: + /whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 dev: false - /wrap-ansi/7.0.0: + /wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} dependencies: @@ -1953,26 +1964,26 @@ packages: strip-ansi: 6.0.1 dev: false - /y18n/5.0.8: + /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} dev: false - /yallist/4.0.0: + /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: false - /yaml/1.10.2: + /yaml@1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} dev: false - /yargs-parser/21.1.1: + /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} dev: false - /yargs/17.6.0: + /yargs@17.6.0: resolution: {integrity: sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==} engines: {node: '>=12'} dependencies: @@ -1985,33 +1996,31 @@ packages: yargs-parser: 21.1.1 dev: false - github.com/inferenceql/inferenceql.react/b54a02e5dad1a26bfa73873262f411f8b3019974_telfbygo27ajj4kewizuczeq6a: - resolution: {tarball: https://codeload.github.com/inferenceql/inferenceql.react/tar.gz/b54a02e5dad1a26bfa73873262f411f8b3019974} - id: github.com/inferenceql/inferenceql.react/b54a02e5dad1a26bfa73873262f411f8b3019974 - name: '@inferenceql/inferenceql.react' - version: 0.0.1-alpha - prepare: true - requiresBuild: true + github.com/OpenGen/GenSQL.react/409d0df92af339abb86b2aea9da29ba49caa9bab(@emotion/react@11.10.5)(react-dom@17.0.2)(react@17.0.2): + resolution: {tarball: https://codeload.github.com/OpenGen/GenSQL.react/tar.gz/409d0df92af339abb86b2aea9da29ba49caa9bab} + id: github.com/OpenGen/GenSQL.react/409d0df92af339abb86b2aea9da29ba49caa9bab + name: '@OpenGen/GenSQL.react' + version: 0.0.2 peerDependencies: '@emotion/react': ^11.10.4 react: ^17.0 react-dom: ^17.0 dependencies: - '@emotion/react': 11.10.5_suifg2tpibp7yrhp2co27vag4i - '@mantine/core': 5.7.0_ifqvihu4dz3rtor56hakl3u7pu - '@mantine/hooks': 5.7.0_react@17.0.2 + '@emotion/react': 11.10.5(@babel/core@7.19.6)(react@17.0.2) + '@mantine/core': 5.7.0(@emotion/react@11.10.5)(@mantine/hooks@5.7.0)(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': 5.7.0(react@17.0.2) highlight.js: 11.6.0 - prism-react-renderer: 1.3.5_react@17.0.2 + prism-react-renderer: 1.3.5(react@17.0.2) prismjs: 1.29.0 prop-types: 15.8.1 ramda: 0.28.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-vega: 7.6.0_flk2bpchr7x2zsi5hrvxgvedae - tabler-icons-react: 1.55.0_react@17.0.2 - use-editable: 2.3.3_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-vega: 7.6.0(react@17.0.2)(vega-lite@5.6.0)(vega@5.22.1) + tabler-icons-react: 1.55.0(react@17.0.2) + use-editable: 2.3.3(react@17.0.2) vega: 5.22.1 - vega-lite: 5.6.0_vega@5.22.1 + vega-lite: 5.6.0(vega@5.22.1) transitivePeerDependencies: - '@types/react' - encoding diff --git a/src/inferenceql/publish.clj b/src/inferenceql/publish.clj index 9a319e0..eb4169a 100644 --- a/src/inferenceql/publish.clj +++ b/src/inferenceql/publish.clj @@ -1,4 +1,4 @@ -(ns inferenceql.publish +(ns gensql.publish (:gen-class) (:import [clojure.lang ExceptionInfo] [java.io File InputStream PushbackReader] @@ -15,11 +15,11 @@ [clojure.string :as string] [cognitect.anomalies :as-alias anomalies] [com.stuartsierra.component :as component] - [inferenceql.inference.gpm :as gpm] - [inferenceql.publish.asciidoc :as asciidoc] - [inferenceql.query.permissive :as permissive] - [inferenceql.query.relation :as relation] - [inferenceql.query.strict :as strict] + [gensql.inference.gpm :as gpm] + [gensql.publish.asciidoc :as asciidoc] + [gensql.query.permissive :as permissive] + [gensql.query.relation :as relation] + [gensql.query.strict :as strict] [instaparse.failure :as failure] [reitit.ring :as ring] [reitit.ring.middleware.exception :as exception] @@ -204,10 +204,10 @@ (defn sppl-read-string [s] (try - (let [read-string (dynaload/dynaload 'inferenceql.gpm.sppl/read-string)] + (let [read-string (dynaload/dynaload 'gensql.gpm.sppl/read-string)] (read-string s)) (catch ExceptionInfo e - (throw (ex-info "Could not resolve inferenceql.gpm.sppl/read-string. Is inferenceql.gpm.sppl on the classpath?" + (throw (ex-info "Could not resolve gensql.gpm.sppl/read-string. Is gensql.gpm.sppl on the classpath?" {} e))))) @@ -222,7 +222,9 @@ execute (case (name language) "permissive" permissive/query "strict" strict/query) - db (atom (edn/read {:readers (assoc gpm/readers 'inferenceql.gpm.spe/SPE sppl-read-string)} + db (atom (edn/read {:readers (assoc gpm/readers + 'gensql.gpm.spe/SPE sppl-read-string + 'inferenceql.gpm.spe/SPE sppl-read-string)} (PushbackReader. (io/reader db)))) handler (app :db db :path path diff --git a/src/inferenceql/publish/asciidoc.clj b/src/inferenceql/publish/asciidoc.clj index b97a3fa..03cd436 100644 --- a/src/inferenceql/publish/asciidoc.clj +++ b/src/inferenceql/publish/asciidoc.clj @@ -1,4 +1,4 @@ -(ns inferenceql.publish.asciidoc +(ns gensql.publish.asciidoc (:import [java.util HashMap] [org.asciidoctor Asciidoctor$Factory] [org.asciidoctor Options] @@ -53,9 +53,9 @@ (process [parent reader attributes] (fn this parent reader attributes))))) -(def iql-block-processor +(def gensql-block-processor (block-processor - :name "iql" + :name "gensql" :contexts [Contexts/PARAGRAPH Contexts/LISTING Contexts/EXAMPLE] :content-model ContentModel/SIMPLE :fn (fn [this parent reader _attributes] @@ -65,14 +65,14 @@ (doto parent (.append (.createBlock this parent "pass" (hiccup/html [:div {:id id} [:pre [:code query]]]))) (.append (.createBlock this parent "pass" (hiccup/html [:script {:type "text/javascript"} - (str "inferenceql.publish.mount('Query', " props ", " (json/write-str id) ");" )])))))))) + (str "gensql.publish.mount('Query', " props ", " (json/write-str id) ");" )])))))))) (def ^:private asciidoctor (let [asciidoctor (Asciidoctor$Factory/create) extension-registry (.javaExtensionRegistry asciidoctor)] - (.docinfoProcessor extension-registry (add-script-processor "js/inferenceql.publish.js")) + (.docinfoProcessor extension-registry (add-script-processor "js/gensql.publish.js")) (.docinfoProcessor extension-registry (add-stylesheet-processor "styles/github.css")) - (.block extension-registry iql-block-processor) + (.block extension-registry gensql-block-processor) asciidoctor)) (defrecord Asciidoctor []