aws-sdk-groundstation 1.52.0 → 1.53.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a725ee77307331ff39a7ff15d9f7664a83bb86f878fabffebdf844a1c08fd567
4
- data.tar.gz: 6b1421490f46c05aa75c73042394cb63f8faffabfb70849f6946517573ab431b
3
+ metadata.gz: 326e7d4e21f1a2ce819b185cdd50ba78a3d626d90612b052c91b48979c455bd2
4
+ data.tar.gz: f5731e140ce20c10b334c2d04971981afa22cc05ee468f6843d2cd5e53347273
5
5
  SHA512:
6
- metadata.gz: d7b815fdc9c827883bc736dd0e0f4b63f464fc70eae5ffd6b3410b0f25cf7a22df47830f4c71c764c6343ab9a62ac20b19a3ad6520f8df235de448e3ad60c435
7
- data.tar.gz: 40026a451dfa86d5b284fee048316737ef051b154965d76400ea148f36f957fd3f536b2d4da9a6f909fa3b7356fc99afd668650771823bad6f3ecbc765cd0d44
6
+ metadata.gz: 1b426a53247fbcbb9178bd074961fd96cab0d7910fac1d6141b59adcb0a6a837f4f1cdac3dddb9590440a2dcccdbffbe7b9ccea839e1ad8078b30587a2ce0ab3
7
+ data.tar.gz: a0effacac1907890569b1d179c3160e760ea3bb8dcad2067117d4d5f62eae7f9690125d92fbb2054762bf1e48c418a729ce3300568f3e3f9df9f70a700cac453
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2024-08-12)
5
+ ------------------
6
+
7
+ * Feature - Updating documentation for OEMEphemeris to link to AWS Ground Station User Guide
8
+
4
9
  1.52.0 (2024-07-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -2278,7 +2278,7 @@ module Aws::GroundStation
2278
2278
  params: params,
2279
2279
  config: config)
2280
2280
  context[:gem_name] = 'aws-sdk-groundstation'
2281
- context[:gem_version] = '1.52.0'
2281
+ context[:gem_version] = '1.53.0'
2282
2282
  Seahorse::Client::Request.new(handlers, context)
2283
2283
  end
2284
2284
 
@@ -1253,18 +1253,16 @@ module Aws::GroundStation
1253
1253
  # @!attribute [rw] oem
1254
1254
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
1255
1255
  #
1256
- # Position, velocity, and acceleration units must be represented in
1257
- # `km`, `km/s`, and `km/s**2`, respectively, in ephemeris data lines.
1258
- # Covariance matrix line units must be represented in `km**2` if
1259
- # computed from two positions, `km**2/s` if computed from one position
1260
- # and one velocity, and `km**2/s**2` if computed from two velocities.
1261
- # Consult section 7.7.2 of The Consultative Committee for Space Data
1262
- # Systems (CCSDS) [Recommended Standard for Orbit Data Messages][1]
1263
- # for more information.
1256
+ # AWS Ground Station processes OEM Customer Provided Ephemerides
1257
+ # according to the [CCSDS standard][1] with some extra restrictions.
1258
+ # OEM files should be in KVN format. For more detail about the OEM
1259
+ # format that AWS Ground Station supports, see [OEM ephemeris
1260
+ # format][2] in the AWS Ground Station user guide.
1264
1261
  #
1265
1262
  #
1266
1263
  #
1267
1264
  # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
1265
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-custom-ephemeris-data.html#oem-ephemeris-format
1268
1266
  # @return [Types::OEMEphemeris]
1269
1267
  #
1270
1268
  # @!attribute [rw] tle
@@ -2276,18 +2274,16 @@ module Aws::GroundStation
2276
2274
 
2277
2275
  # Ephemeris data in Orbit Ephemeris Message (OEM) format.
2278
2276
  #
2279
- # Position, velocity, and acceleration units must be represented in
2280
- # `km`, `km/s`, and `km/s**2`, respectively, in ephemeris data lines.
2281
- # Covariance matrix line units must be represented in `km**2` if
2282
- # computed from two positions, `km**2/s` if computed from one position
2283
- # and one velocity, and `km**2/s**2` if computed from two velocities.
2284
- # Consult section 7.7.2 of The Consultative Committee for Space Data
2285
- # Systems (CCSDS) [Recommended Standard for Orbit Data Messages][1] for
2286
- # more information.
2277
+ # AWS Ground Station processes OEM Customer Provided Ephemerides
2278
+ # according to the [CCSDS standard][1] with some extra restrictions. OEM
2279
+ # files should be in KVN format. For more detail about the OEM format
2280
+ # that AWS Ground Station supports, see [OEM ephemeris format][2] in the
2281
+ # AWS Ground Station user guide.
2287
2282
  #
2288
2283
  #
2289
2284
  #
2290
2285
  # [1]: https://public.ccsds.org/Pubs/502x0b3e1.pdf
2286
+ # [2]: https://docs.aws.amazon.com/ground-station/latest/ug/providing-custom-ephemeris-data.html#oem-ephemeris-format
2291
2287
  #
2292
2288
  # @!attribute [rw] oem_data
2293
2289
  # The data for an OEM ephemeris, supplied directly in the request
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-groundstation/customizations'
53
53
  # @!group service
54
54
  module Aws::GroundStation
55
55
 
56
- GEM_VERSION = '1.52.0'
56
+ GEM_VERSION = '1.53.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-groundstation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-10 00:00:00.000000000 Z
11
+ date: 2024-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core