Python API to extract JSON data from GVerse GeoGraphix projects
Project description
purr_geographix
Use purr_geographix to locate and query any GeoGraphix project* with minimal setup via a simple Python API. It's the missing middleware API for taming an unruly geoscience data environment.
-
Dynamic discovery and query of projects (even lost, unshared)
-
Simple Python API
-
No license checkouts
-
Well-centric exports to JSON:
- completion
- core
- dst
- formation
- ip
- perforation
- production
- raster_log
- survey
- vector_log
- well
- zone
- Each GeoGraphix "project" is a semi-structured collection of E&P assets that interoperate with its own SQLAnywhere database. From an IT perspective, GeoGraphix is a distributed collection of user-managed databases "on the network" containing millions of assets.
QUICKSTART
pip install purr_geographix
- launch console "as Administrator" and run
prep-purr-geographix
start-purr-geographix
- visit
http://localhost:8060/docs
for auto-generated docs
DETAILED INSTALL/CONFIG
PREREQUISITE: You'll need a SQLAnywhere database server instance. The best approach is to install purr_geographix on a PC that already has GeoGraphix. Technically, you could use the SQLAnywhere client from SAP, but you'll still need a valid database server someplace. Contact me if you need help.
install
Using Python >3.10... (and it should go without saying, this is a Windows-only package)
(optional) Define a virtual environment (venv), then:
pip install purr_geographix
or
poetry add purr_geographix
prepare
Repo metadata collection uses the DU Disk Usage utility for performance. The following script will register the DU utility and tacitly accept its terms of use.
Register the driver and du using these steps:
- launch an admin console (right-click Command Prompt | Run as administrator)
- cd to the install location, activate your virtual environment
prep-purr-geographix
- close the admin console
configure
You can optionally define environment variables to modify some API behaviors. If the PC isn't running other services you probably don't have to define/change any of these:
variable | default | description |
---|---|---|
PURR_GEOGRAPHIX_PORT | 8060 | TCP port number used by the API |
PURR_GEOGRAPHIX_HOST | 0.0.0.0 | the default "localhost" |
PURR_GEOGRAPHIX_WORKERS | 4 | can increase if CPU supports it |
PURR_LOG_LEVEL | INFO | options: CRITICAL, ERROR, WARNING, INFO, DEBUG |
Some other files get written to your install location:
- SQLite database:
purr_geographix.sqlite
- log file:
purr_geographix.log
launch
Launch the API via its preinstalled script
- cd to the install location (a non-admin console is fine)
start-purr-geographix
The first time you launch the API, Windows Firewall may whine about Python. Enable "Private networks" and Allow Access:
purr_geographix uses FastAPI. You can test-drive your local API at either:
http://localhost:8060/docs
or
http://localhost:8060/doc
USAGE
1. Do a POST /purr/ggx/repos/recon
with a network path and server hostname
The path can be a top-level container of GeoGraphix projects (i.e. a Project Home) or just a project itself. Include the server hostname NOTE: We use the term repo and project interchangeably
or
curl -X 'POST' \
'http://localhost:8000/purr/ggx/repos/recon?recon_root=%5C%5Cscarab%5Cggx_projects&ggx_host=scarab' \
-H 'accept: application/json' \
-d ''
(Replace single quotes with double-quote for Windows)
This might take a few minutes, so you get a 202 Reponse
containing a task id
and task_status:
{
"id": "d0ce171c-3f0f-4b37-953b-fe9df2f14bd1",
"recon_root": "\\\\scarab\\ggx_projects\\",
"ggx_host": "scarab",
"task_status": "pending"
}
Metadata for each repo is stored in a local (sqlite) database.
2. Use the task id to check status with a GET to /purr/ggx/repos/recon/{task_id}
{
"id": "d0ce171c-3f0f-4b37-953b-fe9df2f14bd1",
"recon_root": "\\\\scarab\\ggx_projects\\",
"ggx_host": "scarab",
"task_status": "completed"
}
Possible status values are: pending
, in_progress
, completed
, or failed
.
3. Use the repo_id
to query asset data in a repo. Add a UWI filter to search for specific well identifiers.
This can also be time-consuming, so it returns a 202 Response
with a task id and the
pending export file.
{
"id": "f1de6c36-5693-4cbb-a4a1-9327af501ca1",
"task_status": "pending",
"task_message": "export file (pending): col_7159c5_1721489912_completion.json"
}
4. Check asset export with a GET to /purr/ggx/asset/{repo_id}/{asset}
Like repo/recon
, this returns a tast_status and task_message containing exported file
info.
{
"id": "f1de6c36-5693-4cbb-a4a1-9327af501ca1",
"task_status": "completed",
"task_message": "Exported 72 docs to: C:\\temp\\col_7159c5_1721489912_completion.json"
}
All asset data is exported as a "flattened" JSON representation of the original relational model. Here's a survey example.
FUTURE
Let me know whatever you might want to see in a future release. Some ideas are:
- Better query logic: match terms with
AND
instead ofSIMILAR TO
(OR
) - Structured ASCII (Petra PPF or GeoGraphix ASCII3) exports instead of JSON
- Full Text Search
- Datum-shift and standardize on EPSG:4326 for polygon hull points
- Auto-sync with your PPDM or OSDU store?
- Standardize a multi-project interface with Spotfire
LICENSE
MIT License
Copyright (c) 2024 Bryan Hughes
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file purr_geographix-0.1.5.tar.gz
.
File metadata
- Download URL: purr_geographix-0.1.5.tar.gz
- Upload date:
- Size: 242.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.2 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 625a8275ab4408aeda6325cd3ef88e5b8265f317e13451c8c34a9ab6bc9610d2 |
|
MD5 | a64e36cf893556057c4e6733143a2e88 |
|
BLAKE2b-256 | 35a5068189a2043bd0ff6348e635f2144f5f1a6de7dcaa25d8421473c6b11dbb |
File details
Details for the file purr_geographix-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: purr_geographix-0.1.5-py3-none-any.whl
- Upload date:
- Size: 254.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.2 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4f08d0d8f2c484ace182743a13119acdc20c2a2c22a2594a0da953c83d79995 |
|
MD5 | 280cc9d3dbd1e73a99b297e4a7c8936f |
|
BLAKE2b-256 | dadde8cfb3a127b08c4335ecc1978c0c8578df93aea1a0930bd74b536d2df3bb |