Skip to main content

GPlates Web Service Python client/proxy

Project description

GPlates Web Service Python Client/Proxy

build badge PyPI version

This Python package allows users to access GPlates Web Service more easily via simple Python programming interface.

Installation

pip install gplates-ws-proxy

How to use

The following Python code reconstructs three locations to 100Ma with Muller2019 reconstruction model.

  # pip install gplates-ws-proxy shapely
  import shapely
  from gplates_ws_proxy import PlateModel, reconstruct_shapely_points

  lats = [50, 10, 50]
  lons = [-100, 160, 100]
  points = [shapely.Point(x, y) for x, y in zip(lons, lats)]

  model = PlateModel("Muller2019")
  paleo_points = reconstruct_shapely_points(model, points, 100)
  print(paleo_points)

GPlates Web Service server

By default, https://gws.gplates.org is used. You can use .env file to specify your service URL. Alternertively, you can export GWS_URL=https://your-service-url in a terminal.

See env.template and setup GWS server with Docker.

Dependencies

API reference

API reference can be found at https://michaelchin.github.io/gplates-python-proxy/.

Examples

👉 reconstruct_shapely_points.py

The red dots are present-day locations. The blue dots are paleo-locations at 100Ma.

reconstruct_shapely_points

👉 plot_subduction_zones.py

plot_subduction_zones

👉 plot_topological_plate_polygons.py

plot_topological_plate_polygons

All Examples

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gplates-ws-proxy-0.1.1.tar.gz (22.7 kB view hashes)

Uploaded Source

Built Distribution

gplates_ws_proxy-0.1.1-py3-none-any.whl (30.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page