You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/energy-data-services/how-to-convert-segy-to-ovds.md
+49-49Lines changed: 49 additions & 49 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ In this article, you learn how to convert SEG-Y formatted data to the Open VDS (
31
31
| Parameter | Value to use | Example | Where to find this value |
32
32
|----|----|----|----|
33
33
|`DNS`| URI |`<instance>.energy.azure.com`| Find this value on the overview page of the Azure Data Manager for Energy instance. |
34
-
|`data-partition-id`| Data partitions|`<data-partition-id>`| Find this value on the Data Partitions section within the Azure Data Manager for Energy instance. |
34
+
|`data-partition-id`| Data partition|`<data-partition-id>`| Find this value on the Data Partition section within the Azure Data Manager for Energy instance. |
35
35
|`access_token`| access_token value |`0.ATcA01-XWHdJ0ES-qDevC6r...........`| Follow [How to generate auth token](how-to-generate-auth-token.md) to create an access_token and save it.|
36
36
37
37
Follow the [Manage users](how-to-manage-users.md) guide to add appropriate entitlements for the user who's running this tutorial.
@@ -44,7 +44,7 @@ Ensure you have `cURL` installed on your system. You use it to make API calls.
44
44
45
45
### Create a legal tag
46
46
47
-
Create a legal tag that is automatically added to the Seismic DDMS environment for data compliance.
47
+
Create a legal tag for data compliance.
48
48
49
49
API: **Setup** > **Create Legal Tag for SDMS**
50
50
@@ -149,14 +149,14 @@ If you didn't create entitlements groups, follow the directions as outlined in [
149
149
150
150
Follow this [tutorial](tutorial-seismic-ddms.md) to Prepare Subproject that involves following steps:
151
151
152
-
1. Register Data Partition to Seismic -Create a tenant
152
+
1. Register Data Partition to Seismic -Create a tenant
153
153
2. Create a Subproject
154
154
3. Register a Dataset
155
155
156
156
### Upload the File
157
157
158
158
There are two ways to upload a SEGY file. One option is to use the SASurl through cURL call. You need to set up cURL on your OS.
159
-
The second method is to use [SDUTIL](https://community.opengroup.org/osdu/platform/domain-data-mgmt-services/seismic/seismic-dms-suite/seismic-store-sdutil/-/tags/azure-stable). To log in to your instance for ADME via the tool, you need to generate a refresh token for the instance. See [How to generate auth token](how-to-generate-auth-token.md). Alternatively, you can modify the code of SDUTIL to use client credentials instead to log in. If you haven't already, you need to set up SDUTIL. Check this guide for setting up [SDUTIL](tutorial-seismic-ddms-sdutil.md) Download the codebase and edit the `config.yaml` at the root. Replace the contents of this config file with the following yaml.
159
+
The second method is to use [SDUTIL](https://community.opengroup.org/osdu/platform/domain-data-mgmt-services/seismic/seismic-dms-suite/seismic-store-sdutil/-/tags/azure-stable). To log in to your instance for ADME via the tool, you need to generate a refresh token for the instance. See [How to generate auth token](how-to-generate-auth-token.md). Alternatively, you can modify the code of SDUTIL to use client credentials instead to log in. If you haven't already, you need to set up SDUTIL. Check the [guide](tutorial-seismic-ddms-sdutil.md) for setting up SDUTIL Download the codebase and edit the `config.yaml` at the root. Replace the contents of this config file with the following yaml.
160
160
161
161
```yaml
162
162
seistore:
@@ -179,7 +179,7 @@ azure:
179
179
empty: none
180
180
```
181
181
182
-
#### Method 1: cURL
182
+
#### Method 1: Using cURL to upload file
183
183
184
184
##### Get gcs url:
185
185
@@ -376,58 +376,58 @@ cURL --request PUT \
376
376
377
377
Fetch the ID token from sdutil for the uploaded file or use an access/bearer token from cURL.
378
378
379
-
```markdown
380
-
python sdutil auth idtoken
381
-
```
379
+
```markdown
380
+
python sdutil auth idtoken
381
+
```
382
382
383
-
Use the following `cURL` command to trigger workflow:
383
+
Use the following `cURL` command to trigger workflow:
384
384
385
-
```bash
386
-
cURL -X POST "https://<DNS>/api/workflow/v1/workflow/segy-to-vds-conversion" \
2. Let the DAG run to the `succeeded` state. You can check the status using the workflow status call. The run ID is in the response of the previous step.
414
414
415
-
Use the following `cURL` command:
415
+
Use the following `cURL` command:
416
416
417
-
```bash
418
-
cURL -X GET "https://<DNS>/api/workflow/v1/workflow/segy-to-vds-conversion/<vds_run_id>" \
419
-
-H "Authorization: Bearer <access_token>" \
420
-
-H "Content-Type: application/json"
421
-
```
417
+
```bash
418
+
cURL -X GET "https://<DNS>/api/workflow/v1/workflow/segy-to-vds-conversion/<vds_run_id>" \
0 commit comments