diff --git a/README.md b/README.md index 27fcfcf..a61863e 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,93 @@ -# ISRO π API +# ISRO API -Open Source API for Launched Spacecrafts & Rockets data of ISRO +Open Source API for ISRO spacecraft, launcher, and mission data. -## API End-Points -Spacecraft: [/api/spacecrafts](https://isro.vercel.app/api/spacecrafts) -- Launchers: [/api/launchers](https://isro.vercel.app/api/launchers) -- Customer Satellites: [/api/customer_satellites](https://isro.vercel.app/api/customer_satellites) -- Centres: [/api/centres](https://isro.vercel.app/api/centres) -### Mission End-Points -- Spacecraft Missions: [/api/spacecraft_missions](https://isro.vercel.app/api/spacecraft_missions) +**Live:** [isro.vercel.app](https://isro.vercel.app) +## API Endpoints + +| Endpoint | Description | Records | +|----------|-------------|---------| +| [`/api/spacecrafts`](https://isro.vercel.app/api/spacecrafts) | All ISRO spacecrafts with launch date, vehicle, orbit type, and status | 113 | +| [`/api/launchers`](https://isro.vercel.app/api/launchers) | Launch vehicles classified by family (SLV, ASLV, PSLV, GSLV, LVM-3) | 81 | +| [`/api/customer_satellites`](https://isro.vercel.app/api/customer_satellites) | Foreign satellites launched by ISRO, with ISO dates and normalized countries | 75 | +| [`/api/centres`](https://isro.vercel.app/api/centres) | ISRO research centres across India | 44 | +| [`/api/spacecraft_missions`](https://isro.vercel.app/api/spacecraft_missions) | Detailed mission data: mass, power, orbit, payloads, stabilization, status | 65 | + +## Response Format + +All endpoints return JSON with a consistent wrapper: + +```json +{ + "spacecrafts": [ + { + "id": 1, + "name": "Aryabhata", + "launch_date": "1975-04-19", + "launch_vehicle": "C-1 Intercosmos", + "mission_type": "Scientific/ Experimental", + "orbit_type": null, + "mass_kg": 360.0, + "status": "decommissioned" + } + ] +} +``` + +### Spacecraft Missions Schema + +| Field | Type | Description | +|-------|------|-------------| +| `id` | number | Sequential ID | +| `name` | string | Spacecraft name | +| `mission_type` | string\|null | Mission purpose (Communication, Remote Sensing, etc.) | +| `launch_date` | string\|null | ISO 8601 date (YYYY-MM-DD) | +| `launch_site` | string\|null | Launch facility | +| `launch_vehicle` | string\|null | Rocket used | +| `orbit` | string\|null | Orbit description | +| `orbit_type` | string\|null | Classified: LEO, SSO, GEO, Lunar, Interplanetary, Failed | +| `altitude_km` | number\|null | Orbital altitude in km | +| `inclination_deg` | number\|null | Orbital inclination in degrees | +| `mass_kg` | number\|null | Lift-off mass in kg | +| `power_watts` | number\|null | Onboard power in watts | +| `mission_life` | string\|null | Designed mission lifetime | +| `status` | string | active, decommissioned, failed, or unknown | +| `payloads` | string\|null | Onboard instruments/payloads | +| `stabilization` | string\|null | Attitude control system | +| `propulsion` | string\|null | Propulsion system | + +## Data Normalization + +Raw data is scraped from [isro.gov.in](https://www.isro.gov.in) and normalized using `scripts/normalize_data.py`. The pipeline: + +- Parses 15+ date formats into ISO 8601 +- Resolves 9+ field name variants for mass (e.g., `weight`, `lift-off_mass`, `spacecraft_mass`) into `mass_kg` +- Extracts wattage from complex power strings (e.g., "15 Sq.m Solar Array generating 1360W" -> 1360) +- Classifies orbit types (LEO, SSO, GEO, Lunar, etc.) +- Infers mission status (active/decommissioned/failed) from launch date + mission life +- Normalizes country names and fixes field casing inconsistencies +- Merges fresh scraper output with existing data (idempotent) + +```bash +# Run the normalization pipeline +python scripts/normalize_data.py +``` + +## Tech Stack + +- **Runtime:** Node.js (Vercel Serverless Functions) +- **Data:** Static JSON, zero npm dependencies +- **Data Pipeline:** Python 3 (BeautifulSoup for scraping, custom normalization) +- **Hosting:** [Vercel](https://vercel.com) + +## Contributing + +1. Fork the repository +2. To update data: edit files in `data/` or run the scraper and normalization pipeline +3. To add endpoints: create a new file in `api/` (Vercel auto-routes it) +4. Submit a pull request + +## License + +MIT diff --git a/api/centres.js b/api/centres.js index ebefec3..75f23c4 100644 --- a/api/centres.js +++ b/api/centres.js @@ -1,20 +1,11 @@ -const fs = require("fs"); +const centres = require("../data/centres.json"); -// Load the centers data from a JSON file -let centers = require("../data/centres.json"); - -// Export an async function to handle requests module.exports = async (req, res) => { try { - // Send the centers data as the response - res.send(centers); + res.setHeader("Content-Type", "application/json"); + res.send(centres); } catch (error) { - // If there is an error, send a 500 status code and the error message and response res.status(500); - const response = error.response || {}; - res.send({ - message: error.message, - response, - }); + res.send({ error: error.message }); } }; diff --git a/api/customer_satellites.js b/api/customer_satellites.js index e99808a..a064224 100644 --- a/api/customer_satellites.js +++ b/api/customer_satellites.js @@ -1,20 +1,11 @@ -const fs = require("fs"); +const customerSatellites = require("../data/customer_satellites.json"); -// Load the customer satellite data from a JSON file -let launchers = require("../data/customer_satellites.json"); - -// Export an async function to handle requests module.exports = async (req, res) => { try { - // Send the customer satellite data as the response - res.send(launchers); + res.setHeader("Content-Type", "application/json"); + res.send(customerSatellites); } catch (error) { - // If there is an error, send a 500 status code and the error message and response res.status(500); - const response = error.response || {}; - res.send({ - message: error.message, - response, - }); + res.send({ error: error.message }); } }; diff --git a/api/index.js b/api/index.js index 7a627b0..3af97d3 100644 --- a/api/index.js +++ b/api/index.js @@ -1,15 +1,22 @@ -// Export an async function to handle requests +const endpoints = { + spacecrafts: "/api/spacecrafts", + launchers: "/api/launchers", + customer_satellites: "/api/customer_satellites", + centres: "/api/centres", + spacecraft_missions: "/api/spacecraft_missions", +}; + module.exports = async (req, res) => { try { - // Send a message as the response - res.send("
ISRO API v0.1.0"); - } catch (error) { - // If there is an error, send a 500 status code and the error message and response - res.status(500); - const response = error.response || {}; + res.setHeader("Content-Type", "application/json"); res.send({ - message: error.message, - response, + name: "ISRO API", + version: "1.0.0", + description: "Open Source API for ISRO spacecraft, launcher, and mission data", + endpoints, }); + } catch (error) { + res.status(500); + res.send({ error: error.message }); } }; diff --git a/api/launchers.js b/api/launchers.js index 4f4ae70..afe22f6 100644 --- a/api/launchers.js +++ b/api/launchers.js @@ -1,20 +1,11 @@ -const fs = require("fs"); +const launchers = require("../data/launchers.json"); -// Load the data for the available launchers from a JSON file -let launchers = require("../data/launchers.json"); - -// Export an async function to handle requests for the list of available launchers module.exports = async (req, res) => { try { - // Send the list of available launchers as the response + res.setHeader("Content-Type", "application/json"); res.send(launchers); } catch (error) { - // If there is an error, send a 500 status code and the error message and response res.status(500); - const response = error.response || {}; - res.send({ - message: error.message, - response, - }); + res.send({ error: error.message }); } }; diff --git a/api/spacecraft_missions.js b/api/spacecraft_missions.js index 22ce295..ada0f50 100644 --- a/api/spacecraft_missions.js +++ b/api/spacecraft_missions.js @@ -1,16 +1,11 @@ -const fs = require("fs"); - -let launchers = require("../data/spacecraft_missions.json"); +const spacecraftMissions = require("../data/spacecraft_missions.json"); module.exports = async (req, res) => { - try { - res.send(launchers); - } catch (error) { - res.status(500); - const response = error.response || {}; - res.send({ - message: error.message, - response, - }); - } + try { + res.setHeader("Content-Type", "application/json"); + res.send(spacecraftMissions); + } catch (error) { + res.status(500); + res.send({ error: error.message }); + } }; diff --git a/api/spacecrafts.js b/api/spacecrafts.js index d7393f9..18141ce 100644 --- a/api/spacecrafts.js +++ b/api/spacecrafts.js @@ -1,20 +1,11 @@ -const fs = require("fs"); +const spacecrafts = require("../data/spacecrafts.json"); -// Load the data for the available spacecrafts from a JSON file -let spacecrafts = require("../data/spacecrafts.json"); - -// Export an async function to handle requests for the list of available spacecrafts module.exports = async (req, res) => { try { - // Send the list of available spacecrafts as the response + res.setHeader("Content-Type", "application/json"); res.send(spacecrafts); } catch (error) { - // If there is an error, send a 500 status code and the error message and response res.status(500); - const response = error.response || {}; - res.send({ - message: error.message, - response, - }); + res.send({ error: error.message }); } }; diff --git a/data/centres.json b/data/centres.json index f8deb71..f825583 100644 --- a/data/centres.json +++ b/data/centres.json @@ -1,268 +1,268 @@ { - "centres": [ - { - "id": 1, - "name": "Semi-Conductor Laboratory (SCL)", - "Place": "Chandigarh", - "State": "Punjab/Haryana" - }, - { - "id": 2, - "name": "Western RRSC", - "Place": "Jodhpur", - "State": "Rajasthan" - }, - { - "id": 3, - "name": "Solar Observatory", - "Place": "Udaipur", - "State": "Rajasthan" - }, - { - "id": 4, - "name": "Space Applications Centre (SAC)", - "Place": "Ahmedabad", - "State": "Gujarat" - }, - { - "id": 5, - "name": "Physical Research Laboratory (PRL)", - "Place": "Ahmedabad", - "State": "Gujarat" - }, - { - "id": 6, - "name": "Development and Educational Communication Unit (DECU)", - "Place": "Ahmedabad", - "State": "Gujarat" - }, - { - "id": 7, - "name": "Infrared Observatory", - "Place": "Mt.Abu", - "State": "Rajasthan" - }, - { - "id": 8, - "name": "Master Control Facility-B (MCF)", - "Place": "Bhopal", - "State": "Madhya Pradesh" - }, - { - "id": 9, - "name": "ISRO Liaison Office", - "Place": "Mumbai", - "State": "Maharashtra" - }, - { - "id": 10, - "name": "Indian Deep Space Network (IDSN)", - "Place": "Byalalu", - "State": "Karnataka" - }, - { - "id": 11, - "name": "Indian Space Science Data Centre (ISSDC)", - "Place": "Byalalu", - "State": "Karnataka" - }, - { - "id": 12, - "name": "Master Control Facility (MCF)", - "Place": "Hassan", - "State": "Karnataka" - }, - { - "id": 13, - "name": "Ammonium Perchlorate Experimental Plant", - "Place": "Aluva", - "State": "Kerala" - }, - { - "id": 14, - "name": "Space Commission", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 15, - "name": "Department of Space and ISRO Headquarters", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 16, - "name": "INSAT Programme Office", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 17, - "name": "NNRMS Secretariat", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 18, - "name": "Civil Engineering Programme Office", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 19, - "name": "Antrix Corporation", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 20, - "name": "U R Rao Satellite Centre (URSC)", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 21, - "name": "Laboratory for Electro-Optical Systems (LEOS)", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 22, - "name": "ISRO Telemetry, Tracking and Command Network (ISTRAC)", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 23, - "name": "Southern RRSC", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 24, - "name": "Liquid Propulsion Systems Centre (LPSC)", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 25, - "name": "Human Space Flight Centre (HSFC)", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 26, - "name": "New Space India Limited (NSIL)", - "Place": "Bengaluru", - "State": "Karnataka" - }, - { - "id": 27, - "name": "New Space India Limited (NSIL)", - "Place": "New Delhi", - "State": "Delhi" - }, - { - "id": 28, - "name": "ISRO Branch Office", - "Place": "New Delhi", - "State": "Delhi" - }, - { - "id": 29, - "name": "Delhi Earth Station", - "Place": "New Delhi", - "State": "Delhi" - }, - { - "id": 30, - "name": "Indian Institute of Remote Sensing (IIRS)", - "Place": "Dehradun", - "State": "Uttarakhand" - }, - { - "id": 31, - "name": "Centre for Space Science and Technology Education in Asia-Pacific (CSSTEAP)", - "Place": "Dehradun", - "State": "Uttarakhand" - }, - { - "id": 32, - "name": "ISTRAC Ground Station", - "Place": "Lucknow", - "State": "Uttar Pradesh" - }, - { - "id": 33, - "name": "Eastern RRSC", - "Place": "Kolkata", - "State": "West Bengal" - }, - { - "id": 34, - "name": "North Eastern Space Application Centre (NE-SAC)", - "Place": "Shillong", - "State": "Meghalaya" - }, - { - "id": 35, - "name": "Central RRSC", - "Place": "Nagpur", - "State": "Maharashtra" - }, - { - "id": 36, - "name": "National Remote Sensing Centre (NRSC)", - "Place": "Hyderabad", - "State": "Telangana" - }, - { - "id": 37, - "name": "National Atmospheric Research Laboratory (NARL)", - "Place": "Tirupati", - "State": "Andhra Pradesh" - }, - { - "id": 38, - "name": "Down Range Station", - "Place": "Port Blair", - "State": "Andaman and Nicobar" - }, - { - "id": 39, - "name": "Satish Dhawan Space Centre (SDSC), SHAR", - "Place": "Sriharikota", - "State": "Andhra Pradesh" - }, - { - "id": 40, - "name": "ISRO Propulsion Complex", - "Place": "Mahendragiri", - "State": "Tamil Nadu" - }, - { - "id": 41, - "name": "Vikram Sarabhai Space Centre (VSSC)", - "Place": "Thiruvananthapuram", - "State": "Kerala" - }, - { - "id": 42, - "name": "Liquid Propulsion Systems Centre (LPSC)", - "Place": "Thiruvananthapuram", - "State": "Kerala" - }, - { - "id": 43, - "name": "ISRO Inertial Systems Unit (IISU)", - "Place": "Thiruvananthapuram", - "State": "Kerala" - }, - { - "id": 44, - "name": "Indian Institute of Space Science and Technology (IIST)", - "Place": "Thiruvananthapuram", - "State": "Kerala" - } - ] -} + "centres": [ + { + "id": 1, + "name": "Semi-Conductor Laboratory (SCL)", + "place": "Chandigarh", + "state": "Punjab/Haryana" + }, + { + "id": 2, + "name": "Western RRSC", + "place": "Jodhpur", + "state": "Rajasthan" + }, + { + "id": 3, + "name": "Solar Observatory", + "place": "Udaipur", + "state": "Rajasthan" + }, + { + "id": 4, + "name": "Space Applications Centre (SAC)", + "place": "Ahmedabad", + "state": "Gujarat" + }, + { + "id": 5, + "name": "Physical Research Laboratory (PRL)", + "place": "Ahmedabad", + "state": "Gujarat" + }, + { + "id": 6, + "name": "Development and Educational Communication Unit (DECU)", + "place": "Ahmedabad", + "state": "Gujarat" + }, + { + "id": 7, + "name": "Infrared Observatory", + "place": "Mt.Abu", + "state": "Rajasthan" + }, + { + "id": 8, + "name": "Master Control Facility-B (MCF)", + "place": "Bhopal", + "state": "Madhya Pradesh" + }, + { + "id": 9, + "name": "ISRO Liaison Office", + "place": "Mumbai", + "state": "Maharashtra" + }, + { + "id": 10, + "name": "Indian Deep Space Network (IDSN)", + "place": "Byalalu", + "state": "Karnataka" + }, + { + "id": 11, + "name": "Indian Space Science Data Centre (ISSDC)", + "place": "Byalalu", + "state": "Karnataka" + }, + { + "id": 12, + "name": "Master Control Facility (MCF)", + "place": "Hassan", + "state": "Karnataka" + }, + { + "id": 13, + "name": "Ammonium Perchlorate Experimental Plant", + "place": "Aluva", + "state": "Kerala" + }, + { + "id": 14, + "name": "Space Commission", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 15, + "name": "Department of Space and ISRO Headquarters", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 16, + "name": "INSAT Programme Office", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 17, + "name": "NNRMS Secretariat", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 18, + "name": "Civil Engineering Programme Office", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 19, + "name": "Antrix Corporation", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 20, + "name": "U R Rao Satellite Centre (URSC)", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 21, + "name": "Laboratory for Electro-Optical Systems (LEOS)", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 22, + "name": "ISRO Telemetry, Tracking and Command Network (ISTRAC)", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 23, + "name": "Southern RRSC", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 24, + "name": "Liquid Propulsion Systems Centre (LPSC)", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 25, + "name": "Human Space Flight Centre (HSFC)", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 26, + "name": "New Space India Limited (NSIL)", + "place": "Bengaluru", + "state": "Karnataka" + }, + { + "id": 27, + "name": "New Space India Limited (NSIL)", + "place": "New Delhi", + "state": "Delhi" + }, + { + "id": 28, + "name": "ISRO Branch Office", + "place": "New Delhi", + "state": "Delhi" + }, + { + "id": 29, + "name": "Delhi Earth Station", + "place": "New Delhi", + "state": "Delhi" + }, + { + "id": 30, + "name": "Indian Institute of Remote Sensing (IIRS)", + "place": "Dehradun", + "state": "Uttarakhand" + }, + { + "id": 31, + "name": "Centre for Space Science and Technology Education in Asia-Pacific (CSSTEAP)", + "place": "Dehradun", + "state": "Uttarakhand" + }, + { + "id": 32, + "name": "ISTRAC Ground Station", + "place": "Lucknow", + "state": "Uttar Pradesh" + }, + { + "id": 33, + "name": "Eastern RRSC", + "place": "Kolkata", + "state": "West Bengal" + }, + { + "id": 34, + "name": "North Eastern Space Application Centre (NE-SAC)", + "place": "Shillong", + "state": "Meghalaya" + }, + { + "id": 35, + "name": "Central RRSC", + "place": "Nagpur", + "state": "Maharashtra" + }, + { + "id": 36, + "name": "National Remote Sensing Centre (NRSC)", + "place": "Hyderabad", + "state": "Telangana" + }, + { + "id": 37, + "name": "National Atmospheric Research Laboratory (NARL)", + "place": "Tirupati", + "state": "Andhra Pradesh" + }, + { + "id": 38, + "name": "Down Range Station", + "place": "Port Blair", + "state": "Andaman and Nicobar" + }, + { + "id": 39, + "name": "Satish Dhawan Space Centre (SDSC), SHAR", + "place": "Sriharikota", + "state": "Andhra Pradesh" + }, + { + "id": 40, + "name": "ISRO Propulsion Complex", + "place": "Mahendragiri", + "state": "Tamil Nadu" + }, + { + "id": 41, + "name": "Vikram Sarabhai Space Centre (VSSC)", + "place": "Thiruvananthapuram", + "state": "Kerala" + }, + { + "id": 42, + "name": "Liquid Propulsion Systems Centre (LPSC)", + "place": "Thiruvananthapuram", + "state": "Kerala" + }, + { + "id": 43, + "name": "ISRO Inertial Systems Unit (IISU)", + "place": "Thiruvananthapuram", + "state": "Kerala" + }, + { + "id": 44, + "name": "Indian Institute of Space Science and Technology (IIST)", + "place": "Thiruvananthapuram", + "state": "Kerala" + } + ] +} \ No newline at end of file diff --git a/data/customer_satellites.json b/data/customer_satellites.json index fdca42f..4b7be04 100644 --- a/data/customer_satellites.json +++ b/data/customer_satellites.json @@ -1,528 +1,529 @@ { - "customer_satellites": [{ - "id": "DLR-TUBSAT", - "country": "Germany", - "launch_date": "26-05-1999", - "mass": "45", - "launcher": "PSLV-C2" - }, - { - "id": "KITSAT-3", - "country": "REPUBLIC OF KOREA", - "launch_date": "26-05-1999", - "mass": "110", - "launcher": "PSLV-C2" - }, - { - "id": "BIRD", - "country": "GERMANY", - "launch_date": "22-10-2001", - "mass": "92", - "launcher": "PSLV-C3" - }, - { - "id": "PROBA", - "country": "BELGIUM", - "launch_date": "22-10-2001", - "mass": "94", - "launcher": "PSLV-C3" - }, - { - "id": "LAPAN-TUBSAT", - "country": "INDONESIA", - "launch_date": "10-07-2007", - "mass": "56", - "launcher": "PSLV-C7" - }, - { - "id": "PEHUENSAT-1", - "country": "ARGENTINA", - "launch_date": "10-07-2007", - "mass": "6", - "launcher": "PSLV-C7" - }, - { - "id": "AGILE", - "country": "ITALY", - "launch_date": "23-04-2007", - "mass": "350", - "launcher": "PSLV-C8" - }, - { - "id": "TESCAR", - "country": "ISRAEL", - "launch_date": "21-01-2008", - "mass": "300", - "launcher": "PSLV-C10" - }, - { - "id": "CAN-X2", - "country": "CANADA", - "launch_date": "28-04-2008", - "mass": "7", - "launcher": "PSLV-C9" - }, - { - "id": "CUTE-1.7", - "country": "JAPAN", - "launch_date": "28-04-2008", - "mass": "5", - "launcher": "PSLV-C9" - }, - { - "id": "DELFI-C3", - "country": "THE NETHERLANDS", - "launch_date": "28-04-2008", - "mass": "6.5", - "launcher": "PSLV-C9" - }, - { - "id": "AAUSAT-II", - "country": "DENMARK", - "launch_date": "28-04-2008", - "mass": "3", - "launcher": "PSLV-C9" - }, - { - "id": "COMPASS-I", - "country": "GERMANY", - "launch_date": "28-04-2008", - "mass": "3", - "launcher": "PSLV-C9" - }, - { - "id": "SEEDS", - "country": "JAPAN", - "launch_date": "28-04-2008", - "mass": "3", - "launcher": "PSLV-C9" - }, - { - "id": "NLSS", - "country": "CANADA", - "launch_date": "28-04-2008", - "mass": "16", - "launcher": "PSLV-C9" - }, - { - "id": "RUBIN-8", - "country": "GERMANY", - "launch_date": "28-04-2008", - "mass": "8", - "launcher": "PSLV-C9" - }, - { - "id": "CUBESAT-1", - "country": "GERMANY", - "launch_date": "23-09-2009", - "mass": "1", - "launcher": "PSLV-C14" - }, - { - "id": "CUBESAT-2", - "country": "GERMANY", - "launch_date": "23-09-2009", - "mass": "1", - "launcher": "PSLV-C14" - }, - { - "id": "CUBESAT-3", - "country": "TURKEY", - "launch_date": "23-09-2009", - "mass": "1", - "launcher": "PSLV-C14" - }, - { - "id": "CUBESAT-4", - "country": "SWITZERLAND", - "launch_date": "23-09-2009", - "mass": "1", - "launcher": "PSLV-C14" - }, - { - "id": "RUBIN-9.1", - "country": "GERMANY", - "launch_date": "23-09-2009", - "mass": "1", - "launcher": "PSLV-C14" - }, - { - "id": "RUBIN-9.2", - "country": "GERMANY", - "launch_date": "23-09-2009", - "mass": "1", - "launcher": "PSLV-C14" - }, - { - "id": "ALSAT-2A", - "country": "ALGERIA", - "launch_date": "12-07-2010", - "mass": "116", - "launcher": "PSLV-C15" - }, - { - "id": "NLS6.1 AISSAT-1", - "country": "NORWAY", - "launch_date": "12-07-2010", - "mass": "6.5", - "launcher": "PSLV-C15" - }, - { - "id": "NLS6.2 TISAT-1", - "country": "SWITZERLAND", - "launch_date": "12-07-2010", - "mass": "1", - "launcher": "PSLV-C15" - }, - { - "id": "X-SAT", - "country": "SINGAPORE", - "launch_date": "20-04-2011", - "mass": "106", - "launcher": "PSLV-C16" - }, - { - "id": "VesselSat-1", - "country": "LUXEMBOURG", - "launch_date": "12-10-2011", - "mass": "28.7", - "launcher": "PSLV-C18" - }, - { - "id": "SPOT-6", - "country": "FRANCE", - "launch_date": "09-09-2012", - "mass": "712", - "launcher": "PSLV-C21" - }, - { - "id": "PROITERES", - "country": "JAPAN", - "launch_date": "09-09-2012", - "mass": "15", - "launcher": "PSLV-C21" - }, - { - "id": "SAPPHIRE", - "country": "CANADA", - "launch_date": "25-02-2013", - "mass": "148", - "launcher": "PSLV-C20" - }, - { - "id": "NEOSSAT", - "country": "CANADA", - "launch_date": "25-02-2013", - "mass": "74", - "launcher": "PSLV-C20" - }, - { - "id": "NLS8.1", - "country": "AUSTRIA", - "launch_date": "25-02-2013", - "mass": "14", - "launcher": "PSLV-C20" - }, - { - "id": "NLS8.2", - "country": "AUSTRIA", - "launch_date": "25-02-2013", - "mass": "14", - "launcher": "PSLV-C20" - }, - { - "id": "NLS8.3", - "country": "DENMARK", - "launch_date": "25-02-2013", - "mass": "3", - "launcher": "PSLV-C20" - }, - { - "id": "STRAND-1", - "country": "UNITED KINGDOM", - "launch_date": "25-02-2013", - "mass": "6.5", - "launcher": "PSLV-C20" - }, - { - "id": "SPOT-7", - "country": "FRANCE", - "launch_date": "30-06-2014", - "mass": "714", - "launcher": "PSLV-C23" - }, - { - "id": "AISAT", - "country": "GERMANY", - "launch_date": "30-06-2014", - "mass": "14", - "launcher": "PSLV-C23" - }, - { - "id": "NLS7.1(CAN-X4)", - "country": "CANADA", - "launch_date": "30-06-2014", - "mass": "15", - "launcher": "PSLV-C23" - }, - { - "id": "NLS7.2(CAN-X5)", - "country": "CANADA", - "launch_date": "30-06-2014", - "mass": "15", - "launcher": "PSLV-C23" - }, - { - "id": "VELOX-1", - "country": "SINGAPORE", - "launch_date": "30-06-2014", - "mass": "7", - "launcher": "PSLV-C23" - }, - { - "id": "AMAZONIA-1", - "country": "BRAZIL", - "launch_date": "28-02-2021", - "mass": "637", - "launcher": "PSLV-C51" - }, - { - "id": "DMC3-1", - "country": "UK", - "launch_date": "10-07-2015", - "mass": "447", - "launcher": "PSLV-C28" - }, - { - "id": "DMC3-2", - "country": "UK", - "launch_date": "10-07-2015", - "mass": "447", - "launcher": "PSLV-C28" - }, - { - "id": "DMC3-3", - "country": "UK", - "launch_date": "10-07-2015", - "mass": "447", - "launcher": "PSLV-C28" - }, - { - "id": "CBNT-1", - "country": "UK", - "launch_date": "10-07-2015", - "mass": "91", - "launcher": "PSLV-C28" - }, - { - "id": "De-OrbitSail", - "country": "UK", - "launch_date": "10-07-2015", - "mass": "7", - "launcher": "PSLV-C28" - }, - { - "id": "LAPAN-A2", - "country": "INDONESIA", - "launch_date": "28-09-2015", - "mass": "76", - "launcher": "PSLV-C30" - }, - { - "id": "NLS-14(Ev9)", - "country": "CANADA", - "launch_date": "28-09-2015", - "mass": "14", - "launcher": "PSLV-C30" - }, - { - "id": "LEMUR-1", - "country": "USA", - "launch_date": "28-09-2015", - "mass": "7", - "launcher": "PSLV-C30" - }, - { - "id": "LEMUR-2", - "country": "USA", - "launch_date": "28-09-2015", - "mass": "7", - "launcher": "PSLV-C30" - }, - { - "id": "LEMUR-3", - "country": "USA", - "launch_date": "28-09-2015", - "mass": "7", - "launcher": "PSLV-C30" - }, - { - "id": "LEMUR-4", - "country": "USA", - "launch_date": "28-09-2015", - "mass": "7", - "launcher": "PSLV-C30" - }, - { - "id": "TeLEOS", - "country": "SINGAPORE", - "launch_date": "16-12-2015", - "mass": "400", - "launcher": "PSLV-C29" - }, - { - "id": "Kent Ridge-I", - "country": "SINGAPORE", - "launch_date": "16-12-2015", - "mass": "78", - "launcher": "PSLV-C29" - }, - { - "id": "VELOX-C1", - "country": "SINGAPORE", - "launch_date": "16-12-2015", - "mass": "123", - "launcher": "PSLV-C29" - }, - { - "id": "VELOX-II", - "country": "SINGAPORE", - "launch_date": "16-12-2015", - "mass": "13", - "launcher": "PSLV-C29" - }, - { - "id": "Galassia", - "country": "SINGAPORE", - "launch_date": "16-12-2015", - "mass": "3.4", - "launcher": "PSLV-C29" - }, - { - "id": "Athenoxat-I", - "country": "SINGAPORE", - "launch_date": "16-12-2015", - "mass": "", - "launcher": "PSLV-C29" - }, - { - "id": "LAPAN-A3", - "country": "INDONESIA", - "launch_date": "22-06-2016", - "mass": "120", - "launcher": "PSLV-C34" - }, - { - "id": "BIROS", - "country": "GERMANY", - "launch_date": "22-06-2016", - "mass": "130", - "launcher": "PSLV-C34" - }, - { - "id": "M3MSat", - "country": "CANADA", - "launch_date": "22-06-2016", - "mass": "85", - "launcher": "PSLV-C34" - }, - { - "id": "SkySat Gen2-1", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "110", - "launcher": "PSLV-C34" - }, - { - "id": "GHGSat-D", - "country": "CANADA", - "launch_date": "22-06-2016", - "mass": "25.5", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP1.1", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP1.2", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP1.3", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP1.4", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP2.1", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP2.2", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP2.3", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP2.4", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP3.1", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP3.2", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP3.3", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - }, - { - "id": "DOVE QP3.4", - "country": "USA", - "launch_date": "22-06-2016", - "mass": "4.7", - "launcher": "PSLV-C34" - } - ] -} + "customer_satellites": [ + { + "id": "DLR-TUBSAT", + "country": "Germany", + "launch_date": "1999-05-26", + "mass_kg": 45.0, + "launcher": "PSLV-C2" + }, + { + "id": "KITSAT-3", + "country": "South Korea", + "launch_date": "1999-05-26", + "mass_kg": 110.0, + "launcher": "PSLV-C2" + }, + { + "id": "BIRD", + "country": "Germany", + "launch_date": "2001-10-22", + "mass_kg": 92.0, + "launcher": "PSLV-C3" + }, + { + "id": "PROBA", + "country": "Belgium", + "launch_date": "2001-10-22", + "mass_kg": 94.0, + "launcher": "PSLV-C3" + }, + { + "id": "LAPAN-TUBSAT", + "country": "Indonesia", + "launch_date": "2007-07-10", + "mass_kg": 56.0, + "launcher": "PSLV-C7" + }, + { + "id": "PEHUENSAT-1", + "country": "Argentina", + "launch_date": "2007-07-10", + "mass_kg": 6.0, + "launcher": "PSLV-C7" + }, + { + "id": "AGILE", + "country": "Italy", + "launch_date": "2007-04-23", + "mass_kg": 350.0, + "launcher": "PSLV-C8" + }, + { + "id": "TESCAR", + "country": "Israel", + "launch_date": "2008-01-21", + "mass_kg": 300.0, + "launcher": "PSLV-C10" + }, + { + "id": "CAN-X2", + "country": "Canada", + "launch_date": "2008-04-28", + "mass_kg": 7.0, + "launcher": "PSLV-C9" + }, + { + "id": "CUTE-1.7", + "country": "Japan", + "launch_date": "2008-04-28", + "mass_kg": 5.0, + "launcher": "PSLV-C9" + }, + { + "id": "DELFI-C3", + "country": "Netherlands", + "launch_date": "2008-04-28", + "mass_kg": 6.5, + "launcher": "PSLV-C9" + }, + { + "id": "AAUSAT-II", + "country": "Denmark", + "launch_date": "2008-04-28", + "mass_kg": 3.0, + "launcher": "PSLV-C9" + }, + { + "id": "COMPASS-I", + "country": "Germany", + "launch_date": "2008-04-28", + "mass_kg": 3.0, + "launcher": "PSLV-C9" + }, + { + "id": "SEEDS", + "country": "Japan", + "launch_date": "2008-04-28", + "mass_kg": 3.0, + "launcher": "PSLV-C9" + }, + { + "id": "NLSS", + "country": "Canada", + "launch_date": "2008-04-28", + "mass_kg": 16.0, + "launcher": "PSLV-C9" + }, + { + "id": "RUBIN-8", + "country": "Germany", + "launch_date": "2008-04-28", + "mass_kg": 8.0, + "launcher": "PSLV-C9" + }, + { + "id": "CUBESAT-1", + "country": "Germany", + "launch_date": "2009-09-23", + "mass_kg": 1.0, + "launcher": "PSLV-C14" + }, + { + "id": "CUBESAT-2", + "country": "Germany", + "launch_date": "2009-09-23", + "mass_kg": 1.0, + "launcher": "PSLV-C14" + }, + { + "id": "CUBESAT-3", + "country": "Turkey", + "launch_date": "2009-09-23", + "mass_kg": 1.0, + "launcher": "PSLV-C14" + }, + { + "id": "CUBESAT-4", + "country": "Switzerland", + "launch_date": "2009-09-23", + "mass_kg": 1.0, + "launcher": "PSLV-C14" + }, + { + "id": "RUBIN-9.1", + "country": "Germany", + "launch_date": "2009-09-23", + "mass_kg": 1.0, + "launcher": "PSLV-C14" + }, + { + "id": "RUBIN-9.2", + "country": "Germany", + "launch_date": "2009-09-23", + "mass_kg": 1.0, + "launcher": "PSLV-C14" + }, + { + "id": "ALSAT-2A", + "country": "Algeria", + "launch_date": "2010-07-12", + "mass_kg": 116.0, + "launcher": "PSLV-C15" + }, + { + "id": "NLS6.1 AISSAT-1", + "country": "Norway", + "launch_date": "2010-07-12", + "mass_kg": 6.5, + "launcher": "PSLV-C15" + }, + { + "id": "NLS6.2 TISAT-1", + "country": "Switzerland", + "launch_date": "2010-07-12", + "mass_kg": 1.0, + "launcher": "PSLV-C15" + }, + { + "id": "X-SAT", + "country": "Singapore", + "launch_date": "2011-04-20", + "mass_kg": 106.0, + "launcher": "PSLV-C16" + }, + { + "id": "VesselSat-1", + "country": "Luxembourg", + "launch_date": "2011-10-12", + "mass_kg": 28.7, + "launcher": "PSLV-C18" + }, + { + "id": "SPOT-6", + "country": "France", + "launch_date": "2012-09-09", + "mass_kg": 712.0, + "launcher": "PSLV-C21" + }, + { + "id": "PROITERES", + "country": "Japan", + "launch_date": "2012-09-09", + "mass_kg": 15.0, + "launcher": "PSLV-C21" + }, + { + "id": "SAPPHIRE", + "country": "Canada", + "launch_date": "2013-02-25", + "mass_kg": 148.0, + "launcher": "PSLV-C20" + }, + { + "id": "NEOSSAT", + "country": "Canada", + "launch_date": "2013-02-25", + "mass_kg": 74.0, + "launcher": "PSLV-C20" + }, + { + "id": "NLS8.1", + "country": "Austria", + "launch_date": "2013-02-25", + "mass_kg": 14.0, + "launcher": "PSLV-C20" + }, + { + "id": "NLS8.2", + "country": "Austria", + "launch_date": "2013-02-25", + "mass_kg": 14.0, + "launcher": "PSLV-C20" + }, + { + "id": "NLS8.3", + "country": "Denmark", + "launch_date": "2013-02-25", + "mass_kg": 3.0, + "launcher": "PSLV-C20" + }, + { + "id": "STRAND-1", + "country": "United Kingdom", + "launch_date": "2013-02-25", + "mass_kg": 6.5, + "launcher": "PSLV-C20" + }, + { + "id": "SPOT-7", + "country": "France", + "launch_date": "2014-06-30", + "mass_kg": 714.0, + "launcher": "PSLV-C23" + }, + { + "id": "AISAT", + "country": "Germany", + "launch_date": "2014-06-30", + "mass_kg": 14.0, + "launcher": "PSLV-C23" + }, + { + "id": "NLS7.1(CAN-X4)", + "country": "Canada", + "launch_date": "2014-06-30", + "mass_kg": 15.0, + "launcher": "PSLV-C23" + }, + { + "id": "NLS7.2(CAN-X5)", + "country": "Canada", + "launch_date": "2014-06-30", + "mass_kg": 15.0, + "launcher": "PSLV-C23" + }, + { + "id": "VELOX-1", + "country": "Singapore", + "launch_date": "2014-06-30", + "mass_kg": 7.0, + "launcher": "PSLV-C23" + }, + { + "id": "AMAZONIA-1", + "country": "Brazil", + "launch_date": "2021-02-28", + "mass_kg": 637.0, + "launcher": "PSLV-C51" + }, + { + "id": "DMC3-1", + "country": "United Kingdom", + "launch_date": "2015-07-10", + "mass_kg": 447.0, + "launcher": "PSLV-C28" + }, + { + "id": "DMC3-2", + "country": "United Kingdom", + "launch_date": "2015-07-10", + "mass_kg": 447.0, + "launcher": "PSLV-C28" + }, + { + "id": "DMC3-3", + "country": "United Kingdom", + "launch_date": "2015-07-10", + "mass_kg": 447.0, + "launcher": "PSLV-C28" + }, + { + "id": "CBNT-1", + "country": "United Kingdom", + "launch_date": "2015-07-10", + "mass_kg": 91.0, + "launcher": "PSLV-C28" + }, + { + "id": "De-OrbitSail", + "country": "United Kingdom", + "launch_date": "2015-07-10", + "mass_kg": 7.0, + "launcher": "PSLV-C28" + }, + { + "id": "LAPAN-A2", + "country": "Indonesia", + "launch_date": "2015-09-28", + "mass_kg": 76.0, + "launcher": "PSLV-C30" + }, + { + "id": "NLS-14(Ev9)", + "country": "Canada", + "launch_date": "2015-09-28", + "mass_kg": 14.0, + "launcher": "PSLV-C30" + }, + { + "id": "LEMUR-1", + "country": "United States", + "launch_date": "2015-09-28", + "mass_kg": 7.0, + "launcher": "PSLV-C30" + }, + { + "id": "LEMUR-2", + "country": "United States", + "launch_date": "2015-09-28", + "mass_kg": 7.0, + "launcher": "PSLV-C30" + }, + { + "id": "LEMUR-3", + "country": "United States", + "launch_date": "2015-09-28", + "mass_kg": 7.0, + "launcher": "PSLV-C30" + }, + { + "id": "LEMUR-4", + "country": "United States", + "launch_date": "2015-09-28", + "mass_kg": 7.0, + "launcher": "PSLV-C30" + }, + { + "id": "TeLEOS", + "country": "Singapore", + "launch_date": "2015-12-16", + "mass_kg": 400.0, + "launcher": "PSLV-C29" + }, + { + "id": "Kent Ridge-I", + "country": "Singapore", + "launch_date": "2015-12-16", + "mass_kg": 78.0, + "launcher": "PSLV-C29" + }, + { + "id": "VELOX-C1", + "country": "Singapore", + "launch_date": "2015-12-16", + "mass_kg": 123.0, + "launcher": "PSLV-C29" + }, + { + "id": "VELOX-II", + "country": "Singapore", + "launch_date": "2015-12-16", + "mass_kg": 13.0, + "launcher": "PSLV-C29" + }, + { + "id": "Galassia", + "country": "Singapore", + "launch_date": "2015-12-16", + "mass_kg": 3.4, + "launcher": "PSLV-C29" + }, + { + "id": "Athenoxat-I", + "country": "Singapore", + "launch_date": "2015-12-16", + "mass_kg": null, + "launcher": "PSLV-C29" + }, + { + "id": "LAPAN-A3", + "country": "Indonesia", + "launch_date": "2016-06-22", + "mass_kg": 120.0, + "launcher": "PSLV-C34" + }, + { + "id": "BIROS", + "country": "Germany", + "launch_date": "2016-06-22", + "mass_kg": 130.0, + "launcher": "PSLV-C34" + }, + { + "id": "M3MSat", + "country": "Canada", + "launch_date": "2016-06-22", + "mass_kg": 85.0, + "launcher": "PSLV-C34" + }, + { + "id": "SkySat Gen2-1", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 110.0, + "launcher": "PSLV-C34" + }, + { + "id": "GHGSat-D", + "country": "Canada", + "launch_date": "2016-06-22", + "mass_kg": 25.5, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP1.1", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP1.2", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP1.3", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP1.4", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP2.1", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP2.2", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP2.3", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP2.4", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP3.1", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP3.2", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP3.3", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + }, + { + "id": "DOVE QP3.4", + "country": "United States", + "launch_date": "2016-06-22", + "mass_kg": 4.7, + "launcher": "PSLV-C34" + } + ] +} \ No newline at end of file diff --git a/data/launchers.json b/data/launchers.json index cbadda8..24a04fd 100644 --- a/data/launchers.json +++ b/data/launchers.json @@ -1,247 +1,439 @@ { - "launchers": [ - { - "id": "SLV-3E1" - }, - { - "id": "SLV-3E2" - }, - { - "id": "SLV-3D1" - }, - { - "id": "SLV-3" - }, - { - "id": "ASLV-D1" - }, - { - "id": "ASLV-D2" - }, - { - "id": "ASLV-D3" - }, - { - "id": "PSLV-D1" - }, - { - "id": "ASLV-D4" - }, - { - "id": "PSLV-D2" - }, - { - "id": "PSLV-D3" - }, - { - "id": "PSLV-C1" - }, - { - "id": "PSLV-C2" - }, - { - "id": "GSLV-D1" - }, - { - "id": "PSLV-C3" - }, - { - "id": "PSLV-C4" - }, - { - "id": "GSLV-D2" - }, - { - "id": "PSLV-C5" - }, - { - "id": "GSLV-F01" - }, - { - "id": "PSLV-C6" - }, - { - "id": "GSLV-F02" - }, - { - "id": "PSLV-C7" - }, - { - "id": "PSLV-C8" - }, - { - "id": "GSLV-F04" - }, - { - "id": "PSLV-C10" - }, - { - "id": "PSLV-C9" - }, - { - "id": "PSLV-C11" - }, - { - "id": "PSLV-C12" - }, - { - "id": "PSLV-C14" - }, - { - "id": "GSLV-D3" - }, - { - "id": "PSLV-C15" - }, - { - "id": "GSLV-F06" - }, - { - "id": "PSLV-C16" - }, - { - "id": "PSLV-C17" - }, - { - "id": "PSLV-C18" - }, - { - "id": "PSLV-C19" - }, - { - "id": "PSLV-C21" - }, - { - "id": "PSLV-C20" - }, - { - "id": "PSLV-C22" - }, - { - "id": "PSLV-C25" - }, - { - "id": "GSLV-D5" - }, - { - "id": "PSLV-C24" - }, - { - "id": "PSLV-C23" - }, - { - "id": "PSLV-C26" - }, - { - "id": "LVM-3" - }, - { - "id": "PSLV-C27" - }, - { - "id": "PSLV-C28" - }, - { - "id": "GSLV-D6" - }, - { - "id": "PSLV-C30" - }, - { - "id": "PSLV-C29" - }, - { - "id": "PSLV-C31" - }, - { - "id": "PSLV-C32" - }, - { - "id": "PSLV-C33" - }, - { - "id": "RLV-TD" - }, - { - "id": "PSLV-C34" - }, - { - "id": "Scramjet Engine - TD" - }, - { - "id": "GSLV-F05" - }, - { - "id": "PSLV-C35" - }, - { - "id": "PSLV-C36" - }, - { - "id": "PSLV-C37" - }, - { - "id": "GSLV-F09" - }, - { - "id": "GSLV Mk III-D1" - }, - { - "id": "PSLV-C38" - }, - { - "id": "PSLV-C39" - }, - { - "id": "PSLV-C40" - }, - { - "id": "GSLV-F08" - }, - { - "id": "PSLV-C41" - }, - { - "id": "PSLV-C42" - }, - { - "id": "GSLV Mk III-D2" - }, - { - "id": "PSLV-C43" - }, - { - "id": "GSLV-F11" - }, - { - "id": "PSLV-C44" - }, - { - "id": "PSLV-C45" - }, - { - "id": "PSLV-C46" - }, - { - "id": "GSLV-Mk III - M1" - }, - { - "id": "PSLV-C47" - }, - { - "id": "PSLV-C48" - }, - { - "id": "PSLV-C49" - }, - { - "id": "PSLV-C50" - }, - { - "id": "PSLV-C51" - }, - { - "id": "GSLV-F10" - } - ] -} + "launchers": [ + { + "id": "SLV-3E1", + "vehicle_family": "SLV" + }, + { + "id": "SLV-3E2", + "vehicle_family": "SLV" + }, + { + "id": "SLV-3D1", + "vehicle_family": "SLV" + }, + { + "id": "SLV-3", + "vehicle_family": "SLV" + }, + { + "id": "ASLV-D1", + "vehicle_family": "ASLV" + }, + { + "id": "ASLV-D2", + "vehicle_family": "ASLV" + }, + { + "id": "ASLV-D3", + "vehicle_family": "ASLV" + }, + { + "id": "PSLV-D1", + "vehicle_family": "PSLV" + }, + { + "id": "ASLV-D4", + "vehicle_family": "ASLV" + }, + { + "id": "PSLV-D2", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-D3", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C1", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C2", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "DLR-TUBSAT", + "KITSAT-3" + ] + }, + { + "id": "GSLV-D1", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C3", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "BIRD", + "PROBA" + ] + }, + { + "id": "PSLV-C4", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-D2", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C5", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-F01", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C6", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-F02", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C7", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "LAPAN-TUBSAT", + "PEHUENSAT-1" + ] + }, + { + "id": "PSLV-C8", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "AGILE" + ] + }, + { + "id": "GSLV-F04", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C10", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "TESCAR" + ] + }, + { + "id": "PSLV-C9", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "CAN-X2", + "CUTE-1.7", + "DELFI-C3", + "AAUSAT-II", + "COMPASS-I", + "SEEDS", + "NLSS", + "RUBIN-8" + ] + }, + { + "id": "PSLV-C11", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C12", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C14", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "CUBESAT-1", + "CUBESAT-2", + "CUBESAT-3", + "CUBESAT-4", + "RUBIN-9.1", + "RUBIN-9.2" + ] + }, + { + "id": "GSLV-D3", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C15", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "ALSAT-2A", + "NLS6.1 AISSAT-1", + "NLS6.2 TISAT-1" + ] + }, + { + "id": "GSLV-F06", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C16", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "X-SAT" + ] + }, + { + "id": "PSLV-C17", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C18", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "VesselSat-1" + ] + }, + { + "id": "PSLV-C19", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C21", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "SPOT-6", + "PROITERES" + ] + }, + { + "id": "PSLV-C20", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "SAPPHIRE", + "NEOSSAT", + "NLS8.1", + "NLS8.2", + "NLS8.3", + "STRAND-1" + ] + }, + { + "id": "PSLV-C22", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C25", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-D5", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C24", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C23", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "SPOT-7", + "AISAT", + "NLS7.1(CAN-X4)", + "NLS7.2(CAN-X5)", + "VELOX-1" + ] + }, + { + "id": "PSLV-C26", + "vehicle_family": "PSLV" + }, + { + "id": "LVM-3", + "vehicle_family": "LVM-3" + }, + { + "id": "PSLV-C27", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C28", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "DMC3-1", + "DMC3-2", + "DMC3-3", + "CBNT-1", + "De-OrbitSail" + ] + }, + { + "id": "GSLV-D6", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C30", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "LAPAN-A2", + "NLS-14(Ev9)", + "LEMUR-1", + "LEMUR-2", + "LEMUR-3", + "LEMUR-4" + ] + }, + { + "id": "PSLV-C29", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "TeLEOS", + "Kent Ridge-I", + "VELOX-C1", + "VELOX-II", + "Galassia", + "Athenoxat-I" + ] + }, + { + "id": "PSLV-C31", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C32", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C33", + "vehicle_family": "PSLV" + }, + { + "id": "RLV-TD", + "vehicle_family": "RLV" + }, + { + "id": "PSLV-C34", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "LAPAN-A3", + "BIROS", + "M3MSat", + "SkySat Gen2-1", + "GHGSat-D", + "DOVE QP1.1", + "DOVE QP1.2", + "DOVE QP1.3", + "DOVE QP1.4", + "DOVE QP2.1", + "DOVE QP2.2", + "DOVE QP2.3", + "DOVE QP2.4", + "DOVE QP3.1", + "DOVE QP3.2", + "DOVE QP3.3", + "DOVE QP3.4" + ] + }, + { + "id": "Scramjet Engine - TD", + "vehicle_family": "Scramjet-TD" + }, + { + "id": "GSLV-F05", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C35", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C36", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C37", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-F09", + "vehicle_family": "GSLV" + }, + { + "id": "GSLV Mk III-D1", + "vehicle_family": "GSLV Mk III" + }, + { + "id": "PSLV-C38", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C39", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C40", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-F08", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C41", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C42", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV Mk III-D2", + "vehicle_family": "GSLV Mk III" + }, + { + "id": "PSLV-C43", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-F11", + "vehicle_family": "GSLV" + }, + { + "id": "PSLV-C44", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C45", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C46", + "vehicle_family": "PSLV" + }, + { + "id": "GSLV-Mk III - M1", + "vehicle_family": "GSLV Mk III" + }, + { + "id": "PSLV-C47", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C48", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C49", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C50", + "vehicle_family": "PSLV" + }, + { + "id": "PSLV-C51", + "vehicle_family": "PSLV", + "customer_satellites_launched": [ + "AMAZONIA-1" + ] + }, + { + "id": "GSLV-F10", + "vehicle_family": "GSLV" + } + ] +} \ No newline at end of file diff --git a/data/spacecraft_missions.json b/data/spacecraft_missions.json index 78e00aa..9844b9b 100644 --- a/data/spacecraft_missions.json +++ b/data/spacecraft_missions.json @@ -1,968 +1,1220 @@ -[ - { - "name": "RISAT-2BR1", - "id": 65, - "lift-off_weight": "628 kg", - "altitude": "576 km", - "payload": "X-Band Radar", - "inclination": "37 deg", - "mission_life": "5 years" - }, - { - "name": "Cartosat-3", - "id": 64, - "mean_altitude": "509 km", - "mean_inclination": "97.5\u00b0", - "overall_mass": "1625 kg", - "power_generation": "2000W", - "mission_life": "5 years" - }, - { - "name": "GSAT-15", - "id": 63, - "mission": "Communication and Satellite Navigation", - "weight": "3164 kg (Mass at Lift \u2013 off) 1440 kg (Dry Mass)", - "power": "Solar array providing 6200 Watts and Three 100 AH Lithium-Ion batteries ", - "propulsion": "Bi- propellant System", - "launch_date": "November 11, 2015", - "launch_site": "Kourou, French Guiana", - "launch_vehicle": "Ariane-5 VA-227", - "orbit": "Geostationary (93.5\u00b0 East longitude)Co-located with INSAT-3A and INSAT-4B", - "mission_life": "12 Years" - }, - { - "name": "GSAT-6", - "id": 62, - "physical_properties": "Lift off Mass : 2117 kg Main Structure : I-2K Overall size(m) : 2.1 x 2.5 x 4.1", - "power": "Generated power 3100 W", - "aocs": "Momentum biased 3-axis stabilised", - "antennas": "One 0.8 m (fixed) and one 6 m unfurlable antenna (transmit and receive)", - "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.", - "mission_life": "9 years" - }, - { - "name": "IRNSS-1B", - "id": 61, - "off_mass": "1432 kg", - "physical_dimensions": "1.58 metre x 1.50 metre x 1.50 metre", - "orbit": "Geosynchronous, at 55 deg East longitude with 29 deg inclination", - "power": "Two solar panels generating 1660 W, one lithium-ion battery of 90 Ampere-Hour capacity", - "propulsion": "440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters", - "control_system": "Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators", - "mission_life": "10 years", - "launch_date": "Apr 04, 2014", - "launch_site": "SDSC SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV - C24" - }, - { - "name": "GSAT-14", - "id": 60, - "mass_at_lift-off": "1982 kg", - "overall_size_(m)": "2.0 X 2.0 X 3.6", - "power": "2600 W", - "attitude_and_orbit_control_system_(aocs)": "Momentum biased 3-axis stabilized mode", - "propulsion_system": "Bi propellant-Mono Methyl Hydrazine and Mixed Oxides of Nitrogen (MON-3)", - "antennae": "One 2m and one 2.2 m single shell shaped reflector Antennae (transmit and receive)", - "launch_date": "January 05, 2014", - "launch_site": "SDSC, SHAR", - "launch_vehicle": "GSLV-D5", - "orbit": "74 deg East longitude in geostationary orbit", - "mission_life": "12 Years" - }, - { - "name": "GSAT-7", - "id": 59, - "mission": "Communication", - "mass_at_lift-off": "2650 kg", - "physical_dimensions": "3.1 m X 1.7 m X 2.0 m", - "power": "3,000 W (end of life)", - "satbilisation": "3-axis stabilized", - "launch_date": "August 30, 2013", - "launch_site": "Kourou, French Guiana", - "launch_vehicle": "Ariane-5 VA-215", - "orbit": "74oE Geo Stationary", - "mission_life": "> 7 Years" - }, - { - "name": "INSAT-3D", - "id": 58, - "mission": "Meteorological and Search & Rescue Services", - "mass_at_lift-off": "2060 kg", - "power": "Solar panel generating 1164 W Two 18 Ah Ni-Cd batteries", - "physical_dimensions": "2.4m x 1.6m x 1.5m", - "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", - "stabilisation": "3-asix body stabilized in orbit using Sun Sensors, Star Sensors, gyroscopes, Momentum and Reaction Wheels, Magnetic Torquers and thrusters", - "antennae": "0.9m and 1.0m body mounted antennas", - "launch_date": "July 26, 2013", - "launch_site": "Kourou, French Guiana", - "launch_vehicle": "Ariane-5 VA-214", - "orbit": "Geostationary, 82 deg E Longitude", - "mission_life": "7 Years" - }, - { - "name": "IRNSS-1A", - "id": 57, - "lift-off_mass": "1425 kg", - "physical_dimensions": "1.58 metre x 1.50 metre x 1.50 metre", - "orbit": "Geosynchronous, at 55 deg East longitude with 29 deg inclination", - "power": "Two solar panels generating 1660 W, one lithium-ion battery of 90 Ampere-Hour capacity", - "propulsion": "440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters", - "control_system": "Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators", - "mission_life": "10 years", - "launch_date": "Jul 01, 2013", - "launch_site": "SDSC SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV - C22" - }, - { - "name": "SARAL", - "id": 56, - "lift-off_mass": "407 kg", - "orbit": "781 km polar Sun synchronous", - "sensors": "4 PI sun sensors, magnetometer, star sensors and miniaturised gyro based Inertial Reference Unit", - "orbit_inclination": "98.538o", - "local_time_of_equator": "18:00 hours crossing", - "power": "Solar Array generating 906 W and 46.8 Ampere-hour Lithium-ion battery", - "onboard_data_storage": "32 Gb", - "attitude_and_orbit_control": "3-axis stabilisation with reaction wheels, Hydrazine Control System based thrusters", - "mission_life": "5 years", - "launch_date": "Feb 25, 2013", - "launch_site": "SDSC SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV - C20" - }, - { - "name": "GSAT-10", - "id": 55, - "mission": "Communication", - "weight": "3400 kg (Mass at Lift \u2013 off) 1498 kg (Dry Mass)", - "power": "Solar array providing 6474 Watts (at Equinox) and two 128 AH Lithium-Ion batteries", - "physical_dimensions": "2.0 m X 1.77 m X 3.1 m cuboid", - "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.", - "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", - "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", - "launch_date": "September 29, 2012", - "launch_site": "Kourou, French Guiana", - "launch_vehicle": "Ariane-5 VA-209", - "orbit": "Geostationary (83\u00b0 East longitude), co-located with INSAT-4A and GSAT-12", - "mission_life": "15 Years" - }, - { - "name": "RISAT-1", - "id": 54, - "mass": "1858 kg", - "orbit": "Circular Polar Sun Synchronous", - "orbit_altitude": "536 km", - "orbit_inclination": "97.552o", - "orbit_period": "95.49 min", - "number_of_orbits_per_day": "14", - "local_time_of_equator_crossing": "6:00 am / 6:00 pm", - "power": "Solar Array generating 2200 W and one 70 AH Ni-H2 battery", - "repetivity": "25 days", - "attitude_and_orbit_control": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", - "nominal_mission_life": "5 years", - "launch_date": "April 26, 2012", - "launch_site": "SDSC SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV- C19" - }, - { - "name": "Megha-Tropiques", - "id": 53, - "lift-off_mass": "1000 kg", - "orbit": "867 km with an inclination of 20 deg to the equator", - "thermal": "Passive system with IRS heritage", - "power": "1325 W (at End of Life) Two 24 AH NiCd batteries", - "ttc": "S-band", - "attitude_and_orbit_control": "3-axis stabilised with 4 Reaction Wheels, Gyros and Star sensors, Hydrazine based RCS", - "solid_state_recorder": "16 Gb", - "launch_date": "October 12, 2011", - "launch_site": "SDSC SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV- C18" - }, - { - "name": "GSAT-12", - "id": 52, - "mission": "Communication", - "weight": "1410 kg (Mass at Lift \u2013 off) 559 kg (Dry Mass)", - "power": "Solar array providing 1430 Watts and one 64 Ah Li-Ion batteries", - "physical_dimensions": "1.485 x 1.480 x 1.446 m cuboid", - "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.", - "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", - "antennae": "One 0.7 m diameter body mounted parabolic receive antenna and one 1.2 m diameter polarisation sensitive deployable antenna", - "launch_date": "July 15, 2011", - "launch_site": "SHAR, Sriharikota, India", - "launch_vehicle": "PSLV-C17", - "orbit": "Geosynchronous (83\u00b0 longitude)", - "mission_life": "About 8 Years" - }, - { - "name": "GSAT-8", - "id": 51, - "mission": "Communication", - "weight": "3093 kg (Mass at Lift \u2013 off) 1426 kg (Dry Mass)", - "power": "Solar array providing 6242 watts three 100 Ah Lithium Ion batteries", - "physical_dimensions": "2.0 x 1.77 x 3.1m cuboid", - "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.", - "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", - "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", - "launch_date": "May 21, 2011", - "launch_site": "Kourou, French Guiana", - "launch_vehicle": "Ariane-5 VA-202", - "orbit": "Geosynchronous (55\u00b0 E)", - "mission_life": "More Than 12 Years" - }, - { - "name": "RESOURCESAT-2", - "id": 50, - "mission": "Remote Sensing", - "orbit": "Circular Polar Sun Synchronous", - "orbit_altitude_at_injection": "822 km + 20 km (3 Sigma)", - "orbit_inclination": "98.731\u00ba + 0.2\u00ba", - "lift-off_mass": "1206 kg", - "orbit_period": "101.35 min", - "number_of_orbits_per_day": "14", - "local_time_of_equator_crossing": "10:30 am", - "repetivity": "24 days", - "attitude_and_orbit_control": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", - "power": "Solar Array generating 1250 W at End Of Life, two 24 AH Ni-Cd batteries", - "launch_date": "April 20, 2011", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C16", - "mission_life": "5 years" - }, - { - "name": "YOUTHSAT", - "id": 49, - "lift-off_mass": "92 kg", - "orbit_period": "101.35 min", - "dimension": "1020 (Pitch) x 604 (Roll) x 1340 (Yaw) mm3", - "attitude_and_orbit_control": "3-axis body stabilised using Sun and Star Sensors, Miniature Magnetometer, Miniature Gyros, Micro Reaction Wheels and Magnetic Torquers", - "power": "Solar Array generating 230 W, one 10.5 AH Li-ion battery", - "mechanisms": "Paraffin Actuator based Solar Panel Hold Down and Release Mechanism", - "launch_date": "April 20, 2011", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C16", - "orbit": "Circular Polar Sun Synchronous", - "orbit_altitude_at_injection": "822 km\u00a0+\u00a020 km (3 Sigma)", - "orbit_inclination": "98.731 \u00ba\u00a0+\u00a00.2 \u00ba", - "mission_life": "2 years" - }, - { - "name": "CARTOSAT-2B", - "id": 48, - "mission": "Remote Sensing", - "weight": "694 kg (Mass at lift off)", - "onboard_orbit": "930 Watts", - "stabilization": "3 \u2013 axis body stabilised based on inputs from star sensors and gyros using Reaction wheels, Magnetic Torquers and Hydrazine Thrusters", - "payloads": "Panchromatic Camera", - "launch_date": "July 12, 2010", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C15", - "orbit": "630 kms, Polar Sun Synchronous", - "inclination": "97.71\u00ba" - }, - { - "name": "Oceansat-2", - "id": 47, - "date": "Sept 23, 2009", - "launch_site": "SHAR, Sriharikota", - "launch_vehicle": "PSLV - C14", - "orbit": "Polar Sun Synchronous", - "altitude": "720 km", - "inclination": "98.28\u00b0", - "period": "99.31 minutes", - "local_time_of_eq._crossing": "12 noon \u00b1 10 minutes", - "repetitivity_cycle": "2 days", - "payloads": "OCM, SCAT and ROSA", - "mass_at_lift_off": "960 kg", - "power": "15 Sq.m Solar panels generating 1360W, Two 24 Ah Ni-Cd Batteries", - "mission_life": "5 years" - }, - { - "name": "RISAT-2", - "id": 46, - "altitude": "550 km", - "inclination": "41 deg", - "orbit_period": "90 minutes", - "mass": "300 kg" - }, - { - "name": "Chandrayaan-1 ", - "id": 45, - "mission": "Remote Sensing, Planetary Science", - "weight": "1380 kg (Mass at lift off)", - "onboard_power": "700 Watts", - "stabilization": "3 - axis stabilised using reaction wheel and attitude control thrusters, sun sensors, star sensors, fibre optic gyros and accelerometers for attitude determination.", - "launch_date": "22 October 2008", - "launch_site": "SDSC, SHAR, Sriharikota", - "launch_vehicle": "PSLV - C11", - "orbit": "100 km x 100 km : Lunar Orbit", - "mission_life": "2 years" - }, - { - "name": "IMS-1", - "id": 44, - "orbit": "Polar Sun Synchronous", - "altitude": "635 km", - "mission_life": "2 years", - "physical_dimensions": "0.604x0.980x1.129 m", - "mass": "83 kg", - "power": "Two deployable sun pointing solar panels generating 220 W power, 105 Ah Lithium ion battery", - "telemetry,_tracking_and_command": "S-band", - "attitude_and_orbit_control_system": "Star Sensor, Miniature Sun Sensors, Magnetometers Gyros, Miniature Micro Reaction Wheels, Magnetic Torquers, single 1 N Hydrazine Thruster", - "data_handling": "S-band", - "data_storage": "16 Gb Solid State Recorder" - }, - { - "name": "CARTOSAT \u2013\n2A", - "id": 43, - "mission": "Remote Sensing", - "weight": "690 Kg (Mass at lift off)", - "onboard_power": "900 Watts", - "stabilization": "3 \u2013 axis body stabilised using high torque reaction wheels, magnetic torquers and hydrogen thrusters", - "payloads": "Panchromatic Camera", - "launch_date": "28 April 2008", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C9", - "orbit": "635 km, Polar Sun Synchronous", - "inclination": "97.94 deg", - "mission_life": "5 years" - }, - { - "name": "INSAT-4CR", - "id": 42, - "mission": "Communication", - "weight": "2,130 kg (Mass at Lift \u2013 off)", - "onboard_power": "3000 W", - "communication_payload": "12 Ku-band transponders employing 140 W Traveling Wave Tube Amplifiers (TWTA) Ku-band Beacon", - "launch_date": "September 2, 2007", - "launch_site": "SHAR, Sriharikota, India", - "launch_vehicle": "GSLV-F04", - "orbit": "Geosynchronous (74\u00b0 E)", - "mission_life": "12 Years" - }, - { - "name": "INSAT-4B", - "id": 41, - "mission": "Communication", - "weight": "3025 kg (at Lift \u2013 off)", - "onboard_power": "5859 W", - "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.", - "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.", - "payload": "12 Ku band high power transponders covering Indian main land using 140W radiatively cooled TWTAs.", - "launch_date": "March 12, 2007", - "launch_site": "French Guiana", - "launch_vehicle": "Ariane5", - "orbit": "Geostationary (93.5o E Longitude)", - "mission_life": "12 Years" - }, - { - "name": "CARTOSAT-2", - "id": 40, - "mission": "Remote Sensing", - "weight": "650 Kg", - "onboard_orbit": "900 Watts", - "stabilization": "3 - axis body stabilised using high torque reaction wheels, magnetic torquers and thrusters", - "payloads": "Panchromatic Camera", - "launch_date": "10 January 2007", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C7", - "orbit": "Polar Sun Synchronous", - "mission_life": "5 years" - }, - { - "name": "INSAT-4A", - "id": 39, - "spacecraft_mass": "Lift off 3081 Kg Dry Mass 1386.55 Kg", - "orbit": "Geostationary ( 83o E)", - "power": "Solar Array to provide a power of 5922 W", - "battery": "Three 70 Ah Ni H2 Batteries for eclipse support of 4264 W", - "life": "12 Years", - "launch_date": "December 22, 2005", - "launch_vehicle": "ARIANE5-V169" - }, - { - "name": "CARTOSAT-1", - "id": 38, - "launch_date": "5 May 2005", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C6", - "orbit": "618 km Polar Sun Synchronous", - "payloads": "PAN FORE, PAN - AFT", - "orbit_period": "97 min", - "number_of_orbits_per_day": "14", - "local_time_of_equator_crossing": "10:30 am", - "repetivity": "126 days", - "revisit": "5 days", - "lift-off_mass": "1560 kg", - "attitude_and_orbit_control": "3-axis body stabillised using reaction wheels, Magnetic Torquers and Hydrazine Thrusters", - "electrical_power": "15 sqm Solar Array generating 1100w, Two 24 Ah Ni-Cd batteries", - "mission_life": "5 years" - }, - { - "name": "HAMSAT", - "id": 37, - "launch_date": "May 5, 2005", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV-C6", - "orbit": "Geo-synchronous, 633.355 km (average)", - "payloads": "2 Transponders" - }, - { - "name": "EDUSAT", - "id": 36, - "mission": "Education", - "spacecraft_mass": "1950.5 kg mass (at Lift - off) 819.4 kg (Dry mass)", - "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", - "stabilization": "3 axis body stabilised in orbit using sensors, momentum and reaction wheels, magnetic torquers and eight 10 N & 22N reaction control thrusters.", - "propulsion": "440 N Liquid Apogee Motor with MON - 3 and MMH for orbit raising", - "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", - "launch_date": "September 20, 2004", - "launch_site": "SHAR, Sriharikota, India", - "launch_vehicle": "GSLV-F01", - "orbit": "Geostationary (74oE longitude)", - "mission_life": "7 Years (minimum)" - }, - { - "name": "IRS-P6 / RESOURCESAT-1", - "id": 35, - "launch_date": "October 17, 2003", - "launch_site": "SHAR, Sriharikota", - "launch_vehicle": "PSLV-C5", - "payloads": "LISS-4, LISS-3, AWiFS-A, AWiFS-B", - "orbit": "Polar Sun Synchronous", - "orbit_height": "817 km", - "orbit_inclination": "98.7o", - "orbit_period": "101.35 min", - "number_of_orbits_per_day": "14", - "local_time_of_equator_crossing": "10:30 am", - "repetivity_(liss-3)": "24 days", - "revisit": "5 days", - "lift-off_mass": "1360 kg", - "attitude_and_orbit_control": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", - "power": "Solar Array generating 1250 W, Two 24 Ah Ni-Cd batteries", - "mission_life": "5 years" - }, - { - "name": "INSAT-3E", - "id": 34, - "mission": "Communication", - "spacecraft_mass": "2,775 kg (Mass at Lift-off) 1218 kg (Dry mass)", - "launch_date": "September 28, 2003", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane5-V162", - "orbit": "Geostationary Orbit" - }, - { - "name": "GSAT-2", - "id": 33, - "mission": "Communication", - "weight": "1800 kg", - "launch_date": "May 8, 2003", - "launch_site": "SHAR, Sriharikota, India", - "launch_vehicle": "GSLV\u2013D2", - "orbit": "Geostationary orbit (48oE longitude)" - }, - { - "name": "INSAT-3A", - "id": 32, - "mission": "Telecommunication, broadcasting and Meteorology", - "spacecraft_mass": "2,950 kg (Mass at Lift\u2013off) 1,348 kg (Dry mass)", - "onboard_power": "3,100 W", - "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", - "propulsion": "440 N Liquid Apogee Motor with MON-3 (Mixed Oxides of Nitrogen) and MMH (Mono Methyl Hydrazine) for orbit raising", - "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)", - "launch_date": "April 10, 2003", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane5-V160", - "orbit": "Geostationary (93.5o E longitude)", - "mission_life": "12 Years" - }, - { - "name": "KALPANA-1", - "id": 31, - "mission": "7 Years", - "spacecraft_mass": "1060 kg mass (at Lift \u2013 off) 498 kg (Dry mass)", - "onboard_power": "550 W", - "payload": "Very High Resolution Radiometer (VHRR) Data Relay Transponder (DRT)", - "launch_date": "12 September 2002", - "launch_site": "SHAR, Sriharikota", - "launch_vehicle": "PSLV \u2013 C4", - "orbit": "Geostationary (74 deg East longitude)" - }, - { - "name": "INSAT-3C", - "id": 30, - "mission": "Communication, broadcasting and Meteorology", - "spacecraft_mass": "2,650 kg (Mass at Lift - off) 1218 kg (Dry mass)", - "onboard_power": "2765 W", - "propulsion": "Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank.", - "payload": "24 C band transponders 6 Extended C - band Transponders 2 S - band Transponders", - "launch_date": "January 24, 2002", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane5-V147", - "orbit": "Geostationary (74o longitude)", - "mission_life": "Very long" - }, - { - "name": "The Technology Experiment Satellite\n(TES)", - "id": 29, - "launch_date": "22 October 2001", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C3", - "orbit": "572 km Sun Synchronous", - "payloads": "PAN" - }, - { - "name": "PSLV-C3 / TES", - "id": 28, - "launch_date": "22 October 2001", - "launch_site": "SHAR Centre Sriharikota India", - "launch_vehicle": "PSLV- C3", - "orbit": "572 km Sun Synchronous", - "payloads": "PAN" - }, - { - "name": "GSAT-1", - "id": 27, - "mission": "Communication", - "weight": "1530 kg", - "launch_date": "18 April 2001", - "launch_site": "SHAR, Sriharikota", - "launch_vehicle": "GSLV \u2013 D1", - "orbit": "Sun Synchronous Geo stationary orbit" - }, - { - "name": "INSAT-3B", - "id": 26, - "mission": "Very long", - "spacecraft_mass": "2,070 (Mass at Lift \u2013 off) 970 kg (Dry mass)", - "onboard_power": "1,712 W", - "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.", - "propulsion": "Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank.", - "payload": "12 extended C \u2013 band Transponders Five Ku band Transponders Mobile Satellite Services (MSS)", - "launch_date": "22nd March 2000", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane -5", - "orbit": "Geostationary (83 deg East longitude)", - "inclination": "7 deg" - }, - { - "name": "Oceansat(IRS-P4)", - "id": 25, - "launch_date": "May 26, 1999", - "launch_site": "SHAR, Sriharikota", - "launch_vehicle": "PSLV - C2", - "orbit": "Polar Sun Synchronous", - "altitude": "720 km", - "inclination": "98.28 deg", - "period": "99.31 min", - "local_time_of_eq._crossing": "12 noon", - "repetitivity_cycle": "2 days", - "size": "2.8m x 1.98m x 2.57m", - "mass_at_lift_off": "1050 kg", - "length_when_fully_deployed": "11.67 m", - "attitude_and_orbit_control": "3-axis body-stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", - "power": "9.6 Sq.m Solar Array generating 750w Two 21 Ah Ni-Cd Batteries", - "mission_completed_on": "August 8, 2010" - }, - { - "name": "INSAT-2E", - "id": 24, - "mission": "Communication and Meteorology", - "spacecraft_mass": "2,550 kg (Mass at Lift-off) 1150 kg (Dry mass)", - "launch_date": "03 April 1999", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane \u2013 42P", - "orbit": "Geosynchronous (83 deg east longitude)" - }, - { - "name": "IRS-1D", - "id": 23, - "mission": "Operational Remote Sensing", - "weight": "1250 kg", - "onboard_power": "809 Watts (generated by 9.6 sq.metres Solar Panels)", - "communication": "S-band, X-band", - "stabilization": "Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer", - "rcs": "Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters", - "payload": "Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)", - "onboard_tape_recorder": "Storage Capacity : 62 G bits", - "launch_date": "December 28, 1995", - "launch_site": "Baikanur Cosmodrome Kazakhstan", - "launch_vehicle": "Molniya", - "orbit": "817 km Polar Sun-synchronous", - "inclination": "98.69o", - "repetivity": "24 days", - "local_time": "10.30 a.m", - "mission_completed_on": "September 21, 2007" - }, - { - "name": "INSAT-2D", - "id": 22, - "mission": "Communication", - "weight": "2079 kg with propellants, 995 kg dry weight", - "onboard_power": "1650 Watts", - "communication": "C, extended C, S and Ku bands", - "stabilization": "Three axis stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", - "propulsion": "Integrated bipropellan stystem ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM.", - "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", - "launch_date": "June 4, 1997", - "launch_site": "French Guyana", - "launch_vehicle": "Arianev 4", - "orbit": "Geostationary 93,.5deg.E", - "inclination": "0 deg." - }, - { - "name": "IRS-P3", - "id": 21, - "mission": "Remote sensing of earth's natural resources. Study of X-ray Astronomy. Periodic calibration of PSLV tracking radar located at tracking stations.", - "weight": "920 kg", - "onboard_power": "817 Watts", - "communication": "S-band", - "stabilization": "Three axis body stabilized", - "rcs": "Combinations of bladder type and surface tension type mass expulsion monopropellant hydrazine system", - "payload": "WideField Sensor (WiFS), Modular Opto - electronic Scanner (MOS), Indian X-ray Astronomy Experiment (IXAE), C-band transponder(CBT)", - "launch_date": "March 21, 1996", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV-D3", - "orbit": "817 km. Circular polar sun-synchronous with equatorial crossing at 10.30 am (descending node)", - "inclination": "98.68o", - "repetivity": "WiFS : 5 days", - "mission_completed_during": "January 2006" - }, - { - "name": "IRS-1C", - "id": 20, - "mission": "Operational Remote Sensing", - "weight": "1250 kg", - "onboard_power": "809 Watts (generated by 9.6 sq.metres Solar Panels)", - "communication": "S-band, X-band", - "stabilization": "Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer", - "rcs": "Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters", - "payload": "Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)", - "onboard_tape_recorder": "Storage Capacity : 62 G bits", - "launch_date": "December 28, 1995", - "launch_site": "Baikanur Cosmodrome Kazakhstan", - "launch_vehicle": "Molniya", - "orbit": "817 km Polar Sun-synchronous", - "inclination": "98.69o", - "repetivity": "24 days", - "local_time": "10.30 a.m", - "mission_completed_on": "September 21, 2007" - }, - { - "name": "INSAT-2C", - "id": 19, - "mission": "Communication", - "weight": "2106 kg with propellants 946 kg dry weight", - "onboard_power": "1320 Watts", - "communication": "C extended C, S and Ku bands", - "stabilization": "Three axis stabilized with two Momen'tum Wheels & one Reaction Wheel, Magnetic torquers", - "propulsion": "Integrated bipropellant system ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM.", - "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", - "launch_date": "December 7, 1995", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane4", - "orbit": "Geostationary 93.5 deg E", - "inclination": "0 deg.", - "mission_life": "Seven years(nominal)", - "orbit_life": "Very Long" - }, - { - "name": "IRS-P2", - "id": 18, - "mission": "Operational Remote Sensing", - "weight": "804 kg", - "onboard_power": "510 Watts", - "communication": "S-band, X-band", - "stabilization": "Three axis body stabilized with 4 Reaction Wheels, Magnetic torquers", - "rcs": "4 tanks containing Monopropellant Hydrazine based with sixteen 1 N thrusters and one 11 N thruster", - "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)", - "launch_date": "October 15, 1994", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV-D2", - "inclination": "98.68o", - "repetivity": "24 days", - "mission_completed_on": "1997" - }, - { - "name": "SROSS-C2", - "id": 17, - "mission": "Experimental", - "weight": "115 kg", - "onboard_power": "45 Watts", - "communication": "S-band and VHF", - "rcs": "Monopropellant Hydrazine based with six 1 Newton thrusters", - "payload": "Gamma Ray Burst (GRB) & Retarding Potential Analyser (RPA)", - "launch_date": "May 04,1994", - "launch_site": "SHAR Centre,Sriharikota,India", - "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", - "orbit": "430 x 600 km.", - "inclination": "45 deg.", - "mission_life": "Six months (nominal)", - "orbital_life": "Two years (nominal)" - }, - { - "name": "IRS-1E", - "id": 16, - "mission": "Operational Remote Sensing", - "weight": "846 kg", - "onboard_power": "415 Watts", - "communication": "S-band (TIC) & VHF", - "stabilization": "Three axis body stabilized ( zero momentum) with 4 Reaction Wheels, Magnetic torquers", - "rcs": "Monopropellant Hydrazine based RCS with 1 Newton thrusters ( 16 Nos.)", - "payload": "LlSS-1 MEOSS (Mono-ocula Erlectro Optic Stereo Scanner)", - "launch_date": "September 20, 1993", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "PSLV-D1", - "orbit": "Not realised" - }, - { - "name": "INSAT-2B", - "id": 15, - "mission": "Multipurpose Communication, meteorology and Satellite based search and rescue", - "weight": "1906 kg with propellant 916 kg dry weight", - "onboard_power": "One KW approx.", - "communication": "C, extended C and S band", - "stabilization": "Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", - "propulsion": "Integrated bipropellant system ( MMH and N2 04) With sixteen 22 N thrusters and 440 N LAM.", - "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", - "launch_date": "July 23, 1993", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane 4", - "orbit": "Geostationary 93.5o E", - "inclination": "0o", - "mission_life": "Seven years(nominal)", - "orbit_life": "Very Long" - }, - { - "name": "INSAT-2A", - "id": 14, - "mission": "Multipurpose Communication, meteorology and Satellite based search and rescue", - "weight": "1906 kg with propellant 916 kg dry weight", - "onboard_power": "One KW approx", - "communication": "C, extended C and S band", - "stabilization": "Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", - "propulsion": "Integrated bipropellant system (MMH and N2 04) With sixteen 22 N thrusters and 440 LAM.", - "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", - "launch_date": "July 10,1992", - "launch_site": "French Guyana", - "launch_vehicle": "Ariane 4", - "orbit": "Geostationary 74oE longitude", - "inclination": "0o", - "mission_life": "Seven years(nominal)", - "orbit_life": "Very Long" - }, - { - "name": "SROSS-C\n", - "id": 13, - "mission": "Experimental", - "weight": "106.1 kg", - "onboard_power": "45 Watts", - "communication": "S-band and VHF", - "stabilization": "Spin stabilized with a Magnetic Torquer and Magnetic Bias Control", - "payload": "Gamma Ray Burst (GRB) experiment & Retarding Potential Analyser (RPA) experiment", - "launch_date": "May 20,1992", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", - "orbit": "267 x 391 km", - "mission_life": "Two months (Re-entered on July15,1992)" - }, - { - "name": "IRS-1B", - "id": 12, - "mission": "Operational Remote Sensing", - "weight": "975 kg", - "onboard_power": "600 Watts", - "communication": "S-band, X-band and VHF (commanding only)", - "stabilization": "Three axis body stabilized (zero momentum) with 4 Reactions Wheels, Magnetic torquers", - "rcs": "Monopropellant Hydrazine based with sixteen 1 Newton thrusters", - "payload": "Three solid state Push Broom Cameras LlSS-1 (72.5 metre resolution), LlSS-2A and LlSS-2B (36.25 metre resolution)", - "launch_date": "August 29, 1991", - "launch_site": "Baikanur Cosmodrome Kazakhstan", - "launch_vehicle": "Vostok", - "orbit": "904 km Polar Sun Synchronous", - "inclination": "99.08o", - "repetivity": "22 days", - "local_time": "10.30 a.m. (descending node)", - "mission_completed_on": "December 20, 2003" - }, - { - "name": "SROSS-2", - "id": 11, - "mission": "Experimental", - "weight": "150 kg", - "onboard_power": "90 Watts", - "communication": "S-band and VHF", - "stabilization": "Three axis body stabilized (biased momentum) with a MomentumWheel and Magnetic Torquer", - "propulsion_system": "Monopropellant (Hydrazine based) Reaction Control System", - "payload": "Gamma Ray Burst (GRB) payload and Mono PayloadOcular Electro-Optic Stereo Scanner (MEOSS) built by DLR, Germany", - "launch_date": "July 13, 1988", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", - "orbit": "Not realised" - }, - { - "name": "IRS-1A", - "id": 10, - "mission": "Operational Remote Sensing", - "weight": "975 kg", - "onboard_power": "600 Watts", - "communication": "S-band, X-band and VHF(commanding only)", - "stabilization": "Three axis body stabilized (zero momentum)with 4 Reactions Wheels, Magnetic torquers", - "rcs": "Monopropellant Hydrazine based with sixteen 1 Newton thrusters", - "payload": "Three solid state Push Broom Cameras: LISS-1(72.5 metre resolution),LISS-2A and LISS-2B (36.25 metre resolution)", - "launch_date": "March 17, 1988", - "launch_site": "Baikanur Cosmodrome Kazakhstan", - "launch_vehicle": "Vostok", - "orbit": "904 km Polar Sun-synchronous", - "inclination": "99.08o", - "repetivity": "22 days (307 orbits)", - "local_time": "10.30 a.m. (descending node)", - "mission_completed_during": "July 1996" - }, - { - "name": "SROSS-1\n", - "id": 9, - "mission": "Experimental", - "weight": "150 kg", - "onboard_power": "90 Watts", - "communication": "S-band and VHF", - "stabilization": "Three axis body stabilized (biased momentum) with a Momentum Wheel and Magnetic Torquer", - "propulsion_system": "Monopropellant (Hydrazine based) Reaction control system", - "payload": "Launch Vehicle Monitoring Platform(LVMP), Gamma Ray Burst (GRB) payload and Corner Cube Retro Reflector (CCRR) for laser tracking", - "launch_date": "March 24, 1987", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", - "orbital_life": "Not realised" - }, - { - "name": "Rohini Satellite RS-D2", - "id": 8, - "mission": "Experimental", - "weight": "41.5 kg", - "onboard_power": "16 Watts", - "communication": "VHF band", - "stabilization": "Spin stabilized", - "payload": "Smart sensor (remote sensing payload),L-band beacon", - "launch_date": "April 17, 1983", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "SLV-3", - "orbit": "371 x 861 km", - "inclination": "46o", - "mission_life": "17 months", - "orbital_life": "Seven years (Re-entered on April 19, 1990)" - }, - { - "name": "Bhaskara-II", - "id": 7, - "mission": "Experimental Remote Sensing", - "weight": "444 kg", - "onboard_power": "47 Watts", - "communication": "VHF band", - "stabilization": "Spin stabilized (spin axis controlled)", - "payload": "TV cameras, three band Microwave Radiometer (SAMIR)", - "launch_date": "Nov 20, 1981", - "launch_site": "Volgograd Launch Station (presently in Russia)", - "launch_vehicle": "C-1 Intercosmos", - "orbit": "541 x 557 km", - "inclination": "50.7o", - "mission_life": "One year (nominal)", - "orbital_life": "About 10 years ( Re-entered in 1991 )" - }, - { - "name": "APPLE", - "id": 6, - "mission": "Experimental geostationary communication", - "weight": "670 kg", - "onboard_power": "210 Watts", - "communication": "VHF and C-band", - "stabilization": "Three axis stabilized (biased momentum) with Momentum Wheels, Torquers & Hydrazine based Reaction control system", - "payload": "C - band transponders (Two)", - "launch_date": "June19,1981", - "launch_site": "Kourou (CSG), French Guyana", - "launch_vehicle": "Ariane -1(V-3)", - "orbit": "Geosynchronous (102 deg. E longitude, over Indonesia)", - "inclination": "Near zero", - "mission_life": "Two years" - }, - { - "name": "Rohini Satellite RS-D1", - "id": 5, - "mission": "Experimental", - "weight": "38 kg", - "onboard_power": "16 Watts", - "communication": "VHF band", - "stabilization": "Spin stabilized", - "payload": "Landmark Tracker ( remote sensing payload)", - "launch_date": "May 31,1981", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "SLV-3", - "orbit": "186 x 418 km (achieved)", - "inclination": "46 deg", - "orbital_life": "Nine days" - }, - { - "name": "Rohini Satellite RS-1", - "id": 4, - "mission": "Experimental", - "weight": "35 kg", - "onboard_power": "16 Watts", - "communication": "VHF band", - "stabilization": "Spin stabilized", - "payload": "Launch vehicle monitoring instruments", - "launch_date": "July 18,1980", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "SLV-3", - "orbit": "305 x 919 km", - "inclination": "44.7 deg.", - "mission_life": "1.2 years", - "orbital_life": "20 months" - }, - { - "name": "Rohini Technology Payload (RTP)", - "id": 3, - "mission": "Experimental", - "weight": "35 kg", - "onboard_power": "3 Watts", - "communication": "VHF band", - "stabilization": "Spin stabilized (spin axis controlled)", - "payload": "Launch vehicle monitoring instruments", - "launch_date": "August 10,1979", - "launch_site": "SHAR Centre, Sriharikota, India", - "launch_vehicle": "SLV-3", - "orbit": "Not achieved" - }, - { - "name": "Bhaskara-I", - "id": 2, - "mission": "Experimental Remote Sensing", - "weight": "442 kg", - "onboard_power": "47 Watts", - "communication": "VHF band", - "stabilization": "Spin stabilized (spin axis controlled)", - "payload": "TVcameras, three band Microwave Radiometer (SAMIR)", - "launch_date": "Jun 07,1979", - "launch_site": "Volgograd Launch Station (presently in Russia)", - "launch_vehicle": "C-1Intercosmos", - "orbit": "519 x 541 km", - "inclination": "50.6 deg", - "mission_life": "One year (nominal)", - "orbital_life": "About 10 years ( Re-entered in 1989 )" - }, - { - "name": "Aryabhata ", - "id": 1, - "mission": "Scientific/ Experimental", - "weight": "360 kg", - "on_board_power": "46 Watts", - "communication": "VHF band", - "stabilization": "Spinstabilize", - "payload": "X-ray Astronomy Aeronomy & Solar Physics", - "launch_date": "April 19, 1975", - "launch_site": "Volgograd Launch Station (presently in Russia)", - "launch_vehicle": "C-1 Intercosmos", - "orbit": "563 x 619 km", - "inclination": "50.7 deg", - "mission_life": "6 months(nominal), Spacecraft mainframe active till March,1981", - "orbital_life": "Nearly seventeen years (Re-entered on February 10,1992)" - } -] +{ + "spacecraft_missions": [ + { + "id": 1, + "name": "Aryabhata", + "mission_type": "Scientific/ Experimental", + "launch_date": "1975-04-19", + "launch_site": "Volgograd Launch Station (presently in Russia)", + "launch_vehicle": "C-1 Intercosmos", + "orbit": "563 x 619 km", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 50.7, + "mass_kg": 360.0, + "power_watts": 46.0, + "mission_life": "6 months", + "status": "decommissioned", + "payloads": "X-ray Astronomy Aeronomy & Solar Physics", + "stabilization": "Spinstabilize", + "propulsion": null + }, + { + "id": 2, + "name": "Bhaskara-I", + "mission_type": "Experimental Remote Sensing", + "launch_date": "1979-06-07", + "launch_site": "Volgograd Launch Station (presently in Russia)", + "launch_vehicle": "C-1Intercosmos", + "orbit": "519 x 541 km", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 50.6, + "mass_kg": 442.0, + "power_watts": 47.0, + "mission_life": "1 year", + "status": "decommissioned", + "payloads": "TVcameras, three band Microwave Radiometer (SAMIR)", + "stabilization": "Spin stabilized (spin axis controlled)", + "propulsion": null + }, + { + "id": 3, + "name": "Rohini Technology Payload (RTP)", + "mission_type": "Experimental", + "launch_date": "1979-08-10", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "SLV-3", + "orbit": "Not achieved", + "orbit_type": "Failed", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 35.0, + "power_watts": 3.0, + "mission_life": null, + "status": "failed", + "payloads": "Launch vehicle monitoring instruments", + "stabilization": "Spin stabilized (spin axis controlled)", + "propulsion": null + }, + { + "id": 4, + "name": "Rohini Satellite RS-1", + "mission_type": "Experimental", + "launch_date": "1980-07-18", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "SLV-3", + "orbit": "305 x 919 km", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 44.7, + "mass_kg": 35.0, + "power_watts": 16.0, + "mission_life": "1.2 years", + "status": "decommissioned", + "payloads": "Launch vehicle monitoring instruments", + "stabilization": "Spin stabilized", + "propulsion": null + }, + { + "id": 5, + "name": "Rohini Satellite RS-D1", + "mission_type": "Experimental", + "launch_date": "1981-05-31", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "SLV-3", + "orbit": "186 x 418 km (achieved)", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 46.0, + "mass_kg": 38.0, + "power_watts": 16.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "Landmark Tracker ( remote sensing payload)", + "stabilization": "Spin stabilized", + "propulsion": null + }, + { + "id": 6, + "name": "APPLE", + "mission_type": "Experimental geostationary communication", + "launch_date": "1981-06-19", + "launch_site": "Kourou (CSG), French Guyana", + "launch_vehicle": "Ariane -1(V-3)", + "orbit": "Geosynchronous (102 deg. E longitude, over Indonesia)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 670.0, + "power_watts": 210.0, + "mission_life": "2 years", + "status": "decommissioned", + "payloads": "C - band transponders (Two)", + "stabilization": "Three axis stabilized (biased momentum) with Momentum Wheels, Torquers & Hydrazine based Reaction control system", + "propulsion": null + }, + { + "id": 7, + "name": "Bhaskara-II", + "mission_type": "Experimental Remote Sensing", + "launch_date": "1981-11-20", + "launch_site": "Volgograd Launch Station (presently in Russia)", + "launch_vehicle": "C-1 Intercosmos", + "orbit": "541 x 557 km", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 50.7, + "mass_kg": 444.0, + "power_watts": 47.0, + "mission_life": "1 year", + "status": "decommissioned", + "payloads": "TV cameras, three band Microwave Radiometer (SAMIR)", + "stabilization": "Spin stabilized (spin axis controlled)", + "propulsion": null + }, + { + "id": 8, + "name": "Rohini Satellite RS-D2", + "mission_type": "Experimental", + "launch_date": "1983-04-17", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "SLV-3", + "orbit": "371 x 861 km", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 46.0, + "mass_kg": 41.5, + "power_watts": 16.0, + "mission_life": "17 months", + "status": "decommissioned", + "payloads": "Smart sensor (remote sensing payload), L-band beacon", + "stabilization": "Spin stabilized", + "propulsion": null + }, + { + "id": 9, + "name": "SROSS-1", + "mission_type": "Experimental", + "launch_date": "1987-03-24", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "orbit": null, + "orbit_type": null, + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 150.0, + "power_watts": 90.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "Launch Vehicle Monitoring Platform(LVMP), Gamma Ray Burst (GRB) payload and Corner Cube Retro Reflector (CCRR) for laser tracking", + "stabilization": "Three axis body stabilized (biased momentum) with a Momentum Wheel and Magnetic Torquer", + "propulsion": "Monopropellant (Hydrazine based) Reaction control system" + }, + { + "id": 10, + "name": "IRS-1A", + "mission_type": "Operational Remote Sensing", + "launch_date": "1988-03-17", + "launch_site": "Baikanur Cosmodrome Kazakhstan", + "launch_vehicle": "Vostok", + "orbit": "904 km Polar Sun-synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 99.08, + "mass_kg": 975.0, + "power_watts": 600.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "Three solid state Push Broom Cameras: LISS-1(72.5 metre resolution), LISS-2A and LISS-2B (36.25 metre resolution)", + "stabilization": "Three axis body stabilized (zero momentum) with 4 Reactions Wheels, Magnetic torquers", + "propulsion": "Monopropellant Hydrazine based with sixteen 1 Newton thrusters" + }, + { + "id": 11, + "name": "SROSS-2", + "mission_type": "Experimental", + "launch_date": "1988-07-13", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "orbit": "Not realised", + "orbit_type": "Failed", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 150.0, + "power_watts": 90.0, + "mission_life": null, + "status": "failed", + "payloads": "Gamma Ray Burst (GRB) payload and Mono Payload Ocular Electro-Optic Stereo Scanner (MEOSS) built by DLR, Germany", + "stabilization": "Three axis body stabilized (biased momentum) with a Momentum Wheel and Magnetic Torquer", + "propulsion": "Monopropellant (Hydrazine based) Reaction Control System" + }, + { + "id": 12, + "name": "IRS-1B", + "mission_type": "Operational Remote Sensing", + "launch_date": "1991-08-29", + "launch_site": "Baikanur Cosmodrome Kazakhstan", + "launch_vehicle": "Vostok", + "orbit": "904 km Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 99.08, + "mass_kg": 975.0, + "power_watts": 600.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "Three solid state Push Broom Cameras LlSS-1 (72.5 metre resolution), LlSS-2A and LlSS-2B (36.25 metre resolution)", + "stabilization": "Three axis body stabilized (zero momentum) with 4 Reactions Wheels, Magnetic torquers", + "propulsion": "Monopropellant Hydrazine based with sixteen 1 Newton thrusters" + }, + { + "id": 13, + "name": "SROSS-C", + "mission_type": "Experimental", + "launch_date": "1992-05-20", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "orbit": "267 x 391 km", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 106.1, + "power_watts": 45.0, + "mission_life": "2 months", + "status": "decommissioned", + "payloads": "Gamma Ray Burst (GRB) experiment & Retarding Potential Analyser (RPA) experiment", + "stabilization": "Spin stabilized with a Magnetic Torquer and Magnetic Bias Control", + "propulsion": null + }, + { + "id": 14, + "name": "INSAT-2A", + "mission_type": "Multipurpose Communication, meteorology and Satellite based search and rescue", + "launch_date": "1992-07-10", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane 4", + "orbit": "Geostationary 74oE longitude", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": 0.0, + "mass_kg": 1906.0, + "power_watts": 1000.0, + "mission_life": "7 years", + "status": "decommissioned", + "payloads": "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", + "stabilization": "Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", + "propulsion": "Integrated bipropellant system (MMH and N2 04) With sixteen 22 N thrusters and 440 LAM." + }, + { + "id": 15, + "name": "INSAT-2B", + "mission_type": "Multipurpose Communication, meteorology and Satellite based search and rescue", + "launch_date": "1993-07-23", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane 4", + "orbit": "Geostationary 93.5o E", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": 0.0, + "mass_kg": 1906.0, + "power_watts": 1000.0, + "mission_life": "7 years", + "status": "decommissioned", + "payloads": "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", + "stabilization": "Three axis body stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", + "propulsion": "Integrated bipropellant system ( MMH and N2 04) With sixteen 22 N thrusters and 440 N LAM." + }, + { + "id": 16, + "name": "IRS-1E", + "mission_type": "Operational Remote Sensing", + "launch_date": "1993-09-20", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV-D1", + "orbit": "Not realised", + "orbit_type": "Failed", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 846.0, + "power_watts": 415.0, + "mission_life": null, + "status": "failed", + "payloads": "LlSS-1 MEOSS (Mono-ocula Erlectro Optic Stereo Scanner)", + "stabilization": "Three axis body stabilized ( zero momentum) with 4 Reaction Wheels, Magnetic torquers", + "propulsion": "Monopropellant Hydrazine based RCS with 1 Newton thrusters ( 16 Nos.)" + }, + { + "id": 17, + "name": "SROSS-C2", + "mission_type": "Experimental", + "launch_date": "1994-05-04", + "launch_site": "SHAR Centre,Sriharikota,India", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "orbit": "430 x 600 km.", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 45.0, + "mass_kg": 115.0, + "power_watts": 45.0, + "mission_life": "6 months", + "status": "decommissioned", + "payloads": "Gamma Ray Burst (GRB) & Retarding Potential Analyser (RPA)", + "stabilization": null, + "propulsion": "Monopropellant Hydrazine based with six 1 Newton thrusters" + }, + { + "id": 18, + "name": "IRS-P2", + "mission_type": "Operational Remote Sensing", + "launch_date": "1994-10-15", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV-D2", + "orbit": null, + "orbit_type": null, + "altitude_km": null, + "inclination_deg": 98.68, + "mass_kg": 804.0, + "power_watts": 510.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "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)", + "stabilization": "Three axis body stabilized with 4 Reaction Wheels, Magnetic torquers", + "propulsion": "4 tanks containing Monopropellant Hydrazine based with sixteen 1 N thrusters and one 11 N thruster" + }, + { + "id": 19, + "name": "INSAT-2C", + "mission_type": "Communication", + "launch_date": "1995-12-07", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane4", + "orbit": "Geostationary 93.5 deg E", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": 0.0, + "mass_kg": 2106.0, + "power_watts": 1320.0, + "mission_life": "7 years", + "status": "decommissioned", + "payloads": "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", + "stabilization": "Three axis stabilized with two Momen'tum Wheels & one Reaction Wheel, Magnetic torquers", + "propulsion": "Integrated bipropellant system ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM." + }, + { + "id": 20, + "name": "IRS-1D", + "mission_type": "Operational Remote Sensing", + "launch_date": "1995-12-28", + "launch_site": "Baikanur Cosmodrome Kazakhstan", + "launch_vehicle": "Molniya", + "orbit": "817 km Polar Sun-synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 98.69, + "mass_kg": 1250.0, + "power_watts": 809.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)", + "stabilization": "Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer", + "propulsion": "Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters" + }, + { + "id": 21, + "name": "IRS-1C", + "mission_type": "Operational Remote Sensing", + "launch_date": "1995-12-28", + "launch_site": "Baikanur Cosmodrome Kazakhstan", + "launch_vehicle": "Molniya", + "orbit": "817 km Polar Sun-synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 98.69, + "mass_kg": 1250.0, + "power_watts": 809.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "Three solid state Push Broom Cameras: PAN (<6 metre solution )LlSS-3(23.6 metre resolution) and WiFS (189 metre resolution)", + "stabilization": "Three axis body stabilized (zero momentum) with 4 Reaction Wheels, Magnetic torquer", + "propulsion": "Monopropellant Hydrazine based with sixteen 1 N thrusters & one 11N thrusters" + }, + { + "id": 22, + "name": "IRS-P3", + "mission_type": "Remote sensing of earth's natural resources. Study of X-ray Astronomy. Periodic calibration of PSLV tracking radar located at tracking stations.", + "launch_date": "1996-03-21", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV-D3", + "orbit": "817 km. Circular polar sun-synchronous with equatorial crossing at 10.30 am (descending node)", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 98.68, + "mass_kg": 920.0, + "power_watts": 817.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "WideField Sensor (WiFS), Modular Opto - electronic Scanner (MOS), Indian X-ray Astronomy Experiment (IXAE), C-band transponder(CBT)", + "stabilization": "Three axis body stabilized", + "propulsion": "Combinations of bladder type and surface tension type mass expulsion monopropellant hydrazine system" + }, + { + "id": 23, + "name": "INSAT-2D", + "mission_type": "Communication", + "launch_date": "1997-06-04", + "launch_site": "French Guyana", + "launch_vehicle": "Arianev 4", + "orbit": "Geostationary 93,.5deg.E", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": 0.0, + "mass_kg": 2079.0, + "power_watts": 1650.0, + "mission_life": null, + "status": "decommissioned", + "payloads": "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", + "stabilization": "Three axis stabilized with two Momentum Wheels & one Reaction Wheel, Magnetic torquers", + "propulsion": "Integrated bipropellan stystem ( MMH and N2 04) With sixteen 22N thrusters and 440N LAM." + }, + { + "id": 24, + "name": "INSAT-2E", + "mission_type": "Communication and Meteorology", + "launch_date": "1999-04-03", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane β 42P", + "orbit": "Geosynchronous (83 deg east longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 2550.0, + "power_watts": null, + "mission_life": null, + "status": "decommissioned", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 25, + "name": "Oceansat(IRS-P4)", + "mission_type": null, + "launch_date": "1999-05-26", + "launch_site": "SHAR, Sriharikota", + "launch_vehicle": "PSLV - C2", + "orbit": "Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": 720.0, + "inclination_deg": 98.28, + "mass_kg": 1050.0, + "power_watts": 750.0, + "mission_life": null, + "status": "decommissioned", + "payloads": null, + "stabilization": "3-axis body-stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", + "propulsion": null + }, + { + "id": 26, + "name": "INSAT-3B", + "mission_type": null, + "launch_date": "2000-03-22", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane -5", + "orbit": "Geostationary (83 deg East longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": 7.0, + "mass_kg": 2070.0, + "power_watts": 1712.0, + "mission_life": "Very long", + "status": "unknown", + "payloads": "12 extended C β band Transponders Five Ku band Transponders Mobile Satellite Services (MSS)", + "stabilization": "3 β 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.", + "propulsion": "Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank." + }, + { + "id": 27, + "name": "GSAT-1", + "mission_type": "Communication", + "launch_date": "2001-04-18", + "launch_site": "SHAR, Sriharikota", + "launch_vehicle": "GSLV β D1", + "orbit": "Sun Synchronous Geo stationary orbit", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1530.0, + "power_watts": null, + "mission_life": null, + "status": "unknown", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 28, + "name": "The Technology Experiment Satellite (TES)", + "mission_type": null, + "launch_date": "2001-10-22", + "launch_site": "SHAR Centre Sriharikota India", + "launch_vehicle": "PSLV- C3", + "orbit": "572 km Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": null, + "power_watts": null, + "mission_life": null, + "status": "unknown", + "payloads": "PAN", + "stabilization": null, + "propulsion": null + }, + { + "id": 29, + "name": "INSAT-3C", + "mission_type": "Communication, broadcasting and Meteorology", + "launch_date": "2002-01-24", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane5-V147", + "orbit": "Geostationary (74o longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 2650.0, + "power_watts": 2765.0, + "mission_life": "Very long", + "status": "unknown", + "payloads": "24 C band transponders 6 Extended C - band Transponders 2 S - band Transponders", + "stabilization": null, + "propulsion": "Liquid Apogee Motor with fuel and oxidizer stored in separate titanium tanks and pressurant in Kevlar wound titanium tank." + }, + { + "id": 30, + "name": "KALPANA-1", + "mission_type": null, + "launch_date": "2002-09-12", + "launch_site": "SHAR, Sriharikota", + "launch_vehicle": "PSLV β C4", + "orbit": "Geostationary (74 deg East longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1060.0, + "power_watts": 550.0, + "mission_life": "7 years", + "status": "decommissioned", + "payloads": "Very High Resolution Radiometer (VHRR) Data Relay Transponder (DRT)", + "stabilization": null, + "propulsion": null + }, + { + "id": 31, + "name": "INSAT-3A", + "mission_type": "Telecommunication, broadcasting and Meteorology", + "launch_date": "2003-04-10", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane5-V160", + "orbit": "Geostationary (93.5o E longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 2950.0, + "power_watts": 3100.0, + "mission_life": "12 years", + "status": "decommissioned", + "payloads": "Communication payload - 12 C β 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)", + "stabilization": "3 β 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", + "propulsion": "440 N Liquid Apogee Motor with MON-3 (Mixed Oxides of Nitrogen) and MMH (Mono Methyl Hydrazine) for orbit raising" + }, + { + "id": 32, + "name": "GSAT-2", + "mission_type": "Communication", + "launch_date": "2003-05-08", + "launch_site": "SHAR, Sriharikota, India", + "launch_vehicle": "GSLVβD2", + "orbit": "Geostationary orbit (48oE longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1800.0, + "power_watts": null, + "mission_life": null, + "status": "unknown", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 33, + "name": "INSAT-3E", + "mission_type": "Communication", + "launch_date": "2003-09-28", + "launch_site": "French Guyana", + "launch_vehicle": "Ariane5-V162", + "orbit": "Geostationary Orbit", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 2775.0, + "power_watts": null, + "mission_life": null, + "status": "unknown", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 34, + "name": "IRS-P6 / RESOURCESAT-1", + "mission_type": null, + "launch_date": "2003-10-17", + "launch_site": "SHAR, Sriharikota", + "launch_vehicle": "PSLV-C5", + "orbit": "Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": 817.0, + "inclination_deg": 98.7, + "mass_kg": 1360.0, + "power_watts": 1250.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": "LISS-4, LISS-3, AWiFS-A, AWiFS-B", + "stabilization": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", + "propulsion": null + }, + { + "id": 35, + "name": "EDUSAT", + "mission_type": "Education", + "launch_date": "2004-09-20", + "launch_site": "SHAR, Sriharikota, India", + "launch_vehicle": "GSLV-F01", + "orbit": "Geostationary (74 o E longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1950.5, + "power_watts": 2040.0, + "mission_life": "7 years", + "status": "decommissioned", + "payloads": "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", + "stabilization": "3 axis body stabilised in orbit using sensors, momentum and reaction wheels, magnetic torquers and eight 10 N & 22N reaction control thrusters.", + "propulsion": "440 N Liquid Apogee Motor with MON - 3 and MMH for orbit raising" + }, + { + "id": 36, + "name": "CARTOSAT-1", + "mission_type": null, + "launch_date": "2005-05-05", + "launch_site": "SHAR Centre Sriharikota India", + "launch_vehicle": "PSLV- C6", + "orbit": "618 km Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1560.0, + "power_watts": 1100.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": "PAN FORE, PAN - AFT", + "stabilization": "3-axis body stabillised using reaction wheels, Magnetic Torquers and Hydrazine Thrusters", + "propulsion": null + }, + { + "id": 37, + "name": "HAMSAT", + "mission_type": null, + "launch_date": "2005-05-05", + "launch_site": "SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV-C6", + "orbit": "Geo-synchronous, 633.355 km (average)", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": null, + "mass_kg": null, + "power_watts": null, + "mission_life": null, + "status": "unknown", + "payloads": "2 Transponders", + "stabilization": null, + "propulsion": null + }, + { + "id": 38, + "name": "INSAT-4A", + "mission_type": null, + "launch_date": "2005-12-22", + "launch_site": null, + "launch_vehicle": "ARIANE5-V169", + "orbit": "Geostationary ( 83o E)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 3081.0, + "power_watts": 5922.0, + "mission_life": "12 years", + "status": "decommissioned", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 39, + "name": "CARTOSAT-2", + "mission_type": "Remote Sensing", + "launch_date": "2007-01-10", + "launch_site": "SHAR Centre Sriharikota India", + "launch_vehicle": "PSLV- C7", + "orbit": "Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 650.0, + "power_watts": 900.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": "Panchromatic Camera", + "stabilization": "3 - axis body stabilised using high torque reaction wheels, magnetic torquers and thrusters", + "propulsion": null + }, + { + "id": 40, + "name": "INSAT-4B", + "mission_type": "Communication", + "launch_date": "2007-03-12", + "launch_site": "French Guiana", + "launch_vehicle": "Ariane5", + "orbit": "Geostationary (93.5 o E Longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 3025.0, + "power_watts": 5859.0, + "mission_life": "12 years", + "status": "decommissioned", + "payloads": "12 Ku band high power transponders covering Indian main land using 140W radiatively cooled TWTAs.", + "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.", + "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." + }, + { + "id": 41, + "name": "INSAT-4CR", + "mission_type": "Communication", + "launch_date": "2007-09-02", + "launch_site": "SHAR, Sriharikota, India", + "launch_vehicle": "GSLV-F04", + "orbit": "Geosynchronous (74Β° E)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 2130.0, + "power_watts": 3000.0, + "mission_life": "12 years", + "status": "decommissioned", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 42, + "name": "CARTOSAT-2A", + "mission_type": "Remote Sensing", + "launch_date": "2008-04-28", + "launch_site": "SHAR Centre Sriharikota India", + "launch_vehicle": "PSLV- C9", + "orbit": "635 km, Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 97.94, + "mass_kg": 690.0, + "power_watts": 900.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": "Panchromatic Camera", + "stabilization": "3 β axis body stabilised using high torque reaction wheels, magnetic torquers and hydrogen thrusters", + "propulsion": null + }, + { + "id": 43, + "name": "Chandrayaan-1", + "mission_type": "Remote Sensing, Planetary Science", + "launch_date": "2008-10-22", + "launch_site": "SDSC, SHAR, Sriharikota", + "launch_vehicle": "PSLV - C11", + "orbit": "100 km x 100 km : Lunar Orbit", + "orbit_type": "Lunar", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1380.0, + "power_watts": 700.0, + "mission_life": "2 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "3 - axis stabilised using reaction wheel and attitude control thrusters, sun sensors, star sensors, fibre optic gyros and accelerometers for attitude determination.", + "propulsion": null + }, + { + "id": 44, + "name": "Oceansat-2", + "mission_type": null, + "launch_date": "2009-09-23", + "launch_site": "SHAR, Sriharikota", + "launch_vehicle": "PSLV - C14", + "orbit": "Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": 720.0, + "inclination_deg": 98.28, + "mass_kg": 960.0, + "power_watts": 1360.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": "OCM, SCAT and ROSA", + "stabilization": null, + "propulsion": null + }, + { + "id": 45, + "name": "CARTOSAT-2B", + "mission_type": "Remote Sensing", + "launch_date": "2010-07-12", + "launch_site": "SHAR Centre Sriharikota India", + "launch_vehicle": "PSLV- C15", + "orbit": "630 kms, Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 97.71, + "mass_kg": 694.0, + "power_watts": 930.0, + "mission_life": null, + "status": "unknown", + "payloads": "Panchromatic Camera", + "stabilization": "3 β axis body stabilised based on inputs from star sensors and gyros using Reaction wheels, Magnetic Torquers and Hydrazine Thrusters", + "propulsion": null + }, + { + "id": 46, + "name": "RESOURCESAT-2", + "mission_type": "Remote Sensing", + "launch_date": "2011-04-20", + "launch_site": "SHAR Centre Sriharikota India", + "launch_vehicle": "PSLV- C16", + "orbit": "Circular Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": 822.0, + "inclination_deg": 98.731, + "mass_kg": 1206.0, + "power_watts": 1250.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", + "propulsion": null + }, + { + "id": 47, + "name": "YOUTHSAT", + "mission_type": null, + "launch_date": "2011-04-20", + "launch_site": "SHAR Centre Sriharikota India", + "launch_vehicle": "PSLV- C16", + "orbit": "Circular Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": 822.0, + "inclination_deg": 98.731, + "mass_kg": 92.0, + "power_watts": 230.0, + "mission_life": "2 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "3-axis body stabilised using Sun and Star Sensors, Miniature Magnetometer, Miniature Gyros, Micro Reaction Wheels and Magnetic Torquers", + "propulsion": null + }, + { + "id": 48, + "name": "GSAT-8", + "mission_type": "Communication", + "launch_date": "2011-05-21", + "launch_site": "Kourou, French Guiana", + "launch_vehicle": "Ariane-5 VA-202", + "orbit": "Geosynchronous (55Β° E)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 3093.0, + "power_watts": 6242.0, + "mission_life": ">12 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "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", + "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." + }, + { + "id": 49, + "name": "GSAT-12", + "mission_type": "Communication", + "launch_date": "2011-07-15", + "launch_site": "SHAR, Sriharikota, India", + "launch_vehicle": "PSLV-C17", + "orbit": "Geosynchronous (83Β° longitude)", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1410.0, + "power_watts": 1430.0, + "mission_life": "~8 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "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", + "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." + }, + { + "id": 50, + "name": "Megha-Tropiques", + "mission_type": null, + "launch_date": "2011-10-12", + "launch_site": "SDSC SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV- C18", + "orbit": "867 km with an inclination of 20 deg to the equator", + "orbit_type": null, + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1000.0, + "power_watts": 1325.0, + "mission_life": null, + "status": "unknown", + "payloads": null, + "stabilization": "3-axis stabilised with 4 Reaction Wheels, Gyros and Star sensors, Hydrazine based RCS", + "propulsion": null + }, + { + "id": 51, + "name": "RISAT-1", + "mission_type": null, + "launch_date": "2012-04-26", + "launch_site": "SDSC SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV- C19", + "orbit": "Circular Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": 536.0, + "inclination_deg": 97.552, + "mass_kg": 1858.0, + "power_watts": 2200.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "3-axis body stabilised using Reaction Wheels, Magnetic Torquers and Hydrazine Thrusters", + "propulsion": null + }, + { + "id": 52, + "name": "GSAT-10", + "mission_type": "Communication", + "launch_date": "2012-09-29", + "launch_site": "Kourou, French Guiana", + "launch_vehicle": "Ariane-5 VA-209", + "orbit": "Geostationary (83Β° East longitude), co-located with INSAT-4A and GSAT-12", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 3400.0, + "power_watts": 6474.0, + "mission_life": "15 years", + "status": "active", + "payloads": null, + "stabilization": "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", + "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." + }, + { + "id": 53, + "name": "SARAL", + "mission_type": null, + "launch_date": "2013-02-25", + "launch_site": "SDSC SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV - C20", + "orbit": "781 km polar Sun synchronous", + "orbit_type": "SSO", + "altitude_km": null, + "inclination_deg": 98.538, + "mass_kg": 407.0, + "power_watts": 906.0, + "mission_life": "5 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "3-axis stabilisation with reaction wheels, Hydrazine Control System based thrusters", + "propulsion": null + }, + { + "id": 54, + "name": "IRNSS-1A", + "mission_type": null, + "launch_date": "2013-07-01", + "launch_site": "SDSC SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV - C22", + "orbit": "Geosynchronous, at 55 deg East longitude with 29 deg inclination", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1425.0, + "power_watts": 1660.0, + "mission_life": "10 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators", + "propulsion": "440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters" + }, + { + "id": 55, + "name": "INSAT-3D", + "mission_type": "Meteorological and Search & Rescue Services", + "launch_date": "2013-07-26", + "launch_site": "Kourou, French Guiana", + "launch_vehicle": "Ariane-5 VA-214", + "orbit": "Geostationary, 82 deg E Longitude", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 2060.0, + "power_watts": 1164.0, + "mission_life": "7 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "3-asix body stabilized in orbit using Sun Sensors, Star Sensors, gyroscopes, Momentum and Reaction Wheels, Magnetic Torquers and thrusters", + "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" + }, + { + "id": 56, + "name": "GSAT-7", + "mission_type": "Communication", + "launch_date": "2013-08-30", + "launch_site": "Kourou, French Guiana", + "launch_vehicle": "Ariane-5 VA-215", + "orbit": "74oE Geo Stationary", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 2650.0, + "power_watts": 3000.0, + "mission_life": "> 7 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "3-axis stabilized", + "propulsion": null + }, + { + "id": 57, + "name": "GSAT-14", + "mission_type": null, + "launch_date": "2014-01-05", + "launch_site": "SDSC, SHAR", + "launch_vehicle": "GSLV-D5", + "orbit": "74 deg East longitude in geostationary orbit", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1982.0, + "power_watts": 2600.0, + "mission_life": "12 years", + "status": "active", + "payloads": null, + "stabilization": "Momentum biased 3-axis stabilized mode", + "propulsion": "Bi propellant-Mono Methyl Hydrazine and Mixed Oxides of Nitrogen (MON-3)" + }, + { + "id": 58, + "name": "IRNSS-1B", + "mission_type": null, + "launch_date": "2014-04-04", + "launch_site": "SDSC SHAR Centre, Sriharikota, India", + "launch_vehicle": "PSLV - C24", + "orbit": "Geosynchronous, at 55 deg East longitude with 29 deg inclination", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 1432.0, + "power_watts": 1660.0, + "mission_life": "10 years", + "status": "decommissioned", + "payloads": null, + "stabilization": "Zero momentum system, orientation input from Sun & star Sensors and Gyroscopes; Reaction Wheels, Magnetic Torquers and 22 Newton thrusters as actuators", + "propulsion": "440 Newton Liquid Apogee Motor, twelve 22 Newton Thrusters" + }, + { + "id": 59, + "name": "GSAT-15", + "mission_type": "Communication and Satellite Navigation", + "launch_date": "2015-11-11", + "launch_site": "Kourou, French Guiana", + "launch_vehicle": "Ariane-5 VA-227", + "orbit": "Geostationary (93.5Β° East longitude)Co-located with INSAT-3A and INSAT-4B", + "orbit_type": "GEO", + "altitude_km": null, + "inclination_deg": null, + "mass_kg": 3164.0, + "power_watts": 6200.0, + "mission_life": "12 years", + "status": "active", + "payloads": null, + "stabilization": null, + "propulsion": "Bi- propellant System" + }, + { + "id": 60, + "name": "RISAT-2BR1", + "mission_type": null, + "launch_date": null, + "launch_site": null, + "launch_vehicle": null, + "orbit": null, + "orbit_type": "LEO", + "altitude_km": 576.0, + "inclination_deg": 37.0, + "mass_kg": 628.0, + "power_watts": null, + "mission_life": "5 years", + "status": "unknown", + "payloads": "X-Band Radar", + "stabilization": null, + "propulsion": null + }, + { + "id": 61, + "name": "Cartosat-3", + "mission_type": null, + "launch_date": null, + "launch_site": null, + "launch_vehicle": null, + "orbit": null, + "orbit_type": "LEO", + "altitude_km": 509.0, + "inclination_deg": 97.5, + "mass_kg": 1625.0, + "power_watts": 2000.0, + "mission_life": "5 years", + "status": "unknown", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 62, + "name": "GSAT-6", + "mission_type": null, + "launch_date": null, + "launch_site": null, + "launch_vehicle": null, + "orbit": null, + "orbit_type": null, + "altitude_km": null, + "inclination_deg": null, + "mass_kg": null, + "power_watts": 3100.0, + "mission_life": "9 years", + "status": "unknown", + "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.", + "stabilization": "Momentum biased 3-axis stabilised", + "propulsion": null + }, + { + "id": 63, + "name": "RISAT-2", + "mission_type": null, + "launch_date": null, + "launch_site": null, + "launch_vehicle": null, + "orbit": null, + "orbit_type": "LEO", + "altitude_km": 550.0, + "inclination_deg": 41.0, + "mass_kg": 300.0, + "power_watts": null, + "mission_life": null, + "status": "unknown", + "payloads": null, + "stabilization": null, + "propulsion": null + }, + { + "id": 64, + "name": "IMS-1", + "mission_type": null, + "launch_date": null, + "launch_site": null, + "launch_vehicle": null, + "orbit": "Polar Sun Synchronous", + "orbit_type": "SSO", + "altitude_km": 635.0, + "inclination_deg": null, + "mass_kg": 83.0, + "power_watts": 220.0, + "mission_life": "2 years", + "status": "unknown", + "payloads": null, + "stabilization": "Star Sensor, Miniature Sun Sensors, Magnetometers Gyros, Miniature Micro Reaction Wheels, Magnetic Torquers, single 1 N Hydrazine Thruster", + "propulsion": null + } + ] +} \ No newline at end of file diff --git a/data/spacecrafts.json b/data/spacecrafts.json index 2ae8ae1..298ac0c 100644 --- a/data/spacecrafts.json +++ b/data/spacecrafts.json @@ -1,456 +1,1134 @@ { - "spacecrafts": [ - { - "id": 1, - "name": "Aryabhata" - }, - { - "id": 2, - "name": "Bhaskara-I" - }, - { - "id": 3, - "name": "Rohini Technology Payload (RTP)" - }, - { - "id": 4, - "name": "Rohini Satellite RS-1" - }, - { - "id": 5, - "name": "Rohini Satellite RS-D1" - }, - { - "id": 6, - "name": "APPLE" - }, - { - "id": 7, - "name": "Bhaskara-II" - }, - { - "id": 8, - "name": "INSAT-1A" - }, - { - "id": 9, - "name": "Rohini Satellite RS-D2" - }, - { - "id": 10, - "name": "INSAT-1B" - }, - { - "id": 11, - "name": "SROSS-1" - }, - { - "id": 12, - "name": "IRS-1A" - }, - { - "id": 13, - "name": "SROSS-2" - }, - { - "id": 14, - "name": "INSAT-1C" - }, - { - "id": 15, - "name": "INSAT-1D" - }, - { - "id": 16, - "name": "IRS-1B" - }, - { - "id": 17, - "name": "SROSS-C" - }, - { - "id": 18, - "name": "INSAT-2A" - }, - { - "id": 19, - "name": "INSAT-2B" - }, - { - "id": 20, - "name": "IRS-1E" - }, - { - "id": 21, - "name": "SROSS-C2" - }, - { - "id": 22, - "name": "IRS-P2" - }, - { - "id": 23, - "name": "INSAT-2C" - }, - { - "id": 24, - "name": "IRS-1C" - }, - { - "id": 25, - "name": "IRS-P3" - }, - { - "id": 26, - "name": "INSAT-2D" - }, - { - "id": 27, - "name": "IRS-1D" - }, - { - "id": 28, - "name": "INSAT-2E" - }, - { - "id": 29, - "name": "Oceansat(IRS-P4)" - }, - { - "id": 30, - "name": "INSAT-3B" - }, - { - "id": 31, - "name": "GSAT-1" - }, - { - "id": 32, - "name": "The Technology Experiment Satellite (TES)" - }, - { - "id": 33, - "name": "INSAT-3C" - }, - { - "id": 34, - "name": "KALPANA-1" - }, - { - "id": 35, - "name": "INSAT-3A" - }, - { - "id": 36, - "name": "GSAT-2" - }, - { - "id": 37, - "name": "INSAT-3E" - }, - { - "id": 38, - "name": "IRS-P6 / RESOURCESAT-1" - }, - { - "id": 39, - "name": "EDUSAT" - }, - { - "id": 40, - "name": "HAMSAT" - }, - { - "id": 41, - "name": "CARTOSAT-1" - }, - { - "id": 42, - "name": "INSAT-4A" - }, - { - "id": 43, - "name": "INSAT-4C" - }, - { - "id": 44, - "name": "SRE-1" - }, - { - "id": 45, - "name": "CARTOSAT-2" - }, - { - "id": 46, - "name": "INSAT-4B" - }, - { - "id": 47, - "name": "INSAT-4CR" - }, - { - "id": 48, - "name": "CARTOSAT β 2A" - }, - { - "id": 49, - "name": "IMS-1" - }, - { - "id": 50, - "name": "Chandrayaan-1" - }, - { - "id": 51, - "name": "RISAT-2" - }, - { - "id": 52, - "name": "Oceansat-2" - }, - { - "id": 53, - "name": "GSAT-4" - }, - { - "id": 54, - "name": "CARTOSAT-2B" - }, - { - "id": 55, - "name": "GSAT-5P" - }, - { - "id": 56, - "name": "YOUTHSAT" - }, - { - "id": 57, - "name": "RESOURCESAT-2" - }, - { - "id": 58, - "name": "GSAT-8" - }, - { - "id": 59, - "name": "GSAT-12" - }, - { - "id": 60, - "name": "Megha-Tropiques" - }, - { - "id": 61, - "name": "RISAT-1" - }, - { - "id": 62, - "name": "GSAT-10" - }, - { - "id": 63, - "name": "SARAL" - }, - { - "id": 64, - "name": "IRNSS-1A" - }, - { - "id": 65, - "name": "INSAT-3D" - }, - { - "id": 66, - "name": "GSAT-7" - }, - { - "id": 67, - "name": "Mars Orbiter Mission Spacecraft" - }, - { - "id": 68, - "name": "GSAT-14" - }, - { - "id": 69, - "name": "IRNSS-1B" - }, - { - "id": 70, - "name": "IRNSS-1C" - }, - { - "id": 71, - "name": "GSAT-16" - }, - { - "id": 72, - "name": "Crew module Atmospheric Re-entry Experiment (CARE)" - }, - { - "id": 73, - "name": "IRNSS-1D" - }, - { - "id": 74, - "name": "GSAT-6" - }, - { - "id": 75, - "name": "Astrosat" - }, - { - "id": 76, - "name": "GSAT-15" - }, - { - "id": 77, - "name": "IRNSS-1E" - }, - { - "id": 78, - "name": "IRNSS-1F" - }, - { - "id": 79, - "name": "IRNSS-1G" - }, - { - "id": 80, - "name": "CARTOSAT-2 Series Satellite" - }, - { - "id": 81, - "name": "INSAT-3DR" - }, - { - "id": 82, - "name": "SCATSAT-1" - }, - { - "id": 83, - "name": "GSAT-18" - }, - { - "id": 84, - "name": "RESOURCESAT-2A" - }, - { - "id": 85, - "name": "INS-1B" - }, - { - "id": 86, - "name": "INS-1A" - }, - { - "id": 87, - "name": "Cartosat -2 Series Satellite" - }, - { - "id": 88, - "name": "GSAT-9" - }, - { - "id": 89, - "name": "GSAT-19" - }, - { - "id": 90, - "name": "Cartosat-2 Series Satellite" - }, - { - "id": 91, - "name": "GSAT-17" - }, - { - "id": 92, - "name": "IRNSS-1H" - }, - { - "id": 93, - "name": "INS-1C" - }, - { - "id": 94, - "name": "Cartosat-2 Series Satellite" - }, - { - "id": 95, - "name": "Microsat" - }, - { - "id": 96, - "name": "GSAT-6A" - }, - { - "id": 97, - "name": "IRNSS-1I" - }, - { - "id": 98, - "name": "GSAT-29" - }, - { - "id": 99, - "name": "HysIS" - }, - { - "id": 100, - "name": "GSAT-11 Mission" - }, - { - "id": 101, - "name": "GSAT-7A" - }, - { - "id": 102, - "name": "Microsat-R" - }, - { - "id": 103, - "name": "GSAT-31" - }, - { - "id": 104, - "name": "EMISAT" - }, - { - "id": 105, - "name": "RISAT-2B" - }, - { - "id": 106, - "name": "Chandrayaan2" - }, - { - "id": 107, - "name": "Cartosat-3" - }, - { - "id": 108, - "name": "RISAT-2BR1" - }, - { - "id": 109, - "name": "GSAT-30" - }, - { - "id": 110, - "name": "EOS-01" - }, - { - "id": 111, - "name": "CMS-01" - }, - { - "id": 112, - "name": "EOS-03" - }, - { - "id": 113, - "name": "Chandrayaan3" - } - ] -} + "spacecrafts": [ + { + "id": 1, + "name": "Aryabhata", + "launch_date": "1975-04-19", + "launch_vehicle": "C-1 Intercosmos", + "mission_type": "Scientific/ Experimental", + "orbit_type": null, + "mass_kg": 360.0, + "status": "decommissioned" + }, + { + "id": 2, + "name": "Bhaskara-I", + "launch_date": "1979-06-07", + "launch_vehicle": "C-1Intercosmos", + "mission_type": "Experimental Remote Sensing", + "orbit_type": null, + "mass_kg": 442.0, + "status": "decommissioned" + }, + { + "id": 3, + "name": "Rohini Technology Payload (RTP)", + "launch_date": "1979-08-10", + "launch_vehicle": "SLV-3", + "mission_type": "Experimental", + "orbit_type": "Failed", + "mass_kg": 35.0, + "status": "failed" + }, + { + "id": 4, + "name": "Rohini Satellite RS-1", + "launch_date": "1980-07-18", + "launch_vehicle": "SLV-3", + "mission_type": "Experimental", + "orbit_type": null, + "mass_kg": 35.0, + "status": "decommissioned" + }, + { + "id": 5, + "name": "Rohini Satellite RS-D1", + "launch_date": "1981-05-31", + "launch_vehicle": "SLV-3", + "mission_type": "Experimental", + "orbit_type": null, + "mass_kg": 38.0, + "status": "decommissioned" + }, + { + "id": 6, + "name": "APPLE", + "launch_date": "1981-06-19", + "launch_vehicle": "Ariane -1(V-3)", + "mission_type": "Experimental geostationary communication", + "orbit_type": "GEO", + "mass_kg": 670.0, + "status": "decommissioned" + }, + { + "id": 7, + "name": "Bhaskara-II", + "launch_date": "1981-11-20", + "launch_vehicle": "C-1 Intercosmos", + "mission_type": "Experimental Remote Sensing", + "orbit_type": null, + "mass_kg": 444.0, + "status": "decommissioned" + }, + { + "id": 8, + "name": "INSAT-1A", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 9, + "name": "Rohini Satellite RS-D2", + "launch_date": "1983-04-17", + "launch_vehicle": "SLV-3", + "mission_type": "Experimental", + "orbit_type": null, + "mass_kg": 41.5, + "status": "decommissioned" + }, + { + "id": 10, + "name": "INSAT-1B", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 11, + "name": "SROSS-1", + "launch_date": "1987-03-24", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "mission_type": "Experimental", + "orbit_type": null, + "mass_kg": 150.0, + "status": "decommissioned" + }, + { + "id": 12, + "name": "IRS-1A", + "launch_date": "1988-03-17", + "launch_vehicle": "Vostok", + "mission_type": "Operational Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 975.0, + "status": "decommissioned" + }, + { + "id": 13, + "name": "SROSS-2", + "launch_date": "1988-07-13", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "mission_type": "Experimental", + "orbit_type": "Failed", + "mass_kg": 150.0, + "status": "failed" + }, + { + "id": 14, + "name": "INSAT-1C", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 15, + "name": "INSAT-1D", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 16, + "name": "IRS-1B", + "launch_date": "1991-08-29", + "launch_vehicle": "Vostok", + "mission_type": "Operational Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 975.0, + "status": "decommissioned" + }, + { + "id": 17, + "name": "SROSS-C", + "launch_date": "1992-05-20", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "mission_type": "Experimental", + "orbit_type": null, + "mass_kg": 106.1, + "status": "decommissioned" + }, + { + "id": 18, + "name": "INSAT-2A", + "launch_date": "1992-07-10", + "launch_vehicle": "Ariane 4", + "mission_type": "Multipurpose Communication, meteorology and Satellite based search and rescue", + "orbit_type": "GEO", + "mass_kg": 1906.0, + "status": "decommissioned" + }, + { + "id": 19, + "name": "INSAT-2B", + "launch_date": "1993-07-23", + "launch_vehicle": "Ariane 4", + "mission_type": "Multipurpose Communication, meteorology and Satellite based search and rescue", + "orbit_type": "GEO", + "mass_kg": 1906.0, + "status": "decommissioned" + }, + { + "id": 20, + "name": "IRS-1E", + "launch_date": "1993-09-20", + "launch_vehicle": "PSLV-D1", + "mission_type": "Operational Remote Sensing", + "orbit_type": "Failed", + "mass_kg": 846.0, + "status": "failed" + }, + { + "id": 21, + "name": "SROSS-C2", + "launch_date": "1994-05-04", + "launch_vehicle": "Augmented Satellite Launch Vehicle (ASLV)", + "mission_type": "Experimental", + "orbit_type": null, + "mass_kg": 115.0, + "status": "decommissioned" + }, + { + "id": 22, + "name": "IRS-P2", + "launch_date": "1994-10-15", + "launch_vehicle": "PSLV-D2", + "mission_type": "Operational Remote Sensing", + "orbit_type": null, + "mass_kg": 804.0, + "status": "decommissioned" + }, + { + "id": 23, + "name": "INSAT-2C", + "launch_date": "1995-12-07", + "launch_vehicle": "Ariane4", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 2106.0, + "status": "decommissioned" + }, + { + "id": 24, + "name": "IRS-1C", + "launch_date": "1995-12-28", + "launch_vehicle": "Molniya", + "mission_type": "Operational Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 1250.0, + "status": "decommissioned" + }, + { + "id": 25, + "name": "IRS-P3", + "launch_date": "1996-03-21", + "launch_vehicle": "PSLV-D3", + "mission_type": "Remote sensing of earth's natural resources. Study of X-ray Astronomy. Periodic calibration of PSLV tracking radar located at tracking stations.", + "orbit_type": "SSO", + "mass_kg": 920.0, + "status": "decommissioned" + }, + { + "id": 26, + "name": "INSAT-2D", + "launch_date": "1997-06-04", + "launch_vehicle": "Arianev 4", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 2079.0, + "status": "decommissioned" + }, + { + "id": 27, + "name": "IRS-1D", + "launch_date": "1995-12-28", + "launch_vehicle": "Molniya", + "mission_type": "Operational Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 1250.0, + "status": "decommissioned" + }, + { + "id": 28, + "name": "INSAT-2E", + "launch_date": "1999-04-03", + "launch_vehicle": "Ariane β 42P", + "mission_type": "Communication and Meteorology", + "orbit_type": "GEO", + "mass_kg": 2550.0, + "status": "decommissioned" + }, + { + "id": 29, + "name": "Oceansat(IRS-P4)", + "launch_date": "1999-05-26", + "launch_vehicle": "PSLV - C2", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 1050.0, + "status": "decommissioned" + }, + { + "id": 30, + "name": "INSAT-3B", + "launch_date": "2000-03-22", + "launch_vehicle": "Ariane -5", + "mission_type": null, + "orbit_type": "GEO", + "mass_kg": 2070.0, + "status": "unknown" + }, + { + "id": 31, + "name": "GSAT-1", + "launch_date": "2001-04-18", + "launch_vehicle": "GSLV β D1", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1530.0, + "status": "unknown" + }, + { + "id": 32, + "name": "The Technology Experiment Satellite (TES)", + "launch_date": "2001-10-22", + "launch_vehicle": "PSLV- C3", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": null, + "status": "unknown" + }, + { + "id": 33, + "name": "INSAT-3C", + "launch_date": "2002-01-24", + "launch_vehicle": "Ariane5-V147", + "mission_type": "Communication, broadcasting and Meteorology", + "orbit_type": "GEO", + "mass_kg": 2650.0, + "status": "unknown" + }, + { + "id": 34, + "name": "KALPANA-1", + "launch_date": "2002-09-12", + "launch_vehicle": "PSLV β C4", + "mission_type": null, + "orbit_type": "GEO", + "mass_kg": 1060.0, + "status": "decommissioned" + }, + { + "id": 35, + "name": "INSAT-3A", + "launch_date": "2003-04-10", + "launch_vehicle": "Ariane5-V160", + "mission_type": "Telecommunication, broadcasting and Meteorology", + "orbit_type": "GEO", + "mass_kg": 2950.0, + "status": "decommissioned" + }, + { + "id": 36, + "name": "GSAT-2", + "launch_date": "2003-05-08", + "launch_vehicle": "GSLVβD2", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1800.0, + "status": "unknown" + }, + { + "id": 37, + "name": "INSAT-3E", + "launch_date": "2003-09-28", + "launch_vehicle": "Ariane5-V162", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 2775.0, + "status": "unknown" + }, + { + "id": 38, + "name": "IRS-P6 / RESOURCESAT-1", + "launch_date": "2003-10-17", + "launch_vehicle": "PSLV-C5", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 1360.0, + "status": "decommissioned" + }, + { + "id": 39, + "name": "EDUSAT", + "launch_date": "2004-09-20", + "launch_vehicle": "GSLV-F01", + "mission_type": "Education", + "orbit_type": "GEO", + "mass_kg": 1950.5, + "status": "decommissioned" + }, + { + "id": 40, + "name": "HAMSAT", + "launch_date": "2005-05-05", + "launch_vehicle": "PSLV-C6", + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": "unknown" + }, + { + "id": 41, + "name": "CARTOSAT-1", + "launch_date": "2005-05-05", + "launch_vehicle": "PSLV- C6", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 1560.0, + "status": "decommissioned" + }, + { + "id": 42, + "name": "INSAT-4A", + "launch_date": "2005-12-22", + "launch_vehicle": "ARIANE5-V169", + "mission_type": null, + "orbit_type": "GEO", + "mass_kg": 3081.0, + "status": "decommissioned" + }, + { + "id": 43, + "name": "INSAT-4C", + "launch_date": "2007-09-02", + "launch_vehicle": "GSLV-F04", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 2130.0, + "status": "decommissioned" + }, + { + "id": 44, + "name": "SRE-1", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 45, + "name": "CARTOSAT-2", + "launch_date": "2007-01-10", + "launch_vehicle": "PSLV- C7", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 650.0, + "status": "decommissioned" + }, + { + "id": 46, + "name": "INSAT-4B", + "launch_date": "2007-03-12", + "launch_vehicle": "Ariane5", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 3025.0, + "status": "decommissioned" + }, + { + "id": 47, + "name": "INSAT-4CR", + "launch_date": "2007-09-02", + "launch_vehicle": "GSLV-F04", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 2130.0, + "status": "decommissioned" + }, + { + "id": 48, + "name": "CARTOSAT-2A", + "launch_date": "2008-04-28", + "launch_vehicle": "PSLV- C9", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 690.0, + "status": "decommissioned" + }, + { + "id": 49, + "name": "IMS-1", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 83.0, + "status": "unknown" + }, + { + "id": 50, + "name": "Chandrayaan-1", + "launch_date": "2008-10-22", + "launch_vehicle": "PSLV - C11", + "mission_type": "Remote Sensing, Planetary Science", + "orbit_type": "Lunar", + "mass_kg": 1380.0, + "status": "decommissioned" + }, + { + "id": 51, + "name": "RISAT-2", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": "LEO", + "mass_kg": 300.0, + "status": "unknown" + }, + { + "id": 52, + "name": "Oceansat-2", + "launch_date": "2009-09-23", + "launch_vehicle": "PSLV - C14", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 960.0, + "status": "decommissioned" + }, + { + "id": 53, + "name": "GSAT-4", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 54, + "name": "CARTOSAT-2B", + "launch_date": "2010-07-12", + "launch_vehicle": "PSLV- C15", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 694.0, + "status": "unknown" + }, + { + "id": 55, + "name": "GSAT-5P", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 56, + "name": "YOUTHSAT", + "launch_date": "2011-04-20", + "launch_vehicle": "PSLV- C16", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 92.0, + "status": "decommissioned" + }, + { + "id": 57, + "name": "RESOURCESAT-2", + "launch_date": "2011-04-20", + "launch_vehicle": "PSLV- C16", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 1206.0, + "status": "decommissioned" + }, + { + "id": 58, + "name": "GSAT-8", + "launch_date": "2011-05-21", + "launch_vehicle": "Ariane-5 VA-202", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 3093.0, + "status": "decommissioned" + }, + { + "id": 59, + "name": "GSAT-12", + "launch_date": "2011-07-15", + "launch_vehicle": "PSLV-C17", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1410.0, + "status": "decommissioned" + }, + { + "id": 60, + "name": "Megha-Tropiques", + "launch_date": "2011-10-12", + "launch_vehicle": "PSLV- C18", + "mission_type": null, + "orbit_type": null, + "mass_kg": 1000.0, + "status": "unknown" + }, + { + "id": 61, + "name": "RISAT-1", + "launch_date": "2012-04-26", + "launch_vehicle": "PSLV- C19", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 1858.0, + "status": "decommissioned" + }, + { + "id": 62, + "name": "GSAT-10", + "launch_date": "2012-09-29", + "launch_vehicle": "Ariane-5 VA-209", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 3400.0, + "status": "active" + }, + { + "id": 63, + "name": "SARAL", + "launch_date": "2013-02-25", + "launch_vehicle": "PSLV - C20", + "mission_type": null, + "orbit_type": "SSO", + "mass_kg": 407.0, + "status": "decommissioned" + }, + { + "id": 64, + "name": "IRNSS-1A", + "launch_date": "2013-07-01", + "launch_vehicle": "PSLV - C22", + "mission_type": null, + "orbit_type": "GEO", + "mass_kg": 1425.0, + "status": "decommissioned" + }, + { + "id": 65, + "name": "INSAT-3D", + "launch_date": "2013-07-26", + "launch_vehicle": "Ariane-5 VA-214", + "mission_type": "Meteorological and Search & Rescue Services", + "orbit_type": "GEO", + "mass_kg": 2060.0, + "status": "decommissioned" + }, + { + "id": 66, + "name": "GSAT-7", + "launch_date": "2013-08-30", + "launch_vehicle": "Ariane-5 VA-215", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 2650.0, + "status": "decommissioned" + }, + { + "id": 67, + "name": "Mars Orbiter Mission Spacecraft", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 68, + "name": "GSAT-14", + "launch_date": "2014-01-05", + "launch_vehicle": "GSLV-D5", + "mission_type": null, + "orbit_type": "GEO", + "mass_kg": 1982.0, + "status": "active" + }, + { + "id": 69, + "name": "IRNSS-1B", + "launch_date": "2014-04-04", + "launch_vehicle": "PSLV - C24", + "mission_type": null, + "orbit_type": "GEO", + "mass_kg": 1432.0, + "status": "decommissioned" + }, + { + "id": 70, + "name": "IRNSS-1C", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 71, + "name": "GSAT-16", + "launch_date": "2001-04-18", + "launch_vehicle": "GSLV β D1", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1530.0, + "status": "unknown" + }, + { + "id": 72, + "name": "Crew module Atmospheric Re-entry Experiment (CARE)", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 73, + "name": "IRNSS-1D", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 74, + "name": "GSAT-6", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": "unknown" + }, + { + "id": 75, + "name": "Astrosat", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 76, + "name": "GSAT-15", + "launch_date": "2015-11-11", + "launch_vehicle": "Ariane-5 VA-227", + "mission_type": "Communication and Satellite Navigation", + "orbit_type": "GEO", + "mass_kg": 3164.0, + "status": "active" + }, + { + "id": 77, + "name": "IRNSS-1E", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 78, + "name": "IRNSS-1F", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 79, + "name": "IRNSS-1G", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 80, + "name": "CARTOSAT-2 Series Satellite", + "launch_date": "2007-01-10", + "launch_vehicle": "PSLV- C7", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 650.0, + "status": "decommissioned" + }, + { + "id": 81, + "name": "INSAT-3DR", + "launch_date": "2013-07-26", + "launch_vehicle": "Ariane-5 VA-214", + "mission_type": "Meteorological and Search & Rescue Services", + "orbit_type": "GEO", + "mass_kg": 2060.0, + "status": "decommissioned" + }, + { + "id": 82, + "name": "SCATSAT-1", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 83, + "name": "GSAT-18", + "launch_date": "2001-04-18", + "launch_vehicle": "GSLV β D1", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1530.0, + "status": "unknown" + }, + { + "id": 84, + "name": "RESOURCESAT-2A", + "launch_date": "2011-04-20", + "launch_vehicle": "PSLV- C16", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 1206.0, + "status": "decommissioned" + }, + { + "id": 85, + "name": "INS-1B", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 86, + "name": "INS-1A", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 87, + "name": "Cartosat-2 Series Satellite", + "launch_date": "2007-01-10", + "launch_vehicle": "PSLV- C7", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 650.0, + "status": "decommissioned" + }, + { + "id": 88, + "name": "GSAT-9", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 89, + "name": "GSAT-19", + "launch_date": "2001-04-18", + "launch_vehicle": "GSLV β D1", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1530.0, + "status": "unknown" + }, + { + "id": 90, + "name": "Cartosat-2 Series Satellite", + "launch_date": "2007-01-10", + "launch_vehicle": "PSLV- C7", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 650.0, + "status": "decommissioned" + }, + { + "id": 91, + "name": "GSAT-17", + "launch_date": "2001-04-18", + "launch_vehicle": "GSLV β D1", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1530.0, + "status": "unknown" + }, + { + "id": 92, + "name": "IRNSS-1H", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 93, + "name": "INS-1C", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 94, + "name": "Cartosat-2 Series Satellite", + "launch_date": "2007-01-10", + "launch_vehicle": "PSLV- C7", + "mission_type": "Remote Sensing", + "orbit_type": "SSO", + "mass_kg": 650.0, + "status": "decommissioned" + }, + { + "id": 95, + "name": "Microsat", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 96, + "name": "GSAT-6A", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": "unknown" + }, + { + "id": 97, + "name": "IRNSS-1I", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 98, + "name": "GSAT-29", + "launch_date": "2003-05-08", + "launch_vehicle": "GSLVβD2", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1800.0, + "status": "unknown" + }, + { + "id": 99, + "name": "HysIS", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 100, + "name": "GSAT-11 Mission", + "launch_date": "2001-04-18", + "launch_vehicle": "GSLV β D1", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 1530.0, + "status": "unknown" + }, + { + "id": 101, + "name": "GSAT-7A", + "launch_date": "2013-08-30", + "launch_vehicle": "Ariane-5 VA-215", + "mission_type": "Communication", + "orbit_type": "GEO", + "mass_kg": 2650.0, + "status": "decommissioned" + }, + { + "id": 102, + "name": "Microsat-R", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 103, + "name": "GSAT-31", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 104, + "name": "EMISAT", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 105, + "name": "RISAT-2B", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": "LEO", + "mass_kg": 628.0, + "status": "unknown" + }, + { + "id": 106, + "name": "Chandrayaan2", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 107, + "name": "Cartosat-3", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": "LEO", + "mass_kg": 1625.0, + "status": "unknown" + }, + { + "id": 108, + "name": "RISAT-2BR1", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": "LEO", + "mass_kg": 628.0, + "status": "unknown" + }, + { + "id": 109, + "name": "GSAT-30", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 110, + "name": "EOS-01", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 111, + "name": "CMS-01", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 112, + "name": "EOS-03", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + }, + { + "id": 113, + "name": "Chandrayaan3", + "launch_date": null, + "launch_vehicle": null, + "mission_type": null, + "orbit_type": null, + "mass_kg": null, + "status": null + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html index 28a95d3..a2b6adc 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ -
- Open Source API for Launched Spacecrafts & Rockets data of ISRO + Open Source API for ISRO spacecraft, launcher, and mission data