orca
orca copied to clipboard
Command line application for generating static images of interactive plotly charts
If I'm not mistaken, in `docker run` call, the flag `--net=host` is Linux-only. We should use `-p 9091:9091` instead.
Once PR https://github.com/plotly/orca/pull/222 is merged in, it will be as easy as running `docker run -it --net=host quay.io/plotly/orca` to start a server instance of Orca on any host with Docker....
Hey all, having a lot of issues with Orca this past weekend trying to write_image() with a Scattermapbox. Was working flawlessly for a couple weeks and suddenly stopped working over...
When trying to write_image through plotly in Python the following command gets executed to start the orca server: `['//anaconda3/bin/orca', 'serve', '-p', '9091', '--plotly', '//anaconda3/lib/python3.7/site-packages/plotly/package_data/plotly.min.js', '--graph-only', '--mathjax', 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js']` This causes a...
If I use the attached plotly JSON and feed it to Orca, I would expect "tickmode" and "tickvals" to get applied and have x axis labels at 82M, 100M, 200M,...
If I want to create an offline plot that contains the plotly Scattergl command I get an error message. Consider the example below (which is run through a jupyter notebook...
Exporting a png of a scattermapbox chart using `plotly.io.to_image()` results in this error: ``` ValueError: The image request was rejected by the orca conversion utility with the following error: 522:...
```root@mw-8479d67f8b-nxzdl:/usr/bin# cat orca #!/usr/bin/env node const path = require('path') const { spawn } = require('child_process') const electronPath = require('electron') const args = process.argv.slice(2) const pathToMain = path.join(__dirname, 'orca_electron.js') args.unshift(path.resolve(pathToMain)) spawn(electronPath,...
I'm working on a new visual testing framework for the plotly R package and I'm hoping to use at svg diffs via orca (if that seems like a bad idea...
Exporting figures (from python) using the vector formats gives some (to me) strange behaviour regards to size of the resulting image. When I set the figure width to 330 and...