├── data ├── space_indian.png ├── launchers.json ├── centres.json ├── spacecrafts.json ├── customer_satellites.json └── spacecraft_missions.json ├── yarn.lock ├── package.json ├── api ├── spacecraft_missions.js ├── index.js ├── centres.js ├── customer_satellites.js ├── launchers.js └── spacecrafts.js ├── README.md ├── vercel.json ├── index.html ├── .gitignore ├── style.css └── isro_scrape └── scraping.ipynb /data/space_indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isro/api/HEAD/data/space_indian.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "isro-api", 3 | "version": "0.1.0", 4 | "description": "API for ISRO", 5 | "main": "index.js", 6 | "repository": "isro.vercel.app", 7 | "author": "isro", 8 | "license": "MIT", 9 | "dependencies": {}, 10 | "devDependencies": {} 11 | } -------------------------------------------------------------------------------- /api/spacecraft_missions.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | let launchers = require("../data/spacecraft_missions.json"); 4 | 5 | module.exports = async (req, res) => { 6 | try { 7 | res.send(launchers); 8 | } catch (error) { 9 | res.status(500); 10 | const response = error.response || {}; 11 | res.send({ 12 | message: error.message, 13 | response, 14 | }); 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- 1 | // Export an async function to handle requests 2 | module.exports = async (req, res) => { 3 | try { 4 | // Send a message as the response 5 | res.send("
 ISRO API v0.1.0 
"); 6 | } catch (error) { 7 | // If there is an error, send a 500 status code and the error message and response 8 | res.status(500); 9 | const response = error.response || {}; 10 | res.send({ 11 | message: error.message, 12 | response, 13 | }); 14 | } 15 | }; 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ISRO 🚀 API 2 | 3 | Open Source API for Launched Spacecrafts & Rockets data of ISRO 4 | 5 | ## API End-Points 6 | Spacecraft: [/api/spacecrafts](https://isro.vercel.app/api/spacecrafts) 7 | - Launchers: [/api/launchers](https://isro.vercel.app/api/launchers) 8 | - Customer Satellites: [/api/customer_satellites](https://isro.vercel.app/api/customer_satellites) 9 | - Centres: [/api/centres](https://isro.vercel.app/api/centres) 10 | ### Mission End-Points 11 | - Spacecraft Missions: [/api/spacecraft_missions](https://isro.vercel.app/api/spacecraft_missions) 12 | 13 | -------------------------------------------------------------------------------- /api/centres.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | // Load the centers data from a JSON file 4 | let centers = require("../data/centres.json"); 5 | 6 | // Export an async function to handle requests 7 | module.exports = async (req, res) => { 8 | try { 9 | // Send the centers data as the response 10 | res.send(centers); 11 | } catch (error) { 12 | // If there is an error, send a 500 status code and the error message and response 13 | res.status(500); 14 | const response = error.response || {}; 15 | res.send({ 16 | message: error.message, 17 | response, 18 | }); 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /api/customer_satellites.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | // Load the customer satellite data from a JSON file 4 | let launchers = require("../data/customer_satellites.json"); 5 | 6 | // Export an async function to handle requests 7 | module.exports = async (req, res) => { 8 | try { 9 | // Send the customer satellite data as the response 10 | res.send(launchers); 11 | } catch (error) { 12 | // If there is an error, send a 500 status code and the error message and response 13 | res.status(500); 14 | const response = error.response || {}; 15 | res.send({ 16 | message: error.message, 17 | response, 18 | }); 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /api/launchers.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | // Load the data for the available launchers from a JSON file 4 | let launchers = require("../data/launchers.json"); 5 | 6 | // Export an async function to handle requests for the list of available launchers 7 | module.exports = async (req, res) => { 8 | try { 9 | // Send the list of available launchers as the response 10 | res.send(launchers); 11 | } catch (error) { 12 | // If there is an error, send a 500 status code and the error message and response 13 | res.status(500); 14 | const response = error.response || {}; 15 | res.send({ 16 | message: error.message, 17 | response, 18 | }); 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /api/spacecrafts.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | // Load the data for the available spacecrafts from a JSON file 4 | let spacecrafts = require("../data/spacecrafts.json"); 5 | 6 | // Export an async function to handle requests for the list of available spacecrafts 7 | module.exports = async (req, res) => { 8 | try { 9 | // Send the list of available spacecrafts as the response 10 | res.send(spacecrafts); 11 | } catch (error) { 12 | // If there is an error, send a 500 status code and the error message and response 13 | res.status(500); 14 | const response = error.response || {}; 15 | res.send({ 16 | message: error.message, 17 | response, 18 | }); 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "headers": [ 3 | { 4 | "source": "/api/(.*)", 5 | "headers": [ 6 | { 7 | "key": "Access-Control-Allow-Credentials", 8 | "value": "true" 9 | }, 10 | { 11 | "key": "Access-Control-Allow-Origin", 12 | "value": "*" 13 | }, 14 | { 15 | "key": "Access-Control-Allow-Headers", 16 | "value": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version" 17 | } 18 | ] 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ISRO-API 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

ISRO 🚀 API

16 |

17 | Open Source API for Launched Spacecrafts & Rockets data of ISRO 18 |

19 |

API End-Points

20 | 42 |
43 |

Contribute at GitHub

