isro-missions / README.md
juliensimon's picture
Update ISRO missions: 112 spacecraft, 81 launchers, 53 customer satellites, 44 centres
6f3050c verified
metadata
license: cc-by-4.0
pretty_name: ISRO Missions Data
language:
  - en
description: >-
  Indian Space Research Organisation (ISRO) spacecraft, launchers, customer
  satellites, and research centres. 290 records across four tables.
task_categories:
  - tabular-classification
tags:
  - space
  - isro
  - india
  - spacecraft
  - launchers
  - satellites
  - open-data
  - tabular-data
  - parquet
configs:
  - config_name: spacecraft
    data_files:
      - split: train
        path: data/spacecraft.parquet
    default: true
  - config_name: launchers
    data_files:
      - split: train
        path: data/launchers.parquet
  - config_name: customer_satellites
    data_files:
      - split: train
        path: data/customer_satellites.parquet
  - config_name: centres
    data_files:
      - split: train
        path: data/centres.parquet
size_categories:
  - n<1K

ISRO Missions Data

Part of the Orbital Mechanics Datasets collection on Hugging Face.

Comprehensive data on the Indian Space Research Organisation (ISRO): 112 spacecraft, 81 launch vehicles, 53 customer satellites launched for 22 countries, and 44 research centres across 16 Indian states.

Dataset description

ISRO is India's national space agency, responsible for one of the most cost-effective space programs in the world. Since its founding in 1969, ISRO has developed indigenous launch vehicle families -- the Polar Satellite Launch Vehicle (PSLV), Geosynchronous Satellite Launch Vehicle (GSLV), and the heavy-lift GSLV Mk III (LVM3) -- and built satellite constellations for remote sensing (IRS series), communications (INSAT/GSAT series), and navigation (NavIC/IRNSS). ISRO has achieved landmark interplanetary missions including Chandrayaan-1 (which confirmed water on the Moon), the Mars Orbiter Mission (Mangalyaan, India's first interplanetary probe), Chandrayaan-3 (which successfully landed near the lunar south pole in 2023), and is developing the Gaganyaan crewed spaceflight program.

This dataset captures four dimensions of ISRO's space program: the full catalog of ISRO-built spacecraft, the complete roster of launch vehicles from early SLV-3 experimental flights through modern PSLV and GSLV missions, customer satellites launched by ISRO for international clients (a major commercial activity, with PSLV having launched satellites for dozens of countries), and the network of ISRO research centres and facilities distributed across India.

Configs

spacecraft -- 112 ISRO spacecraft

Every spacecraft built and launched by ISRO.

Column Type Description
id int Unique spacecraft identifier
name string Spacecraft name (e.g., Aryabhata, INSAT-1A, Chandrayaan-1)

launchers -- 81 launch vehicles

ISRO launch vehicle missions (SLV, ASLV, PSLV, GSLV variants).

Column Type Description
id string Launcher mission identifier (e.g., PSLV-C2, GSLV-F05)

customer_satellites -- 53 customer satellites

Satellites launched by ISRO for international customers.

Column Type Description
id string Satellite name/identifier
country string Customer country
launch_date date Launch date
mass_kg float Satellite mass in kilograms
launcher string ISRO launcher used (e.g., PSLV-C2)

centres -- 44 ISRO centres

ISRO research centres and facilities across India.

Column Type Description
id int Centre identifier
name string Centre name
place string City/location
state string Indian state

Quick stats

  • 112 ISRO spacecraft from Aryabhata (1975) to present
  • 81 launch vehicle missions (SLV, ASLV, PSLV, GSLV, LVM3)
  • 53 customer satellites for 22 countries
  • 44 research centres across 16 Indian states

Usage

from datasets import load_dataset

spacecraft = load_dataset("juliensimon/isro-missions", "spacecraft", split="train")
launchers = load_dataset("juliensimon/isro-missions", "launchers", split="train")
customer_sats = load_dataset("juliensimon/isro-missions", "customer_satellites", split="train")
centres = load_dataset("juliensimon/isro-missions", "centres", split="train")

# List all ISRO spacecraft
sdf = spacecraft.to_pandas()
print(sdf[["id", "name"]].to_string(index=False))

# Customer satellites by country
cdf = customer_sats.to_pandas()
print(cdf.groupby("country").size().sort_values(ascending=False).head(10))

# PSLV missions
ldf = launchers.to_pandas()
pslv = ldf[ldf["id"].str.startswith("PSLV")]
print(f"{len(pslv)} PSLV missions")

Data source

ISRO API -- community-maintained open API for ISRO spacecraft, launchers, and mission data. Based on publicly available ISRO records.

Update schedule

Static dataset -- rebuilt manually when the source API is updated.

Related datasets

Pipeline

Source code: juliensimon/space-datasets

Support

If you find this dataset useful, please give it a ❤️ on the dataset page and share feedback in the Community tab! Also consider giving a ⭐️ to the space-datasets repo.

Citation

@dataset{isro_missions,
  author = {Simon, Julien},
  title = {ISRO Missions Data},
  year = {2026},
  publisher = {Hugging Face},
  url = {https://huggingface.co/datasets/juliensimon/isro-missions},
  note = {Based on community ISRO API (isro.vercel.app)}
}

License

CC-BY-4.0