orchid-python-api 5.25.2__py3-none-any.whl → 5.25.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. orchid_python_api/examples/search_data_frames.py +1 -1
  2. {orchid_python_api-5.25.2.dist-info → orchid_python_api-5.25.4.dist-info}/METADATA +4 -3
  3. orchid_python_api-5.25.4.dist-info/RECORD +38 -0
  4. {orchid_python_api-5.25.2.dist-info → orchid_python_api-5.25.4.dist-info}/WHEEL +1 -1
  5. ReleaseNotes.md +0 -708
  6. copy_orchid_examples.py +0 -88
  7. copy_orchid_low_level_examples.py +0 -93
  8. copy_orchid_manual_examples.py +0 -93
  9. copy_orchid_tutorials.py +0 -88
  10. orchid/VERSION +0 -1
  11. orchid/__init__.py +0 -42
  12. orchid/__version__.py +0 -18
  13. orchid/base.py +0 -31
  14. orchid/base_time_series_adapter.py +0 -91
  15. orchid/configuration.py +0 -162
  16. orchid/convert.py +0 -44
  17. orchid/core.py +0 -149
  18. orchid/dom_project_object.py +0 -28
  19. orchid/dot_net.py +0 -68
  20. orchid/dot_net_disposable.py +0 -64
  21. orchid/dot_net_dom_access.py +0 -241
  22. orchid/measurement.py +0 -35
  23. orchid/native_data_frame_adapter.py +0 -247
  24. orchid/native_fiber_data.py +0 -73
  25. orchid/native_fiber_data_set_info.py +0 -28
  26. orchid/native_monitor_adapter.py +0 -67
  27. orchid/native_project_user_data_adapter.py +0 -137
  28. orchid/native_stage_adapter.py +0 -631
  29. orchid/native_stage_part_adapter.py +0 -50
  30. orchid/native_subsurface_point.py +0 -70
  31. orchid/native_time_series_adapter.py +0 -54
  32. orchid/native_trajectory_adapter.py +0 -246
  33. orchid/native_treatment_calculations.py +0 -158
  34. orchid/native_treatment_curve_adapter.py +0 -60
  35. orchid/native_well_adapter.py +0 -134
  36. orchid/net_date_time.py +0 -328
  37. orchid/net_enumerable.py +0 -72
  38. orchid/net_fracture_diagnostics_factory.py +0 -55
  39. orchid/net_quantity.py +0 -620
  40. orchid/net_stage_qc.py +0 -62
  41. orchid/physical_quantity.py +0 -37
  42. orchid/project.py +0 -182
  43. orchid/project_store.py +0 -269
  44. orchid/reference_origins.py +0 -34
  45. orchid/script_adapter_context.py +0 -81
  46. orchid/searchable_data_frames.py +0 -44
  47. orchid/searchable_project_objects.py +0 -190
  48. orchid/searchable_stage_parts.py +0 -73
  49. orchid/searchable_stages.py +0 -29
  50. orchid/unit_system.py +0 -173
  51. orchid/utils.py +0 -14
  52. orchid/validation.py +0 -52
  53. orchid/version.py +0 -37
  54. orchid_python_api-5.25.2.dist-info/LICENSE +0 -176
  55. orchid_python_api-5.25.2.dist-info/RECORD +0 -88
  56. {orchid_python_api-5.25.2.dist-info → orchid_python_api-5.25.4.dist-info}/entry_points.txt +0 -0
  57. /LICENSE → /orchid_python_api-5.25.4.dist-info/licenses/LICENSE +0 -0
