Giter Site home page Giter Site logo

spacecraft_rs's Introduction

Spacecraft Remote Sensing

This python3 project calculates the viewing geometry for cameras and spectrometers mounted on spacecraft orbiting planets in our solar system. This geometry can then be used to project observations onto coordinate grids, such as longitude and latitude.

Disclaimer

This program is free software. It is open source software. It is not space agency software. It is not endorsed by any space agency or any spacecraft mission. It may not work as expected. It may be riddled with bugs. It may produce inconsistent and/or incorrect results. Use at your own risk.

I'm always interested in hearing thoughts and comments - feel free to contact me.

Requirements

1. Python dependencies

One of many beautiful aspect of open source software is that we can drink from wells that we did not dig. Here, we are using a number of existing modules:

2. NAIF pointing kernels

The software will not function without the spacecraft pointing information provided by the NASA Navigation and Ancillary Information Facility (NAIF) kernels (see the website for a wealth of information and tutorials). These are a collection of files describing the geometry and the pointing of a spacecraft relative to some solar system body for a specific time. Any remote sensing instruments, such as cameras and spectrometers, are defined relative to the spacecraft, with each having their individual kernel. You can get these kernels from the NAIF FTP site, for a whole host of spacecraft missions.

For example, to download (or to update) all the NAIF kernels for the Juno mission to Jupiter, you can use the following command (but do note that the entire collection is very large, over 64 Gb of data):

wget -nH --cut-dirs=4 -m ftp://naif.jpl.nasa.gov/pub/naif/JUNO/

Once this behemoth is downloaded, you can use juno_kernel_loader.py to automatically load the required set of kernels for a particular time.

import spacecraft_rs as srs

# Say that the wget command above downloaded to /path/to/kernels/JUNO/, then:
timestr = '2017-01-02 12:34:56'
dir     = '/path/to/kernels/JUNO/'
kl      = srs.juno_kernel_loader(dir, timestr = timestr)

Alternatively you can download individual kernels for any specific interval, although that requires some tedious parsing of the ck/ and spk/ filenames.

3. Mission data

Since spacecraft missions are funded by public resources, the data they produced are as a rule available free of charge to the public after a certain time period. Both NASA and ESA have archives with vast amounts of data on them, provided in a variety of file-formats.

Calculated parameters

For the centre and each corner of each pixel, the software will calculate the following parameters:

  • lat Planetocentric latitude (degrees)
  • lon West longitude (degrees)
  • lat_graphic Planetographic latitude (degrees)
  • localtime The local time (hours)
  • emission Emission angle - the angle between the boresight vector and the surface normal (degrees)
  • phase Phase angle - the angle between the sun vector and boresight (degrees)
  • incidence Incidence angle - the angle between the sun vector and the surface normal (degrees)
  • limb_distance The closest distance between the limb and the boresight vector, negative numbers are on the planet (km)
  • limb_lat The limb planetocentric latitude (degrees).
  • limb_lon The limb longitude (degrees)
  • losdist The distance between the spaceship and the point that intersects the surface of the body (km)

An Example - Juno JIRAM

The Jovian Infrared Auroral Mapper (JIRAM) is the near-infrared imager and spectrograph onboard the Juno spacecraft, currently in orbit about Jupiter. It also has a spectroscopic mode. It has two imaging modes, one at 3.5 microns capturing auroral emissions, and one at 5 microns, capturing thermal emissions from the deep troposphere. In this example, we will use an observation at 5 microns and assign a set of geometries to each of the pixels that make up the image.

The Juno JIRAM data is stored on the Planetary Data System (PDS), and data from the Juno perijoves (closest approach) can be downloaded from here, with the calibrated JIRAM data directories having a prefix of jnojir_2*.

In this example we will assign geometry to each pixel of the following image from the seventh perijove:

https://pds-atmospheres.nmsu.edu/PDS/data/jnojir_2007/DATA/JIR_IMG_RDR_2017191T083944_V01.IMG

We will also need the associated label (LBL) file:

https://pds-atmospheres.nmsu.edu/PDS/data/jnojir_2007/DATA/JIR_IMG_RDR_2017191T083944_V01.LBL

This gorgeous image looks like this:

Jupiter by JIRAM

Our aim here is to add grid lines of longitude and latitude, shown in the example below:

#!/usr/bin/python
import spacecraft_rs as srs
import matplotlib.pyplot as plt

# Read the data and the label file
file    = '/path/to/data/JIR_IMG_RDR_2017191T083944_V01.IMG'
lbl     = srs.read_label(file.replace('.IMG', '.LBL'))
im      = srs.read_image(file, lbl, 'IMAGE')
timestr = str(lbl['START_TIME'])

# Setup the kernel-loader and load the appropriate ones. This is based purely on time.
dir     = '/path/to/kernels/JUNO/'
kl      = srs.juno_kernel_loader(dir, timestr = timestr)

# Generate the geometry
jiram   = srs.juno_jiram_geometry()
jiram.set_mode(lbl['INSTRUMENT_MODE_ID'])
ret     = jiram.sc_pos(timestr)
fov     = jiram.get_corners()

# This method extracts the parameters using nice-names
lat = jiram.extract_param('lat', pixel=1)
lon = jiram.extract_param('lon', pixel=1)

# Plot our result
plt.figure(figsize=(8, 3))
plt.imshow(im, cmap='hot')
plt.contour(lat, levels=range(-90, 90, 10), colors='white', linestyles='solid')
plt.contour(lon, levels=range(10, 360, 10), colors='white', linestyle='solid')
plt.tight_layout()
plt.show()

Which produces the result:

Jupiter by JIRAM, with a grid!

Of course, all calculated parameters are available at this point, e.g. the limb_distance:

Jupiter by JIRAM, with a grid!

spacecraft_rs's People

Contributors

henrikmelin avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

leighfletcher

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.