Mike McCann

Results 75 comments of Mike McCann

This will be an important addition to the STOQS code base! I think what we'd like to enhance is the `createLabels()` function of the `classify.py` program, which calls a slightly...

Here's a start on a fresh approach, a Django query that gets the first 20 data values from dorado: ```bash (venv-stoqs) [vagrant@localhost stoqsgit]$ stoqs/manage.py shell_plus ... In [1]: mps =...

Also, Pandas has a `DataFrame.from_records()` method that will import Django data into a data frame, e.g: ```bash In [1]: import pandas as pd In [2]: mps = MeasuredParameter.objects.using('stoqs_september2013_o').filter( ...: measurement__instantpoint__activity__platform__name='dorado')...

I suggest creating a new file for now. Perhaps it could be a Jupyter Notebook that demonstrates an analysis.

We'd need to understand the functional requirements better; perhaps a new option (or implementation of an aspirational option already in classify.py) is an approach. I'd like to see a Jupyter...

Yes, this problem comes from pupynere not keeping up with updates to numpy. There is a patch that can be made, but a more permanent solution would be better. In...

@duane-edgington Is this still a problem?

Yes, serving the data from a web server would be more robust as it would alleviate the need to copy .csv files to be local on the server executing the...

Another option is to use the ERDDAP server. It has the advantage of offering multiple export formats and seems to have some traction in the OBIS community. It is being...

Through the MBON project I came across the OBIS-ENV-DATA standard as described in [this workshop report](http://iobis.org/2018/05/18/att/). Seems like something worth exploring. Also, [this commit](https://github.com/MBARIMike/stoqs/commit/db99d5eb8aab06d50e68e08fd06d75a7cf995bcc) mentions the need to improve how...