blob: bdda0afbc497b30c5566de083fecac7ffe5a56e4 [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="mapsengine_v1.html">Google Maps Engine API</a> . <a href="mapsengine_v1.rasterCollections.html">rasterCollections</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="mapsengine_v1.rasterCollections.parents.html">parents()</a></code>
79</p>
80<p class="firstline">Returns the parents Resource.</p>
81
82<p class="toc_element">
Craig Citro0e5b9bf2014-10-15 10:26:14 -070083 <code><a href="mapsengine_v1.rasterCollections.permissions.html">permissions()</a></code>
84</p>
85<p class="firstline">Returns the permissions Resource.</p>
86
87<p class="toc_element">
John Asmuth614db982014-04-24 15:46:26 -040088 <code><a href="mapsengine_v1.rasterCollections.rasters.html">rasters()</a></code>
89</p>
90<p class="firstline">Returns the rasters Resource.</p>
91
92<p class="toc_element">
Craig Citro065b5302014-08-14 00:47:23 -070093 <code><a href="#cancelProcessing">cancelProcessing(id)</a></code></p>
94<p class="firstline">Cancel processing on a raster collection asset.</p>
95<p class="toc_element">
John Asmuth614db982014-04-24 15:46:26 -040096 <code><a href="#create">create(body)</a></code></p>
97<p class="firstline">Create a raster collection asset.</p>
98<p class="toc_element">
Craig Citro065b5302014-08-14 00:47:23 -070099 <code><a href="#delete">delete(id)</a></code></p>
100<p class="firstline">Delete a raster collection.</p>
101<p class="toc_element">
John Asmuth614db982014-04-24 15:46:26 -0400102 <code><a href="#get">get(id)</a></code></p>
103<p class="firstline">Return metadata for a particular raster collection.</p>
104<p class="toc_element">
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700105 <code><a href="#list">list(modifiedBefore=None, creatorEmail=None, processingStatus=None, projectId=None, pageToken=None, role=None, createdAfter=None, tags=None, maxResults=None, bbox=None, modifiedAfter=None, search=None, createdBefore=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -0400106<p class="firstline">Return all raster collections readable by the current user.</p>
107<p class="toc_element">
108 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
109<p class="firstline">Retrieves the next page of results.</p>
Craig Citro065b5302014-08-14 00:47:23 -0700110<p class="toc_element">
111 <code><a href="#patch">patch(id, body)</a></code></p>
112<p class="firstline">Mutate a raster collection asset.</p>
113<p class="toc_element">
114 <code><a href="#process">process(id)</a></code></p>
115<p class="firstline">Process a raster collection asset.</p>
John Asmuth614db982014-04-24 15:46:26 -0400116<h3>Method Details</h3>
117<div class="method">
Craig Citro065b5302014-08-14 00:47:23 -0700118 <code class="details" id="cancelProcessing">cancelProcessing(id)</code>
119 <pre>Cancel processing on a raster collection asset.
120
121Args:
122 id: string, The ID of the raster collection. (required)
123
124Returns:
125 An object of the form:
126
127 { # The response returned by a call to any asset's Process method.
128 }</pre>
129</div>
130
131<div class="method">
John Asmuth614db982014-04-24 15:46:26 -0400132 <code class="details" id="create">create(body)</code>
133 <pre>Create a raster collection asset.
134
135Args:
136 body: object, The request body. (required)
137 The object takes the form of:
138
139{ # A raster collection groups multiple Raster resources for inclusion in a Layer.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700140 "attribution": "A String", # The name of the attribution to be used for this RasterCollection. Note: Attribution is returned in response to a get request but not a list request. After requesting a list of raster collections, you'll need to send a get request to retrieve the attribution for each raster collection.
Craig Citro065b5302014-08-14 00:47:23 -0700141 "description": "A String", # The description of this RasterCollection, supplied by the author.
142 "processingStatus": "A String", # The processing status of this RasterCollection.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700143 "draftAccessList": "A String", # Deprecated: The name of an access list of the Map Editor type. The user on whose behalf the request is being sent must be an editor on that access list. Note: Google Maps Engine no longer uses access lists. Instead, each asset has its own list of permissions. For backward compatibility, the API still accepts access lists for projects that are already using access lists. If you created a GME account/project after July 14th, 2014, you will not be able to send API requests that include access lists. Note: This is an input field only. It is not returned in response to a list or get request.
Craig Citro065b5302014-08-14 00:47:23 -0700144 "projectId": "A String", # The ID of the project that this RasterCollection is in.
145 "tags": [ # Tags of this RasterCollection.
146 "A String",
147 ],
148 "creationTime": "A String", # The creation time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700149 "writersCanEditPermissions": True or False, # If true, WRITERs of the asset are able to edit the asset permissions.
Craig Citro065b5302014-08-14 00:47:23 -0700150 "rasterType": "A String", # The type of rasters contained within this RasterCollection.
151 "etag": "A String", # The ETag, used to refer to the current version of the asset.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700152 "creatorEmail": "A String", # The email address of the creator of this raster collection. This is only returned on GET requests and not LIST requests.
153 "bbox": [ # A rectangular bounding box which contains all of the data in this RasterCollection. The box is expressed as \"west, south, east, north\". The numbers represent latitude and longitude in decimal degrees.
Craig Citro065b5302014-08-14 00:47:23 -0700154 3.14,
155 ],
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700156 "lastModifierEmail": "A String", # The email address of the last modifier of this raster collection. This is only returned on GET requests and not LIST requests.
Craig Citro065b5302014-08-14 00:47:23 -0700157 "lastModifiedTime": "A String", # The last modified time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
158 "id": "A String", # A globally unique ID, used to refer to this RasterCollection.
159 "mosaic": True or False, # True if this RasterCollection is a mosaic.
160 "name": "A String", # The name of this RasterCollection, supplied by the author.
161}
John Asmuth614db982014-04-24 15:46:26 -0400162
163
164Returns:
165 An object of the form:
166
167 { # A raster collection groups multiple Raster resources for inclusion in a Layer.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700168 "attribution": "A String", # The name of the attribution to be used for this RasterCollection. Note: Attribution is returned in response to a get request but not a list request. After requesting a list of raster collections, you'll need to send a get request to retrieve the attribution for each raster collection.
Craig Citro065b5302014-08-14 00:47:23 -0700169 "description": "A String", # The description of this RasterCollection, supplied by the author.
170 "processingStatus": "A String", # The processing status of this RasterCollection.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700171 "draftAccessList": "A String", # Deprecated: The name of an access list of the Map Editor type. The user on whose behalf the request is being sent must be an editor on that access list. Note: Google Maps Engine no longer uses access lists. Instead, each asset has its own list of permissions. For backward compatibility, the API still accepts access lists for projects that are already using access lists. If you created a GME account/project after July 14th, 2014, you will not be able to send API requests that include access lists. Note: This is an input field only. It is not returned in response to a list or get request.
Craig Citro065b5302014-08-14 00:47:23 -0700172 "projectId": "A String", # The ID of the project that this RasterCollection is in.
173 "tags": [ # Tags of this RasterCollection.
174 "A String",
175 ],
176 "creationTime": "A String", # The creation time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700177 "writersCanEditPermissions": True or False, # If true, WRITERs of the asset are able to edit the asset permissions.
Craig Citro065b5302014-08-14 00:47:23 -0700178 "rasterType": "A String", # The type of rasters contained within this RasterCollection.
179 "etag": "A String", # The ETag, used to refer to the current version of the asset.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700180 "creatorEmail": "A String", # The email address of the creator of this raster collection. This is only returned on GET requests and not LIST requests.
181 "bbox": [ # A rectangular bounding box which contains all of the data in this RasterCollection. The box is expressed as \"west, south, east, north\". The numbers represent latitude and longitude in decimal degrees.
Craig Citro065b5302014-08-14 00:47:23 -0700182 3.14,
183 ],
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700184 "lastModifierEmail": "A String", # The email address of the last modifier of this raster collection. This is only returned on GET requests and not LIST requests.
Craig Citro065b5302014-08-14 00:47:23 -0700185 "lastModifiedTime": "A String", # The last modified time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
186 "id": "A String", # A globally unique ID, used to refer to this RasterCollection.
187 "mosaic": True or False, # True if this RasterCollection is a mosaic.
188 "name": "A String", # The name of this RasterCollection, supplied by the author.
189 }</pre>
190</div>
191
192<div class="method">
193 <code class="details" id="delete">delete(id)</code>
194 <pre>Delete a raster collection.
195
196Args:
197 id: string, The ID of the raster collection. Only the raster collection creator or project owner are permitted to delete. If the rastor collection is included in a layer, the request will fail. Remove the raster collection from all layers prior to deleting. (required)
198</pre>
John Asmuth614db982014-04-24 15:46:26 -0400199</div>
200
201<div class="method">
202 <code class="details" id="get">get(id)</code>
203 <pre>Return metadata for a particular raster collection.
204
205Args:
206 id: string, The ID of the raster collection. (required)
207
208Returns:
209 An object of the form:
210
211 { # A raster collection groups multiple Raster resources for inclusion in a Layer.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700212 "attribution": "A String", # The name of the attribution to be used for this RasterCollection. Note: Attribution is returned in response to a get request but not a list request. After requesting a list of raster collections, you'll need to send a get request to retrieve the attribution for each raster collection.
Craig Citro065b5302014-08-14 00:47:23 -0700213 "description": "A String", # The description of this RasterCollection, supplied by the author.
214 "processingStatus": "A String", # The processing status of this RasterCollection.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700215 "draftAccessList": "A String", # Deprecated: The name of an access list of the Map Editor type. The user on whose behalf the request is being sent must be an editor on that access list. Note: Google Maps Engine no longer uses access lists. Instead, each asset has its own list of permissions. For backward compatibility, the API still accepts access lists for projects that are already using access lists. If you created a GME account/project after July 14th, 2014, you will not be able to send API requests that include access lists. Note: This is an input field only. It is not returned in response to a list or get request.
Craig Citro065b5302014-08-14 00:47:23 -0700216 "projectId": "A String", # The ID of the project that this RasterCollection is in.
217 "tags": [ # Tags of this RasterCollection.
218 "A String",
219 ],
220 "creationTime": "A String", # The creation time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700221 "writersCanEditPermissions": True or False, # If true, WRITERs of the asset are able to edit the asset permissions.
Craig Citro065b5302014-08-14 00:47:23 -0700222 "rasterType": "A String", # The type of rasters contained within this RasterCollection.
223 "etag": "A String", # The ETag, used to refer to the current version of the asset.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700224 "creatorEmail": "A String", # The email address of the creator of this raster collection. This is only returned on GET requests and not LIST requests.
225 "bbox": [ # A rectangular bounding box which contains all of the data in this RasterCollection. The box is expressed as \"west, south, east, north\". The numbers represent latitude and longitude in decimal degrees.
Craig Citro065b5302014-08-14 00:47:23 -0700226 3.14,
227 ],
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700228 "lastModifierEmail": "A String", # The email address of the last modifier of this raster collection. This is only returned on GET requests and not LIST requests.
Craig Citro065b5302014-08-14 00:47:23 -0700229 "lastModifiedTime": "A String", # The last modified time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
230 "id": "A String", # A globally unique ID, used to refer to this RasterCollection.
231 "mosaic": True or False, # True if this RasterCollection is a mosaic.
232 "name": "A String", # The name of this RasterCollection, supplied by the author.
233 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400234</div>
235
236<div class="method">
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700237 <code class="details" id="list">list(modifiedBefore=None, creatorEmail=None, processingStatus=None, projectId=None, pageToken=None, role=None, createdAfter=None, tags=None, maxResults=None, bbox=None, modifiedAfter=None, search=None, createdBefore=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400238 <pre>Return all raster collections readable by the current user.
239
240Args:
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700241 modifiedBefore: string, An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been modified at or before this time.
242 creatorEmail: string, An email address representing a user. Returned assets that have been created by the user associated with the provided email address.
243 processingStatus: string, A parameter
244 Allowed values
245 complete - The raster collection has completed processing.
246 failed - The raster collection has failed processing.
247 notReady - The raster collection is not ready for processing.
248 processing - The raster collection is processing.
249 ready - The raster collection is ready for processing.
250 projectId: string, The ID of a Maps Engine project, used to filter the response. To list all available projects with their IDs, send a Projects: list request. You can also find your project ID as the value of the DashboardPlace:cid URL parameter when signed in to mapsengine.google.com.
251 pageToken: string, The continuation token, used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.
252 role: string, The role parameter indicates that the response should only contain assets where the current user has the specified level of access.
253 Allowed values
254 owner - The user can read, write and administer the asset.
255 reader - The user can read the asset.
256 writer - The user can read and write the asset.
John Asmuth614db982014-04-24 15:46:26 -0400257 createdAfter: string, An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been created at or after this time.
Craig Citro065b5302014-08-14 00:47:23 -0700258 tags: string, A comma separated list of tags. Returned assets will contain all the tags from the list.
John Asmuth614db982014-04-24 15:46:26 -0400259 maxResults: integer, The maximum number of items to include in a single response page. The maximum supported value is 100.
John Asmuth614db982014-04-24 15:46:26 -0400260 bbox: string, A bounding box, expressed as "west,south,east,north". If set, only assets which intersect this bounding box will be returned.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700261 modifiedAfter: string, An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been modified at or after this time.
262 search: string, An unstructured search string used to filter the set of results based on asset metadata.
263 createdBefore: string, An RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z). Returned assets will have been created at or before this time.
John Asmuth614db982014-04-24 15:46:26 -0400264
265Returns:
266 An object of the form:
267
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700268 { # The response returned by a call to raster_collections.List. Note: The list response does not include all the fields available in a raster collection. Refer to the RasterCollection resource description for details of the fields that are not included. You'll need to send a get request to retrieve the additional fields for each raster collection.
John Asmuth614db982014-04-24 15:46:26 -0400269 "nextPageToken": "A String", # Next page token.
270 "rasterCollections": [ # Resources returned.
271 { # A raster collection groups multiple Raster resources for inclusion in a Layer.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700272 "attribution": "A String", # The name of the attribution to be used for this RasterCollection. Note: Attribution is returned in response to a get request but not a list request. After requesting a list of raster collections, you'll need to send a get request to retrieve the attribution for each raster collection.
Craig Citro065b5302014-08-14 00:47:23 -0700273 "description": "A String", # The description of this RasterCollection, supplied by the author.
274 "processingStatus": "A String", # The processing status of this RasterCollection.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700275 "draftAccessList": "A String", # Deprecated: The name of an access list of the Map Editor type. The user on whose behalf the request is being sent must be an editor on that access list. Note: Google Maps Engine no longer uses access lists. Instead, each asset has its own list of permissions. For backward compatibility, the API still accepts access lists for projects that are already using access lists. If you created a GME account/project after July 14th, 2014, you will not be able to send API requests that include access lists. Note: This is an input field only. It is not returned in response to a list or get request.
Craig Citro065b5302014-08-14 00:47:23 -0700276 "projectId": "A String", # The ID of the project that this RasterCollection is in.
277 "tags": [ # Tags of this RasterCollection.
278 "A String",
279 ],
280 "creationTime": "A String", # The creation time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700281 "writersCanEditPermissions": True or False, # If true, WRITERs of the asset are able to edit the asset permissions.
Craig Citro065b5302014-08-14 00:47:23 -0700282 "rasterType": "A String", # The type of rasters contained within this RasterCollection.
283 "etag": "A String", # The ETag, used to refer to the current version of the asset.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700284 "creatorEmail": "A String", # The email address of the creator of this raster collection. This is only returned on GET requests and not LIST requests.
285 "bbox": [ # A rectangular bounding box which contains all of the data in this RasterCollection. The box is expressed as \"west, south, east, north\". The numbers represent latitude and longitude in decimal degrees.
Craig Citro065b5302014-08-14 00:47:23 -0700286 3.14,
287 ],
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700288 "lastModifierEmail": "A String", # The email address of the last modifier of this raster collection. This is only returned on GET requests and not LIST requests.
Craig Citro065b5302014-08-14 00:47:23 -0700289 "lastModifiedTime": "A String", # The last modified time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
290 "id": "A String", # A globally unique ID, used to refer to this RasterCollection.
291 "mosaic": True or False, # True if this RasterCollection is a mosaic.
292 "name": "A String", # The name of this RasterCollection, supplied by the author.
293 },
John Asmuth614db982014-04-24 15:46:26 -0400294 ],
295 }</pre>
296</div>
297
298<div class="method">
299 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
300 <pre>Retrieves the next page of results.
301
302Args:
303 previous_request: The request for the previous page. (required)
304 previous_response: The response from the request for the previous page. (required)
305
306Returns:
307 A request object that you can call 'execute()' on to request the next
308 page. Returns None if there are no more items in the collection.
309 </pre>
310</div>
311
Craig Citro065b5302014-08-14 00:47:23 -0700312<div class="method">
313 <code class="details" id="patch">patch(id, body)</code>
314 <pre>Mutate a raster collection asset.
315
316Args:
317 id: string, The ID of the raster collection. (required)
318 body: object, The request body. (required)
319 The object takes the form of:
320
321{ # A raster collection groups multiple Raster resources for inclusion in a Layer.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700322 "attribution": "A String", # The name of the attribution to be used for this RasterCollection. Note: Attribution is returned in response to a get request but not a list request. After requesting a list of raster collections, you'll need to send a get request to retrieve the attribution for each raster collection.
Craig Citro065b5302014-08-14 00:47:23 -0700323 "description": "A String", # The description of this RasterCollection, supplied by the author.
324 "processingStatus": "A String", # The processing status of this RasterCollection.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700325 "draftAccessList": "A String", # Deprecated: The name of an access list of the Map Editor type. The user on whose behalf the request is being sent must be an editor on that access list. Note: Google Maps Engine no longer uses access lists. Instead, each asset has its own list of permissions. For backward compatibility, the API still accepts access lists for projects that are already using access lists. If you created a GME account/project after July 14th, 2014, you will not be able to send API requests that include access lists. Note: This is an input field only. It is not returned in response to a list or get request.
Craig Citro065b5302014-08-14 00:47:23 -0700326 "projectId": "A String", # The ID of the project that this RasterCollection is in.
327 "tags": [ # Tags of this RasterCollection.
328 "A String",
329 ],
330 "creationTime": "A String", # The creation time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700331 "writersCanEditPermissions": True or False, # If true, WRITERs of the asset are able to edit the asset permissions.
Craig Citro065b5302014-08-14 00:47:23 -0700332 "rasterType": "A String", # The type of rasters contained within this RasterCollection.
333 "etag": "A String", # The ETag, used to refer to the current version of the asset.
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700334 "creatorEmail": "A String", # The email address of the creator of this raster collection. This is only returned on GET requests and not LIST requests.
335 "bbox": [ # A rectangular bounding box which contains all of the data in this RasterCollection. The box is expressed as \"west, south, east, north\". The numbers represent latitude and longitude in decimal degrees.
Craig Citro065b5302014-08-14 00:47:23 -0700336 3.14,
337 ],
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700338 "lastModifierEmail": "A String", # The email address of the last modifier of this raster collection. This is only returned on GET requests and not LIST requests.
Craig Citro065b5302014-08-14 00:47:23 -0700339 "lastModifiedTime": "A String", # The last modified time of this RasterCollection. The value is an RFC 3339 formatted date-time value (e.g. 1970-01-01T00:00:00Z).
340 "id": "A String", # A globally unique ID, used to refer to this RasterCollection.
341 "mosaic": True or False, # True if this RasterCollection is a mosaic.
342 "name": "A String", # The name of this RasterCollection, supplied by the author.
343}
344
345</pre>
346</div>
347
348<div class="method">
349 <code class="details" id="process">process(id)</code>
350 <pre>Process a raster collection asset.
351
352Args:
353 id: string, The ID of the raster collection. (required)
354
355Returns:
356 An object of the form:
357
358 { # The response returned by a call to any asset's Process method.
359 }</pre>
360</div>
361
John Asmuth614db982014-04-24 15:46:26 -0400362</body></html>