Skip to content

Commit

Permalink
feat(streetviewpublish): update the api
Browse files Browse the repository at this point in the history
#### streetviewpublish:v1

The following keys were deleted:
- schemas.GpsDataGapFailureDetails.properties.gapTime (Total Keys: 2)
- schemas.ImuDataGapFailureDetails.properties.gapTime (Total Keys: 2)
- schemas.NotOutdoorsFailureDetails.properties.time (Total Keys: 2)

The following keys were added:
- schemas.GpsDataGapFailureDetails.properties.gapStartTime (Total Keys: 2)
- schemas.ImuDataGapFailureDetails.properties.gapStartTime (Total Keys: 2)
- schemas.NotOutdoorsFailureDetails.properties.startTime (Total Keys: 2)
  • Loading branch information
yoshi-automation committed Jul 26, 2022
1 parent 57d8d5a commit af184b8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
12 changes: 6 additions & 6 deletions docs/dyn/streetviewpublish_v1.photoSequence.html
Expand Up @@ -107,19 +107,19 @@ <h3>Method Details</h3>
&quot;captureTimeOverride&quot;: &quot;A String&quot;, # Optional. Absolute time when the photo sequence starts to be captured. If the photo sequence is a video, this is the start time of the video. If this field is populated in input, it overrides the capture time in the video or XDM file.
&quot;distanceMeters&quot;: 3.14, # Output only. The computed distance of the photo sequence in meters.
&quot;failureDetails&quot;: { # Additional details to accompany the ProcessingFailureReason enum. This message is always expected to be used in conjunction with ProcessingFailureReason, and the oneof value set in this message should match the FailureReason. # Output only. If this sequence has `failure_reason` set, this may contain additional details about the failure.
&quot;gpsDataGapDetails&quot;: { # Details related to ProcessingFailureReason#GPS_DATA_GAP. # See GpsDataGapFailureDetails.
&quot;gpsDataGapDetails&quot;: { # Details related to ProcessingFailureReason#GPS_DATA_GAP. If there are multiple GPS data gaps, only the one with the largest duration is reported here. # See GpsDataGapFailureDetails.
&quot;gapDuration&quot;: &quot;A String&quot;, # The duration of the gap in GPS data that was found.
&quot;gapTime&quot;: &quot;A String&quot;, # Relative time (from the start of the video stream) when the gap started.
&quot;gapStartTime&quot;: &quot;A String&quot;, # Relative time (from the start of the video stream) when the gap started.
},
&quot;imuDataGapDetails&quot;: { # Details related to ProcessingFailureReason#IMU_DATA_GAP. # See ImuDataGapFailureDetails.
&quot;imuDataGapDetails&quot;: { # Details related to ProcessingFailureReason#IMU_DATA_GAP. If there are multiple IMU data gaps, only the one with the largest duration is reported here. # See ImuDataGapFailureDetails.
&quot;gapDuration&quot;: &quot;A String&quot;, # The duration of the gap in IMU data that was found.
&quot;gapTime&quot;: &quot;A String&quot;, # Relative time (from the start of the video stream) when the gap started.
&quot;gapStartTime&quot;: &quot;A String&quot;, # Relative time (from the start of the video stream) when the gap started.
},
&quot;insufficientGpsDetails&quot;: { # Details related to ProcessingFailureReason#INSUFFICIENT_GPS. # See InsufficientGpsFailureDetails.
&quot;gpsPointsFound&quot;: 42, # The number of GPS points that were found in the video.
},
&quot;notOutdoorsDetails&quot;: { # Details related to ProcessingFailureReason#NOT_OUTDOORS. # See NotOutdoorsFailureDetails.
&quot;time&quot;: &quot;A String&quot;, # Relative time (from the start of the video stream) when an indoor frame was found.
&quot;notOutdoorsDetails&quot;: { # Details related to ProcessingFailureReason#NOT_OUTDOORS. If there are multiple indoor frames found, the first frame is recorded here. # See NotOutdoorsFailureDetails.
&quot;startTime&quot;: &quot;A String&quot;, # Relative time (from the start of the video stream) when an indoor frame was found.
},
},
&quot;failureReason&quot;: &quot;A String&quot;, # Output only. If this sequence has processing_state = FAILED, this will contain the reason why it failed. If the processing_state is any other value, this field will be unset.
Expand Down
26 changes: 16 additions & 10 deletions googleapiclient/discovery_cache/documents/streetviewpublish.v1.json
Expand Up @@ -533,7 +533,7 @@
}
}
},
"revision": "20220716",
"revision": "20220722",
"rootUrl": "https://streetviewpublish.googleapis.com/",
"schemas": {
"BatchDeletePhotosRequest": {
Expand Down Expand Up @@ -624,15 +624,15 @@
"type": "object"
},
"GpsDataGapFailureDetails": {
"description": "Details related to ProcessingFailureReason#GPS_DATA_GAP.",
"description": "Details related to ProcessingFailureReason#GPS_DATA_GAP. If there are multiple GPS data gaps, only the one with the largest duration is reported here.",
"id": "GpsDataGapFailureDetails",
"properties": {
"gapDuration": {
"description": "The duration of the gap in GPS data that was found.",
"format": "google-duration",
"type": "string"
},
"gapTime": {
"gapStartTime": {
"description": "Relative time (from the start of the video stream) when the gap started.",
"format": "google-duration",
"type": "string"
Expand Down Expand Up @@ -669,15 +669,15 @@
"type": "object"
},
"ImuDataGapFailureDetails": {
"description": "Details related to ProcessingFailureReason#IMU_DATA_GAP.",
"description": "Details related to ProcessingFailureReason#IMU_DATA_GAP. If there are multiple IMU data gaps, only the one with the largest duration is reported here.",
"id": "ImuDataGapFailureDetails",
"properties": {
"gapDuration": {
"description": "The duration of the gap in IMU data that was found.",
"format": "google-duration",
"type": "string"
},
"gapTime": {
"gapStartTime": {
"description": "Relative time (from the start of the video stream) when the gap started.",
"format": "google-duration",
"type": "string"
Expand Down Expand Up @@ -809,10 +809,10 @@
"type": "object"
},
"NotOutdoorsFailureDetails": {
"description": "Details related to ProcessingFailureReason#NOT_OUTDOORS.",
"description": "Details related to ProcessingFailureReason#NOT_OUTDOORS. If there are multiple indoor frames found, the first frame is recorded here.",
"id": "NotOutdoorsFailureDetails",
"properties": {
"time": {
"startTime": {
"description": "Relative time (from the start of the video stream) when an indoor frame was found.",
"format": "google-duration",
"type": "string"
Expand Down Expand Up @@ -1026,9 +1026,12 @@
"GPS_DATA_GAP",
"JUMPY_GPS",
"INVALID_IMU",
"INSUFFICIENT_IMU",
"INSUFFICIENT_OVERLAP_TIME_SERIES",
"IMU_DATA_GAP",
"UNSUPPORTED_CAMERA",
"NOT_OUTDOORS"
"NOT_OUTDOORS",
"INSUFFICIENT_VIDEO_FRAMES"
],
"enumDescriptions": [
"The failure reason is unspecified, this is the default value.",
Expand All @@ -1039,17 +1042,20 @@
"GPS is invalid (e.x. all GPS points are at (0,0))",
"The sequence of photos could not be accurately located in the world.",
"The sequence was taken down for policy reasons.",
"The video file was corrupt.",
"The video file was corrupt or could not be decoded.",
"A permanent failure in the underlying system occurred.",
"The video format is invalid or unsupported.",
"Invalid image aspect ratio found.",
"Invalid capture time. Timestamps were from the future.",
"GPS data contains a gap greater than 5 seconds in duration.",
"GPS data is too erratic to be processed.",
"IMU (Accelerometer, Gyroscope, etc.) data are not valid. They may be missing required fields (x, y, z or time), may not be formatted correctly, or any other issue that prevents our systems from parsing it.",
"Too few IMU points.",
"Insufficient overlap in the time frame between GPS, IMU, and other time series data.",
"IMU (Accelerometer, Gyroscope, etc.) data contain gaps greater than 0.1 seconds in duration.",
"The camera is not supported.",
"Some frames were indoors, which is unsupported."
"Some frames were indoors, which is unsupported.",
"Not enough video frames."
],
"readOnly": true,
"type": "string"
Expand Down

0 comments on commit af184b8

Please sign in to comment.