GithubHelp home page GithubHelp logo

radziejewicz / iss-photo-locations Goto Github PK

View Code? Open in Web Editor NEW

This project forked from natronics/iss-photo-locations

0.0 0.0 0.0 36.84 MB

The location of all photos taken from the International Space Station

Python 27.06% HTML 72.94%

iss-photo-locations's Introduction

ISS-photo-locations

A data dump of the location of all photos taken from the International Space Station.

Since the first mission to the International Space Station over 12 years ago there have been over a million of photographs taken by astronauts from their perch four hundred kilometers above Earth. Nearly all of them have been archived on NASA’s servers. I've crawled that archive and pulled out the approximate location of the ISS when each photo was taken.

Format

The data exists in a collection of .csv files in the folder ./data/. There is a file for each ISS mission, ISS001.csv, ISS002.csv, etc. in the following format:

Column   Mission-Roll-Frame | Latitude | Longitude
Example  ISS001-E-5411, 45.5, -122.6

Example Use

In python you could read in a file like this:

with open("data/ISS001.csv") as f:
    for line in f:
        columns = line.split(',')
        mrf = columns[0]
        latitude = float(columns[1])
        longitude = float(columns[2])
        print mrf, latitude, longitude

Also look in the scripts folder for example code for doing things like generating URLs to the images based on the Mission-Roll-Frame key in the CSV files.

License

This dataset is courtisy of the Image Science and Analysis Laboratory, NASA-Johnson Space Center. http://eol.jsc.nasa.gov/

NASA still images; audio files; video; and computer files used in the rendition of 3-dimensional models, such as texture maps and polygon data in any format, generally are not copyrighted. You may use NASA imagery, video, audio, and data files used for the rendition of 3-dimensional models for educational or informational purposes, including photo collections, textbooks, public exhibits, computer graphical simulations and Internet Web pages. This general permission extends to personal Web pages.

The accompanying articles and visualizations are copyrighted by Nathan Bergey and available under a Creative Commons Attribution 3.0 License.

iss-photo-locations's People

Contributors

natronics avatar jsvine avatar paulbynd avatar

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.