GithubHelp home page GithubHelp logo

ivankovalenko / satellite Goto Github PK

View Code? Open in Web Editor NEW

This project forked from slavas62/satellite

0.0 1.0 0.0 19 KB

Положение спутников в реальном режиме времени

Dockerfile 1.73% Python 98.27%

satellite's Introduction

Description

Web service return information about the satellites location and parameters. The service uses data from http://www.n2yo.com/ and returns geoJSON with location and satellite attributes of a given satellite.

Available satellites list http://www.n2yo.com/satellites/

Screenshot from 2016-05-31 13-12-42.png

Demo

How to use this image

Run a satellite tracking instance

$ docker run --name satellite_tracking -d --restart=always mediagis/satellite-tracking

Service will run at http://localhost:80

Request examples

Information about satellites

http://localhost/?s=25544|28931

This request return information about SPACE STATION and ALOS.

Response:

{
  type: "FeatureCollection",
  features: [
    {
      geometry: {
        type: "Point",
        coordinates: [
          -87.09654781,
          22.84623564,
          402420
        ]
      },
      sat_id: "25544",
      type: "Feature",
      id: "25544",
      properties: {
        elevation: -41.84,
        altitude: 402.42,
        period: "5580",
        sat_name: "SPACE STATION",
        azimuth: 292.74,
        speed: 7.667194164014538,
        int_designator: "1998-067A"
      }
    },
    {
      geometry: {
        type: "Point",
        coordinates: [
          155.518122,
          40.93693575,
          690740
        ]
      },
      sat_id: "28931",
      type: "Feature",
      id: "28931",
      properties: {
        elevation: -65.54,
        altitude: 690.74,
        period: "5940",
        sat_name: "ALOS",
        azimuth: 25.67,
        speed: 7.509204504294438,
        int_designator: "2006-002A"
      }
    }
  ]
}

Information about satellites orbit

http://localhost/orbit/?s=25544|28931

Response:

{
  type: "FeatureCollection",
  features: [
    {
      geometry: {
        type: "MultiLineString",
        coordinates: [
          [
            -27.2129558,
            -42.58658788,
            417360
          ],
          [
            ...
          ]
        ]
      },
      sat_id: "25544",
      type: "Feature",
      id: "25544",
      properties: {
        sat_name: "SPACE STATION",
        int_designator: "1998-067A",
        period: "5580"
      }
    },
    {
      geometry: {
        type: "MultiLineString",
        coordinates: [
          [
            -12.22710724,
            54.43303266,
            693780
          ],
          [
            ...
          ]
        ]
      },
      sat_id: "28931",
      type: "Feature",
      id: "28931",
      properties: {
        sat_name: "ALOS",
        int_designator: "2006-002A",
        period: "5940"
      }
    }
  ]
}

satellite's People

Contributors

slavas62 avatar unknownlighter avatar neroks avatar winsento avatar

Watchers

James Cloos 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.