-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathxarray_integration.cc
More file actions
91 lines (69 loc) · 2.83 KB
/
Copy pathxarray_integration.cc
File metadata and controls
91 lines (69 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright 2024 TGS
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @file This is a part of an example where we round read/write with MDIO v1.0
* and Python's Xarray. Here we create a MDIO v1.0 dataset.
*/
#include "xarray_integration.h"
#include <mdio/mdio.h>
#include "absl/flags/flag.h"
#include "absl/flags/marshalling.h"
#include "absl/status/status.h"
using Index = mdio::Index;
absl::Status Run(std::string dataset_path) {
std::cout << dataset_path << std::endl;
if (dataset_path.empty()) {
std::filesystem::path temp_dir = std::filesystem::temp_directory_path();
dataset_path = temp_dir / "zarrs/seismic_3d/";
}
std::cout << dataset_path << std::endl;
auto json_spec = XarrayExample();
MDIO_ASSIGN_OR_RETURN(auto dataset,
mdio::Dataset::from_json(json_spec, dataset_path,
mdio::constants::kCreateClean)
.result());
auto populate_inline = [](SharedArray<uint32_t>& data) {
for (auto i = data.domain()[0].inclusive_min();
i < data.domain()[0].exclusive_max(); ++i) {
data(i) = i * 10 + 1000;
}
};
RETURN_IF_NOT_OK(
populate_and_write_variable<uint32_t>(dataset, "inline", populate_inline))
auto populate_crossline = [](SharedArray<uint32_t>& data) {
for (auto i = data.domain()[0].inclusive_min();
i < data.domain()[0].exclusive_max(); ++i) {
data(i) = (data.domain()[0].exclusive_max() + 100 - i) * 10;
}
};
RETURN_IF_NOT_OK(populate_and_write_variable<uint32_t>(dataset, "crossline",
populate_crossline))
auto populate_depth = [](SharedArray<uint32_t>& data) {
for (auto i = data.domain()[0].inclusive_min();
i < data.domain()[0].exclusive_max(); ++i) {
data(i) = i * 10;
}
};
RETURN_IF_NOT_OK(
populate_and_write_variable<uint32_t>(dataset, "depth", populate_depth))
return absl::OkStatus();
}
ABSL_FLAG(std::string, PATH, "", "Provide the output path for the dataset.");
int main(int argc, char** argv) {
absl::ParseCommandLine(argc, argv);
auto status = Run(absl::GetFlag(FLAGS_PATH));
if (!status.ok()) {
std::cout << "Task failed.\n" << status << std::endl;
} else {
std::cout << "MDIO to Xarray example complete.\n";
}
return status.ok() ? 0 : 1;
}