google-apis-vectortile_v1 0.3.0 → 0.7.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b60c38b6fb8c04018d838c5d0e5dc2e75820158772b4d5ff0945645064321bd6
|
4
|
+
data.tar.gz: f53dab194e1e47febe0c8ac56ccbe203b05b8e985728d4242a2f417be7b3dc2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95aafc5ab79a12912a86052edda2487963e381682c592ac9853fb20c1dd63c6538dc236d389c7c12d5c5f514b15dc5333a9df13ad2b81addb9ae25dac734a40a
|
7
|
+
data.tar.gz: c48b8936d128dcb8d693dff2efd639df29bb8746f0740d20594140e5a29b7e056054a76fd00bd1e68c054122919ebe2bd73ed20bc3b7e026a34367dacd4fa505
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-vectortile_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2021-08-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210817
|
6
|
+
|
7
|
+
### v0.6.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.5.0 (2021-06-24)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.3.0
|
14
|
+
|
15
|
+
### v0.4.0 (2021-05-20)
|
16
|
+
|
17
|
+
* Regenerated using generator version 0.2.0
|
18
|
+
|
3
19
|
### v0.3.0 (2021-03-04)
|
4
20
|
|
5
21
|
* Unspecified changes
|
@@ -325,7 +325,8 @@ module Google
|
|
325
325
|
# altitudes directly, we store the diffs between them as integers at some
|
326
326
|
# requested level of precision to take advantage of integer packing. The actual
|
327
327
|
# altitude values a[] can be reconstructed using the scale and each row's
|
328
|
-
# first_altitude and altitude_diff fields.
|
328
|
+
# first_altitude and altitude_diff fields. More details in go/elevation-encoding-
|
329
|
+
# options-for-enduro under "Recommended implementation".
|
329
330
|
class FirstDerivativeElevationGrid
|
330
331
|
include Google::Apis::Core::Hashable
|
331
332
|
|
@@ -685,7 +686,8 @@ module Google
|
|
685
686
|
# altitudes directly, we store the diffs between them as integers at some
|
686
687
|
# requested level of precision to take advantage of integer packing. The actual
|
687
688
|
# altitude values a[] can be reconstructed using the scale and each row's
|
688
|
-
# first_altitude and altitude_diff fields.
|
689
|
+
# first_altitude and altitude_diff fields. More details in go/elevation-encoding-
|
690
|
+
# options-for-enduro under "Recommended implementation".
|
689
691
|
# Corresponds to the JSON property `firstDerivative`
|
690
692
|
# @return [Google::Apis::VectortileV1::FirstDerivativeElevationGrid]
|
691
693
|
attr_accessor :first_derivative
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VectortileV1
|
18
18
|
# Version of the google-apis-vectortile_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210817"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -203,13 +203,15 @@ module Google
|
|
203
203
|
# height) max_elevation_resolution: 30 New resolution: 30px (width) * 30px (
|
204
204
|
# height)
|
205
205
|
# @param [Fixnum] min_elevation_resolution_cells
|
206
|
-
#
|
207
|
-
#
|
208
|
-
#
|
209
|
-
#
|
210
|
-
#
|
211
|
-
#
|
212
|
-
#
|
206
|
+
# api-linter: core::0131::request-unknown-fields=disabled aip.dev/not-precedent:
|
207
|
+
# Maintaining existing request parameter pattern. The minimum allowed
|
208
|
+
# resolution for the returned elevation heightmap. Possible values: between 0
|
209
|
+
# and 1024 (and not more than max_elevation_resolution_cells). Zero is supported
|
210
|
+
# for backward compatibility. Under-sized heightmaps will be non-uniformly up-
|
211
|
+
# sampled such that each edge is no shorter than this value. Non-uniformity is
|
212
|
+
# chosen to maximise the amount of preserved data. For example: Original
|
213
|
+
# resolution: 30px (width) * 10px (height) min_elevation_resolution: 30 New
|
214
|
+
# resolution: 30px (width) * 30px (height)
|
213
215
|
# @param [Array<String>, String] terrain_formats
|
214
216
|
# Terrain formats that the client understands.
|
215
217
|
# @param [String] fields
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vectortile_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Semantic Tile API V1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-vectortile_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vectortile_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vectortile_v1/v0.7.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-vectortile_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Semantic Tile API V1
|