svg2data icon indicating copy to clipboard operation
svg2data copied to clipboard

A Python module for reading data from a plot provided as SVG file.

Results 5 svg2data issues
Sort by recently updated
recently updated
newest added

Could this be due to the version of Python I am running? data = svg2data("test.svg") ______________________________________________ Traceback (most recent call last): File ~\AppData\Roaming\Python\Python311\site-packages\IPython\core\interactiveshell.py:3505 in run_code exec(code_obj, self.user_global_ns, self.user_ns) Cell In[6],...

--------------------------------------------------------------------------- KeyError Traceback (most recent call last) ~\AppData\Local\Temp/ipykernel_102044/517397449.py in ----> 1 from svg2data import svg2data D:\OneDrive\Work\ICM\QCircle\sandbox\options\svgexport\svg2data\svg2data.py in 8 import os.path 9 from math import sin, cos, tan, pi ---> 10...

Hello, my SVG file was generated with Adobe Illustrator. To obtain height and width Use: ```python root.attrib >>> {'viewBox': 'min max width height'} width = root.attrib['viewBox'].split()[2] height = root.attrib['viewBox'].split()[3] ```...

Hi! I found your utility here and feel like it may be very useful for me. I try to use it as manual says but got an error: from svg2data...

Hi, I'm trying to extract data from this PDF containing several hundred plots. https://fortress.wa.gov/ecy/publications/documents/0803037appc.pdf For example, I'm starting with the second plot on page 14 for Alki East Chlorophyll-a. If...