- URL:
- https://<geoanalytics-url>/CopyToDataStore
- Methods:
GET
- Version Introduced:
- 10.5
Description
The Copy
operation takes an input layer and copies it to a data store. Data is copied to ArcGIS Data Store, configured as either a relational or spatiotemporal big data store.
For example, you could copy features that are stored in a big data file share to a relational data store, and specify that only features within the current map extent be copied. This would create a hosted feature service with only those features within the specified map extent.
Request parameters
Parameter | Details |
---|---|
| The table, point, line, or polygon features that will be copied. Syntax: As described in Feature input, this parameter can be one of the following:
REST examples
|
|
The task will create a feature service of the results. You define the name of the service. REST examples
|
|
The
Syntax:
|
|
The response format. The default response format is Values: |
Example usage
Below is a sample request URL for Copy
:
https://hostname.domain.com/webadaptor/rest/services/System/GeoAnalyticsTools/GPServer/CopyToDataStore/submitJob?inputLayer={"url":"https://hostname.domain.com/webadaptor/rest/services/Hurricane/hurricaneTrack/0"}&outputName=myOutput&context={"extent":{"xmin":-122.68,"ymin":45.53,"xmax":-122.45,"ymax":45.6,"spatialReference":{"wkid":4326}}}&f=json
Response
When you submit a request, the service assigns a unique job ID for the transaction.
Syntax:
{
"jobId": "<unique job identifier>",
"jobStatus": "<job status>"
}
After the initial request is submitted, you can use job
to periodically check the status of the job and messages as described in Check job status. Once the job has successfully completed, use job
to retrieve the results. To track the status, you can make a request of the following form:
https://<analysis url>/CopyToDataStore/jobs/<jobId>
Access results
When the status of the job request is esri
, you can access the results of the analysis by making a request of the following form:
https://<analysis-url>/CopyToDataStore/jobs/<jobId>/results/output?token=<your token>&f=json
Response | Description |
---|---|
| The
The result has properties for parameter name, data type, and value. The contents of
See Feature output for more information about how the result layer is accessed. |