Skip to main content

Interface to Autoplot Java library

Project description

Autoplot is a Java application which can read data from many sources, such as ASCII tables, NASA CDF files, and HDF5 files. It can also read data from data servers, such as the server at NASA/Goddard/CDAWeb, Das2Servers used by the Radio and Plasma Wave Group at the University of Iowa, and servers supporting the HAPI API.

Autoplot identifies data using “URIs”, which are one-line strings containing a data source ID and configuration to read the data. These URIs can be created using the Autoplot application, available at http://autoplot.org/. Data are read into a standard data model, QDataSet, which is easily adapted to Python using “JPype”. Helper procedures from the Autoplot package convert QDataSets into ndarrays.

Autoplot/Python Interface Tools

Install using pip install autoplot

from autoplot import *

# Download autoplot.jar, if needed, and load it into JPype's classpath.
javaaddpath('http://autoplot.org/latest/autoplot.jar')

# Create Autoplot Data Set, which is an object that loads and temporarily holds data.
apds = APDataSet()

# Set URI which will be loaded.
apds.setDataSetURI('http://autoplot.org/data/swe-np.xls?column=data&depend0=dep0')

# Load the data, initially downloading files into Autoplot's cache.
apds.doGetDataSet()

print(apds.toString())
# http://autoplot.org/data/swe-np.xls?column=data&depend0=dep0
# data: data[dep0=288] (dimensionless)
# dep0: dep0[288] (days since 1899-12-30T00:00:00.000Z) (DEPEND_0)

# Extract data values
vv = to_ndarray(apds)
tt = to_ndarray(apds, 'dep0')

from matplotlib import pyplot as plt
plt.plot(tt,vv)
plt.show()

Contact

Jeremy Faden <faden@cottagesystems.com>

See also https://github.com/autoplot/python/wiki

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

autoplot-0.6.2.tar.gz (9.4 kB view details)

Uploaded Source

File details

Details for the file autoplot-0.6.2.tar.gz.

File metadata

  • Download URL: autoplot-0.6.2.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for autoplot-0.6.2.tar.gz
Algorithm Hash digest
SHA256 6b12f7f824e6b02f22a920da9859a41cabb1aa8538d61a059116e4ccd6f10b84
MD5 43fab079366df6f8ee78d21e71c742bf
BLAKE2b-256 cc4385d24cc3891e664c4af8ea33e77dda74581c1eb1be967b3c66fa09fe8b0a

See more details on using hashes here.

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