44 |
45 |
46 | 47 | 48 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # Snowpack dependency directory (https://snowpack.dev/) 45 | web_modules/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | .parcel-cache 78 | 79 | # Next.js build output 80 | .next 81 | out 82 | 83 | # Nuxt.js build / generate output 84 | .nuxt 85 | dist 86 | 87 | # Gatsby files 88 | .cache/ 89 | # Comment in the public line in if your project uses Gatsby and not Next.js 90 | # https://nextjs.org/blog/next-9-1#public-directory-support 91 | # public 92 | 93 | # vuepress build output 94 | .vuepress/dist 95 | 96 | # Serverless directories 97 | .serverless/ 98 | 99 | # FuseBox cache 100 | .fusebox/ 101 | 102 | # DynamoDB Local files 103 | .dynamodb/ 104 | 105 | # TernJS port file 106 | .tern-port 107 | 108 | # Stores VSCode versions used for testing VSCode extensions 109 | .vscode-test 110 | 111 | # yarn v2 112 | .yarn/cache 113 | .yarn/unplugged 114 | .yarn/build-state.yml 115 | .yarn/install-state.gz 116 | .pnp.* 117 | .vercel 118 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: "Poppins", "sans-serif"; 3 | color: white; 4 | text-align: center; 5 | margin: 0; 6 | background: #121212; 7 | } 8 | 9 | .container { 10 | max-width: 90%; /* Increase the max-width for better responsiveness */ 11 | margin: 0 auto; 12 | padding: 20px; 13 | border-radius: 10px; 14 | color: white; 15 | 16 | /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */ 17 | /* background: #333; */ 18 | } 19 | 20 | h1,p{ 21 | color: white; 22 | 23 | } 24 | 25 | .content { 26 | padding: 20px; 27 | color: white; 28 | 29 | } 30 | 31 | h1, h2, h3 { 32 | font-weight: 600; 33 | padding-bottom: 0.3em; 34 | color: #fff; 35 | } 36 | 37 | ul { 38 | display: flex; 39 | flex-wrap: wrap; 40 | justify-content: center; /* Center the list items */ 41 | list-style: none; 42 | margin: 0; 43 | padding: 0; 44 | } 45 | 46 | li { 47 | padding: 0.5em; 48 | display: flex; 49 | flex-direction: column; 50 | /* background: #222; */ 51 | justify-content: center; 52 | align-items: center; 53 | margin: 15px; 54 | min-width: 45%; /* Adjust the minimum width for responsiveness */ 55 | border-radius: 10px; 56 | box-shadow: 0px 0px 5px 0px rgba(152, 154, 155, 0.75); 57 | text-align: center; 58 | font-size: 24px; 59 | padding: 15px; 60 | font-weight: 600; 61 | color: #fff; 62 | } 63 | 64 | li a { 65 | text-decoration: none; 66 | color: #06b8ee; 67 | } 68 | 69 | li:hover { 70 | box-shadow: 0 0 10px 0 rgba(6, 133, 236, 0.75); 71 | } 72 | 73 | a { 74 | text-decoration: none; 75 | color: #436fe6; 76 | } 77 | 78 | .center-text { 79 | text-align: center; 80 | margin-top: 45px; 81 | color: #fff; 82 | } 83 | 84 | .container__content__heading, 85 | .container__content__para, 86 | .container__content__h2 { 87 | text-align: center; 88 | font-size: 45px; 89 | color: #ffffff; 90 | } 91 | 92 | img { 93 | max-width: 100%; /* Make images responsive within their containers */ 94 | max-height: 40vh; 95 | object-fit: contain; 96 | padding: 5px; 97 | margin: 5px; 98 | } 99 | 100 | @media (min-width: 768px) { 101 | img { 102 | max-width: 400px; /* Adjust the max-width for larger screens */ 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /data/launchers.json: -------------------------------------------------------------------------------- 1 | { 2 | "launchers": [ 3 | { 4 | "id": "SLV-3E1" 5 | }, 6 | { 7 | "id": "SLV-3E2" 8 | }, 9 | { 10 | "id": "SLV-3D1" 11 | }, 12 | { 13 | "id": "SLV-3" 14 | }, 15 | { 16 | "id": "ASLV-D1" 17 | }, 18 | { 19 | "id": "ASLV-D2" 20 | }, 21 | { 22 | "id": "ASLV-D3" 23 | }, 24 | { 25 | "id": "PSLV-D1" 26 | }, 27 | { 28 | "id": "ASLV-D4" 29 | }, 30 | { 31 | "id": "PSLV-D2" 32 | }, 33 | { 34 | "id": "PSLV-D3" 35 | }, 36 | { 37 | "id": "PSLV-C1" 38 | }, 39 | { 40 | "id": "PSLV-C2" 41 | }, 42 | { 43 | "id": "GSLV-D1" 44 | }, 45 | { 46 | "id": "PSLV-C3" 47 | }, 48 | { 49 | "id": "PSLV-C4" 50 | }, 51 | { 52 | "id": "GSLV-D2" 53 | }, 54 | { 55 | "id": "PSLV-C5" 56 | }, 57 | { 58 | "id": "GSLV-F01" 59 | }, 60 | { 61 | "id": "PSLV-C6" 62 | }, 63 | { 64 | "id": "GSLV-F02" 65 | }, 66 | { 67 | "id": "PSLV-C7" 68 | }, 69 | { 70 | "id": "PSLV-C8" 71 | }, 72 | { 73 | "id": "GSLV-F04" 74 | }, 75 | { 76 | "id": "PSLV-C10" 77 | }, 78 | { 79 | "id": "PSLV-C9" 80 | }, 81 | { 82 | "id": "PSLV-C11" 83 | }, 84 | { 85 | "id": "PSLV-C12" 86 | }, 87 | { 88 | "id": "PSLV-C14" 89 | }, 90 | { 91 | "id": "GSLV-D3" 92 | }, 93 | { 94 | "id": "PSLV-C15" 95 | }, 96 | { 97 | "id": "GSLV-F06" 98 | }, 99 | { 100 | "id": "PSLV-C16" 101 | }, 102 | { 103 | "id": "PSLV-C17" 104 | }, 105 | { 106 | "id": "PSLV-C18" 107 | }, 108 | { 109 | "id": "PSLV-C19" 110 | }, 111 | { 112 | "id": "PSLV-C21" 113 | }, 114 | { 115 | "id": "PSLV-C20" 116 | }, 117 | { 118 | "id": "PSLV-C22" 119 | }, 120 | { 121 | "id": "PSLV-C25" 122 | }, 123 | { 124 | "id": "GSLV-D5" 125 | }, 126 | { 127 | "id": "PSLV-C24" 128 | }, 129 | { 130 | "id": "PSLV-C23" 131 | }, 132 | { 133 | "id": "PSLV-C26" 134 | }, 135 | { 136 | "id": "LVM-3" 137 | }, 138 | { 139 | "id": "PSLV-C27" 140 | }, 141 | { 142 | "id": "PSLV-C28" 143 | }, 144 | { 145 | "id": "GSLV-D6" 146 | }, 147 | { 148 | "id": "PSLV-C30" 149 | }, 150 | { 151 | "id": "PSLV-C29" 152 | }, 153 | { 154 | "id": "PSLV-C31" 155 | }, 156 | { 157 | "id": "PSLV-C32" 158 | }, 159 | { 160 | "id": "PSLV-C33" 161 | }, 162 | { 163 | "id": "RLV-TD" 164 | }, 165 | { 166 | "id": "PSLV-C34" 167 | }, 168 | { 169 | "id": "Scramjet Engine - TD" 170 | }, 171 | { 172 | "id": "GSLV-F05" 173 | }, 174 | { 175 | "id": "PSLV-C35" 176 | }, 177 | { 178 | "id": "PSLV-C36" 179 | }, 180 | { 181 | "id": "PSLV-C37" 182 | }, 183 | { 184 | "id": "GSLV-F09" 185 | }, 186 | { 187 | "id": "GSLV Mk III-D1" 188 | }, 189 | { 190 | "id": "PSLV-C38" 191 | }, 192 | { 193 | "id": "PSLV-C39" 194 | }, 195 | { 196 | "id": "PSLV-C40" 197 | }, 198 | { 199 | "id": "GSLV-F08" 200 | }, 201 | { 202 | "id": "PSLV-C41" 203 | }, 204 | { 205 | "id": "PSLV-C42" 206 | }, 207 | { 208 | "id": "GSLV Mk III-D2" 209 | }, 210 | { 211 | "id": "PSLV-C43" 212 | }, 213 | { 214 | "id": "GSLV-F11" 215 | }, 216 | { 217 | "id": "PSLV-C44" 218 | }, 219 | { 220 | "id": "PSLV-C45" 221 | }, 222 | { 223 | "id": "PSLV-C46" 224 | }, 225 | { 226 | "id": "GSLV-Mk III - M1" 227 | }, 228 | { 229 | "id": "PSLV-C47" 230 | }, 231 | { 232 | "id": "PSLV-C48" 233 | }, 234 | { 235 | "id": "PSLV-C49" 236 | }, 237 | { 238 | "id": "PSLV-C50" 239 | }, 240 | { 241 | "id": "PSLV-C51" 242 | }, 243 | { 244 | "id": "GSLV-F10" 245 | } 246 | ] 247 | } 248 | -------------------------------------------------------------------------------- /data/centres.json: -------------------------------------------------------------------------------- 1 | { 2 | "centres": [ 3 | { 4 | "id": 1, 5 | "name": "Semi-Conductor Laboratory (SCL)", 6 | "Place": "Chandigarh", 7 | "State": "Punjab/Haryana" 8 | }, 9 | { 10 | "id": 2, 11 | "name": "Western RRSC", 12 | "Place": "Jodhpur", 13 | "State": "Rajasthan" 14 | }, 15 | { 16 | "id": 3, 17 | "name": "Solar Observatory", 18 | "Place": "Udaipur", 19 | "State": "Rajasthan" 20 | }, 21 | { 22 | "id": 4, 23 | "name": "Space Applications Centre (SAC)", 24 | "Place": "Ahmedabad", 25 | "State": "Gujarat" 26 | }, 27 | { 28 | "id": 5, 29 | "name": "Physical Research Laboratory (PRL)", 30 | "Place": "Ahmedabad", 31 | "State": "Gujarat" 32 | }, 33 | { 34 | "id": 6, 35 | "name": "Development and Educational Communication Unit (DECU)", 36 | "Place": "Ahmedabad", 37 | "State": "Gujarat" 38 | }, 39 | { 40 | "id": 7, 41 | "name": "Infrared Observatory", 42 | "Place": "Mt.Abu", 43 | "State": "Rajasthan" 44 | }, 45 | { 46 | "id": 8, 47 | "name": "Master Control Facility-B (MCF)", 48 | "Place": "Bhopal", 49 | "State": "Madhya Pradesh" 50 | }, 51 | { 52 | "id": 9, 53 | "name": "ISRO Liaison Office", 54 | "Place": "Mumbai", 55 | "State": "Maharashtra" 56 | }, 57 | { 58 | "id": 10, 59 | "name": "Indian Deep Space Network (IDSN)", 60 | "Place": "Byalalu", 61 | "State": "Karnataka" 62 | }, 63 | { 64 | "id": 11, 65 | "name": "Indian Space Science Data Centre (ISSDC)", 66 | "Place": "Byalalu", 67 | "State": "Karnataka" 68 | }, 69 | { 70 | "id": 12, 71 | "name": "Master Control Facility (MCF)", 72 | "Place": "Hassan", 73 | "State": "Karnataka" 74 | }, 75 | { 76 | "id": 13, 77 | "name": "Ammonium Perchlorate Experimental Plant", 78 | "Place": "Aluva", 79 | "State": "Kerala" 80 | }, 81 | { 82 | "id": 14, 83 | "name": "Space Commission", 84 | "Place": "Bengaluru", 85 | "State": "Karnataka" 86 | }, 87 | { 88 | "id": 15, 89 | "name": "Department of Space and ISRO Headquarters", 90 | "Place": "Bengaluru", 91 | "State": "Karnataka" 92 | }, 93 | { 94 | "id": 16, 95 | "name": "INSAT Programme Office", 96 | "Place": "Bengaluru", 97 | "State": "Karnataka" 98 | }, 99 | { 100 | "id": 17, 101 | "name": "NNRMS Secretariat", 102 | "Place": "Bengaluru", 103 | "State": "Karnataka" 104 | }, 105 | { 106 | "id": 18, 107 | "name": "Civil Engineering Programme Office", 108 | "Place": "Bengaluru", 109 | "State": "Karnataka" 110 | }, 111 | { 112 | "id": 19, 113 | "name": "Antrix Corporation", 114 | "Place": "Bengaluru", 115 | "State": "Karnataka" 116 | }, 117 | { 118 | "id": 20, 119 | "name": "U R Rao Satellite Centre (URSC)", 120 | "Place": "Bengaluru", 121 | "State": "Karnataka" 122 | }, 123 | { 124 | "id": 21, 125 | "name": "Laboratory for Electro-Optical Systems (LEOS)", 126 | "Place": "Bengaluru", 127 | "State": "Karnataka" 128 | }, 129 | { 130 | "id": 22, 131 | "name": "ISRO Telemetry, Tracking and Command Network (ISTRAC)", 132 | "Place": "Bengaluru", 133 | "State": "Karnataka" 134 | }, 135 | { 136 | "id": 23, 137 | "name": "Southern RRSC", 138 | "Place": "Bengaluru", 139 | "State": "Karnataka" 140 | }, 141 | { 142 | "id": 24, 143 | "name": "Liquid Propulsion Systems Centre (LPSC)", 144 | "Place": "Bengaluru", 145 | "State": "Karnataka" 146 | }, 147 | { 148 | "id": 25, 149 | "name": "Human Space Flight Centre (HSFC)", 150 | "Place": "Bengaluru", 151 | "State": "Karnataka" 152 | }, 153 | { 154 | "id": 26, 155 | "name": "New Space India Limited (NSIL)", 156 | "Place": "Bengaluru", 157 | "State": "Karnataka" 158 | }, 159 | { 160 | "id": 27, 161 | "name": "New Space India Limited (NSIL)", 162 | "Place": "New Delhi", 163 | "State": "Delhi" 164 | }, 165 | { 166 | "id": 28, 167 | "name": "ISRO Branch Office", 168 | "Place": "New Delhi", 169 | "State": "Delhi" 170 | }, 171 | { 172 | "id": 29, 173 | "name": "Delhi Earth Station", 174 | "Place": "New Delhi", 175 | "State": "Delhi" 176 | }, 177 | { 178 | "id": 30, 179 | "name": "Indian Institute of Remote Sensing (IIRS)", 180 | "Place": "Dehradun", 181 | "State": "Uttarakhand" 182 | }, 183 | { 184 | "id": 31, 185 | "name": "Centre for Space Science and Technology Education in Asia-Pacific (CSSTEAP)", 186 | "Place": "Dehradun", 187 | "State": "Uttarakhand" 188 | }, 189 | { 190 | "id": 32, 191 | "name": "ISTRAC Ground Station", 192 | "Place": "Lucknow", 193 | "State": "Uttar Pradesh" 194 | }, 195 | { 196 | "id": 33, 197 | "name": "Eastern RRSC", 198 | "Place": "Kolkata", 199 | "State": "West Bengal" 200 | }, 201 | { 202 | "id": 34, 203 | "name": "North Eastern Space Application Centre (NE-SAC)", 204 | "Place": "Shillong", 205 | "State": "Meghalaya" 206 | }, 207 | { 208 | "id": 35, 209 | "name": "Central RRSC", 210 | "Place": "Nagpur", 211 | "State": "Maharashtra" 212 | }, 213 | { 214 | "id": 36, 215 | "name": "National Remote Sensing Centre (NRSC)", 216 | "Place": "Hyderabad", 217 | "State": "Telangana" 218 | }, 219 | { 220 | "id": 37, 221 | "name": "National Atmospheric Research Laboratory (NARL)", 222 | "Place": "Tirupati", 223 | "State": "Andhra Pradesh" 224 | }, 225 | { 226 | "id": 38, 227 | "name": "Down Range Station", 228 | "Place": "Port Blair", 229 | "State": "Andaman and Nicobar" 230 | }, 231 | { 232 | "id": 39, 233 | "name": "Satish Dhawan Space Centre (SDSC), SHAR", 234 | "Place": "Sriharikota", 235 | "State": "Andhra Pradesh" 236 | }, 237 | { 238 | "id": 40, 239 | "name": "ISRO Propulsion Complex", 240 | "Place": "Mahendragiri", 241 | "State": "Tamil Nadu" 242 | }, 243 | { 244 | "id": 41, 245 | "name": "Vikram Sarabhai Space Centre (VSSC)", 246 | "Place": "Thiruvananthapuram", 247 | "State": "Kerala" 248 | }, 249 | { 250 | "id": 42, 251 | "name": "Liquid Propulsion Systems Centre (LPSC)", 252 | "Place": "Thiruvananthapuram", 253 | "State": "Kerala" 254 | }, 255 | { 256 | "id": 43, 257 | "name": "ISRO Inertial Systems Unit (IISU)", 258 | "Place": "Thiruvananthapuram", 259 | "State": "Kerala" 260 | }, 261 | { 262 | "id": 44, 263 | "name": "Indian Institute of Space Science and Technology (IIST)", 264 | "Place": "Thiruvananthapuram", 265 | "State": "Kerala" 266 | } 267 | ] 268 | } 269 | -------------------------------------------------------------------------------- /data/spacecrafts.json: -------------------------------------------------------------------------------- 1 | { 2 | "spacecrafts": [ 3 | { 4 | "id": 1, 5 | "name": "Aryabhata" 6 | }, 7 | { 8 | "id": 2, 9 | "name": "Bhaskara-I" 10 | }, 11 | { 12 | "id": 3, 13 | "name": "Rohini Technology Payload (RTP)" 14 | }, 15 | { 16 | "id": 4, 17 | "name": "Rohini Satellite RS-1" 18 | }, 19 | { 20 | "id": 5, 21 | "name": "Rohini Satellite RS-D1" 22 | }, 23 | { 24 | "id": 6, 25 | "name": "APPLE" 26 | }, 27 | { 28 | "id": 7, 29 | "name": "Bhaskara-II" 30 | }, 31 | { 32 | "id": 8, 33 | "name": "INSAT-1A" 34 | }, 35 | { 36 | "id": 9, 37 | "name": "Rohini Satellite RS-D2" 38 | }, 39 | { 40 | "id": 10, 41 | "name": "INSAT-1B" 42 | }, 43 | { 44 | "id": 11, 45 | "name": "SROSS-1" 46 | }, 47 | { 48 | "id": 12, 49 | "name": "IRS-1A" 50 | }, 51 | { 52 | "id": 13, 53 | "name": "SROSS-2" 54 | }, 55 | { 56 | "id": 14, 57 | "name": "INSAT-1C" 58 | }, 59 | { 60 | "id": 15, 61 | "name": "INSAT-1D" 62 | }, 63 | { 64 | "id": 16, 65 | "name": "IRS-1B" 66 | }, 67 | { 68 | "id": 17, 69 | "name": "SROSS-C" 70 | }, 71 | { 72 | "id": 18, 73 | "name": "INSAT-2A" 74 | }, 75 | { 76 | "id": 19, 77 | "name": "INSAT-2B" 78 | }, 79 | { 80 | "id": 20, 81 | "name": "IRS-1E" 82 | }, 83 | { 84 | "id": 21, 85 | "name": "SROSS-C2" 86 | }, 87 | { 88 | "id": 22, 89 | "name": "IRS-P2" 90 | }, 91 | { 92 | "id": 23, 93 | "name": "INSAT-2C" 94 | }, 95 | { 96 | "id": 24, 97 | "name": "IRS-1C" 98 | }, 99 | { 100 | "id": 25, 101 | "name": "IRS-P3" 102 | }, 103 | { 104 | "id": 26, 105 | "name": "INSAT-2D" 106 | }, 107 | { 108 | "id": 27, 109 | "name": "IRS-1D" 110 | }, 111 | { 112 | "id": 28, 113 | "name": "INSAT-2E" 114 | }, 115 | { 116 | "id": 29, 117 | "name": "Oceansat(IRS-P4)" 118 | }, 119 | { 120 | "id": 30, 121 | "name": "INSAT-3B" 122 | }, 123 | { 124 | "id": 31, 125 | "name": "GSAT-1" 126 | }, 127 | { 128 | "id": 32, 129 | "name": "The Technology Experiment Satellite (TES)" 130 | }, 131 | { 132 | "id": 33, 133 | "name": "INSAT-3C" 134 | }, 135 | { 136 | "id": 34, 137 | "name": "KALPANA-1" 138 | }, 139 | { 140 | "id": 35, 141 | "name": "INSAT-3A" 142 | }, 143 | { 144 | "id": 36, 145 | "name": "GSAT-2" 146 | }, 147 | { 148 | "id": 37, 149 | "name": "INSAT-3E" 150 | }, 151 | { 152 | "id": 38, 153 | "name": "IRS-P6 / RESOURCESAT-1" 154 | }, 155 | { 156 | "id": 39, 157 | "name": "EDUSAT" 158 | }, 159 | { 160 | "id": 40, 161 | "name": "HAMSAT" 162 | }, 163 | { 164 | "id": 41, 165 | "name": "CARTOSAT-1" 166 | }, 167 | { 168 | "id": 42, 169 | "name": "INSAT-4A" 170 | }, 171 | { 172 | "id": 43, 173 | "name": "INSAT-4C" 174 | }, 175 | { 176 | "id": 44, 177 | "name": "SRE-1" 178 | }, 179 | { 180 | "id": 45, 181 | "name": "CARTOSAT-2" 182 | }, 183 | { 184 | "id": 46, 185 | "name": "INSAT-4B" 186 | }, 187 | { 188 | "id": 47, 189 | "name": "INSAT-4CR" 190 | }, 191 | { 192 | "id": 48, 193 | "name": "CARTOSAT – 2A" 194 | }, 195 | { 196 | "id": 49, 197 | "name": "IMS-1" 198 | }, 199 | { 200 | "id": 50, 201 | "name": "Chandrayaan-1" 202 | }, 203 | { 204 | "id": 51, 205 | "name": "RISAT-2" 206 | }, 207 | { 208 | "id": 52, 209 | "name": "Oceansat-2" 210 | }, 211 | { 212 | "id": 53, 213 | "name": "GSAT-4" 214 | }, 215 | { 216 | "id": 54, 217 | "name": "CARTOSAT-2B" 218 | }, 219 | { 220 | "id": 55, 221 | "name": "GSAT-5P" 222 | }, 223 | { 224 | "id": 56, 225 | "name": "YOUTHSAT" 226 | }, 227 | { 228 | "id": 57, 229 | "name": "RESOURCESAT-2" 230 | }, 231 | { 232 | "id": 58, 233 | "name": "GSAT-8" 234 | }, 235 | { 236 | "id": 59, 237 | "name": "GSAT-12" 238 | }, 239 | { 240 | "id": 60, 241 | "name": "Megha-Tropiques" 242 | }, 243 | { 244 | "id": 61, 245 | "name": "RISAT-1" 246 | }, 247 | { 248 | "id": 62, 249 | "name": "GSAT-10" 250 | }, 251 | { 252 | "id": 63, 253 | "name": "SARAL" 254 | }, 255 | { 256 | "id": 64, 257 | "name": "IRNSS-1A" 258 | }, 259 | { 260 | "id": 65, 261 | "name": "INSAT-3D" 262 | }, 263 | { 264 | "id": 66, 265 | "name": "GSAT-7" 266 | }, 267 | { 268 | "id": 67, 269 | "name": "Mars Orbiter Mission Spacecraft" 270 | }, 271 | { 272 | "id": 68, 273 | "name": "GSAT-14" 274 | }, 275 | { 276 | "id": 69, 277 | "name": "IRNSS-1B" 278 | }, 279 | { 280 | "id": 70, 281 | "name": "IRNSS-1C" 282 | }, 283 | { 284 | "id": 71, 285 | "name": "GSAT-16" 286 | }, 287 | { 288 | "id": 72, 289 | "name": "Crew module Atmospheric Re-entry Experiment (CARE)" 290 | }, 291 | { 292 | "id": 73, 293 | "name": "IRNSS-1D" 294 | }, 295 | { 296 | "id": 74, 297 | "name": "GSAT-6" 298 | }, 299 | { 300 | "id": 75, 301 | "name": "Astrosat" 302 | }, 303 | { 304 | "id": 76, 305 | "name": "GSAT-15" 306 | }, 307 | { 308 | "id": 77, 309 | "name": "IRNSS-1E" 310 | }, 311 | { 312 | "id": 78, 313 | "name": "IRNSS-1F" 314 | }, 315 | { 316 | "id": 79, 317 | "name": "IRNSS-1G" 318 | }, 319 | { 320 | "id": 80, 321 | "name": "CARTOSAT-2 Series Satellite" 322 | }, 323 | { 324 | "id": 81, 325 | "name": "INSAT-3DR" 326 | }, 327 | { 328 | "id": 82, 329 | "name": "SCATSAT-1" 330 | }, 331 | { 332 | "id": 83, 333 | "name": "GSAT-18" 334 | }, 335 | { 336 | "id": 84, 337 | "name": "RESOURCESAT-2A" 338 | }, 339 | { 340 | "id": 85, 341 | "name": "INS-1B" 342 | }, 343 | { 344 | "id": 86, 345 | "name": "INS-1A" 346 | }, 347 | { 348 | "id": 87, 349 | "name": "Cartosat -2 Series Satellite" 350 | }, 351 | { 352 | "id": 88, 353 | "name": "GSAT-9" 354 | }, 355 | { 356 | "id": 89, 357 | "name": "GSAT-19" 358 | }, 359 | { 360 | "id": 90, 361 | "name": "Cartosat-2 Series Satellite" 362 | }, 363 | { 364 | "id": 91, 365 | "name": "GSAT-17" 366 | }, 367 | { 368 | "id": 92, 369 | "name": "IRNSS-1H" 370 | }, 371 | { 372 | "id": 93, 373 | "name": "INS-1C" 374 | }, 375 | { 376 | "id": 94, 377 | "name": "Cartosat-2 Series Satellite" 378 | }, 379 | { 380 | "id": 95, 381 | "name": "Microsat" 382 | }, 383 | { 384 | "id": 96, 385 | "name": "GSAT-6A" 386 | }, 387 | { 388 | "id": 97, 389 | "name": "IRNSS-1I" 390 | }, 391 | { 392 | "id": 98, 393 | "name": "GSAT-29" 394 | }, 395 | { 396 | "id": 99, 397 | "name": "HysIS" 398 | }, 399 | { 400 | "id": 100, 401 | "name": "GSAT-11 Mission" 402 | }, 403 | { 404 | "id": 101, 405 | "name": "GSAT-7A" 406 | }, 407 | { 408 | "id": 102, 409 | "name": "Microsat-R" 410 | }, 411 | { 412 | "id": 103, 413 | "name": "GSAT-31" 414 | }, 415 | { 416 | "id": 104, 417 | "name": "EMISAT" 418 | }, 419 | { 420 | "id": 105, 421 | "name": "RISAT-2B" 422 | }, 423 | { 424 | "id": 106, 425 | "name": "Chandrayaan2" 426 | }, 427 | { 428 | "id": 107, 429 | "name": "Cartosat-3" 430 | }, 431 | { 432 | "id": 108, 433 | "name": "RISAT-2BR1" 434 | }, 435 | { 436 | "id": 109, 437 | "name": "GSAT-30" 438 | }, 439 | { 440 | "id": 110, 441 | "name": "EOS-01" 442 | }, 443 | { 444 | "id": 111, 445 | "name": "CMS-01" 446 | }, 447 | { 448 | "id": 112, 449 | "name": "EOS-03" 450 | }, 451 | { 452 | "id": 113, 453 | "name": "Chandrayaan3" 454 | } 455 | ] 456 | } 457 | -------------------------------------------------------------------------------- /data/customer_satellites.json: -------------------------------------------------------------------------------- 1 | { 2 | "customer_satellites": [{ 3 | "id": "DLR-TUBSAT", 4 | "country": "Germany", 5 | "launch_date": "26-05-1999", 6 | "mass": "45", 7 | "launcher": "PSLV-C2" 8 | }, 9 | { 10 | "id": "KITSAT-3", 11 | "country": "REPUBLIC OF KOREA", 12 | "launch_date": "26-05-1999", 13 | "mass": "110", 14 | "launcher": "PSLV-C2" 15 | }, 16 | { 17 | "id": "BIRD", 18 | "country": "GERMANY", 19 | "launch_date": "22-10-2001", 20 | "mass": "92", 21 | "launcher": "PSLV-C3" 22 | }, 23 | { 24 | "id": "PROBA", 25 | "country": "BELGIUM", 26 | "launch_date": "22-10-2001", 27 | "mass": "94", 28 | "launcher": "PSLV-C3" 29 | }, 30 | { 31 | "id": "LAPAN-TUBSAT", 32 | "country": "INDONESIA", 33 | "launch_date": "10-07-2007", 34 | "mass": "56", 35 | "launcher": "PSLV-C7" 36 | }, 37 | { 38 | "id": "PEHUENSAT-1", 39 | "country": "ARGENTINA", 40 | "launch_date": "10-07-2007", 41 | "mass": "6", 42 | "launcher": "PSLV-C7" 43 | }, 44 | { 45 | "id": "AGILE", 46 | "country": "ITALY", 47 | "launch_date": "23-04-2007", 48 | "mass": "350", 49 | "launcher": "PSLV-C8" 50 | }, 51 | { 52 | "id": "TESCAR", 53 | "country": "ISRAEL", 54 | "launch_date": "21-01-2008", 55 | "mass": "300", 56 | "launcher": "PSLV-C10" 57 | }, 58 | { 59 | "id": "CAN-X2", 60 | "country": "CANADA", 61 | "launch_date": "28-04-2008", 62 | "mass": "7", 63 | "launcher": "PSLV-C9" 64 | }, 65 | { 66 | "id": "CUTE-1.7", 67 | "country": "JAPAN", 68 | "launch_date": "28-04-2008", 69 | "mass": "5", 70 | "launcher": "PSLV-C9" 71 | }, 72 | { 73 | "id": "DELFI-C3", 74 | "country": "THE NETHERLANDS", 75 | "launch_date": "28-04-2008", 76 | "mass": "6.5", 77 | "launcher": "PSLV-C9" 78 | }, 79 | { 80 | "id": "AAUSAT-II", 81 | "country": "DENMARK", 82 | "launch_date": "28-04-2008", 83 | "mass": "3", 84 | "launcher": "PSLV-C9" 85 | }, 86 | { 87 | "id": "COMPASS-I", 88 | "country": "GERMANY", 89 | "launch_date": "28-04-2008", 90 | "mass": "3", 91 | "launcher": "PSLV-C9" 92 | }, 93 | { 94 | "id": "SEEDS", 95 | "country": "JAPAN", 96 | "launch_date": "28-04-2008", 97 | "mass": "3", 98 | "launcher": "PSLV-C9" 99 | }, 100 | { 101 | "id": "NLSS", 102 | "country": "CANADA", 103 | "launch_date": "28-04-2008", 104 | "mass": "16", 105 | "launcher": "PSLV-C9" 106 | }, 107 | { 108 | "id": "RUBIN-8", 109 | "country": "GERMANY", 110 | "launch_date": "28-04-2008", 111 | "mass": "8", 112 | "launcher": "PSLV-C9" 113 | }, 114 | { 115 | "id": "CUBESAT-1", 116 | "country": "GERMANY", 117 | "launch_date": "23-09-2009", 118 | "mass": "1", 119 | "launcher": "PSLV-C14" 120 | }, 121 | { 122 | "id": "CUBESAT-2", 123 | "country": "GERMANY", 124 | "launch_date": "23-09-2009", 125 | "mass": "1", 126 | "launcher": "PSLV-C14" 127 | }, 128 | { 129 | "id": "CUBESAT-3", 130 | "country": "TURKEY", 131 | "launch_date": "23-09-2009", 132 | "mass": "1", 133 | "launcher": "PSLV-C14" 134 | }, 135 | { 136 | "id": "CUBESAT-4", 137 | "country": "SWITZERLAND", 138 | "launch_date": "23-09-2009", 139 | "mass": "1", 140 | "launcher": "PSLV-C14" 141 | }, 142 | { 143 | "id": "RUBIN-9.1", 144 | "country": "GERMANY", 145 | "launch_date": "23-09-2009", 146 | "mass": "1", 147 | "launcher": "PSLV-C14" 148 | }, 149 | { 150 | "id": "RUBIN-9.2", 151 | "country": "GERMANY", 152 | "launch_date": "23-09-2009", 153 | "mass": "1", 154 | "launcher": "PSLV-C14" 155 | }, 156 | { 157 | "id": "ALSAT-2A", 158 | "country": "ALGERIA", 159 | "launch_date": "12-07-2010", 160 | "mass": "116", 161 | "launcher": "PSLV-C15" 162 | }, 163 | { 164 | "id": "NLS6.1 AISSAT-1", 165 | "country": "NORWAY", 166 | "launch_date": "12-07-2010", 167 | "mass": "6.5", 168 | "launcher": "PSLV-C15" 169 | }, 170 | { 171 | "id": "NLS6.2 TISAT-1", 172 | "country": "SWITZERLAND", 173 | "launch_date": "12-07-2010", 174 | "mass": "1", 175 | "launcher": "PSLV-C15" 176 | }, 177 | { 178 | "id": "X-SAT", 179 | "country": "SINGAPORE", 180 | "launch_date": "20-04-2011", 181 | "mass": "106", 182 | "launcher": "PSLV-C16" 183 | }, 184 | { 185 | "id": "VesselSat-1", 186 | "country": "LUXEMBOURG", 187 | "launch_date": "12-10-2011", 188 | "mass": "28.7", 189 | "launcher": "PSLV-C18" 190 | }, 191 | { 192 | "id": "SPOT-6", 193 | "country": "FRANCE", 194 | "launch_date": "09-09-2012", 195 | "mass": "712", 196 | "launcher": "PSLV-C21" 197 | }, 198 | { 199 | "id": "PROITERES", 200 | "country": "JAPAN", 201 | "launch_date": "09-09-2012", 202 | "mass": "15", 203 | "launcher": "PSLV-C21" 204 | }, 205 | { 206 | "id": "SAPPHIRE", 207 | "country": "CANADA", 208 | "launch_date": "25-02-2013", 209 | "mass": "148", 210 | "launcher": "PSLV-C20" 211 | }, 212 | { 213 | "id": "NEOSSAT", 214 | "country": "CANADA", 215 | "launch_date": "25-02-2013", 216 | "mass": "74", 217 | "launcher": "PSLV-C20" 218 | }, 219 | { 220 | "id": "NLS8.1", 221 | "country": "AUSTRIA", 222 | "launch_date": "25-02-2013", 223 | "mass": "14", 224 | "launcher": "PSLV-C20" 225 | }, 226 | { 227 | "id": "NLS8.2", 228 | "country": "AUSTRIA", 229 | "launch_date": "25-02-2013", 230 | "mass": "14", 231 | "launcher": "PSLV-C20" 232 | }, 233 | { 234 | "id": "NLS8.3", 235 | "country": "DENMARK", 236 | "launch_date": "25-02-2013", 237 | "mass": "3", 238 | "launcher": "PSLV-C20" 239 | }, 240 | { 241 | "id": "STRAND-1", 242 | "country": "UNITED KINGDOM", 243 | "launch_date": "25-02-2013", 244 | "mass": "6.5", 245 | "launcher": "PSLV-C20" 246 | }, 247 | { 248 | "id": "SPOT-7", 249 | "country": "FRANCE", 250 | "launch_date": "30-06-2014", 251 | "mass": "714", 252 | "launcher": "PSLV-C23" 253 | }, 254 | { 255 | "id": "AISAT", 256 | "country": "GERMANY", 257 | "launch_date": "30-06-2014", 258 | "mass": "14", 259 | "launcher": "PSLV-C23" 260 | }, 261 | { 262 | "id": "NLS7.1(CAN-X4)", 263 | "country": "CANADA", 264 | "launch_date": "30-06-2014", 265 | "mass": "15", 266 | "launcher": "PSLV-C23" 267 | }, 268 | { 269 | "id": "NLS7.2(CAN-X5)", 270 | "country": "CANADA", 271 | "launch_date": "30-06-2014", 272 | "mass": "15", 273 | "launcher": "PSLV-C23" 274 | }, 275 | { 276 | "id": "VELOX-1", 277 | "country": "SINGAPORE", 278 | "launch_date": "30-06-2014", 279 | "mass": "7", 280 | "launcher": "PSLV-C23" 281 | }, 282 | { 283 | "id": "AMAZONIA-1", 284 | "country": "BRAZIL", 285 | "launch_date": "28-02-2021", 286 | "mass": "637", 287 | "launcher": "PSLV-C51" 288 | }, 289 | { 290 | "id": "DMC3-1", 291 | "country": "UK", 292 | "launch_date": "10-07-2015", 293 | "mass": "447", 294 | "launcher": "PSLV-C28" 295 | }, 296 | { 297 | "id": "DMC3-2", 298 | "country": "UK", 299 | "launch_date": "10-07-2015", 300 | "mass": "447", 301 | "launcher": "PSLV-C28" 302 | }, 303 | { 304 | "id": "DMC3-3", 305 | "country": "UK", 306 | "launch_date": "10-07-2015", 307 | "mass": "447", 308 | "launcher": "PSLV-C28" 309 | }, 310 | { 311 | "id": "CBNT-1", 312 | "country": "UK", 313 | "launch_date": "10-07-2015", 314 | "mass": "91", 315 | "launcher": "PSLV-C28" 316 | }, 317 | { 318 | "id": "De-OrbitSail", 319 | "country": "UK", 320 | "launch_date": "10-07-2015", 321 | "mass": "7", 322 | "launcher": "PSLV-C28" 323 | }, 324 | { 325 | "id": "LAPAN-A2", 326 | "country": "INDONESIA", 327 | "launch_date": "28-09-2015", 328 | "mass": "76", 329 | "launcher": "PSLV-C30" 330 | }, 331 | { 332 | "id": "NLS-14(Ev9)", 333 | "country": "CANADA", 334 | "launch_date": "28-09-2015", 335 | "mass": "14", 336 | "launcher": "PSLV-C30" 337 | }, 338 | { 339 | "id": "LEMUR-1", 340 | "country": "USA", 341 | "launch_date": "28-09-2015", 342 | "mass": "7", 343 | "launcher": "PSLV-C30" 344 | }, 345 | { 346 | "id": "LEMUR-2", 347 | "country": "USA", 348 | "launch_date": "28-09-2015", 349 | "mass": "7", 350 | "launcher": "PSLV-C30" 351 | }, 352 | { 353 | "id": "LEMUR-3", 354 | "country": "USA", 355 | "launch_date": "28-09-2015", 356 | "mass": "7", 357 | "launcher": "PSLV-C30" 358 | }, 359 | { 360 | "id": "LEMUR-4", 361 | "country": "USA", 362 | "launch_date": "28-09-2015", 363 | "mass": "7", 364 | "launcher": "PSLV-C30" 365 | }, 366 | { 367 | "id": "TeLEOS", 368 | "country": "SINGAPORE", 369 | "launch_date": "16-12-2015", 370 | "mass": "400", 371 | "launcher": "PSLV-C29" 372 | }, 373 | { 374 | "id": "Kent Ridge-I", 375 | "country": "SINGAPORE", 376 | "launch_date": "16-12-2015", 377 | "mass": "78", 378 | "launcher": "PSLV-C29" 379 | }, 380 | { 381 | "id": "VELOX-C1", 382 | "country": "SINGAPORE", 383 | "launch_date": "16-12-2015", 384 | "mass": "123", 385 | "launcher": "PSLV-C29" 386 | }, 387 | { 388 | "id": "VELOX-II", 389 | "country": "SINGAPORE", 390 | "launch_date": "16-12-2015", 391 | "mass": "13", 392 | "launcher": "PSLV-C29" 393 | }, 394 | { 395 | "id": "Galassia", 396 | "country": "SINGAPORE", 397 | "launch_date": "16-12-2015", 398 | "mass": "3.4", 399 | "launcher": "PSLV-C29" 400 | }, 401 | { 402 | "id": "Athenoxat-I", 403 | "country": "SINGAPORE", 404 | "launch_date": "16-12-2015", 405 | "mass": "", 406 | "launcher": "PSLV-C29" 407 | }, 408 | { 409 | "id": "LAPAN-A3", 410 | "country": "INDONESIA", 411 | "launch_date": "22-06-2016", 412 | "mass": "120", 413 | "launcher": "PSLV-C34" 414 | }, 415 | { 416 | "id": "BIROS", 417 | "country": "GERMANY", 418 | "launch_date": "22-06-2016", 419 | "mass": "130", 420 | "launcher": "PSLV-C34" 421 | }, 422 | { 423 | "id": "M3MSat", 424 | "country": "CANADA", 425 | "launch_date": "22-06-2016", 426 | "mass": "85", 427 | "launcher": "PSLV-C34" 428 | }, 429 | { 430 | "id": "SkySat Gen2-1", 431 | "country": "USA", 432 | "launch_date": "22-06-2016", 433 | "mass": "110", 434 | "launcher": "PSLV-C34" 435 | }, 436 | { 437 | "id": "GHGSat-D", 438 | "country": "CANADA", 439 | "launch_date": "22-06-2016", 440 | "mass": "25.5", 441 | "launcher": "PSLV-C34" 442 | }, 443 | { 444 | "id": "DOVE QP1.1", 445 | "country": "USA", 446 | "launch_date": "22-06-2016", 447 | "mass": "4.7", 448 | "launcher": "PSLV-C34" 449 | }, 450 | { 451 | "id": "DOVE QP1.2", 452 | "country": "USA", 453 | "launch_date": "22-06-2016", 454 | "mass": "4.7", 455 | "launcher": "PSLV-C34" 456 | }, 457 | { 458 | "id": "DOVE QP1.3", 459 | "country": "USA", 460 | "launch_date": "22-06-2016", 461 | "mass": "4.7", 462 | "launcher": "PSLV-C34" 463 | }, 464 | { 465 | "id": "DOVE QP1.4", 466 | "country": "USA", 467 | "launch_date": "22-06-2016", 468 | "mass": "4.7", 469 | "launcher": "PSLV-C34" 470 | }, 471 | { 472 | "id": "DOVE QP2.1", 473 | "country": "USA", 474 | "launch_date": "22-06-2016", 475 | "mass": "4.7", 476 | "launcher": "PSLV-C34" 477 | }, 478 | { 479 | "id": "DOVE QP2.2", 480 | "country": "USA", 481 | "launch_date": "22-06-2016", 482 | "mass": "4.7", 483 | "launcher": "PSLV-C34" 484 | }, 485 | { 486 | "id": "DOVE QP2.3", 487 | "country": "USA", 488 | "launch_date": "22-06-2016", 489 | "mass": "4.7", 490 | "launcher": "PSLV-C34" 491 | }, 492 | { 493 | "id": "DOVE QP2.4", 494 | "country": "USA", 495 | "launch_date": "22-06-2016", 496 | "mass": "4.7", 497 | "launcher": "PSLV-C34" 498 | }, 499 | { 500 | "id": "DOVE QP3.1", 501 | "country": "USA", 502 | "launch_date": "22-06-2016", 503 | "mass": "4.7", 504 | "launcher": "PSLV-C34" 505 | }, 506 | { 507 | "id": "DOVE QP3.2", 508 | "country": "USA", 509 | "launch_date": "22-06-2016", 510 | "mass": "4.7", 511 | "launcher": "PSLV-C34" 512 | }, 513 | { 514 | "id": "DOVE QP3.3", 515 | "country": "USA", 516 | "launch_date": "22-06-2016", 517 | "mass": "4.7", 518 | "launcher": "PSLV-C34" 519 | }, 520 | { 521 | "id": "DOVE QP3.4", 522 | "country": "USA", 523 | "launch_date": "22-06-2016", 524 | "mass": "4.7", 525 | "launcher": "PSLV-C34" 526 | } 527 | ] 528 | } 529 | -------------------------------------------------------------------------------- /data/spacecraft_missions.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "RISAT-2BR1", 4 | "id": 65, 5 | "lift-off_weight": "628 kg", 6 | "altitude": "576 km", 7 | "payload": "X-Band Radar", 8 | "inclination": "37 deg", 9 | "mission_life": "5 years" 10 | }, 11 | { 12 | "name": "Cartosat-3", 13 | "id": 64, 14 | "mean_altitude": "509 km", 15 | "mean_inclination": "97.5\u00b0", 16 | "overall_mass": "1625 kg", 17 | "power_generation": "2000W", 18 | "mission_life": "5 years" 19 | }, 20 | { 21 | "name": "GSAT-15", 22 | "id": 63, 23 | "mission": "Communication and Satellite Navigation", 24 | "weight": "3164 kg (Mass at Lift \u2013 off) 1440 kg (Dry Mass)", 25 | "power": "Solar array providing 6200 Watts and Three 100 AH Lithium-Ion batteries ", 26 | "propulsion": "Bi- propellant System", 27 | "launch_date": "November 11, 2015", 28 | "launch_site": "Kourou, French Guiana", 29 | "launch_vehicle": "Ariane-5 VA-227", 30 | "orbit": "Geostationary (93.5\u00b0 East longitude)Co-located with INSAT-3A and INSAT-4B", 31 | "mission_life": "12 Years" 32 | }, 33 | { 34 | "name": "GSAT-6", 35 | "id": 62, 36 | "physical_properties": "Lift off Mass : 2117 kg Main Structure : I-2K Overall size(m) : 2.1 x 2.5 x 4.1", 37 | "power": "Generated power 3100 W", 38 | "aocs": "Momentum biased 3-axis stabilised", 39 | "antennas": "One 0.8 m (fixed) and one 6 m unfurlable antenna (transmit and receive)", 40 | "communication_payloads": "i. S-band payload with five spot beams covering India for user links ii. C-band payload with one beam covering India for hub links S-band payload uses 6 m unfurlable antenna and C-band uses 0.8 m antenna.", 41 | "mission_life": "9 years" 42 | }, 43 | { 44 | "name": "IRNSS-1B", 45 | "id": 61, 46 | "off_mass": "1432 kg", 47 | "physical_dimensions": "1.58 metre x 1.50 metre x 1.50 metre", 48 | "orbit": "Geosynchronous, at 55 deg East longitude with 29 deg inclination", 49 | "power": "Two solar panels generating 1660 W, one lithium-ion battery of 90 Ampere-Hour capacity", 50 | "propulsion": "440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters", 51 | "control_system": "Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators", 52 | "mission_life": "10 years", 53 | "launch_date": "Apr 04, 2014", 54 | "launch_site": "SDSC SHAR Centre, Sriharikota, India", 55 | "launch_vehicle": "PSLV - C24" 56 | }, 57 | { 58 | "name": "GSAT-14", 59 | "id": 60, 60 | "mass_at_lift-off": "1982 kg", 61 | "overall_size_(m)": "2.0 X 2.0 X 3.6", 62 | "power": "2600 W", 63 | "attitude_and_orbit_control_system_(aocs)": "Momentum biased 3-axis stabilized mode", 64 | "propulsion_system": "Bi propellant-Mono Methyl Hydrazine and Mixed Oxides of Nitrogen (MON-3)", 65 | "antennae": "One 2m and one 2.2 m single shell shaped reflector Antennae (transmit and receive)", 66 | "launch_date": "January 05, 2014", 67 | "launch_site": "SDSC, SHAR", 68 | "launch_vehicle": "GSLV-D5", 69 | "orbit": "74 deg East longitude in geostationary orbit", 70 | "mission_life": "12 Years" 71 | }, 72 | { 73 | "name": "GSAT-7", 74 | "id": 59, 75 | "mission": "Communication", 76 | "mass_at_lift-off": "2650 kg", 77 | "physical_dimensions": "3.1 m X 1.7 m X 2.0 m", 78 | "power": "3,000 W (end of life)", 79 | "satbilisation": "3-axis stabilized", 80 | "launch_date": "August 30, 2013", 81 | "launch_site": "Kourou, French Guiana", 82 | "launch_vehicle": "Ariane-5 VA-215", 83 | "orbit": "74oE Geo Stationary", 84 | "mission_life": "> 7 Years" 85 | }, 86 | { 87 | "name": "INSAT-3D", 88 | "id": 58, 89 | "mission": "Meteorological and Search & Rescue Services", 90 | "mass_at_lift-off": "2060 kg", 91 | "power": "Solar panel generating 1164 W Two 18 Ah Ni-Cd batteries", 92 | "physical_dimensions": "2.4m x 1.6m x 1.5m", 93 | "propulsion": "440 Newton Liquid Apogee Motor (LAM) and twelve 22 Newton thrusters with Mono Methyl Hydrazine (MMH) as fuel and mixed Oxides of Nitrogen (MON-3) as oxidizer", 94 | "stabilisation": "3-asix body stabilized in orbit using Sun Sensors, Star Sensors, gyroscopes, Momentum and Reaction Wheels, Magnetic Torquers and thrusters", 95 | "antennae": "0.9m and 1.0m body mounted antennas", 96 | "launch_date": "July 26, 2013", 97 | "launch_site": "Kourou, French Guiana", 98 | "launch_vehicle": "Ariane-5 VA-214", 99 | "orbit": "Geostationary, 82 deg E Longitude", 100 | "mission_life": "7 Years" 101 | }, 102 | { 103 | "name": "IRNSS-1A", 104 | "id": 57, 105 | "lift-off_mass": "1425 kg", 106 | "physical_dimensions": "1.58 metre x 1.50 metre x 1.50 metre", 107 | "orbit": "Geosynchronous, at 55 deg East longitude with 29 deg inclination", 108 | "power": "Two solar panels generating 1660 W, one lithium-ion battery of 90 Ampere-Hour capacity", 109 | "propulsion": "440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters", 110 | "control_system": "Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators", 111 | "mission_life": "10 years", 112 | "launch_date": "Jul 01, 2013", 113 | "launch_site": "SDSC SHAR Centre, Sriharikota, India", 114 | "launch_vehicle": "PSLV - C22" 115 | }, 116 | { 117 | "name": "SARAL", 118 | "id": 56, 119 | "lift-off_mass": "407 kg", 120 | "orbit": "781 km polar Sun synchronous", 121 | "sensors": "4 PI sun sensors, magnetometer, star sensors and miniaturised gyro based Inertial Reference Unit", 122 | "orbit_inclination": "98.538o", 123 | "local_time_of_equator": "18:00 hours crossing", 124 | "power": "Solar Array generating 906 W and 46.8 Ampere-hour Lithium-ion battery", 125 | "onboard_data_storage": "32 Gb", 126 | "attitude_and_orbit_control": "3-axis stabilisation with reaction wheels, Hydrazine Control System based thrusters", 127 | "mission_life": "5 years", 128 | "launch_date": "Feb 25, 2013", 129 | "launch_site": "SDSC SHAR Centre, Sriharikota, India", 130 | "launch_vehicle": "PSLV - C20" 131 | }, 132 | { 133 | "name": "GSAT-10", 134 | "id": 55, 135 | "mission": "Communication", 136 | "weight": "3400 kg (Mass at Lift \u2013 off) 1498 kg (Dry Mass)", 137 | "power": "Solar array providing 6474 Watts (at Equinox) and two 128 AH Lithium-Ion batteries", 138 | "physical_dimensions": "2.0 m X 1.77 m X 3.1 m cuboid", 139 | "propulsion": "440 Newton Liquid Apogee Motors (LAM) with Mono Methyl Hydrazine (MMH) as fuel and Mixed oxides of Nitrogen (MON-3) as oxidizer for orbit raising.", 140 | "stabilisation": "3-axis body stabilised in orbit using Earth Sensors, Sun Sensors, Momentum and Reaction Wheels, Magnetic Torquers and eight 10 Newton and eight 22 Newton bipropellant thrusters", 141 | "antennae": "East : 2.2 m dia circular deployable Dual Gridded Reflector (DGR) West : 2.2 m X 2.4 m elliptical deployable DGR Earth Viewing Face (top) : 0.7 m parabolic, 0.9 m parabolic and 0.8 m X 0.8 m sixteen element helical antenna for GAGAN", 142 | "launch_date": "September 29, 2012", 143 | "launch_site": "Kourou, French Guiana", 144 | "launch_vehicle": "Ariane-5 VA-209", 145 | "orbit": "Geostationary (83\u00b0 East longitude), co-located with INSAT-4A and GSAT-12", 146 | "mission_life": "15 Years" 147 | }, 148 | { 149 | "name": "RISAT-1", 150 | "id": 54, 151 | "mass": "1858 kg", 152 | "orbit": "Circular Polar Sun Synchronous", 153 | "orbit_altitude": "536 km", 154 | "orbit_inclination": "97.552o", 155 | "orbit_period": "95.49 min", 156 | "number_of_orbits_per_day": "14", 157 | "local_time_of_equator_crossing": "6:00 am / 6:00 pm", 158 | "power": "Solar Array generating 2200 W and one 70 AH Ni-H2 battery", 159 | "repetivity": "25 days", 160 | "attitude_and_orbit_control": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", 161 | "nominal_mission_life": "5 years", 162 | "launch_date": "April 26, 2012", 163 | "launch_site": "SDSC SHAR Centre, Sriharikota, India", 164 | "launch_vehicle": "PSLV- C19" 165 | }, 166 | { 167 | "name": "Megha-Tropiques", 168 | "id": 53, 169 | "lift-off_mass": "1000 kg", 170 | "orbit": "867 km with an inclination of 20 deg to the equator", 171 | "thermal": "Passive system with IRS heritage", 172 | "power": "1325 W (at End of Life) Two 24 AH NiCd batteries", 173 | "ttc": "S-band", 174 | "attitude_and_orbit_control": "3-axis stabilised with 4 Reaction Wheels, Gyros and Star sensors, Hydrazine based RCS", 175 | "solid_state_recorder": "16 Gb", 176 | "launch_date": "October 12, 2011", 177 | "launch_site": "SDSC SHAR Centre, Sriharikota, India", 178 | "launch_vehicle": "PSLV- C18" 179 | }, 180 | { 181 | "name": "GSAT-12", 182 | "id": 52, 183 | "mission": "Communication", 184 | "weight": "1410 kg (Mass at Lift \u2013 off) 559 kg (Dry Mass)", 185 | "power": "Solar array providing 1430 Watts and one 64 Ah Li-Ion batteries", 186 | "physical_dimensions": "1.485 x 1.480 x 1.446 m cuboid", 187 | "propulsion": "440 Newton Liquid Apogee Motors (LAM) with Mono Methyl Hydrazine (MMH) as fuel and Mixed oxides of Nitrogen (MON-3) as oxidizer for orbit raising.", 188 | "attitude_orbit_control": "3-axis body stabilised in orbit using Earth Sensors, Sun Sensors, Momentum and Reaction Wheels, Magnetic Torquers and eight 10 Newton and eight 22 Newton bipropellant thrusters", 189 | "antennae": "One 0.7 m diameter body mounted parabolic receive antenna and one 1.2 m diameter polarisation sensitive deployable antenna", 190 | "launch_date": "July 15, 2011", 191 | "launch_site": "SHAR, Sriharikota, India", 192 | "launch_vehicle": "PSLV-C17", 193 | "orbit": "Geosynchronous (83\u00b0 longitude)", 194 | "mission_life": "About 8 Years" 195 | }, 196 | { 197 | "name": "GSAT-8", 198 | "id": 51, 199 | "mission": "Communication", 200 | "weight": "3093 kg (Mass at Lift \u2013 off) 1426 kg (Dry Mass)", 201 | "power": "Solar array providing 6242 watts three 100 Ah Lithium Ion batteries", 202 | "physical_dimensions": "2.0 x 1.77 x 3.1m cuboid", 203 | "propulsion": "440 Newton Liquid Apogee Motors (LAM) with mono Methyl Hydrazine (MMH) as fuel and Mixed oxides of Nitrogen (MON-3) as oxidizer for orbit raising.", 204 | "stabilisation": "3-axis body stabilised in orbit using Earth Sensors, Sun Sensors, Momentum and Reaction Wheels, Magnetic Torquers and eight 10 Newton and eight 22 Newton bipropellant thrusters", 205 | "antennas": "Two indigenously developed 2.2 m diameter transmit/receive polarisation sensitive dual grid shaped beam deployable reflectors with offset-fed feeds illumination for Ku-band; 0.6 m C-band and 0.8x0.8 sq m L-band helix antenna for GAGAN", 206 | "launch_date": "May 21, 2011", 207 | "launch_site": "Kourou, French Guiana", 208 | "launch_vehicle": "Ariane-5 VA-202", 209 | "orbit": "Geosynchronous (55\u00b0 E)", 210 | "mission_life": "More Than 12 Years" 211 | }, 212 | { 213 | "name": "RESOURCESAT-2", 214 | "id": 50, 215 | "mission": "Remote Sensing", 216 | "orbit": "Circular Polar Sun Synchronous", 217 | "orbit_altitude_at_injection": "822 km + 20 km (3 Sigma)", 218 | "orbit_inclination": "98.731\u00ba + 0.2\u00ba", 219 | "lift-off_mass": "1206 kg", 220 | "orbit_period": "101.35 min", 221 | "number_of_orbits_per_day": "14", 222 | "local_time_of_equator_crossing": "10:30 am", 223 | "repetivity": "24 days", 224 | "attitude_and_orbit_control": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", 225 | "power": "Solar Array generating 1250 W at End Of Life, two 24 AH Ni-Cd batteries", 226 | "launch_date": "April 20, 2011", 227 | "launch_site": "SHAR Centre Sriharikota India", 228 | "launch_vehicle": "PSLV- C16", 229 | "mission_life": "5 years" 230 | }, 231 | { 232 | "name": "YOUTHSAT", 233 | "id": 49, 234 | "lift-off_mass": "92 kg", 235 | "orbit_period": "101.35 min", 236 | "dimension": "1020 (Pitch) x 604 (Roll) x 1340 (Yaw) mm3", 237 | "attitude_and_orbit_control": "3-axis body stabilised using Sun and Star Sensors, Miniature Magnetometer, Miniature Gyros, Micro Reaction Wheels and Magnetic Torquers", 238 | "power": "Solar Array generating 230 W, one 10.5 AH Li-ion battery", 239 | "mechanisms": "Paraffin Actuator based Solar Panel Hold Down and Release Mechanism", 240 | "launch_date": "April 20, 2011", 241 | "launch_site": "SHAR Centre Sriharikota India", 242 | "launch_vehicle": "PSLV- C16", 243 | "orbit": "Circular Polar Sun Synchronous", 244 | "orbit_altitude_at_injection": "822 km\u00a0+\u00a020 km (3 Sigma)", 245 | "orbit_inclination": "98.731 \u00ba\u00a0+\u00a00.2 \u00ba", 246 | "mission_life": "2 years" 247 | }, 248 | { 249 | "name": "CARTOSAT-2B", 250 | "id": 48, 251 | "mission": "Remote Sensing", 252 | "weight": "694 kg (Mass at lift off)", 253 | "onboard_orbit": "930 Watts", 254 | "stabilization": "3 \u2013 axis body stabilised based on inputs from star sensors and gyros using Reaction wheels, Magnetic Torquers and Hydrazine Thrusters", 255 | "payloads": "Panchromatic Camera", 256 | "launch_date": "July 12, 2010", 257 | "launch_site": "SHAR Centre Sriharikota India", 258 | "launch_vehicle": "PSLV- C15", 259 | "orbit": "630 kms, Polar Sun Synchronous", 260 | "inclination": "97.71\u00ba" 261 | }, 262 | { 263 | "name": "Oceansat-2", 264 | "id": 47, 265 | "date": "Sept 23, 2009", 266 | "launch_site": "SHAR, Sriharikota", 267 | "launch_vehicle": "PSLV - C14", 268 | "orbit": "Polar Sun Synchronous", 269 | "altitude": "720 km", 270 | "inclination": "98.28\u00b0", 271 | "period": "99.31 minutes", 272 | "local_time_of_eq._crossing": "12 noon \u00b1 10 minutes", 273 | "repetitivity_cycle": "2 days", 274 | "payloads": "OCM, SCAT and ROSA", 275 | "mass_at_lift_off": "960 kg", 276 | "power": "15 Sq.m Solar panels generating 1360W, Two 24 Ah Ni-Cd Batteries", 277 | "mission_life": "5 years" 278 | }, 279 | { 280 | "name": "RISAT-2", 281 | "id": 46, 282 | "altitude": "550 km", 283 | "inclination": "41 deg", 284 | "orbit_period": "90 minutes", 285 | "mass": "300 kg" 286 | }, 287 | { 288 | "name": "Chandrayaan-1 ", 289 | "id": 45, 290 | "mission": "Remote Sensing, Planetary Science", 291 | "weight": "1380 kg (Mass at lift off)", 292 | "onboard_power": "700 Watts", 293 | "stabilization": "3 - axis stabilised using reaction wheel and attitude control thrusters, sun sensors, star sensors, fibre optic gyros and accelerometers for attitude determination.", 294 | "launch_date": "22 October 2008", 295 | "launch_site": "SDSC, SHAR, Sriharikota", 296 | "launch_vehicle": "PSLV - C11", 297 | "orbit": "100 km x 100 km : Lunar Orbit", 298 | "mission_life": "2 years" 299 | }, 300 | { 301 | "name": "IMS-1", 302 | "id": 44, 303 | "orbit": "Polar Sun Synchronous", 304 | "altitude": "635 km", 305 | "mission_life": "2 years", 306 | "physical_dimensions": "0.604x0.980x1.129 m", 307 | "mass": "83 kg", 308 | "power": "Two deployable sun pointing solar panels generating 220 W power, 105 Ah Lithium ion battery", 309 | "telemetry,_tracking_and_command": "S-band", 310 | "attitude_and_orbit_control_system": "Star Sensor, Miniature Sun Sensors, Magnetometers Gyros, Miniature Micro Reaction Wheels, Magnetic Torquers, single 1 N Hydrazine Thruster", 311 | "data_handling": "S-band", 312 | "data_storage": "16 Gb Solid State Recorder" 313 | }, 314 | { 315 | "name": "CARTOSAT \u2013\n2A", 316 | "id": 43, 317 | "mission": "Remote Sensing", 318 | "weight": "690 Kg (Mass at lift off)", 319 | "onboard_power": "900 Watts", 320 | "stabilization": "3 \u2013 axis body stabilised using high torque reaction wheels, magnetic torquers and hydrogen thrusters", 321 | "payloads": "Panchromatic Camera", 322 | "launch_date": "28 April 2008", 323 | "launch_site": "SHAR Centre Sriharikota India", 324 | "launch_vehicle": "PSLV- C9", 325 | "orbit": "635 km, Polar Sun Synchronous", 326 | "inclination": "97.94 deg", 327 | "mission_life": "5 years" 328 | }, 329 | { 330 | "name": "INSAT-4CR", 331 | "id": 42, 332 | "mission": "Communication", 333 | "weight": "2,130 kg (Mass at Lift \u2013 off)", 334 | "onboard_power": "3000 W", 335 | "communication_payload": "12 Ku-band transponders employing 140 W Traveling Wave Tube Amplifiers (TWTA) Ku-band Beacon", 336 | "launch_date": "September 2, 2007", 337 | "launch_site": "SHAR, Sriharikota, India", 338 | "launch_vehicle": "GSLV-F04", 339 | "orbit": "Geosynchronous (74\u00b0 E)", 340 | "mission_life": "12 Years" 341 | }, 342 | { 343 | "name": "INSAT-4B", 344 | "id": 41, 345 | "mission": "Communication", 346 | "weight": "3025 kg (at Lift \u2013 off)", 347 | "onboard_power": "5859 W", 348 | "stabilization": "It uses 3 earth sensors, 2 digital sun sensors, 8 coarse analog sun sensors, 3 solar panel sun sensors and one sensor processing electronics. The wheels and wheel drive electronics were imported with indigenous wheel interface module to interface the wheel drive electronics and AOCE.", 349 | "propulsion": "The propulsion system is employing 16 thrusters, 4 each located on east, west and AY sides and 2 each on north and south sides. There is one 440 N liquid apogee motor (using Mono Methyl Hydrazine (MMH) as fuel and oxides of Nitrogen (MON3 as oxidizer) and three pressurant tanks mounted on the LAM deck.", 350 | "payload": "12 Ku band high power transponders covering Indian main land using 140W radiatively cooled TWTAs.", 351 | "launch_date": "March 12, 2007", 352 | "launch_site": "French Guiana", 353 | "launch_vehicle": "Ariane5", 354 | "orbit": "Geostationary (93.5o E Longitude)", 355 | "mission_life": "12 Years" 356 | }, 357 | { 358 | "name": "CARTOSAT-2", 359 | "id": 40, 360 | "mission": "Remote Sensing", 361 | "weight": "650 Kg", 362 | "onboard_orbit": "900 Watts", 363 | "stabilization": "3 - axis body stabilised using high torque reaction wheels, magnetic torquers and thrusters", 364 | "payloads": "Panchromatic Camera", 365 | "launch_date": "10 January 2007", 366 | "launch_site": "SHAR Centre Sriharikota India", 367 | "launch_vehicle": "PSLV- C7", 368 | "orbit": "Polar Sun Synchronous", 369 | "mission_life": "5 years" 370 | }, 371 | { 372 | "name": "INSAT-4A", 373 | "id": 39, 374 | "spacecraft_mass": "Lift off 3081 Kg Dry Mass 1386.55 Kg", 375 | "orbit": "Geostationary ( 83o E)", 376 | "power": "Solar Array to provide a power of 5922 W", 377 | "battery": "Three 70 Ah Ni H2 Batteries for eclipse support of 4264 W", 378 | "life": "12 Years", 379 | "launch_date": "December 22, 2005", 380 | "launch_vehicle": "ARIANE5-V169" 381 | }, 382 | { 383 | "name": "CARTOSAT-1", 384 | "id": 38, 385 | "launch_date": "5 May 2005", 386 | "launch_site": "SHAR Centre Sriharikota India", 387 | "launch_vehicle": "PSLV- C6", 388 | "orbit": "618 km Polar Sun Synchronous", 389 | "payloads": "PAN FORE, PAN - AFT", 390 | "orbit_period": "97 min", 391 | "number_of_orbits_per_day": "14", 392 | "local_time_of_equator_crossing": "10:30 am", 393 | "repetivity": "126 days", 394 | "revisit": "5 days", 395 | "lift-off_mass": "1560 kg", 396 | "attitude_and_orbit_control": "3-axis body stabillised using reaction wheels, Magnetic Torquers and Hydrazine Thrusters", 397 | "electrical_power": "15 sqm Solar Array generating 1100w, Two 24 Ah Ni-Cd batteries", 398 | "mission_life": "5 years" 399 | }, 400 | { 401 | "name": "HAMSAT", 402 | "id": 37, 403 | "launch_date": "May 5, 2005", 404 | "launch_site": "SHAR Centre, Sriharikota, India", 405 | "launch_vehicle": "PSLV-C6", 406 | "orbit": "Geo-synchronous, 633.355 km (average)", 407 | "payloads": "2 Transponders" 408 | }, 409 | { 410 | "name": "EDUSAT", 411 | "id": 36, 412 | "mission": "Education", 413 | "spacecraft_mass": "1950.5 kg mass (at Lift - off) 819.4 kg (Dry mass)", 414 | "onboard_power": "Total four solar panel of size 2.54 M x 1.525 M generating 2040 W (EOL), two 24 AH NiCd batteries for eclipse support", 415 | "stabilization": "3 axis body stabilised in orbit using sensors, momentum and reaction wheels, magnetic torquers and eight 10 N & 22N reaction control thrusters.", 416 | "propulsion": "440 N Liquid Apogee Motor with MON - 3 and MMH for orbit raising", 417 | "payload": "Six upper extended C - band transpondersFive lower Ku band transponders with regional beam coverage One lower Ku band National beam transponder with Indian main land coverageKu beacon12 C band high power transponders with extended coverage, covering southeast and northwest region apart from Indian main land using 63 W LTWTAs", 418 | "launch_date": "September 20, 2004", 419 | "launch_site": "SHAR, Sriharikota, India", 420 | "launch_vehicle": "GSLV-F01", 421 | "orbit": "Geostationary (74oE longitude)", 422 | "mission_life": "7 Years (minimum)" 423 | }, 424 | { 425 | "name": "IRS-P6 / RESOURCESAT-1", 426 | "id": 35, 427 | "launch_date": "October 17, 2003", 428 | "launch_site": "SHAR, Sriharikota", 429 | "launch_vehicle": "PSLV-C5", 430 | "payloads": "LISS-4, LISS-3, AWiFS-A, AWiFS-B", 431 | "orbit": "Polar Sun Synchronous", 432 | "orbit_height": "817 km", 433 | "orbit_inclination": "98.7o", 434 | "orbit_period": "101.35 min", 435 | "number_of_orbits_per_day": "14", 436 | "local_time_of_equator_crossing": "10:30 am", 437 | "repetivity_(liss-3)": "24 days", 438 | "revisit": "5 days", 439 | "lift-off_mass": "1360 kg", 440 | "attitude_and_orbit_control": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", 441 | "power": "Solar Array generating 1250 W, Two 24 Ah Ni-Cd batteries", 442 | "mission_life": "5 years" 443 | }, 444 | { 445 | "name": "INSAT-3E", 446 | "id": 34, 447 | "mission": "Communication", 448 | "spacecraft_mass": "2,775 kg (Mass at Lift-off) 1218 kg (Dry mass)", 449 | "launch_date": "September 28, 2003", 450 | "launch_site": "French Guyana", 451 | "launch_vehicle": "Ariane5-V162", 452 | "orbit": "Geostationary Orbit" 453 | }, 454 | { 455 | "name": "GSAT-2", 456 | "id": 33, 457 | "mission": "Communication", 458 | "weight": "1800 kg", 459 | "launch_date": "May 8, 2003", 460 | "launch_site": "SHAR, Sriharikota, India", 461 | "launch_vehicle": "GSLV\u2013D2", 462 | "orbit": "Geostationary orbit (48oE longitude)" 463 | }, 464 | { 465 | "name": "INSAT-3A", 466 | "id": 32, 467 | "mission": "Telecommunication, broadcasting and Meteorology", 468 | "spacecraft_mass": "2,950 kg (Mass at Lift\u2013off) 1,348 kg (Dry mass)", 469 | "onboard_power": "3,100 W", 470 | "stabilization": "3 \u2013 axis body stabilised in orbit using momentum and reaction wheels, solar flaps, magnetic torquers and eight 10 N and eight 22 N reaction control thrusters", 471 | "propulsion": "440 N Liquid Apogee Motor with MON-3 (Mixed Oxides of Nitrogen) and MMH (Mono Methyl Hydrazine) for orbit raising", 472 | "payload": "Communication payload- 12 C \u2013 band transponders, - 6 upper extended C band transponders - 6 Ku band transponders - 1 Satellite Aided Search & Rescue transponders Meteorological payload- Very High Resolution Radiometer (VHRR) with 2 km resolution in visible band and 8 km resolution in infrared and water vapour band- Charged Coupled Device (CCD) camera operating in visible, near infrared and shortwave infrared band with 1 km resolution.- Data Relay Transponders (DRT)", 473 | "launch_date": "April 10, 2003", 474 | "launch_site": "French Guyana", 475 | "launch_vehicle": "Ariane5-V160", 476 | "orbit": "Geostationary (93.5o E longitude)", 477 | "mission_life": "12 Years" 478 | }, 479 | { 480 | "name": "KALPANA-1", 481 | "id": 31, 482 | "mission": "7 Years", 483 | "spacecraft_mass": "1060 kg mass (at Lift \u2013 off) 498 kg (Dry mass)", 484 | "onboard_power": "550 W", 485 | "payload": "Very High Resolution Radiometer (VHRR) Data Relay Transponder (DRT)", 486 | "launch_date": "12 September 2002", 487 | "launch_site": "SHAR, Sriharikota", 488 | "launch_vehicle": "PSLV \u2013 C4", 489 | "orbit": "Geostationary (74 deg East longitude)" 490 | }, 491 | { 492 | "name": "INSAT-3C", 493 | "id": 30, 494 | "mission": "Communication, broadcasting and Meteorology", 495 | "spacecraft_mass": "2,650 kg (Mass at Lift - off) 1218 kg (Dry mass)", 496 | "onboard_power": "2765 W", 497 | "propulsion": "Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank.", 498 | "payload": "24 C band transponders 6 Extended C - band Transponders 2 S - band Transponders", 499 | "launch_date": "January 24, 2002", 500 | "launch_site": "French Guyana", 501 | "launch_vehicle": "Ariane5-V147", 502 | "orbit": "Geostationary (74o longitude)", 503 | "mission_life": "Very long" 504 | }, 505 | { 506 | "name": "The Technology Experiment Satellite\n(TES)", 507 | "id": 29, 508 | "launch_date": "22 October 2001", 509 | "launch_site": "SHAR Centre Sriharikota India", 510 | "launch_vehicle": "PSLV- C3", 511 | "orbit": "572 km Sun Synchronous", 512 | "payloads": "PAN" 513 | }, 514 | { 515 | "name": "PSLV-C3 / TES", 516 | "id": 28, 517 | "launch_date": "22 October 2001", 518 | "launch_site": "SHAR Centre Sriharikota India", 519 | "launch_vehicle": "PSLV- C3", 520 | "orbit": "572 km Sun Synchronous", 521 | "payloads": "PAN" 522 | }, 523 | { 524 | "name": "GSAT-1", 525 | "id": 27, 526 | "mission": "Communication", 527 | "weight": "1530 kg", 528 | "launch_date": "18 April 2001", 529 | "launch_site": "SHAR, Sriharikota", 530 | "launch_vehicle": "GSLV \u2013 D1", 531 | "orbit": "Sun Synchronous Geo stationary orbit" 532 | }, 533 | { 534 | "name": "INSAT-3B", 535 | "id": 26, 536 | "mission": "Very long", 537 | "spacecraft_mass": "2,070 (Mass at Lift \u2013 off) 970 kg (Dry mass)", 538 | "onboard_power": "1,712 W", 539 | "stabilization": "3 \u2013 axis body stabilised biased momentum control system using earth sensors, sun sensors, inertial reference unit, momentum / reaction wheels, magnetic torquers and unified bi-propellant thrusters.", 540 | "propulsion": "Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank.", 541 | "payload": "12 extended C \u2013 band Transponders Five Ku band Transponders Mobile Satellite Services (MSS)", 542 | "launch_date": "22nd March 2000", 543 | "launch_site": "French Guyana", 544 | "launch_vehicle": "Ariane -5", 545 | "orbit": "Geostationary (83 deg East longitude)", 546 | "inclination": "7 deg" 547 | }, 548 | { 549 | "name": "Oceansat(IRS-P4)", 550 | "id": 25, 551 | "launch_date": "May 26, 1999", 552 | "launch_site": "SHAR, Sriharikota", 553 | "launch_vehicle": "PSLV - C2", 554 | "orbit": "Polar Sun Synchronous", 555 | "altitude": "720 km", 556 | "inclination": "98.28 deg", 557 | "period": "99.31 min", 558 | "local_time_of_eq._crossing": "12 noon", 559 | "repetitivity_cycle": "2 days", 560 | "size": "2.8m x 1.98m x 2.57m", 561 | "mass_at_lift_off": "1050 kg", 562 | "length_when_fully_deployed": "11.67 m", 563 | "attitude_and_orbit_control": "3-axis body-stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", 564 | "power": "9.6 Sq.m Solar Array generating 750w Two 21 Ah Ni-Cd Batteries", 565 | "mission_completed_on": "August 8, 2010" 566 | }, 567 | { 568 | "name": "INSAT-2E", 569 | "id": 24, 570 | "mission": "Communication and Meteorology", 571 | "spacecraft_mass": "2,550 kg (Mass at Lift-off) 1150 kg (Dry mass)", 572 | "launch_date": "03 April 1999", 573 | "launch_site": "French Guyana", 574 | "launch_vehicle": "Ariane \u2013 42P", 575 | "orbit": "Geosynchronous (83 deg east longitude)" 576 | }, 577 | { 578 | "name": "IRS-1D", 579 | "id": 23, 580 | "mission": "Operational Remote Sensing", 581 | "weight": "1250 kg", 582 | "onboard_power": "809 Watts (generated by 9.6 sq.metres Solar Panels)", 583 | "communication": "S-band, X-band", 584 | "stabilization": "Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer", 585 | "rcs": "Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters", 586 | "payload": "Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)", 587 | "onboard_tape_recorder": "Storage Capacity : 62 G bits", 588 | "launch_date": "December 28, 1995", 589 | "launch_site": "Baikanur Cosmodrome Kazakhstan", 590 | "launch_vehicle": "Molniya", 591 | "orbit": "817 km Polar Sun-synchronous", 592 | "inclination": "98.69o", 593 | "repetivity": "24 days", 594 | "local_time": "10.30 a.m", 595 | "mission_completed_on": "September 21, 2007" 596 | }, 597 | { 598 | "name": "INSAT-2D", 599 | "id": 22, 600 | "mission": "Communication", 601 | "weight": "2079 kg with propellants, 995 kg dry weight", 602 | "onboard_power": "1650 Watts", 603 | "communication": "C, extended C, S and Ku bands", 604 | "stabilization": "Three axis stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", 605 | "propulsion": "Integrated bipropellan stystem ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM.", 606 | "payload": "Transponders: 16C-band / extended C-band transponders (forFSS), 2 high power C-band transponders (for BSS), 1S-band transponder (for BSS),1C/S-band mobile communication transponder, 3 Ku-band transponders", 607 | "launch_date": "June 4, 1997", 608 | "launch_site": "French Guyana", 609 | "launch_vehicle": "Arianev 4", 610 | "orbit": "Geostationary 93,.5deg.E", 611 | "inclination": "0 deg." 612 | }, 613 | { 614 | "name": "IRS-P3", 615 | "id": 21, 616 | "mission": "Remote sensing of earth's natural resources. Study of X-ray Astronomy. Periodic calibration of PSLV tracking radar located at tracking stations.", 617 | "weight": "920 kg", 618 | "onboard_power": "817 Watts", 619 | "communication": "S-band", 620 | "stabilization": "Three axis body stabilized", 621 | "rcs": "Combinations of bladder type and surface tension type mass expulsion monopropellant hydrazine system", 622 | "payload": "WideField Sensor (WiFS), Modular Opto - electronic Scanner (MOS), Indian X-ray Astronomy Experiment (IXAE), C-band transponder(CBT)", 623 | "launch_date": "March 21, 1996", 624 | "launch_site": "SHAR Centre, Sriharikota, India", 625 | "launch_vehicle": "PSLV-D3", 626 | "orbit": "817 km. Circular polar sun-synchronous with equatorial crossing at 10.30 am (descending node)", 627 | "inclination": "98.68o", 628 | "repetivity": "WiFS : 5 days", 629 | "mission_completed_during": "January 2006" 630 | }, 631 | { 632 | "name": "IRS-1C", 633 | "id": 20, 634 | "mission": "Operational Remote Sensing", 635 | "weight": "1250 kg", 636 | "onboard_power": "809 Watts (generated by 9.6 sq.metres Solar Panels)", 637 | "communication": "S-band, X-band", 638 | "stabilization": "Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer", 639 | "rcs": "Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters", 640 | "payload": "Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)", 641 | "onboard_tape_recorder": "Storage Capacity : 62 G bits", 642 | "launch_date": "December 28, 1995", 643 | "launch_site": "Baikanur Cosmodrome Kazakhstan", 644 | "launch_vehicle": "Molniya", 645 | "orbit": "817 km Polar Sun-synchronous", 646 | "inclination": "98.69o", 647 | "repetivity": "24 days", 648 | "local_time": "10.30 a.m", 649 | "mission_completed_on": "September 21, 2007" 650 | }, 651 | { 652 | "name": "INSAT-2C", 653 | "id": 19, 654 | "mission": "Communication", 655 | "weight": "2106 kg with propellants 946 kg dry weight", 656 | "onboard_power": "1320 Watts", 657 | "communication": "C extended C, S and Ku bands", 658 | "stabilization": "Three axis stabilized with two Momen'tum Wheels & one Reaction Wheel, Magnetic torquers", 659 | "propulsion": "Integrated bipropellant system ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM.", 660 | "payload": "Transponders: 16C-band / extended C-band transponders (for FSS), 2 high power C-band transponders (for BSS), 1S-band transponder (for BSS),1C/S-band mobile communication transponder, 3 Ku-band transponders", 661 | "launch_date": "December 7, 1995", 662 | "launch_site": "French Guyana", 663 | "launch_vehicle": "Ariane4", 664 | "orbit": "Geostationary 93.5 deg E", 665 | "inclination": "0 deg.", 666 | "mission_life": "Seven years(nominal)", 667 | "orbit_life": "Very Long" 668 | }, 669 | { 670 | "name": "IRS-P2", 671 | "id": 18, 672 | "mission": "Operational Remote Sensing", 673 | "weight": "804 kg", 674 | "onboard_power": "510 Watts", 675 | "communication": "S-band, X-band", 676 | "stabilization": "Three axis body stabilized with 4 Reaction Wheels, Magnetic torquers", 677 | "rcs": "4 tanks containing Monopropellant Hydrazine based with sixteen 1 N thrusters and one 11 N thruster", 678 | "payload": "Two solid state Push Broom Cameras operating in four spectral bands in the visible and near-IR range using CCD arrays: LlSS-2A & LlSS-2B (Resolution: 32.74 metre)", 679 | "launch_date": "October 15, 1994", 680 | "launch_site": "SHAR Centre, Sriharikota, India", 681 | "launch_vehicle": "PSLV-D2", 682 | "inclination": "98.68o", 683 | "repetivity": "24 days", 684 | "mission_completed_on": "1997" 685 | }, 686 | { 687 | "name": "SROSS-C2", 688 | "id": 17, 689 | "mission": "Experimental", 690 | "weight": "115 kg", 691 | "onboard_power": "45 Watts", 692 | "communication": "S-band and VHF", 693 | "rcs": "Monopropellant Hydrazine based with six 1 Newton thrusters", 694 | "payload": "Gamma Ray Burst (GRB) & Retarding Potential Analyser (RPA)", 695 | "launch_date": "May 04,1994", 696 | "launch_site": "SHAR Centre,Sriharikota,India", 697 | "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", 698 | "orbit": "430 x 600 km.", 699 | "inclination": "45 deg.", 700 | "mission_life": "Six months (nominal)", 701 | "orbital_life": "Two years (nominal)" 702 | }, 703 | { 704 | "name": "IRS-1E", 705 | "id": 16, 706 | "mission": "Operational Remote Sensing", 707 | "weight": "846 kg", 708 | "onboard_power": "415 Watts", 709 | "communication": "S-band (TIC) & VHF", 710 | "stabilization": "Three axis body stabilized ( zero momentum) with 4 Reaction Wheels, Magnetic torquers", 711 | "rcs": "Monopropellant Hydrazine based RCS with 1 Newton thrusters ( 16 Nos.)", 712 | "payload": "LlSS-1 MEOSS (Mono-ocula Erlectro Optic Stereo Scanner)", 713 | "launch_date": "September 20, 1993", 714 | "launch_site": "SHAR Centre, Sriharikota, India", 715 | "launch_vehicle": "PSLV-D1", 716 | "orbit": "Not realised" 717 | }, 718 | { 719 | "name": "INSAT-2B", 720 | "id": 15, 721 | "mission": "Multipurpose Communication, meteorology and Satellite based search and rescue", 722 | "weight": "1906 kg with propellant 916 kg dry weight", 723 | "onboard_power": "One KW approx.", 724 | "communication": "C, extended C and S band", 725 | "stabilization": "Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", 726 | "propulsion": "Integrated bipropellant system ( MMH and N2 04) With sixteen 22 N thrusters and 440 N LAM.", 727 | "payload": "Transponders: 12C-band (for FSS),6 ext. C-band (for FSS) 2S-band (for BSS),1Data relay transponder (for met.data), 1 transponder for research and rescue, Very High Resolution radiometer (VHRR) for meteorological observation with 2 km resolution in the visible and 8 km resolution in the IR band", 728 | "launch_date": "July 23, 1993", 729 | "launch_site": "French Guyana", 730 | "launch_vehicle": "Ariane 4", 731 | "orbit": "Geostationary 93.5o E", 732 | "inclination": "0o", 733 | "mission_life": "Seven years(nominal)", 734 | "orbit_life": "Very Long" 735 | }, 736 | { 737 | "name": "INSAT-2A", 738 | "id": 14, 739 | "mission": "Multipurpose Communication, meteorology and Satellite based search and rescue", 740 | "weight": "1906 kg with propellant 916 kg dry weight", 741 | "onboard_power": "One KW approx", 742 | "communication": "C, extended C and S band", 743 | "stabilization": "Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", 744 | "propulsion": "Integrated bipropellant system (MMH and N2 04) With sixteen 22 N thrusters and 440 LAM.", 745 | "payload": "Transponders: 12 C-band (for FSS),6 ext. C-band (for FSS) 2 S-band (for BSS),1Data relay transponder (for met.data), 1 transponder for research and rescue, Very High Resolution radiometer (VHRR) for meteorological observation with 2 km resolution in the visible and 8 km resolution in the IR band", 746 | "launch_date": "July 10,1992", 747 | "launch_site": "French Guyana", 748 | "launch_vehicle": "Ariane 4", 749 | "orbit": "Geostationary 74oE longitude", 750 | "inclination": "0o", 751 | "mission_life": "Seven years(nominal)", 752 | "orbit_life": "Very Long" 753 | }, 754 | { 755 | "name": "SROSS-C\n", 756 | "id": 13, 757 | "mission": "Experimental", 758 | "weight": "106.1 kg", 759 | "onboard_power": "45 Watts", 760 | "communication": "S-band and VHF", 761 | "stabilization": "Spin stabilized with a Magnetic Torquer and Magnetic Bias Control", 762 | "payload": "Gamma Ray Burst (GRB) experiment & Retarding Potential Analyser (RPA) experiment", 763 | "launch_date": "May 20,1992", 764 | "launch_site": "SHAR Centre, Sriharikota, India", 765 | "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", 766 | "orbit": "267 x 391 km", 767 | "mission_life": "Two months (Re-entered on July15,1992)" 768 | }, 769 | { 770 | "name": "IRS-1B", 771 | "id": 12, 772 | "mission": "Operational Remote Sensing", 773 | "weight": "975 kg", 774 | "onboard_power": "600 Watts", 775 | "communication": "S-band, X-band and VHF (commanding only)", 776 | "stabilization": "Three axis body stabilized (zero momentum) with 4 Reactions Wheels, Magnetic torquers", 777 | "rcs": "Monopropellant Hydrazine based with sixteen 1 Newton thrusters", 778 | "payload": "Three solid state Push Broom Cameras LlSS-1 (72.5 metre resolution), LlSS-2A and LlSS-2B (36.25 metre resolution)", 779 | "launch_date": "August 29, 1991", 780 | "launch_site": "Baikanur Cosmodrome Kazakhstan", 781 | "launch_vehicle": "Vostok", 782 | "orbit": "904 km Polar Sun Synchronous", 783 | "inclination": "99.08o", 784 | "repetivity": "22 days", 785 | "local_time": "10.30 a.m. (descending node)", 786 | "mission_completed_on": "December 20, 2003" 787 | }, 788 | { 789 | "name": "SROSS-2", 790 | "id": 11, 791 | "mission": "Experimental", 792 | "weight": "150 kg", 793 | "onboard_power": "90 Watts", 794 | "communication": "S-band and VHF", 795 | "stabilization": "Three axis body stabilized (biased momentum) with a MomentumWheel and Magnetic Torquer", 796 | "propulsion_system": "Monopropellant (Hydrazine based) Reaction Control System", 797 | "payload": "Gamma Ray Burst (GRB) payload and Mono PayloadOcular Electro-Optic Stereo Scanner (MEOSS) built by DLR, Germany", 798 | "launch_date": "July 13, 1988", 799 | "launch_site": "SHAR Centre, Sriharikota, India", 800 | "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", 801 | "orbit": "Not realised" 802 | }, 803 | { 804 | "name": "IRS-1A", 805 | "id": 10, 806 | "mission": "Operational Remote Sensing", 807 | "weight": "975 kg", 808 | "onboard_power": "600 Watts", 809 | "communication": "S-band, X-band and VHF(commanding only)", 810 | "stabilization": "Three axis body stabilized (zero momentum)with 4 Reactions Wheels, Magnetic torquers", 811 | "rcs": "Monopropellant Hydrazine based with sixteen 1 Newton thrusters", 812 | "payload": "Three solid state Push Broom Cameras: LISS-1(72.5 metre resolution),LISS-2A and LISS-2B (36.25 metre resolution)", 813 | "launch_date": "March 17, 1988", 814 | "launch_site": "Baikanur Cosmodrome Kazakhstan", 815 | "launch_vehicle": "Vostok", 816 | "orbit": "904 km Polar Sun-synchronous", 817 | "inclination": "99.08o", 818 | "repetivity": "22 days (307 orbits)", 819 | "local_time": "10.30 a.m. (descending node)", 820 | "mission_completed_during": "July 1996" 821 | }, 822 | { 823 | "name": "SROSS-1\n", 824 | "id": 9, 825 | "mission": "Experimental", 826 | "weight": "150 kg", 827 | "onboard_power": "90 Watts", 828 | "communication": "S-band and VHF", 829 | "stabilization": "Three axis body stabilized (biased momentum) with a Momentum Wheel and Magnetic Torquer", 830 | "propulsion_system": "Monopropellant (Hydrazine based) Reaction control system", 831 | "payload": "Launch Vehicle Monitoring Platform(LVMP), Gamma Ray Burst (GRB) payload and Corner Cube Retro Reflector (CCRR) for laser tracking", 832 | "launch_date": "March 24, 1987", 833 | "launch_site": "SHAR Centre, Sriharikota, India", 834 | "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", 835 | "orbital_life": "Not realised" 836 | }, 837 | { 838 | "name": "Rohini Satellite RS-D2", 839 | "id": 8, 840 | "mission": "Experimental", 841 | "weight": "41.5 kg", 842 | "onboard_power": "16 Watts", 843 | "communication": "VHF band", 844 | "stabilization": "Spin stabilized", 845 | "payload": "Smart sensor (remote sensing payload),L-band beacon", 846 | "launch_date": "April 17, 1983", 847 | "launch_site": "SHAR Centre, Sriharikota, India", 848 | "launch_vehicle": "SLV-3", 849 | "orbit": "371 x 861 km", 850 | "inclination": "46o", 851 | "mission_life": "17 months", 852 | "orbital_life": "Seven years (Re-entered on April 19, 1990)" 853 | }, 854 | { 855 | "name": "Bhaskara-II", 856 | "id": 7, 857 | "mission": "Experimental Remote Sensing", 858 | "weight": "444 kg", 859 | "onboard_power": "47 Watts", 860 | "communication": "VHF band", 861 | "stabilization": "Spin stabilized (spin axis controlled)", 862 | "payload": "TV cameras, three band Microwave Radiometer (SAMIR)", 863 | "launch_date": "Nov 20, 1981", 864 | "launch_site": "Volgograd Launch Station (presently in Russia)", 865 | "launch_vehicle": "C-1 Intercosmos", 866 | "orbit": "541 x 557 km", 867 | "inclination": "50.7o", 868 | "mission_life": "One year (nominal)", 869 | "orbital_life": "About 10 years ( Re-entered in 1991 )" 870 | }, 871 | { 872 | "name": "APPLE", 873 | "id": 6, 874 | "mission": "Experimental geostationary communication", 875 | "weight": "670 kg", 876 | "onboard_power": "210 Watts", 877 | "communication": "VHF and C-band", 878 | "stabilization": "Three axis stabilized (biased momentum) with Momentum Wheels, Torquers & Hydrazine based Reaction control system", 879 | "payload": "C - band transponders (Two)", 880 | "launch_date": "June19,1981", 881 | "launch_site": "Kourou (CSG), French Guyana", 882 | "launch_vehicle": "Ariane -1(V-3)", 883 | "orbit": "Geosynchronous (102 deg. E longitude, over Indonesia)", 884 | "inclination": "Near zero", 885 | "mission_life": "Two years" 886 | }, 887 | { 888 | "name": "Rohini Satellite RS-D1", 889 | "id": 5, 890 | "mission": "Experimental", 891 | "weight": "38 kg", 892 | "onboard_power": "16 Watts", 893 | "communication": "VHF band", 894 | "stabilization": "Spin stabilized", 895 | "payload": "Landmark Tracker ( remote sensing payload)", 896 | "launch_date": "May 31,1981", 897 | "launch_site": "SHAR Centre, Sriharikota, India", 898 | "launch_vehicle": "SLV-3", 899 | "orbit": "186 x 418 km (achieved)", 900 | "inclination": "46 deg", 901 | "orbital_life": "Nine days" 902 | }, 903 | { 904 | "name": "Rohini Satellite RS-1", 905 | "id": 4, 906 | "mission": "Experimental", 907 | "weight": "35 kg", 908 | "onboard_power": "16 Watts", 909 | "communication": "VHF band", 910 | "stabilization": "Spin stabilized", 911 | "payload": "Launch vehicle monitoring instruments", 912 | "launch_date": "July 18,1980", 913 | "launch_site": "SHAR Centre, Sriharikota, India", 914 | "launch_vehicle": "SLV-3", 915 | "orbit": "305 x 919 km", 916 | "inclination": "44.7 deg.", 917 | "mission_life": "1.2 years", 918 | "orbital_life": "20 months" 919 | }, 920 | { 921 | "name": "Rohini Technology Payload (RTP)", 922 | "id": 3, 923 | "mission": "Experimental", 924 | "weight": "35 kg", 925 | "onboard_power": "3 Watts", 926 | "communication": "VHF band", 927 | "stabilization": "Spin stabilized (spin axis controlled)", 928 | "payload": "Launch vehicle monitoring instruments", 929 | "launch_date": "August 10,1979", 930 | "launch_site": "SHAR Centre, Sriharikota, India", 931 | "launch_vehicle": "SLV-3", 932 | "orbit": "Not achieved" 933 | }, 934 | { 935 | "name": "Bhaskara-I", 936 | "id": 2, 937 | "mission": "Experimental Remote Sensing", 938 | "weight": "442 kg", 939 | "onboard_power": "47 Watts", 940 | "communication": "VHF band", 941 | "stabilization": "Spin stabilized (spin axis controlled)", 942 | "payload": "TVcameras, three band Microwave Radiometer (SAMIR)", 943 | "launch_date": "Jun 07,1979", 944 | "launch_site": "Volgograd Launch Station (presently in Russia)", 945 | "launch_vehicle": "C-1Intercosmos", 946 | "orbit": "519 x 541 km", 947 | "inclination": "50.6 deg", 948 | "mission_life": "One year (nominal)", 949 | "orbital_life": "About 10 years ( Re-entered in 1989 )" 950 | }, 951 | { 952 | "name": "Aryabhata ", 953 | "id": 1, 954 | "mission": "Scientific/ Experimental", 955 | "weight": "360 kg", 956 | "on_board_power": "46 Watts", 957 | "communication": "VHF band", 958 | "stabilization": "Spinstabilize", 959 | "payload": "X-ray Astronomy Aeronomy & Solar Physics", 960 | "launch_date": "April 19, 1975", 961 | "launch_site": "Volgograd Launch Station (presently in Russia)", 962 | "launch_vehicle": "C-1 Intercosmos", 963 | "orbit": "563 x 619 km", 964 | "inclination": "50.7 deg", 965 | "mission_life": "6 months(nominal), Spacecraft mainframe active till March,1981", 966 | "orbital_life": "Nearly seventeen years (Re-entered on February 10,1992)" 967 | } 968 | ] 969 | -------------------------------------------------------------------------------- /isro_scrape/scraping.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": 221, 6 | "metadata": {}, 7 | "outputs": [], 8 | "source": [ 9 | "#essential packages \n", 10 | "import requests\n", 11 | "from bs4 import BeautifulSoup\n", 12 | "import json" 13 | ] 14 | }, 15 | { 16 | "cell_type": "code", 17 | "execution_count": 222, 18 | "metadata": {}, 19 | "outputs": [], 20 | "source": [ 21 | "# URL of the file containing the results of the analysis\n", 22 | "# access the web content \n", 23 | "URL = \"https://www.isro.gov.in/SpacecraftMissions.html#\"\n", 24 | "response = requests.get(URL)\n" 25 | ] 26 | }, 27 | { 28 | "cell_type": "code", 29 | "execution_count": 223, 30 | "metadata": {}, 31 | "outputs": [], 32 | "source": [ 33 | "soup = BeautifulSoup(response.text,'lxml')\n", 34 | "spacecrafts = soup.find_all(\"a\", {\"class\":\"out\"})\n" 35 | ] 36 | }, 37 | { 38 | "cell_type": "code", 39 | "execution_count": 232, 40 | "metadata": {}, 41 | "outputs": [ 42 | { 43 | "name": "stdout", 44 | "output_type": "stream", 45 | "text": [ 46 | "[\n", 47 | " {\n", 48 | " \"name\": \"RISAT-2BR1\",\n", 49 | " \"id\": 1,\n", 50 | " \"lift-off_weight\": \"628 kg\",\n", 51 | " \"altitude\": \"576 km\",\n", 52 | " \"payload\": \"X-Band Radar\",\n", 53 | " \"inclination\": \"37 deg\",\n", 54 | " \"mission_life\": \"5 years\"\n", 55 | " },\n", 56 | " {\n", 57 | " \"name\": \"Cartosat-3\",\n", 58 | " \"id\": 1,\n", 59 | " \"mean________________________________________________________________altitude\": \"509 km\",\n", 60 | " \"mean_inclination\": \"97.5\\u00b0\",\n", 61 | " \"overall_mass\": \"1625 kg\",\n", 62 | " \"power_generation\": \"2000W\",\n", 63 | " \"mission_life\": \"5 years\"\n", 64 | " },\n", 65 | " {\n", 66 | " \"name\": \"GSAT-15\",\n", 67 | " \"id\": 1,\n", 68 | " \"mission\": \"Communication and Satellite Navigation\",\n", 69 | " \"weight\": \"3164 kg (Mass at Lift \\u2013 off) 1440 kg (Dry Mass)\",\n", 70 | " \"power\": \"Solar array providing 6200 Watts and Three 100 AH Lithium-Ion batteries\",\n", 71 | " \"propulsion\": \"Bi- propellant System\",\n", 72 | " \"launch____________________________________________________________date\": \"November 11, 2015\",\n", 73 | " \"launch____________________________________________________________site\": \"Kourou, French Guiana\",\n", 74 | " \"launch____________________________________________________________vehicle\": \"Ariane-5 VA-227\",\n", 75 | " \"orbit\": \"Geostationary (93.5\\u00b0 East longitude) Co-located with INSAT-3A and INSAT-4B\",\n", 76 | " \"mission____________________________________________________________life\": \"12 Years\"\n", 77 | " },\n", 78 | " {\n", 79 | " \"name\": \"GSAT-6\",\n", 80 | " \"id\": 1,\n", 81 | " \"physical____________________________________________________________properties\": \"Lift off Mass : 2117 kg Main Structure : I-2K Overall size(m) : 2.1 x 2.5 x 4.1\",\n", 82 | " \"power\": \"Generated power 3100 W\",\n", 83 | " \"aocs\": \"Momentum biased 3-axis stabilised\",\n", 84 | " \"antennas\": \"One 0.8 m (fixed) and one 6 m unfurlable antenna (transmit and receive)\",\n", 85 | " \"communication____________________________________________________________payloads\": \"i. S-band payload with five spot beams covering India for user links ii. C-band payload with one beam covering India for hub links S-band payload uses 6 m unfurlable antenna and C-band uses 0.8 m antenna.\",\n", 86 | " \"mission_life\": \"9 years\"\n", 87 | " },\n", 88 | " {\n", 89 | " \"name\": \"IRNSS-1B\",\n", 90 | " \"id\": 1,\n", 91 | " \"off_mass\": \"1432 kg\",\n", 92 | " \"physical_dimensions\": \"1.58 metre x 1.50 metre x 1.50 metre\",\n", 93 | " \"orbit\": \"Geosynchronous, at 55 deg East longitude with 29 deg inclination\",\n", 94 | " \"power\": \"Two solar panels generating 1660 W, one lithium-ion battery of 90 Ampere-Hour capacity\",\n", 95 | " \"propulsion\": \"440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters\",\n", 96 | " \"control_system\": \"Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators\",\n", 97 | " \"mission_life\": \"10 years\",\n", 98 | " \"launch_date\": \"Apr 04, 2014\",\n", 99 | " \"launch_site\": \"SDSC SHAR Centre, Sriharikota, India\",\n", 100 | " \"launch_vehicle\": \"PSLV - C24\"\n", 101 | " },\n", 102 | " {\n", 103 | " \"name\": \"GSAT-14\",\n", 104 | " \"id\": 1,\n", 105 | " \"mass_at_lift-off\": \"1982 kg\",\n", 106 | " \"overall_size_(m)\": \"2.0 X 2.0 X 3.6\",\n", 107 | " \"power\": \"2600 W\",\n", 108 | " \"attitude_and_orbit_control_system_(aocs)\": \"Momentum biased 3-axis stabilized mode\",\n", 109 | " \"propulsion_system\": \"Bi propellant-Mono Methyl Hydrazine and Mixed Oxides of Nitrogen (MON-3)\",\n", 110 | " \"antennae\": \"One 2m and one 2.2 m single shell shaped reflector Antennae (transmit and receive)\",\n", 111 | " \"launch_date\": \"January 05, 2014\",\n", 112 | " \"launch_site\": \"SDSC, SHAR\",\n", 113 | " \"launch_vehicle\": \"GSLV-D5\",\n", 114 | " \"orbit\": \"74 deg East longitude in geostationary orbit\",\n", 115 | " \"mission_life\": \"12 Years\"\n", 116 | " },\n", 117 | " {\n", 118 | " \"name\": \"GSAT-7\",\n", 119 | " \"id\": 1,\n", 120 | " \"mission\": \"Communication\",\n", 121 | " \"mass_at_lift-off\": \"2650 kg\",\n", 122 | " \"physical_dimensions\": \"3.1 m X 1.7 m X 2.0 m\",\n", 123 | " \"power\": \"3,000 W (end of life)\",\n", 124 | " \"satbilisation\": \"3-axis stabilized\",\n", 125 | " \"launch_date\": \"August 30, 2013\",\n", 126 | " \"launch_site\": \"Kourou, French Guiana\",\n", 127 | " \"launch_vehicle\": \"Ariane-5 VA-215\",\n", 128 | " \"orbit\": \"74oE Geo Stationary\",\n", 129 | " \"mission_life\": \"> 7 Years\"\n", 130 | " },\n", 131 | " {\n", 132 | " \"name\": \"INSAT-3D\",\n", 133 | " \"id\": 1,\n", 134 | " \"mission\": \"Meteorological and Search & Rescue Services\",\n", 135 | " \"mass_at_lift-off\": \"2060 kg\",\n", 136 | " \"power\": \"Solar panel generating 1164 W Two 18 Ah Ni-Cd batteries\",\n", 137 | " \"physical_dimensions\": \"2.4m x 1.6m x 1.5m\",\n", 138 | " \"propulsion\": \"440 Newton Liquid Apogee Motor (LAM) and twelve 22 Newton thrusters with Mono Methyl Hydrazine (MMH) as fuel and mixed Oxides of Nitrogen (MON-3) as oxidizer\",\n", 139 | " \"stabilisation\": \"3-asix body stabilized in orbit using Sun Sensors, Star Sensors, gyroscopes, Momentum and Reaction Wheels, Magnetic Torquers and thrusters\",\n", 140 | " \"antennae\": \"0.9m and 1.0m body mounted antennas\",\n", 141 | " \"launch_date\": \"July 26, 2013\",\n", 142 | " \"launch_site\": \"Kourou, French Guiana\",\n", 143 | " \"launch_vehicle\": \"Ariane-5 VA-214\",\n", 144 | " \"orbit\": \"Geostationary, 82 deg E Longitude\",\n", 145 | " \"mission_life\": \"7 Years\"\n", 146 | " },\n", 147 | " {\n", 148 | " \"name\": \"IRNSS-1A\",\n", 149 | " \"id\": 1,\n", 150 | " \"lift-off_mass\": \"1425 kg\",\n", 151 | " \"physical_dimensions\": \"1.58 metre x 1.50 metre x 1.50 metre\",\n", 152 | " \"orbit\": \"Geosynchronous, at 55 deg East longitude with 29 deg inclination\",\n", 153 | " \"power\": \"Two solar panels generating 1660 W, one lithium-ion battery of 90 Ampere-Hour capacity\",\n", 154 | " \"propulsion\": \"440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters\",\n", 155 | " \"control_system\": \"Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators\",\n", 156 | " \"mission_life\": \"10 years\",\n", 157 | " \"launch_date\": \"Jul 01, 2013\",\n", 158 | " \"launch_site\": \"SDSC SHAR Centre, Sriharikota, India\",\n", 159 | " \"launch_vehicle\": \"PSLV - C22\"\n", 160 | " },\n", 161 | " {\n", 162 | " \"name\": \"SARAL\",\n", 163 | " \"id\": 1,\n", 164 | " \"lift-off_mass\": \"407 kg\",\n", 165 | " \"orbit\": \"781 km polar Sun synchronous\",\n", 166 | " \"sensors\": \"4 PI sun sensors, magnetometer, star sensors and miniaturised gyro based Inertial Reference Unit\",\n", 167 | " \"orbit_inclination\": \"98.538o\",\n", 168 | " \"local_time_of_equator\": \"18:00 hours crossing\",\n", 169 | " \"power\": \"Solar Array generating 906 W and 46.8 Ampere-hour Lithium-ion battery\",\n", 170 | " \"onboard_data_storage\": \"32 Gb\",\n", 171 | " \"attitude_and_orbit_control\": \"3-axis stabilisation with reaction wheels, Hydrazine Control System based thrusters\",\n", 172 | " \"mission_life\": \"5 years\",\n", 173 | " \"launch_date\": \"Feb 25, 2013\",\n", 174 | " \"launch_site\": \"SDSC SHAR Centre, Sriharikota, India\",\n", 175 | " \"launch_vehicle\": \"PSLV - C20\"\n", 176 | " },\n", 177 | " {\n", 178 | " \"name\": \"GSAT-10\",\n", 179 | " \"id\": 1,\n", 180 | " \"mission\": \"Communication\",\n", 181 | " \"weight\": \"3400 kg (Mass at Lift \\u2013 off) 1498 kg (Dry Mass)\",\n", 182 | " \"power\": \"Solar array providing 6474 Watts (at Equinox) and two 128 AH Lithium-Ion batteries\",\n", 183 | " \"physical_dimensions\": \"2.0 m X 1.77 m X 3.1 m cuboid\",\n", 184 | " \"propulsion\": \"440 Newton Liquid Apogee Motors (LAM) with Mono Methyl Hydrazine (MMH) as fuel and Mixed oxides of Nitrogen (MON-3) as oxidizer for orbit raising.\",\n", 185 | " \"stabilisation\": \"3-axis body stabilised in orbit using Earth Sensors, Sun Sensors, Momentum and Reaction Wheels, Magnetic Torquers and eight 10 Newton and eight 22 Newton bipropellant thrusters\",\n", 186 | " \"antennae\": \"East : 2.2 m dia circular deployable Dual Gridded Reflector (DGR) West : 2.2 m X 2.4 m elliptical deployable DGR Earth Viewing Face (top) : 0.7 m parabolic, 0.9 m parabolic and 0.8 m X 0.8 m sixteen element helical antenna for GAGAN\",\n", 187 | " \"launch_date\": \"September 29, 2012\",\n", 188 | " \"launch_site\": \"Kourou, French Guiana\",\n", 189 | " \"launch_vehicle\": \"Ariane-5 VA-209\",\n", 190 | " \"orbit\": \"Geostationary (83\\u00b0 East longitude), co-located with INSAT-4A and GSAT-12\",\n", 191 | " \"mission_life\": \"15 Years\"\n", 192 | " },\n", 193 | " {\n", 194 | " \"name\": \"RISAT-1\",\n", 195 | " \"id\": 1,\n", 196 | " \"mass\": \"1858 kg\",\n", 197 | " \"orbit\": \"Circular Polar Sun Synchronous\",\n", 198 | " \"orbit_altitude\": \"536 km\",\n", 199 | " \"orbit_inclination\": \"97.552o\",\n", 200 | " \"orbit_period\": \"95.49 min\",\n", 201 | " \"number_of_orbits_per_day\": \"14\",\n", 202 | " \"local_time_of_equator_crossing\": \"6:00 am / 6:00 pm\",\n", 203 | " \"power\": \"Solar Array generating 2200 W and one 70 AH Ni-H2 battery\",\n", 204 | " \"repetivity\": \"25 days\",\n", 205 | " \"attitude_and_orbit_control\": \"3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters\",\n", 206 | " \"nominal_mission_life\": \"5 years\",\n", 207 | " \"launch_date\": \"April 26, 2012\",\n", 208 | " \"launch_site\": \"SDSC SHAR Centre, Sriharikota, India\",\n", 209 | " \"launch_vehicle\": \"PSLV- C19\"\n", 210 | " },\n", 211 | " {\n", 212 | " \"name\": \"Megha-Tropiques\",\n", 213 | " \"id\": 1,\n", 214 | " \"lift-off_mass\": \"1000 kg\",\n", 215 | " \"orbit\": \"867 km with an inclination of 20 deg to the equator\",\n", 216 | " \"thermal\": \"Passive system with IRS heritage\",\n", 217 | " \"power\": \"1325 W (at End of Life) Two 24 AH NiCd batteries\",\n", 218 | " \"ttc\": \"S-band\",\n", 219 | " \"attitude_and_orbit_control\": \"3-axis stabilised with 4 Reaction Wheels, Gyros and Star sensors, Hydrazine based RCS\",\n", 220 | " \"solid_state_recorder\": \"16 Gb\",\n", 221 | " \"launch_date\": \"October 12, 2011\",\n", 222 | " \"launch_site\": \"SDSC SHAR Centre, Sriharikota, India\",\n", 223 | " \"launch_vehicle\": \"PSLV- C18\"\n", 224 | " },\n", 225 | " {\n", 226 | " \"name\": \"GSAT-12\",\n", 227 | " \"id\": 1,\n", 228 | " \"mission\": \"Communication\",\n", 229 | " \"weight\": \"1410 kg (Mass at Lift \\u2013 off) 559 kg (Dry Mass)\",\n", 230 | " \"power\": \"Solar array providing 1430 Watts and one 64 Ah Li-Ion batteries\",\n", 231 | " \"physical_dimensions\": \"1.485 x 1.480 x 1.446 m cuboid\",\n", 232 | " \"propulsion\": \"440 Newton Liquid Apogee Motors (LAM) with Mono Methyl Hydrazine (MMH) as fuel and Mixed oxides of Nitrogen (MON-3) as oxidizer for orbit raising.\",\n", 233 | " \"attitude_orbit_control\": \"3-axis body stabilised in orbit using Earth Sensors, Sun Sensors, Momentum and Reaction Wheels, Magnetic Torquers and eight 10 Newton and eight 22 Newton bipropellant thrusters\",\n", 234 | " \"antennae\": \"One 0.7 m diameter body mounted parabolic receive antenna and one 1.2 m diameter polarisation sensitive deployable antenna\",\n", 235 | " \"launch_date\": \"July 15, 2011\",\n", 236 | " \"launch_site\": \"SHAR, Sriharikota, India\",\n", 237 | " \"launch_vehicle\": \"PSLV-C17\",\n", 238 | " \"orbit\": \"Geosynchronous (83\\u00b0 longitude)\",\n", 239 | " \"mission_life\": \"About 8 Years\"\n", 240 | " },\n", 241 | " {\n", 242 | " \"name\": \"GSAT-8\",\n", 243 | " \"id\": 1,\n", 244 | " \"mission\": \"Communication\",\n", 245 | " \"weight\": \"3093 kg (Mass at Lift \\u2013 off) 1426 kg (Dry Mass)\",\n", 246 | " \"power\": \"Solar array providing 6242 watts three 100 Ah Lithium Ion batteries\",\n", 247 | " \"physical_dimensions\": \"2.0 x 1.77 x 3.1m cuboid\",\n", 248 | " \"propulsion\": \"440 Newton Liquid Apogee Motors (LAM) with mono Methyl Hydrazine (MMH) as fuel and Mixed oxides of Nitrogen (MON-3) as oxidizer for orbit raising.\",\n", 249 | " \"stabilisation\": \"3-axis body stabilised in orbit using Earth Sensors, Sun Sensors, Momentum and Reaction Wheels, Magnetic Torquers and eight 10 Newton and eight 22 Newton bipropellant thrusters\",\n", 250 | " \"antennas\": \"Two indigenously developed 2.2 m diameter transmit/receive polarisation sensitive dual grid shaped beam deployable reflectors with offset-fed feeds illumination for Ku-band; 0.6 m C-band and 0.8x0.8 sq m L-band helix antenna for GAGAN\",\n", 251 | " \"launch_date\": \"May 21, 2011\",\n", 252 | " \"launch_site\": \"Kourou, French Guiana\",\n", 253 | " \"launch_vehicle\": \"Ariane-5 VA-202\",\n", 254 | " \"orbit\": \"Geosynchronous (55\\u00b0 E)\",\n", 255 | " \"mission_life\": \"More Than 12 Years\"\n", 256 | " },\n", 257 | " {\n", 258 | " \"name\": \"RESOURCESAT-2\",\n", 259 | " \"id\": 1,\n", 260 | " \"mission\": \"Remote Sensing\",\n", 261 | " \"orbit\": \"Circular Polar Sun Synchronous\",\n", 262 | " \"orbit_altitude_at_injection\": \"822 km + 20 km (3 Sigma)\",\n", 263 | " \"orbit_inclination\": \"98.731\\u00ba + 0.2\\u00ba\",\n", 264 | " \"lift-off_mass\": \"1206 kg\",\n", 265 | " \"orbit_period\": \"101.35 min\",\n", 266 | " \"number_of_orbits_per_day\": \"14\",\n", 267 | " \"local_time_of_equator_crossing\": \"10:30 am\",\n", 268 | " \"repetivity\": \"24 days\",\n", 269 | " \"attitude_and_orbit_control\": \"3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters\",\n", 270 | " \"power\": \"Solar Array generating 1250 W at End Of Life, two 24 AH Ni-Cd batteries\",\n", 271 | " \"launch_date\": \"April 20, 2011\",\n", 272 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 273 | " \"launch_vehicle\": \"PSLV- C16\",\n", 274 | " \"mission_life\": \"5 years\"\n", 275 | " },\n", 276 | " {\n", 277 | " \"name\": \"YOUTHSAT\",\n", 278 | " \"id\": 1,\n", 279 | " \"lift-off_mass\": \"92 kg\",\n", 280 | " \"orbit_period\": \"101.35 min\",\n", 281 | " \"dimension\": \"1020 (Pitch) x 604 (Roll) x 1340 (Yaw) mm3\",\n", 282 | " \"attitude_and_orbit_control\": \"3-axis body stabilised using Sun and Star Sensors, Miniature Magnetometer, Miniature Gyros, Micro Reaction Wheels and Magnetic Torquers\",\n", 283 | " \"power\": \"Solar Array generating 230 W, one 10.5 AH Li-ion battery\",\n", 284 | " \"mechanisms\": \"Paraffin Actuator based Solar Panel Hold Down and Release Mechanism\",\n", 285 | " \"launch_date\": \"April 20, 2011\",\n", 286 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 287 | " \"launch_vehicle\": \"PSLV- C16\",\n", 288 | " \"orbit\": \"Circular Polar Sun Synchronous\",\n", 289 | " \"orbit_altitude_at_injection\": \"822 km\\u00a0+\\u00a020 km (3 Sigma)\",\n", 290 | " \"orbit_inclination\": \"98.731 \\u00ba\\u00a0+\\u00a00.2 \\u00ba\",\n", 291 | " \"mission_life\": \"2 years\"\n", 292 | " },\n", 293 | " {\n", 294 | " \"name\": \"CARTOSAT-2B\",\n", 295 | " \"id\": 1,\n", 296 | " \"mission\": \"Remote Sensing\",\n", 297 | " \"weight\": \"694 kg (Mass at lift off)\",\n", 298 | " \"onboard_orbit\": \"930 Watts\",\n", 299 | " \"stabilization\": \"3 \\u2013 axis body stabilised based on inputs from star sensors and gyros using Reaction wheels, Magnetic Torquers and Hydrazine Thrusters\",\n", 300 | " \"payloads\": \"Panchromatic Camera\",\n", 301 | " \"launch_date\": \"July 12, 2010\",\n", 302 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 303 | " \"launch_vehicle\": \"PSLV- C15\",\n", 304 | " \"orbit\": \"630 kms, Polar Sun Synchronous\",\n", 305 | " \"inclination\": \"97.71\\u00ba\"\n", 306 | " },\n", 307 | " {\n", 308 | " \"name\": \"Oceansat-2\",\n", 309 | " \"id\": 1,\n", 310 | " \"date\": \"Sept 23, 2009\",\n", 311 | " \"launch_site\": \"SHAR, Sriharikota\",\n", 312 | " \"launch_vehicle\": \"PSLV - C14\",\n", 313 | " \"orbit\": \"Polar Sun Synchronous\",\n", 314 | " \"altitude\": \"720 km\",\n", 315 | " \"inclination\": \"98.28\\u00b0\",\n", 316 | " \"period\": \"99.31 minutes\",\n", 317 | " \"local_time_of_eq._crossing\": \"12 noon \\u00b1 10 minutes\",\n", 318 | " \"repetitivity_cycle\": \"2 days\",\n", 319 | " \"payloads\": \"OCM, SCAT and ROSA\",\n", 320 | " \"mass_at_lift_off\": \"960 kg\",\n", 321 | " \"power\": \"15 Sq.m Solar panels generating 1360W, Two 24 Ah Ni-Cd Batteries\",\n", 322 | " \"mission_life\": \"5 years\"\n", 323 | " },\n", 324 | " {\n", 325 | " \"name\": \"RISAT-2\",\n", 326 | " \"id\": 1,\n", 327 | " \"altitude\": \"550 km\",\n", 328 | " \"inclination\": \"41 deg\",\n", 329 | " \"orbit_period\": \"90 minutes\",\n", 330 | " \"mass\": \"300 kg\"\n", 331 | " },\n", 332 | " {\n", 333 | " \"name\": \"Chandrayaan-1 \",\n", 334 | " \"id\": 1,\n", 335 | " \"mission\": \"Remote Sensing, Planetary Science\",\n", 336 | " \"weight\": \"1380 kg (Mass at lift off)\",\n", 337 | " \"onboard_power\": \"700 Watts\",\n", 338 | " \"stabilization\": \"3 - axis stabilised using reaction wheel and attitude control thrusters, sun sensors, star sensors, fibre optic gyros and accelerometers for attitude determination.\",\n", 339 | " \"launch_date\": \"22 October 2008\",\n", 340 | " \"launch_site\": \"SDSC, SHAR, Sriharikota\",\n", 341 | " \"launch_vehicle\": \"PSLV - C11\",\n", 342 | " \"orbit\": \"100 km x 100 km : Lunar Orbit\",\n", 343 | " \"mission_life\": \"2 years\"\n", 344 | " },\n", 345 | " {\n", 346 | " \"name\": \"IMS-1\",\n", 347 | " \"id\": 1,\n", 348 | " \"orbit\": \"Polar Sun Synchronous\",\n", 349 | " \"altitude\": \"635 km\",\n", 350 | " \"mission_life\": \"2 years\",\n", 351 | " \"physical_dimensions\": \"0.604x0.980x1.129 m\",\n", 352 | " \"mass\": \"83 kg\",\n", 353 | " \"power\": \"Two deployable sun pointing solar panels generating 220 W power, 105 Ah Lithium ion battery\",\n", 354 | " \"telemetry,_tracking_and_command\": \"S-band\",\n", 355 | " \"attitude_and_orbit_control_system\": \"Star Sensor, Miniature Sun Sensors, Magnetometers Gyros, Miniature Micro Reaction Wheels, Magnetic Torquers, single 1 N Hydrazine Thruster\",\n", 356 | " \"data_handling\": \"S-band\",\n", 357 | " \"data_storage\": \"16 Gb Solid State Recorder\"\n", 358 | " },\n", 359 | " {\n", 360 | " \"name\": \"CARTOSAT \\u2013\\n 2A\",\n", 361 | " \"id\": 1,\n", 362 | " \"mission\": \"Remote Sensing\",\n", 363 | " \"weight\": \"690 Kg (Mass at lift off)\",\n", 364 | " \"onboard_power\": \"900 Watts\",\n", 365 | " \"stabilization\": \"3 \\u2013 axis body stabilised using high torque reaction wheels, magnetic torquers and hydrogen thrusters\",\n", 366 | " \"payloads\": \"Panchromatic Camera\",\n", 367 | " \"launch_date\": \"28 April 2008\",\n", 368 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 369 | " \"launch_vehicle\": \"PSLV- C9\",\n", 370 | " \"orbit\": \"635 km, Polar Sun Synchronous\",\n", 371 | " \"inclination\": \"97.94 deg\",\n", 372 | " \"mission_life\": \"5 years\"\n", 373 | " },\n", 374 | " {\n", 375 | " \"name\": \"INSAT-4CR\",\n", 376 | " \"id\": 1,\n", 377 | " \"mission\": \"Communication\",\n", 378 | " \"weight\": \"2,130 kg (Mass at Lift \\u2013 off)\",\n", 379 | " \"onboard_power\": \"3000 W\",\n", 380 | " \"communication_payload\": \"12 Ku-band transponders employing 140 W Traveling Wave Tube Amplifiers (TWTA) Ku-band Beacon\",\n", 381 | " \"launch_date\": \"September 2, 2007\",\n", 382 | " \"launch_site\": \"SHAR, Sriharikota, India\",\n", 383 | " \"launch_vehicle\": \"GSLV-F04\",\n", 384 | " \"orbit\": \"Geosynchronous (74\\u00b0 E)\",\n", 385 | " \"mission_life\": \"12 Years\"\n", 386 | " },\n", 387 | " {\n", 388 | " \"name\": \"INSAT-4B\",\n", 389 | " \"id\": 1,\n", 390 | " \"mission\": \"Communication\",\n", 391 | " \"weight\": \"3025 kg (at Lift \\u2013 off)\",\n", 392 | " \"onboard_power\": \"5859 W\",\n", 393 | " \"stabilization\": \"It uses 3 earth sensors, 2 digital sun sensors, 8 coarse analog sun sensors, 3 solar panel sun sensors and one sensor processing electronics. The wheels and wheel drive electronics were imported with indigenous wheel interface module to interface the wheel drive electronics and AOCE.\",\n", 394 | " \"propulsion\": \"The propulsion system is employing 16 thrusters, 4 each located on east, west and AY sides and 2 each on north and south sides. There is one 440 N liquid apogee motor (using Mono Methyl Hydrazine (MMH) as fuel and oxides of Nitrogen (MON3 as oxidizer) and three pressurant tanks mounted on the LAM deck.\",\n", 395 | " \"payload\": \"12 Ku band high power transponders covering Indian main land using 140W radiatively cooled TWTAs.\",\n", 396 | " \"launch_date\": \"March 12, 2007\",\n", 397 | " \"launch_site\": \"French Guiana\",\n", 398 | " \"launch_vehicle\": \"Ariane5\",\n", 399 | " \"orbit\": \"Geostationary (93.5o E Longitude)\",\n", 400 | " \"mission_life\": \"12 Years\"\n", 401 | " },\n", 402 | " {\n", 403 | " \"name\": \"CARTOSAT-2\",\n", 404 | " \"id\": 1,\n", 405 | " \"mission\": \"Remote Sensing\",\n", 406 | " \"weight\": \"650 Kg\",\n", 407 | " \"onboard_orbit\": \"900 Watts\",\n", 408 | " \"stabilization\": \"3 - axis body stabilised using high torque reaction wheels, magnetic torquers and thrusters\",\n", 409 | " \"payloads\": \"Panchromatic Camera\",\n", 410 | " \"launch_date\": \"10 January 2007\",\n", 411 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 412 | " \"launch_vehicle\": \"PSLV- C7\",\n", 413 | " \"orbit\": \"Polar Sun Synchronous\",\n", 414 | " \"mission_life\": \"5 years\"\n", 415 | " },\n", 416 | " {\n", 417 | " \"name\": \"INSAT-4A\",\n", 418 | " \"id\": 1,\n", 419 | " \"spacecraft_mass\": \"Lift off 3081 Kg Dry Mass 1386.55 Kg\",\n", 420 | " \"orbit\": \"Geostationary ( 83o E)\",\n", 421 | " \"power\": \"Solar Array to provide a power of 5922 W\",\n", 422 | " \"battery\": \"Three 70 Ah Ni H2 Batteries for eclipse support of 4264 W\",\n", 423 | " \"life\": \"12 Years\",\n", 424 | " \"launch_date\": \"December 22, 2005\",\n", 425 | " \"launch_vehicle\": \"ARIANE5-V169\"\n", 426 | " },\n", 427 | " {\n", 428 | " \"name\": \"CARTOSAT-1\",\n", 429 | " \"id\": 1,\n", 430 | " \"launch_date\": \"5 May 2005\",\n", 431 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 432 | " \"launch_vehicle\": \"PSLV- C6\",\n", 433 | " \"orbit\": \"618 km Polar Sun Synchronous\",\n", 434 | " \"payloads\": \"PAN FORE, PAN - AFT\",\n", 435 | " \"orbit_period\": \"97 min\",\n", 436 | " \"number_of_orbits_per_day\": \"14\",\n", 437 | " \"local_time_of_equator_crossing\": \"10:30 am\",\n", 438 | " \"repetivity\": \"126 days\",\n", 439 | " \"revisit\": \"5 days\",\n", 440 | " \"lift-off_mass\": \"1560 kg\",\n", 441 | " \"attitude_and_orbit_control\": \"3-axis body stabillised using reaction wheels, Magnetic Torquers and Hydrazine Thrusters\",\n", 442 | " \"electrical_power\": \"15 sqm Solar Array generating 1100w, Two 24 Ah Ni-Cd batteries\",\n", 443 | " \"mission_life\": \"5 years\"\n", 444 | " },\n", 445 | " {\n", 446 | " \"name\": \"HAMSAT\",\n", 447 | " \"id\": 1,\n", 448 | " \"launch_date\": \"May 5, 2005\",\n", 449 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 450 | " \"launch_vehicle\": \"PSLV-C6\",\n", 451 | " \"orbit\": \"Geo-synchronous, 633.355 km (average)\",\n", 452 | " \"payloads\": \"2 Transponders\"\n", 453 | " },\n", 454 | " {\n", 455 | " \"name\": \"EDUSAT\",\n", 456 | " \"id\": 1,\n", 457 | " \"mission\": \"Education\",\n", 458 | " \"spacecraft_mass\": \"1950.5 kg mass (at Lift - off) 819.4 kg (Dry mass)\",\n", 459 | " \"onboard_power\": \"Total four solar panel of size 2.54 M x 1.525 M generating 2040 W (EOL), two 24 AH NiCd batteries for eclipse support\",\n", 460 | " \"stabilization\": \"3 axis body stabilised in orbit using sensors, momentum and reaction wheels, magnetic torquers and eight 10 N & 22N reaction control thrusters.\",\n", 461 | " \"propulsion\": \"440 N Liquid Apogee Motor with MON - 3 and MMH for orbit raising\",\n", 462 | " \"payload\": \"Six upper extended C - band transponders Five lower Ku band transponders with regional beam coverage One lower Ku band National beam transponder with Indian main land coverage Ku beacon 12 C band high power transponders with extended coverage, covering southeast and northwest region apart from Indian main land using 63 W LTWTAs\",\n", 463 | " \"launch_date\": \"September 20, 2004\",\n", 464 | " \"launch_site\": \"SHAR, Sriharikota, India\",\n", 465 | " \"launch_vehicle\": \"GSLV-F01\",\n", 466 | " \"orbit\": \"Geostationary (74oE longitude)\",\n", 467 | " \"mission_life\": \"7 Years (minimum)\"\n", 468 | " },\n", 469 | " {\n", 470 | " \"name\": \"IRS-P6 / RESOURCESAT-1\",\n", 471 | " \"id\": 1,\n", 472 | " \"launch_date\": \"October 17, 2003\",\n", 473 | " \"launch_site\": \"SHAR, Sriharikota\",\n", 474 | " \"launch_vehicle\": \"PSLV-C5\",\n", 475 | " \"payloads\": \"LISS-4, LISS-3, AWiFS-A, AWiFS-B\",\n", 476 | " \"orbit\": \"Polar Sun Synchronous\",\n", 477 | " \"orbit_height\": \"817 km\",\n", 478 | " \"orbit_inclination\": \"98.7o\",\n", 479 | " \"orbit_period\": \"101.35 min\",\n", 480 | " \"number_of_orbits_per_day\": \"14\",\n", 481 | " \"local_time_of_equator_crossing\": \"10:30 am\",\n", 482 | " \"repetivity_(liss-3)\": \"24 days\",\n", 483 | " \"revisit\": \"5 days\",\n", 484 | " \"lift-off_mass\": \"1360 kg\",\n", 485 | " \"attitude_and_orbit_control\": \"3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters\",\n", 486 | " \"power\": \"Solar Array generating 1250 W, Two 24 Ah Ni-Cd batteries\",\n", 487 | " \"mission_life\": \"5 years\"\n", 488 | " },\n", 489 | " {\n", 490 | " \"name\": \"INSAT-3E\",\n", 491 | " \"id\": 1,\n", 492 | " \"mission\": \"Communication\",\n", 493 | " \"spacecraft_mass\": \"2,775 kg (Mass at Lift-off) 1218 kg (Dry mass)\",\n", 494 | " \"launch_date\": \"September 28, 2003\",\n", 495 | " \"launch_site\": \"French Guyana\",\n", 496 | " \"launch_vehicle\": \"Ariane5-V162\",\n", 497 | " \"orbit\": \"Geostationary Orbit\"\n", 498 | " },\n", 499 | " {\n", 500 | " \"name\": \"GSAT-2\",\n", 501 | " \"id\": 1,\n", 502 | " \"mission\": \"Communication\",\n", 503 | " \"weight\": \"1800 kg\",\n", 504 | " \"launch_date\": \"May 8, 2003\",\n", 505 | " \"launch_site\": \"SHAR, Sriharikota, India\",\n", 506 | " \"launch_vehicle\": \"GSLV\\u2013D2\",\n", 507 | " \"orbit\": \"Geostationary orbit (48oE longitude)\"\n", 508 | " },\n", 509 | " {\n", 510 | " \"name\": \"INSAT-3A\",\n", 511 | " \"id\": 1,\n", 512 | " \"mission\": \"Telecommunication, broadcasting and Meteorology\",\n", 513 | " \"spacecraft_mass\": \"2,950 kg (Mass at Lift\\u2013off) 1,348 kg (Dry mass)\",\n", 514 | " \"onboard_power\": \"3,100 W\",\n", 515 | " \"stabilization\": \"3 \\u2013 axis body stabilised in orbit using momentum and reaction wheels, solar flaps, magnetic torquers and eight 10 N and eight 22 N reaction control thrusters\",\n", 516 | " \"propulsion\": \"440 N Liquid Apogee Motor with MON-3 (Mixed Oxides of Nitrogen) and MMH (Mono Methyl Hydrazine) for orbit raising\",\n", 517 | " \"payload\": \"Communication payload - 12 C \\u2013 band transponders, - 6 upper extended C band transponders - 6 Ku band transponders - 1 Satellite Aided Search & Rescue transponders Meteorological payload - Very High Resolution Radiometer (VHRR) with 2 km resolution in visible band and 8 km resolution in infrared and water vapour band - Charged Coupled Device (CCD) camera operating in visible, near infrared and shortwave infrared band with 1 km resolution. - Data Relay Transponders (DRT)\",\n", 518 | " \"launch_date\": \"April 10, 2003\",\n", 519 | " \"launch_site\": \"French Guyana\",\n", 520 | " \"launch_vehicle\": \"Ariane5-V160\",\n", 521 | " \"orbit\": \"Geostationary (93.5o E longitude)\",\n", 522 | " \"mission_life\": \"12 Years\"\n", 523 | " },\n", 524 | " {\n", 525 | " \"name\": \"KALPANA-1\",\n", 526 | " \"id\": 1,\n", 527 | " \"mission\": \"7 Years\",\n", 528 | " \"spacecraft_mass\": \"1060 kg mass (at Lift \\u2013 off) 498 kg (Dry mass)\",\n", 529 | " \"onboard_power\": \"550 W\",\n", 530 | " \"payload\": \"Very High Resolution Radiometer (VHRR) Data Relay Transponder (DRT)\",\n", 531 | " \"launch_date\": \"12 September 2002\",\n", 532 | " \"launch_site\": \"SHAR, Sriharikota\",\n", 533 | " \"launch_vehicle\": \"PSLV \\u2013 C4\",\n", 534 | " \"orbit\": \"Geostationary (74 deg East longitude)\"\n", 535 | " },\n", 536 | " {\n", 537 | " \"name\": \"INSAT-3C\",\n", 538 | " \"id\": 1,\n", 539 | " \"mission\": \"Communication, broadcasting and Meteorology\",\n", 540 | " \"spacecraft_mass\": \"2,650 kg (Mass at Lift - off) 1218 kg (Dry mass)\",\n", 541 | " \"onboard_power\": \"2765 W\",\n", 542 | " \"propulsion\": \"Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank.\",\n", 543 | " \"payload\": \"24 C band transponders 6 Extended C - band Transponders 2 S - band Transponders\",\n", 544 | " \"launch_date\": \"January 24, 2002\",\n", 545 | " \"launch_site\": \"French Guyana\",\n", 546 | " \"launch_vehicle\": \"Ariane5-V147\",\n", 547 | " \"orbit\": \"Geostationary (74o longitude)\",\n", 548 | " \"mission_life\": \"Very long\"\n", 549 | " },\n", 550 | " {\n", 551 | " \"name\": \"The Technology Experiment Satellite\\n (TES)\",\n", 552 | " \"id\": 1,\n", 553 | " \"launch_date\": \"22 October 2001\",\n", 554 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 555 | " \"launch_vehicle\": \"PSLV- C3\",\n", 556 | " \"orbit\": \"572 km Sun Synchronous\",\n", 557 | " \"payloads\": \"PAN\"\n", 558 | " },\n", 559 | " {\n", 560 | " \"name\": \"PSLV-C3 / TES\",\n", 561 | " \"id\": 1,\n", 562 | " \"launch_date\": \"22 October 2001\",\n", 563 | " \"launch_site\": \"SHAR Centre Sriharikota India\",\n", 564 | " \"launch_vehicle\": \"PSLV- C3\",\n", 565 | " \"orbit\": \"572 km Sun Synchronous\",\n", 566 | " \"payloads\": \"PAN\"\n", 567 | " },\n", 568 | " {\n", 569 | " \"name\": \"GSAT-1\",\n", 570 | " \"id\": 1,\n", 571 | " \"mission\": \"Communication\",\n", 572 | " \"weight\": \"1530 kg\",\n", 573 | " \"launch_date\": \"18 April 2001\",\n", 574 | " \"launch_site\": \"SHAR, Sriharikota\",\n", 575 | " \"launch_vehicle\": \"GSLV \\u2013 D1\",\n", 576 | " \"orbit\": \"Sun Synchronous Geo stationary orbit\"\n", 577 | " },\n", 578 | " {\n", 579 | " \"name\": \"INSAT-3B\",\n", 580 | " \"id\": 1,\n", 581 | " \"mission\": \"Very long\",\n", 582 | " \"spacecraft_mass\": \"2,070 (Mass at Lift \\u2013 off) 970 kg (Dry mass)\",\n", 583 | " \"onboard_power\": \"1,712 W\",\n", 584 | " \"stabilization\": \"3 \\u2013 axis body stabilised biased momentum control system using earth sensors, sun sensors, inertial reference unit, momentum / reaction wheels, magnetic torquers and unified bi-propellant thrusters.\",\n", 585 | " \"propulsion\": \"Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank.\",\n", 586 | " \"payload\": \"12 extended C \\u2013 band Transponders Five Ku band Transponders Mobile Satellite Services (MSS)\",\n", 587 | " \"launch_date\": \"22nd March 2000\",\n", 588 | " \"launch_site\": \"French Guyana\",\n", 589 | " \"launch_vehicle\": \"Ariane -5\",\n", 590 | " \"orbit\": \"Geostationary (83 deg East longitude)\",\n", 591 | " \"inclination\": \"7 deg\"\n", 592 | " },\n", 593 | " {\n", 594 | " \"name\": \"Oceansat(IRS-P4)\",\n", 595 | " \"id\": 1,\n", 596 | " \"launch_date\": \"May 26, 1999\",\n", 597 | " \"launch_site\": \"SHAR, Sriharikota\",\n", 598 | " \"launch_vehicle\": \"PSLV - C2\",\n", 599 | " \"orbit\": \"Polar Sun Synchronous\",\n", 600 | " \"altitude\": \"720 km\",\n", 601 | " \"inclination\": \"98.28 deg\",\n", 602 | " \"period\": \"99.31 min\",\n", 603 | " \"local_time_of_eq._crossing\": \"12 noon\",\n", 604 | " \"repetitivity_cycle\": \"2 days\",\n", 605 | " \"size\": \"2.8m x 1.98m x 2.57m\",\n", 606 | " \"mass_at_lift_off\": \"1050 kg\",\n", 607 | " \"length_when_fully_deployed\": \"11.67 m\",\n", 608 | " \"attitude_and_orbit_control\": \"3-axis body-stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters\",\n", 609 | " \"power\": \"9.6 Sq.m Solar Array generating 750w Two 21 Ah Ni-Cd Batteries\",\n", 610 | " \"mission_completed_on\": \"August 8, 2010\"\n", 611 | " },\n", 612 | " {\n", 613 | " \"name\": \"INSAT-2E\",\n", 614 | " \"id\": 1,\n", 615 | " \"mission\": \"Communication and Meteorology\",\n", 616 | " \"spacecraft_mass\": \"2,550 kg (Mass at Lift-off) 1150 kg (Dry mass)\",\n", 617 | " \"launch_date\": \"03 April 1999\",\n", 618 | " \"launch_site\": \"French Guyana\",\n", 619 | " \"launch_vehicle\": \"Ariane \\u2013 42P\",\n", 620 | " \"orbit\": \"Geosynchronous (83 deg east longitude)\"\n", 621 | " },\n", 622 | " {\n", 623 | " \"name\": \"IRS-1D\",\n", 624 | " \"id\": 1,\n", 625 | " \"mission\": \"Operational Remote Sensing\",\n", 626 | " \"weight\": \"1250 kg\",\n", 627 | " \"onboard_power\": \"809 Watts (generated by 9.6 sq.metres Solar Panels)\",\n", 628 | " \"communication\": \"S-band, X-band\",\n", 629 | " \"stabilization\": \"Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer\",\n", 630 | " \"rcs\": \"Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters\",\n", 631 | " \"payload\": \"Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)\",\n", 632 | " \"onboard_tape_recorder\": \"Storage Capacity : 62 G bits\",\n", 633 | " \"launch_date\": \"December 28, 1995\",\n", 634 | " \"launch_site\": \"Baikanur Cosmodrome Kazakhstan\",\n", 635 | " \"launch_vehicle\": \"Molniya\",\n", 636 | " \"orbit\": \"817 km Polar Sun-synchronous\",\n", 637 | " \"inclination\": \"98.69o\",\n", 638 | " \"repetivity\": \"24 days\",\n", 639 | " \"local_time\": \"10.30 a.m\",\n", 640 | " \"mission_completed_on\": \"September 21, 2007\"\n", 641 | " },\n", 642 | " {\n", 643 | " \"name\": \"INSAT-2D\",\n", 644 | " \"id\": 1,\n", 645 | " \"mission\": \"Communication\",\n", 646 | " \"weight\": \"2079 kg with propellants, 995 kg dry weight\",\n", 647 | " \"onboard_power\": \"1650 Watts\",\n", 648 | " \"communication\": \"C, extended C, S and Ku bands\",\n", 649 | " \"stabilization\": \"Three axis stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers\",\n", 650 | " \"propulsion\": \"Integrated bipropellan stystem ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM.\",\n", 651 | " \"payload\": \"Transponders: 16C-band / extended C-band transponders (forFSS), 2 high power C-band transponders (for BSS), 1S-band transponder (for BSS),1C/S-band mobile communication transponder, 3 Ku-band transponders\",\n", 652 | " \"launch_date\": \"June 4, 1997\",\n", 653 | " \"launch_site\": \"French Guyana\",\n", 654 | " \"launch_vehicle\": \"Arianev 4\",\n", 655 | " \"orbit\": \"Geostationary 93,.5deg.E\",\n", 656 | " \"inclination\": \"0 deg.\"\n", 657 | " },\n", 658 | " {\n", 659 | " \"name\": \"IRS-P3\",\n", 660 | " \"id\": 1,\n", 661 | " \"mission\": \"Remote sensing of earth's natural resources. Study of X-ray Astronomy. Periodic calibration of PSLV tracking radar located at tracking stations.\",\n", 662 | " \"weight\": \"920 kg\",\n", 663 | " \"onboard_power\": \"817 Watts\",\n", 664 | " \"communication\": \"S-band\",\n", 665 | " \"stabilization\": \"Three axis body stabilized\",\n", 666 | " \"rcs\": \"Combinations of bladder type and surface tension type mass expulsion monopropellant hydrazine system\",\n", 667 | " \"payload\": \"WideField Sensor (WiFS), Modular Opto - electronic Scanner (MOS), Indian X-ray Astronomy Experiment (IXAE), C-band transponder(CBT)\",\n", 668 | " \"launch_date\": \"March 21, 1996\",\n", 669 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 670 | " \"launch_vehicle\": \"PSLV-D3\",\n", 671 | " \"orbit\": \"817 km. Circular polar sun-synchronous with equatorial crossing at 10.30 am (descending node)\",\n", 672 | " \"inclination\": \"98.68o\",\n", 673 | " \"repetivity\": \"WiFS : 5 days\",\n", 674 | " \"mission_completed_during\": \"January 2006\"\n", 675 | " },\n", 676 | " {\n", 677 | " \"name\": \"IRS-1C\",\n", 678 | " \"id\": 1,\n", 679 | " \"mission\": \"Operational Remote Sensing\",\n", 680 | " \"weight\": \"1250 kg\",\n", 681 | " \"onboard_power\": \"809 Watts (generated by 9.6 sq.metres Solar Panels)\",\n", 682 | " \"communication\": \"S-band, X-band\",\n", 683 | " \"stabilization\": \"Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer\",\n", 684 | " \"rcs\": \"Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters\",\n", 685 | " \"payload\": \"Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)\",\n", 686 | " \"onboard_tape_recorder\": \"Storage Capacity : 62 G bits\",\n", 687 | " \"launch_date\": \"December 28, 1995\",\n", 688 | " \"launch_site\": \"Baikanur Cosmodrome Kazakhstan\",\n", 689 | " \"launch_vehicle\": \"Molniya\",\n", 690 | " \"orbit\": \"817 km Polar Sun-synchronous\",\n", 691 | " \"inclination\": \"98.69o\",\n", 692 | " \"repetivity\": \"24 days\",\n", 693 | " \"local_time\": \"10.30 a.m\",\n", 694 | " \"mission_completed_on\": \"September 21, 2007\"\n", 695 | " },\n", 696 | " {\n", 697 | " \"name\": \"INSAT-2C\",\n", 698 | " \"id\": 1,\n", 699 | " \"mission\": \"Communication\",\n", 700 | " \"weight\": \"2106 kg with propellants 946 kg dry weight\",\n", 701 | " \"onboard_power\": \"1320 Watts\",\n", 702 | " \"communication\": \"C extended C, S and Ku bands\",\n", 703 | " \"stabilization\": \"Three axis stabilized with two Momen'tum Wheels & one Reaction Wheel, Magnetic torquers\",\n", 704 | " \"propulsion\": \"Integrated bipropellant system ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM.\",\n", 705 | " \"payload\": \"Transponders: 16C-band / extended C-band transponders (for FSS), 2 high power C-band transponders (for BSS), 1S-band transponder (for BSS),1C/S-band mobile communication transponder, 3 Ku-band transponders\",\n", 706 | " \"launch_date\": \"December 7, 1995\",\n", 707 | " \"launch_site\": \"French Guyana\",\n", 708 | " \"launch_vehicle\": \"Ariane4\",\n", 709 | " \"orbit\": \"Geostationary 93.5 deg E\",\n", 710 | " \"inclination\": \"0 deg.\",\n", 711 | " \"mission_life\": \"Seven years(nominal)\",\n", 712 | " \"orbit_life\": \"Very Long\"\n", 713 | " },\n", 714 | " {\n", 715 | " \"name\": \"IRS-P2\",\n", 716 | " \"id\": 1,\n", 717 | " \"mission\": \"Operational Remote Sensing\",\n", 718 | " \"weight\": \"804 kg\",\n", 719 | " \"onboard_power\": \"510 Watts\",\n", 720 | " \"communication\": \"S-band, X-band\",\n", 721 | " \"stabilization\": \"Three axis body stabilized with 4 Reaction Wheels, Magnetic torquers\",\n", 722 | " \"rcs\": \"4 tanks containing Monopropellant Hydrazine based with sixteen 1 N thrusters and one 11 N thruster\",\n", 723 | " \"payload\": \"Two solid state Push Broom Cameras operating in four spectral bands in the visible and near-IR range using CCD arrays: LlSS-2A & LlSS-2B (Resolution: 32.74 metre)\",\n", 724 | " \"launch_date\": \"October 15, 1994\",\n", 725 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 726 | " \"launch_vehicle\": \"PSLV-D2\",\n", 727 | " \"inclination\": \"98.68o\",\n", 728 | " \"repetivity\": \"24 days\",\n", 729 | " \"mission_completed_on\": \"1997\"\n", 730 | " },\n", 731 | " {\n", 732 | " \"name\": \"SROSS-C2\\n \",\n", 733 | " \"id\": 1,\n", 734 | " \"mission\": \"Experimental\",\n", 735 | " \"weight\": \"115 kg\",\n", 736 | " \"onboard_power\": \"45 Watts\",\n", 737 | " \"communication\": \"S-band and VHF\",\n", 738 | " \"rcs\": \"Monopropellant Hydrazine based with six 1 Newton thrusters\",\n", 739 | " \"payload\": \"Gamma Ray Burst (GRB) & Retarding Potential Analyser (RPA)\",\n", 740 | " \"launch_date\": \"May 04,1994\",\n", 741 | " \"launch_site\": \"SHAR Centre,Sriharikota,India\",\n", 742 | " \"launch_vehicle\": \"Augmented Satellite Launch Vehicle (ASLV)\",\n", 743 | " \"orbit\": \"430 x 600 km.\",\n", 744 | " \"inclination\": \"45 deg.\",\n", 745 | " \"mission_life\": \"Six months (nominal)\",\n", 746 | " \"orbital_life\": \"Two years (nominal)\"\n", 747 | " },\n", 748 | " {\n", 749 | " \"name\": \"IRS-1E\",\n", 750 | " \"id\": 1,\n", 751 | " \"mission\": \"Operational Remote Sensing\",\n", 752 | " \"weight\": \"846 kg\",\n", 753 | " \"onboard_power\": \"415 Watts\",\n", 754 | " \"communication\": \"S-band (TIC) & VHF\",\n", 755 | " \"stabilization\": \"Three axis body stabilized ( zero momentum) with 4 Reaction Wheels, Magnetic torquers\",\n", 756 | " \"rcs\": \"Monopropellant Hydrazine based RCS with 1 Newton thrusters ( 16 Nos.)\",\n", 757 | " \"payload\": \"LlSS-1 MEOSS (Mono-ocula Erlectro Optic Stereo Scanner)\",\n", 758 | " \"launch_date\": \"September 20, 1993\",\n", 759 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 760 | " \"launch_vehicle\": \"PSLV-D1\",\n", 761 | " \"orbit\": \"Not realised\"\n", 762 | " },\n", 763 | " {\n", 764 | " \"name\": \"INSAT-2B\",\n", 765 | " \"id\": 1,\n", 766 | " \"mission\": \"Multipurpose Communication, meteorology and Satellite based search and rescue\",\n", 767 | " \"weight\": \"1906 kg with propellant 916 kg dry weight\",\n", 768 | " \"onboard_power\": \"One KW approx.\",\n", 769 | " \"communication\": \"C, extended C and S band\",\n", 770 | " \"stabilization\": \"Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers\",\n", 771 | " \"propulsion\": \"Integrated bipropellant system ( MMH and N2 04) With sixteen 22 N thrusters and 440 N LAM.\",\n", 772 | " \"payload\": \"Transponders: 12C-band (for FSS),6 ext. C-band (for FSS) 2S-band (for BSS),1Data relay transponder (for met.data), 1 transponder for research and rescue, Very High Resolution radiometer (VHRR) for meteorological observation with 2 km resolution in the visible and 8 km resolution in the IR band\",\n", 773 | " \"launch_date\": \"July 23, 1993\",\n", 774 | " \"launch_site\": \"French Guyana\",\n", 775 | " \"launch_vehicle\": \"Ariane 4\",\n", 776 | " \"orbit\": \"Geostationary 93.5o E\",\n", 777 | " \"inclination\": \"0o\",\n", 778 | " \"mission_life\": \"Seven years(nominal)\",\n", 779 | " \"orbit_life\": \"Very Long\"\n", 780 | " },\n", 781 | " {\n", 782 | " \"name\": \"INSAT-2A\",\n", 783 | " \"id\": 1,\n", 784 | " \"mission\": \"Multipurpose Communication, meteorology and Satellite based search and rescue\",\n", 785 | " \"weight\": \"1906 kg with propellant 916 kg dry weight\",\n", 786 | " \"onboard_power\": \"One KW approx\",\n", 787 | " \"communication\": \"C, extended C and S band\",\n", 788 | " \"stabilization\": \"Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers\",\n", 789 | " \"propulsion\": \"Integrated bipropellant system (MMH and N2 04) With sixteen 22 N thrusters and 440 LAM.\",\n", 790 | " \"payload\": \"Transponders: 12 C-band (for FSS),6 ext. C-band (for FSS) 2 S-band (for BSS),1Data relay transponder (for met.data), 1 transponder for research and rescue, Very High Resolution radiometer (VHRR) for\\u00a0meteorological observation with 2 km resolution in the visible and 8 km resolution in the IR band\",\n", 791 | " \"launch_date\": \"July 10,1992\",\n", 792 | " \"launch_site\": \"French Guyana\",\n", 793 | " \"launch_vehicle\": \"Ariane 4\",\n", 794 | " \"orbit\": \"Geostationary 74oE longitude\",\n", 795 | " \"inclination\": \"0o\",\n", 796 | " \"mission_life\": \"Seven years(nominal)\",\n", 797 | " \"orbit_life\": \"Very Long\"\n", 798 | " },\n", 799 | " {\n", 800 | " \"name\": \"SROSS-C\\n\",\n", 801 | " \"id\": 1,\n", 802 | " \"mission\": \"Experimental\",\n", 803 | " \"weight\": \"106.1 kg\",\n", 804 | " \"onboard_power\": \"45 Watts\",\n", 805 | " \"communication\": \"S-band and VHF\",\n", 806 | " \"stabilization\": \"Spin stabilized with a Magnetic Torquer and Magnetic Bias Control\",\n", 807 | " \"payload\": \"Gamma Ray Burst (GRB) experiment & Retarding Potential Analyser (RPA) experiment\",\n", 808 | " \"launch_date\": \"May 20,1992\",\n", 809 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 810 | " \"launch_vehicle\": \"Augmented Satellite Launch Vehicle (ASLV)\",\n", 811 | " \"orbit\": \"267 x 391 km\",\n", 812 | " \"mission_life\": \"Two months (Re-entered on July15,1992)\"\n", 813 | " },\n", 814 | " {\n", 815 | " \"name\": \"IRS-1B\",\n", 816 | " \"id\": 1,\n", 817 | " \"mission\": \"Operational Remote Sensing\",\n", 818 | " \"weight\": \"975 kg\",\n", 819 | " \"onboard_power\": \"600 Watts\",\n", 820 | " \"communication\": \"S-band, X-band and VHF (commanding only)\",\n", 821 | " \"stabilization\": \"Three axis body stabilized (zero momentum) with 4 Reactions Wheels, Magnetic torquers\",\n", 822 | " \"rcs\": \"Monopropellant Hydrazine based with sixteen 1 Newton thrusters\",\n", 823 | " \"payload\": \"Three solid state Push Broom Cameras LlSS-1 (72.5 metre resolution), LlSS-2A and LlSS-2B (36.25 metre resolution)\",\n", 824 | " \"launch_date\": \"August 29, 1991\",\n", 825 | " \"launch_site\": \"Baikanur Cosmodrome Kazakhstan\",\n", 826 | " \"launch_vehicle\": \"Vostok\",\n", 827 | " \"orbit\": \"904 km Polar Sun Synchronous\",\n", 828 | " \"inclination\": \"99.08o\",\n", 829 | " \"repetivity\": \"22 days\",\n", 830 | " \"local_time\": \"10.30 a.m. (descending node)\",\n", 831 | " \"mission_completed_on\": \"December 20, 2003\"\n", 832 | " },\n", 833 | " {\n", 834 | " \"name\": \"SROSS-2\",\n", 835 | " \"id\": 1,\n", 836 | " \"mission\": \"Experimental\",\n", 837 | " \"weight\": \"150 kg\",\n", 838 | " \"onboard_power\": \"90 Watts\",\n", 839 | " \"communication\": \"S-band and VHF\",\n", 840 | " \"stabilization\": \"Three axis body stabilized (biased momentum) with a Momentum Wheel and Magnetic Torquer\",\n", 841 | " \"propulsion_system\": \"Monopropellant (Hydrazine based) Reaction Control System\",\n", 842 | " \"payload\": \"Gamma Ray Burst (GRB) payload and Mono Payload Ocular Electro-Optic Stereo Scanner (MEOSS) built by DLR, Germany\",\n", 843 | " \"launch_date\": \"July 13, 1988\",\n", 844 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 845 | " \"launch_vehicle\": \"Augmented Satellite Launch Vehicle (ASLV)\",\n", 846 | " \"orbit\": \"Not realised\"\n", 847 | " },\n", 848 | " {\n", 849 | " \"name\": \"IRS-1A\",\n", 850 | " \"id\": 1,\n", 851 | " \"mission\": \"Operational Remote Sensing\",\n", 852 | " \"weight\": \"975 kg\",\n", 853 | " \"onboard_power\": \"600 Watts\",\n", 854 | " \"communication\": \"S-band, X-band and VHF(commanding only)\",\n", 855 | " \"stabilization\": \"Three axis body stabilized (zero momentum) with 4 Reactions Wheels, Magnetic torquers\",\n", 856 | " \"rcs\": \"Monopropellant Hydrazine based with sixteen 1 Newton thrusters\",\n", 857 | " \"payload\": \"Three solid state Push Broom Cameras: LISS-1(72.5 metre resolution), LISS-2A and LISS-2B (36.25 metre resolution)\",\n", 858 | " \"launch_date\": \"March 17, 1988\",\n", 859 | " \"launch_site\": \"Baikanur Cosmodrome Kazakhstan\",\n", 860 | " \"launch_vehicle\": \"Vostok\",\n", 861 | " \"orbit\": \"904 km Polar Sun-synchronous\",\n", 862 | " \"inclination\": \"99.08o\",\n", 863 | " \"repetivity\": \"22 days (307 orbits)\",\n", 864 | " \"local_time\": \"10.30 a.m. (descending node)\",\n", 865 | " \"mission_completed_during\": \"July 1996\"\n", 866 | " },\n", 867 | " {\n", 868 | " \"name\": \"SROSS-1\\n\",\n", 869 | " \"id\": 1,\n", 870 | " \"mission\": \"Experimental\",\n", 871 | " \"weight\": \"150 kg\",\n", 872 | " \"onboard_power\": \"90 Watts\",\n", 873 | " \"communication\": \"S-band and VHF\",\n", 874 | " \"stabilization\": \"Three axis body stabilized (biased momentum) with a Momentum Wheel and Magnetic Torquer\",\n", 875 | " \"propulsion_system\": \"Monopropellant (Hydrazine based) Reaction control system\",\n", 876 | " \"payload\": \"Launch Vehicle Monitoring Platform(LVMP), Gamma Ray Burst (GRB) payload and Corner Cube Retro Reflector (CCRR) for laser tracking\",\n", 877 | " \"launch_date\": \"March 24, 1987\",\n", 878 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 879 | " \"launch_vehicle\": \"Augmented Satellite Launch Vehicle (ASLV)\",\n", 880 | " \"orbital_life\": \"Not realised\"\n", 881 | " },\n", 882 | " {\n", 883 | " \"name\": \"Rohini Satellite RS-D2\",\n", 884 | " \"id\": 1,\n", 885 | " \"mission\": \"Experimental\",\n", 886 | " \"weight\": \"41.5 kg\",\n", 887 | " \"onboard_power\": \"16 Watts\",\n", 888 | " \"communication\": \"VHF band\",\n", 889 | " \"stabilization\": \"Spin stabilized\",\n", 890 | " \"payload\": \"Smart sensor (remote sensing payload), L-band beacon\",\n", 891 | " \"launch_date\": \"April 17, 1983\",\n", 892 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 893 | " \"launch_vehicle\": \"SLV-3\",\n", 894 | " \"orbit\": \"371 x 861 km\",\n", 895 | " \"inclination\": \"46o\",\n", 896 | " \"mission_life\": \"17 months\",\n", 897 | " \"orbital_life\": \"Seven years (Re-entered on April 19, 1990)\"\n", 898 | " },\n", 899 | " {\n", 900 | " \"name\": \"Bhaskara-II\",\n", 901 | " \"id\": 1,\n", 902 | " \"mission\": \"Experimental Remote Sensing\",\n", 903 | " \"weight\": \"444 kg\",\n", 904 | " \"onboard_power\": \"47 Watts\",\n", 905 | " \"communication\": \"VHF band\",\n", 906 | " \"stabilization\": \"Spin stabilized (spin axis controlled)\",\n", 907 | " \"payload\": \"TV cameras, three band Microwave Radiometer (SAMIR)\",\n", 908 | " \"launch_date\": \"Nov 20, 1981\",\n", 909 | " \"launch_site\": \"Volgograd Launch Station (presently in Russia)\",\n", 910 | " \"launch_vehicle\": \"C-1 Intercosmos\",\n", 911 | " \"orbit\": \"541 x 557 km\",\n", 912 | " \"inclination\": \"50.7o\",\n", 913 | " \"mission_life\": \"One year (nominal)\",\n", 914 | " \"orbital_life\": \"About 10 years ( Re-entered in 1991 )\"\n", 915 | " },\n", 916 | " {\n", 917 | " \"name\": \"APPLE\",\n", 918 | " \"id\": 1,\n", 919 | " \"mission\": \"Experimental geostationary communication\",\n", 920 | " \"weight\": \"670 kg\",\n", 921 | " \"onboard_power\": \"210 Watts\",\n", 922 | " \"communication\": \"VHF and C-band\",\n", 923 | " \"stabilization\": \"Three axis stabilized (biased momentum) with Momentum Wheels, Torquers & \\u00a0Hydrazine based Reaction control system\",\n", 924 | " \"payload\": \"C - band transponders (Two)\",\n", 925 | " \"launch_date\": \"June19,1981\",\n", 926 | " \"launch_site\": \"Kourou (CSG), French Guyana\",\n", 927 | " \"launch_vehicle\": \"Ariane -1(V-3)\",\n", 928 | " \"orbit\": \"Geosynchronous (102 deg. E\\u00a0 longitude, over Indonesia)\",\n", 929 | " \"inclination\": \"Near zero\",\n", 930 | " \"mission_life\": \"Two years\"\n", 931 | " },\n", 932 | " {\n", 933 | " \"name\": \"Rohini Satellite RS-D1\",\n", 934 | " \"id\": 1,\n", 935 | " \"mission\": \"Experimental\",\n", 936 | " \"weight\": \"38 kg\",\n", 937 | " \"onboard_power\": \"16 Watts\",\n", 938 | " \"communication\": \"VHF band\",\n", 939 | " \"stabilization\": \"Spin stabilized\",\n", 940 | " \"payload\": \"Landmark Tracker ( remote sensing payload)\",\n", 941 | " \"launch_date\": \"May 31,1981\",\n", 942 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 943 | " \"launch_vehicle\": \"SLV-3\",\n", 944 | " \"orbit\": \"186 x 418 km (achieved)\",\n", 945 | " \"inclination\": \"46 deg\",\n", 946 | " \"orbital_life\": \"Nine days\"\n", 947 | " },\n", 948 | " {\n", 949 | " \"name\": \"Rohini Satellite RS-1\",\n", 950 | " \"id\": 1,\n", 951 | " \"mission\": \"Experimental\",\n", 952 | " \"weight\": \"35 kg\",\n", 953 | " \"onboard_power\": \"16 Watts\",\n", 954 | " \"communication\": \"VHF band\",\n", 955 | " \"stabilization\": \"Spin stabilized\",\n", 956 | " \"payload\": \"Launch vehicle monitoring instruments\",\n", 957 | " \"launch_date\": \"July 18,1980\",\n", 958 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 959 | " \"launch_vehicle\": \"SLV-3\",\n", 960 | " \"orbit\": \"305 x 919 km\",\n", 961 | " \"inclination\": \"44.7 deg.\",\n", 962 | " \"mission_life\": \"1.2 years\",\n", 963 | " \"orbital_life\": \"20 months\"\n", 964 | " },\n", 965 | " {\n", 966 | " \"name\": \"Rohini Technology Payload\\n (RTP)\",\n", 967 | " \"id\": 1,\n", 968 | " \"mission\": \"Experimental\",\n", 969 | " \"weight\": \"35 kg\",\n", 970 | " \"onboard_power\": \"3 Watts\",\n", 971 | " \"communication\": \"VHF band\",\n", 972 | " \"stabilization\": \"Spin stabilized (spin axis controlled)\",\n", 973 | " \"payload\": \"Launch vehicle monitoring instruments\",\n", 974 | " \"launch_date\": \"August 10,1979\",\n", 975 | " \"launch_site\": \"SHAR Centre, Sriharikota, India\",\n", 976 | " \"launch_vehicle\": \"SLV-3\",\n", 977 | " \"orbit\": \"Not achieved\"\n", 978 | " },\n", 979 | " {\n", 980 | " \"name\": \"Bhaskara-I\",\n", 981 | " \"id\": 1,\n", 982 | " \"mission\": \"Experimental Remote Sensing\",\n", 983 | " \"weight\": \"442 kg\",\n", 984 | " \"onboard_power\": \"47 Watts\",\n", 985 | " \"communication\": \"VHF band\",\n", 986 | " \"stabilization\": \"Spin stabilized (spin axis controlled)\",\n", 987 | " \"payload\": \"TVcameras, three band Microwave Radiometer (SAMIR)\",\n", 988 | " \"launch_date\": \"Jun 07,1979\",\n", 989 | " \"launch_site\": \"Volgograd Launch Station (presently in Russia)\",\n", 990 | " \"launch_vehicle\": \"C-1Intercosmos\",\n", 991 | " \"orbit\": \"519 x 541 km\",\n", 992 | " \"inclination\": \"50.6 deg\",\n", 993 | " \"mission_life\": \"One year (nominal)\",\n", 994 | " \"orbital_life\": \"About 10 years ( Re-entered in 1989 )\"\n", 995 | " },\n", 996 | " {\n", 997 | " \"name\": \"Aryabhata \",\n", 998 | " \"id\": 1,\n", 999 | " \"mission\": \"Scientific/ Experimental\",\n", 1000 | " \"weight\": \"360 kg\",\n", 1001 | " \"on_board_power\": \"46 Watts\",\n", 1002 | " \"communication\": \"VHF band\",\n", 1003 | " \"stabilization\": \"Spinstabilize\",\n", 1004 | " \"payload\": \"X-ray Astronomy Aeronomy & Solar Physics\",\n", 1005 | " \"launch_date\": \"April 19, 1975\",\n", 1006 | " \"launch_site\": \"Volgograd Launch Station (presently in Russia)\",\n", 1007 | " \"launch_vehicle\": \"C-1 Intercosmos\",\n", 1008 | " \"orbit\": \"563 x 619 km\",\n", 1009 | " \"inclination\": \"50.7 deg\",\n", 1010 | " \"mission_life\": \"6 months(nominal), Spacecraft mainframe active till March,1981\",\n", 1011 | " \"orbital_life\": \"Nearly seventeen years (Re-entered on February 10,1992)\"\n", 1012 | " }\n", 1013 | "]\n" 1014 | ] 1015 | } 1016 | ], 1017 | "source": [ 1018 | "\n", 1019 | "data = []\n", 1020 | "for spacecraft in spacecrafts:\n", 1021 | " title = spacecraft.text\n", 1022 | " link = spacecraft[\"href\"]\n", 1023 | " url = \"https://www.isro.gov.in/{craft}\".format(craft=link)\n", 1024 | " response = requests.get(url)\n", 1025 | " soup = BeautifulSoup(response.text,'lxml')\n", 1026 | " tables = soup.find_all(\"table\", {\"class\":\"pContent table table-striped table-bordered\"})\n", 1027 | " count = 0\n", 1028 | " for table in tables:\n", 1029 | " rows = table.find_all('tr')\n", 1030 | " dt = {\"name\":title,\"id\":1}\n", 1031 | " for row in rows:\n", 1032 | " cols = row.find_all('td')\n", 1033 | " cols = [ele.text.strip() for ele in cols]\n", 1034 | " if(len(cols)== 2):\n", 1035 | " dt[\"\".join(\"_\".join(cols[0].lower().split(\" \")).split(\"\\n\"))] = (\" \".join((cols[1]).split(\"\\n\"))).strip()\n", 1036 | "\n", 1037 | " data.append(dt)\n", 1038 | "\n", 1039 | "\n", 1040 | "data = data.reverse\n", 1041 | "for i in range(len(data)):\n", 1042 | " data[i][\"id\"] = i+1\n", 1043 | "\n", 1044 | "json_data = json.dumps(data,indent=2)\n", 1045 | "print(json_data)\n", 1046 | "\n", 1047 | "\n", 1048 | "\n", 1049 | "\n" 1050 | ] 1051 | }, 1052 | { 1053 | "cell_type": "code", 1054 | "execution_count": null, 1055 | "metadata": {}, 1056 | "outputs": [], 1057 | "source": [ 1058 | "\n" 1059 | ] 1060 | } 1061 | ], 1062 | "metadata": { 1063 | "kernelspec": { 1064 | "display_name": "Python 3", 1065 | "language": "python", 1066 | "name": "python3" 1067 | }, 1068 | "language_info": { 1069 | "codemirror_mode": { 1070 | "name": "ipython", 1071 | "version": 3 1072 | }, 1073 | "file_extension": ".py", 1074 | "mimetype": "text/x-python", 1075 | "name": "python", 1076 | "nbconvert_exporter": "python", 1077 | "pygments_lexer": "ipython3", 1078 | "version": "3.11.2" 1079 | }, 1080 | "orig_nbformat": 4 1081 | }, 1082 | "nbformat": 4, 1083 | "nbformat_minor": 2 1084 | } 1085 | --------------------------------------------------------------------------------