DESPATCH API Reference
/despatch/track
Get tracking data at a specific time.
Parameters
Name | Description |
---|
time
| Datetime in Unix Time
example: |
lat
| Latitude of an observer (degree)example: |
lon
| Longitude of an observer (degree)example: |
alt
| Altitude of an observer (meter)example: |
Formats
Extension | Type |
---|
.json | JSON |
.csv | CSV |
Results
Name | Description |
---|
time
| Requested datetime |
elevation
| Elevation (degree) |
azimuth
| Azimuth (degree) |
doppler_down
| Downlink doppler ratio |
doppler_up
| Uplink doppler ratio |
distance | Distance from the observer (meter) |
declination | Declination (degree) |
right_ascension | Right Ascension (degree) |
phase | Operation phase |
Example
https://api.artsat.jp/despatch/track.json?time=1417436200&lat=35.610603&lon=139.351124&alt=148
/despatch/track_range
Get tracking data during a period.
Parameters
Name | Description |
---|
begin | The start datetime of the period in Unix Timeexample: |
end | The end datetime of the period in Unix Timeexample: |
interval
| Interval of the period (second)example: |
lat
| Latitude of an observer (degree)example: |
lon
| Longitude of an observer (degree)example: |
alt
| Altitude of an observer (meter)example: |
Formats
Extension | Type |
---|
.json | JSON |
.csv | CSV |
Results
Name | Description |
---|
time
| Requested datetime |
elevation
| Elevation (degree) |
azimuth
| Azimuth (degree) |
doppler_down
| Downlink doppler ratio |
doppler_up
| Uplink doppler ratio |
distance | Distance from the observer (meter) |
declination | Declination (degree) |
right_ascension | Right Ascension (degree) |
phase | Operation phase |
Example
https://api.artsat.jp/despatch/track_range.json?begin=1417436200&end=1417437200&interval=100&lat=35.610603&lon=139.351124&alt=148
Expand