ReleaseNotes.md DELETED
@@ -1,708 +0,0 @@
1
- ## Orchid Python API Release Notes
2
-
3
- ### A Reading Suggestion
4
-
5
- This document is one of several documents you may want to read:
6
-
7
- - [README](./README.md) - The project README file.
8
- - [README-dev.md](./README-dev.md) - A similar file targeting for package developers.
9
- - [ReleaseNotes.md](./ReleaseNotes.md) - The release notes for this project.
10
-
11
- Although one can read this document in any text editor since it is simply a text file, consider installing
12
- the [Python grip utility](https://pypi.org/project/grip/). This application allows one to "render local readme
13
- files before sending off to GitHub". Although you need not send any of these file to `GitHub`, by using `grip`
14
- to render the file, you can much more easily navigate the document links.
15
-
16
- ### Release notes for 5.25.2
17
-
18
- This release is the production release of the Orchid Python API corresponding to Orchid 5.25.2. We have made the necessary
19
- updates to the Python API to remain compatible with the .NET API.
20
-
21
- A minor change has been made where we've split the dependencies between the example files and the sdk dependencies for a smaller footprint when installing the API. There are probably
22
- many ways to do this, but when installing the new package, if you want to install the example dependencies you can run `pip install .[examples]` or if using poetry `poetry install -E examples`
23
-
24
- #### Possible breaking .NET API changes
25
-
26
- - None
27
-
28
- #### Resolved Issues
29
-
30
- - None
31
-
32
- #### Features
33
-
34
- - None
35
-
36
- #### Known Issues
37
-
38
- - None
39
-
40
- ### Release notes for 5.25.1
41
-
42
- This release is the production release of the Orchid Python API corresponding to Orchid 5.25.1. We have made the necessary
43
- updates to the Python API to remain compatible with the .NET API.
44
-
45
- Additionally, we have added a simple high level API to access fiber data. See `fiber_data_example.py` in the `examples\` folder.
46
- Note that even with a small fiber data set, converting the fiber data into a `pandas` data frame takes quite
47
- a while. Getting the data in .NET objects is fairly quick, so there may be room for other ideas there.
48
-
49
- #### Possible breaking .NET API changes
50
-
51
- - None
52
-
53
- #### Resolved Issues
54
-
55
- - None
56
-
57
- #### Features
58
-
59
- - None
60
-
61
- #### Known Issues
62
-
63
- - None
64
-
65
- ### Release notes for 5.24.4
66
-
67
- This release is the production release of the Orchid Python API corresponding to Orchid 5.24.3. We have made the necessary
68
- updates to the Python API to remain compatible with the .NET API.
69
-
70
- We have also updated dependencies on the Python side. Note that we skipped the 5.24.2 release as it was a smaller, quicker release.
71
-
72
- #### Possible breaking .NET API changes
73
-
74
- - None
75
-
76
- #### Resolved Issues
77
-
78
- - None
79
-
80
- #### Features
81
-
82
- - None
83
-
84
- #### Known Issues
85
-
86
- - None
87
-
88
- ### Release notes for 5.24.3
89
-
90
- This release is the production release of the Orchid Python API corresponding to Orchid 5.24.3. We have made the necessary
91
- updates to the Python API to remain compatible with the .NET API.
92
-
93
- We have also updated dependencies on the Python side. Note that we skipped the 5.24.2 release as it was a smaller, quicker release.
94
-
95
- #### Possible breaking .NET API changes
96
-
97
- - None
98
-
99
- #### Resolved Issues
100
-
101
- - None
102
-
103
- #### Features
104
-
105
- - None
106
-
107
- #### Known Issues
108
-
109
- - None
110
-
111
- ### Release notes for 5.24.1
112
-
113
- This release is the production release of the Orchid Python API corresponding to Orchid 5.24.1. We have made the necessary
114
- updates to the Python API to remain compatible with the .NET API.
115
-
116
- On the .NET side, we renamed IMonitor to ITimeSeriesMonitor. The necessary updates have been made on the Python API side.
117
- Additionally, the Shmin property was moved from IWell to IStage. As such, some tests have been updated to accommodate that change.
118
-
119
- #### Possible breaking .NET API changes
120
-
121
- - None
122
-
123
- #### Resolved Issues
124
-
125
- - None
126
-
127
- #### Features
128
-
129
- - None
130
-
131
- #### Known Issues
132
-
133
- - None
134
-
135
- ### Release notes for 5.24.0
136
-
137
- This release is the production release of the Orchid Python API corresponding to Orchid 5.24.0. We have made the necessary
138
- updates to the Python API to remain compatible with the .NET API.
139
-
140
- In addition, we have updated the project to be netcore (semantically, in practice it is just called .NET) compatible. .NET Core is Microsoft's cross platform library. Everything should behave
141
- the same way as before, as pythonnet fully supports netcore (albeit with a few workarounds which have been implemented in this release),
142
- but you may need to install .NET if it's not done already. As a user of Orchid, you should have these libraries pre-installed, but,
143
- if not, you can find .NET 8 here (https://dotnet.microsoft.com/en-us/download). The latest version of .NET 6 (6.0.26) should be
144
- fine, but we recommend moving to .NET 8 if possible.
145
-
146
- #### Possible breaking .NET API changes
147
-
148
- - None
149
-
150
- #### Resolved Issues
151
-
152
- - None
153
-
154
- #### Features
155
-
156
- - None
157
-
158
- #### Known Issues
159
-
160
- - None
161
-
162
- ### Release notes for 5.23.322
163
-
164
- This release is the production release of the Orchid Python API corresponding to Orchid 5.23.322. We have made the necessary
165
- updates to the Python API to remain compatible with the .NET API.
166
-
167
- #### Possible breaking .NET API changes
168
-
169
- - None
170
-
171
- #### Resolved Issues
172
-
173
- - None
174
-
175
- #### Features
176
-
177
- - None
178
-
179
- #### Known Issues
180
-
181
- - None
182
-
183
-
184
-
185
- ### Release notes for 5.22.299
186
-
187
- This release is the production release of the Orchid Python API corresponding to Orchid 5.22.299.
188
-
189
- #### Possible breaking .NET API changes
190
-
191
- - None
192
-
193
- #### Resolved Issues
194
-
195
- - None
196
-
197
- #### Features
198
-
199
- - None
200
-
201
- #### Known Issues
202
-
203
- - None
204
-
205
-
206
- ### Release notes for 2023.1.220
207
-
208
- This release is the production release of the Orchid Python API corresponding to Orchid 2023.1.220. A very basic example of how
209
- to get to a project's well horizon markers was added. Additionally, a fix to an integration test is included.
210
-
211
- #### Possible breaking .NET API changes
212
-
213
- - None
214
-
215
- #### Resolved Issues
216
-
217
- - None
218
-
219
- #### Features
220
-
221
- - None
222
-
223
- #### Known Issues
224
-
225
- - None
226
-
227
- ### Release notes for 2022.4.252
228
-
229
- This release is the production release of the Orchid Python API corresponding to Orchid 2022.4.252. The main
230
- features in this release are the upgrade of the internal package, `pythonnet`, to version `3.x`, and the change
231
- requiring Python 3.10 for the runtime environment.
232
-
233
- #### Possible breaking .NET API changes
234
-
235
- - The Orchid Python API no longer uses `pythonnet-2.x`; instead, it requires at least `pythonnet-3.0.0.post1`.
236
- - The Orchid Python API no longer supports Python 3.8; instead it requires at least Python 3.10.
237
- - Orchid now requires specifying a time zone when reading a project from disk. A typical default value for this argument
238
- is `System.TimeZoneInfo.Utc` but this value should specify the time actual time zone of the project itself.
239
-
240
- #### Resolved Issues
241
-
242
- - None
243
-
244
- #### Features
245
-
246
- - Upgrade dependencies of the Orchid Python API to `pythonnet-3.x`. This upgrade causes some examples to break. See the
247
- two files below for examples of breakages discovered by the development team.
248
- - [Breakages because of Python.NET 3](./README-pythonnet3.md)
249
- - [Breakages in low-level code because of Python.NET 3](./README-pythonnet3-low.md)
250
- - Upgrade the minimum Python version from 3.8 to 3.10. This upgrade is needed to support the upgrade to `pythonnet-3.x`.
251
-
252
- #### Known Issues
253
-
254
- - The upgrade to `pythonnet-3.x` causes some code and examples to break. See the two files below for examples of
255
- breakages discovered by the development team.
256
- - [Breakages because of Python.NET 3](./README-pythonnet3.md)
257
- - [Breakages in low-level code because of Python.NET 3](./README-pythonnet3-low.md)
258
- - One must change the minimum Python version from 3.8 to 3.10 (required by `pythonnet-3.x`).
259
-
260
- ### Release notes for 2022.3.273
261
-
262
- This release is the production release of the Orchid Python API corresponding to Orchid 2022.3.273. The main
263
- feature in this release is support for data frames with columns containing the .NET type `System.Guid`. (A "GUID" is a
264
- globally unique identifier. Orchid uses GUIDs internally to identify domain objects such as wells, stages, and data
265
- frames.) Additionally, this release contains a small number of minor changes to keep the API, its examples, and
266
- its documentation consistent with Orchid.
267
-
268
- #### Possible breaking .NET API changes
269
-
270
- - None
271
-
272
- #### Resolved Issues
273
-
274
- - [GitHub issue 38](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/38)
275
-
276
- #### Features
277
-
278
- - Data frames
279
- - Implements support for reading data frames with columns of the .NET type, `System.Guid`
280
- - Provides a warning if the Orchid Python API detects data frames with **duplicated** object IDs. This issue
281
- is a known issue with Orchid releases at or below 2022.3. In addition to calling attention to the issue, the
282
- Python warning documents workarounds for this issue.
283
-
284
- #### Known Issues
285
-
286
- - None
287
-
288
- ### Release notes for 2022.2.338
289
-
290
- This release is the production release of the Orchid Python API corresponding to Orchid 2022.2.338. This release has
291
- neither additional features nor bug fixes but uses a default installation of Orchid 2022.2.338 with no
292
- additional configuration.
293
-
294
- #### Possible breaking .NET API changes
295
-
296
- - None
297
-
298
- #### Resolved Issues
299
-
300
- - None
301
-
302
- #### Features
303
-
304
- - None
305
-
306
- #### Known Issues
307
-
308
- - None
309
-
310
- ### Release notes for 2022.2.324
311
-
312
- This release is the production release of the Orchid Python API corresponding to Orchid 2022.2. This release:
313
-
314
- - Implements a high-level (Pythonic) API to create stages and add them to a well
315
- - Improves performance when loading an Orchid project by using a new .NET feature to load projects in parallel
316
- - Implements a high-level "fast save" API. This API provides an optimized way of saving Orchid projects when
317
- certain conditions are met.
318
- - Restore minimum Python version to 3.8.3
319
- - Repaired `pandas.DataFrame.append` "Future Warning" in examples
320
- - Add low-level example demonstrating creating and adding multi-picking observations to an observation set
321
-
322
- #### Possible breaking .NET API changes
323
-
324
- - .NET API renames `StageCorrectionStatus` to `CorrectionStatus`
325
- - Added comments describing a work-around for the integer-valued stage attribute limitation
326
- - Change the implementation of the Python API for stages to handle optional .NET values for the stage properties,
327
- `Isip`, `PNet` and `Shmin`
328
- - When installing 2022.2.324 in an orchid environment using Python 3.8.3 that has spyder installed using `conda`,
329
- `conda` reports the following error:
330
-
331
- >>> ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
332
- >>> spyder-kernels 2.1.3 requires jupyter-client<7,>=5.3.4, but you have jupyter-client 7.3.4 which is incompatible.
333
- >>> pylint 2.9.6 requires astroid<2.7,>=2.6.5, but you have astroid 2.12.2 which is incompatible.
334
-
335
- #### Resolved Issues
336
-
337
- - [GitHub issue 35](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/35)
338
- - [GitHub issue 34](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/34)
339
- - [GitHub issue 33](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/33)
340
- - [GitHub issue 32](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/32)
341
-
342
- #### Features
343
-
344
- - Well and Stage
345
- - Implements a high-level (Pythonic) API to create stages and add them to a well
346
- - Adds an example illustrating use of this API
347
- - Renames the original low-level example to `add_stages_low.py` to better communicate intent
348
-
349
- - Saving projects
350
- - Implements an optimized but possibly unsafe function to save Orchid projects. If certain conditions are met
351
- (described in the docstring for `orchid.core.optimized_but_possibly_unsafe_save()`), one can use this function to
352
- save Orchid projects. The developer must determine if the particular use case meets the conditions to safely save
353
- the project using the optimized but possibly unsafe function.
354
-
355
- If the use case does not meet the conditions, the function, `orchid.core.save_project()`, safely saves the
356
- complete project, but, most likely, takes additional time over the optimized but possibly unsafe save function.
357
-
358
- - Examples (high-level)
359
- - Add tutorial script to create stages and add them to a well
360
-
361
- - Examples (low-level)
362
- - Repaired low-level (Python.NET) script to create stages and add them to a well
363
- - Add a low-level script demonstrating adding multi-picking observations to an observation set.
364
-
365
- - Distribution
366
- - Reduce minimum required Python version to 3.8.3.
367
-
368
- #### Known Issues
369
-
370
- - [GitHub issue 36](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/36)
371
- - [GitHub issue 37](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/37)
372
-
373
- ### Release notes for 2022.1.360
374
-
375
- This release is the production release of the Orchid Python API corresponding to Orchid 2022.1. This release:
376
-
377
- - Provides high-level access to downhole proppant concentrations
378
- - Adds a high-level API property to change the stage time range
379
- - Add a high-level example script to illustrate using the high-level API to change the stage time range
380
- - Expose stage QC results via the high-level API
381
- - Replace low-level script to read and write stage QC results with script invoking the high-level API
382
- (`stage_qc_results.py`)
383
- - Repaired the low-level example script to create stage attributes to reflect changes to the .NET API
384
- (`auto_pick_and_create_stage_attribute.py`)
385
- - Clarify documentation of the `PythonApiLibs` directory in configuration documentation
386
-
387
- #### Resolved Issues
388
-
389
- - [GitHub issue 25](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/25)
390
- - [GitHub issue 26](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/26)
391
- - [GitHub issue 28](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/28)
392
- - [GitHub issue 30](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/30)
393
- - [GitHub issue 31](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/31)
394
-
395
- #### Features
396
-
397
- - Project
398
- - Expose `user_data` property containing stage QC results
399
-
400
- - Stage
401
- - Change the stage start and stop times (time range)
402
-
403
- - Treatment curves
404
- - Add enumeration `DOWNHOLE_PROPPANT_CONCENTRATION` to access this data from the API
405
-
406
- - Project user data
407
- - Create class `NativeUserDataAdapter` to provide read and write access to this information
408
-
409
- - Examples (high-level)
410
- - Add script to read and write stage QC results
411
- - Add script to change the stage start and stop times
412
- -
413
- - Examples (low-level)
414
- - Repaired script to create stage attributes
415
- - Removed script to query the stage QC results using the low-level API
416
-
417
- - Distribution
418
- - None
419
-
420
- #### Known Issues
421
-
422
- - [GitHub issue 27](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/27)
423
- - [GitHub issue 29](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/29)
424
-
425
- ### Release notes for 2021.4.283
426
-
427
- This release is the production release of the Orchid Python API corresponding to Orchid 2021.4. This release:
428
-
429
- - Adds several low-level examples
430
- - Repairs stage center MDKB calculation
431
- - Adds well trajectory methods
432
- - Clarifies installed package requirements
433
- - Work-around to clarify `PythonApiLibs` in configuration
434
-
435
- #### Resolved Issues
436
-
437
- - [GitHub issue 24](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/24)
438
-
439
- #### Features
440
-
441
- - Well trajectory
442
- - TVDSS
443
- - Inclination
444
- - Azimuth
445
- - MDKB
446
-
447
- - Project
448
- - Clarifies direction of project azimuth
449
-
450
- - Stage
451
- - Corrects stage center MDKB calculation
452
-
453
- - Examples (low-level)
454
- - Adding observations and saving changed projects
455
- - Matching low-level monitor time series and high-level project time series (A low-level workaround for
456
- [GitHub issue 17](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/17)
457
- - Creating stage attributes
458
-
459
- - Distribution
460
- - Adds generation of `requirements.txt` to release process
461
-
462
- #### Known Issues
463
-
464
- - [GitHub issue 25](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/25)
465
-
466
- ### Release notes for 2021.3.406
467
-
468
- This release is a hot fix release of the Orchid Python API corresponding to the hot fix for Orchid 2021.3.
469
- This release:
470
-
471
- - Improves the performance of the `plot_time_series` example
472
- - Improves the performance of the `volume_2_first_response` example
473
-
474
- #### Resolved Issues
475
-
476
- - [GitHub issue 23](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/23)
477
-
478
- #### Features
479
-
480
- No additional features as part of this release.
481
-
482
- #### Known Issues
483
-
484
- No additional know issues for this release.
485
-
486
- ### Release notes for 2021.3.381
487
-
488
- This release is the production release of the Orchid Python API corresponding to Orchid 2021.3. This release:
489
-
490
- - Adds an iterator over "searchable project objects"
491
- - Add a tutorial demonstrating how to navigate the project
492
- - Prototype developer scripts to generate documentation using Sphinx
493
-
494
- #### Resolved Issues
495
-
496
- - [GitHub issue 22](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/22)
497
-
498
- #### Features
499
-
500
- - SearchableProjectObjects
501
- - Make class an iterator
502
-
503
- - Tutorials
504
- - A notebook and script demonstrating project object navigation
505
-
506
- #### Known Issues
507
-
508
- No additional know issues for this release.
509
-
510
- ### Release notes for 2021.2.316
511
-
512
- This release is the production release of the Orchid Python API corresponding to Orchid 2021.2. This release:
513
-
514
- - Updates to the latest version of `numpy`
515
- - Exposes data frames via the API
516
- - Internally uses `pendulum` for improved handling of date times (both UTC and local times)
517
- - Provides a consistent interface for collections of DOM objects
518
-
519
- #### Resolved Issues
520
-
521
- - [GitHub issue 12](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/12)
522
- - [GitHub issue 16](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/16)
523
- - [GitHub issue 18](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/18)
524
- - [GitHub issue 21](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/21)
525
-
526
- #### Features
527
-
528
- - Project
529
- - Data frames
530
- - Stage
531
- - Find stages by:
532
- - Display stage number
533
- - Display name with well
534
-
535
- - Object collections
536
- - Find object(s) by
537
- - Display name
538
- - Name
539
- - Object ID
540
- - All objects satisfying a predicate (primarily a convenience for use cases where the condition of interest does
541
- not involve identifying information). Note that stages have some of these convenience methods already.
542
- - Query collection for
543
- - All display names
544
- - All names
545
- - All object IDs
546
- - All objects (primarily a convenience for use cases where one wants all objects in the collection independent
547
- of identifying information)
548
-
549
- - Examples
550
- - Scripts for each example notebook
551
- - A notebook and script demonstrating search and data frame access.
552
-
553
- #### Known Issues
554
-
555
- - [GitHub issue 19](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/19)
556
-
557
- ### Release notes for 2021.1.399
558
-
559
- This release is the second production release of the Orchid Python API. This release changes the
560
- implementation of measurements to use the [pint](https://pint.readthedocs.io/en/stable/) package and adds
561
- access to additional Orchid features.
562
-
563
- #### Resolved issues
564
-
565
- - [GitHub issue 6](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/6)
566
- - [GitHub issue 10](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/10)
567
- - [GitHub issue 13](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/13)
568
- - [GitHub issue 14](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/14)
569
- - [GitHub issue 15](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/15)
570
-
571
- #### Features
572
-
573
- - Project
574
- - Azimuth
575
- - Fluid density
576
- - Project bounds
577
- - Project center (and center location)
578
- - Monitors
579
- - Well
580
- - Formation
581
- - Wellhead location
582
- - Monitor
583
- - Name
584
- - Display name
585
- - Start time
586
- - Stop time
587
- - Time range (contains start and stop time)
588
- - Examples
589
- - Volume to first response
590
-
591
- Replace custom `Measurement` class with the features available in `pint`.
592
-
593
- #### Known issues
594
-
595
- - [GitHub issue 18](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/18)
596
-
597
- This issue is a deprecation warning from `matplotlib`. It began occurring after updating the package
598
- dependencies. We do not believe this error will affect customer code.
599
-
600
- - [GitHub issue 16](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/16)
601
-
602
- All monitor curves can be access indirectly via the `Project.monitor_curves()` method. The work-around for
603
- this issue is then to search for curves by with a matching name.
604
-
605
- - [GitHub issue 17](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/17)
606
-
607
- The work-around is to search the iterable returned by Project.monitor_curves for a curve with the name of
608
- the monitor of interest. Because of issue #16, beware that this work around may not return all monitors
609
- with the name of interest.
610
-
611
- ### Release notes for 2020.4.690
612
-
613
- This release is the first production release of the Orchid Python API. This release offers access to the
614
- following Orchid features.
615
-
616
- #### Features
617
-
618
- - General
619
- - Loading Orchid `.ifrac` files
620
- - Project
621
- - Name
622
- - Project units
623
- - Wells
624
- - Default well colors
625
- - Monitor curves
626
- - Searching for wells by name
627
- - Well
628
- - Name
629
- - Display name
630
- - Stages
631
- - Trajectory
632
- - UWI
633
- - Stage
634
- - Cluster count
635
- - Display name with well
636
- - Display name without well
637
- - Display stage number
638
- - Global stage sequence number
639
- - Order of completion on well
640
- - Stage (formation connection) type
641
- - Start time
642
- - Stop time
643
- - Bottom location
644
- - Center location
645
- - In addition, to the subsurface point
646
- - Easting
647
- - Northing
648
- - Measured depth (MD)
649
- - Total vertical depth (TVD) relative to
650
- - Ground level
651
- - Seal level
652
- - XY (both easting and northing)
653
- - Cluster location
654
- - Instantaneous shut in pressure (ISIP)
655
- - Measured depth of stage top
656
- - Measured depth of stage bottom
657
- - Net pressure (PNet)
658
- - Minimum shear (ShMin)
659
- - Stage length
660
- - Top location
661
- - Treatment curves
662
- - TimeSeries (monitor and treatment curves)
663
- - Name
664
- - Display name
665
- - Sampled quantity name
666
- - Sampled quantity unit
667
- - Time series
668
- - Calculations
669
- - For treatment
670
- - Median treating pressure
671
- - Pumped fluid volume
672
- - Total proppant mass
673
-
674
- #### Known issues
675
-
676
- - [GitHub issue 18](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/18)
677
-
678
- This issue is a deprecation warning from `matplotlib`. It began occurring after updating the package
679
- dependencies. We do not believe this error will affect customer code.
680
-
681
- - [GitHub issue 14](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/14)
682
-
683
- The work-around for this issue is to configure the locations of both Orchid training data and the Orchid
684
- binaries.
685
-
686
- - [GitHub issue 13](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/13)
687
-
688
- We believe that this warning is caused by the `pandas` package interacting with `numpy`, and plan to
689
- investigate this issue.
690
-
691
- - [GitHub issue 12](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/12)
692
-
693
- Some versions of `numpy` encounter an issue with the `fmod` function on Windows. The current work-around
694
- fixes the version of `numpy` at 1.19.3.
695
-
696
- - [GitHub issue 10](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/10)
697
-
698
- Although we have increased the scope of our internal testing to cover many more units of measure, we plan to
699
- implement the convenience function suggested by the author.
700
-
701
- - [GitHub issue 6](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/6)
702
-
703
- This issue is an internal issues and currently has no effect on installation or usage of the API.
704
-
705
- - [GitHub issue 3](https://github.com/Reveal-Energy-Services/orchid-python-api/issues/3)
706
-
707
- This issue may relate to `numpy` 1.19.1 (the version mentioned in the issue). We plan to retest against
708
- `numpy` 1.19.3. We have had no other reports of this issue.