SVG is "just" XML, so it should be possible to extract data from it.

But, looking at the site you linked, I find no SVG on that site. There is an HTML table under the "Medlemmer" heading, but that is a plain HTML table.

What problems did you encounter when trying to scrape that table?

Update: As choroba notes, the HTML table is created through Javascript. This would mean you will need a Javascript-capable browser to render it, but it also opens up the nice avenue of reverse-engineering the way the data gets into the page. From a quick look at the page source code, you can look at this URL and use any of the JSON modules to get the data in a structured and machine-readable format:

https://horsens.dk/-/api/MeetingApi/Meetings/%7B2696BF1A-2A62-4A62-AFF +5-020652874F14%7D

That URL comes from the data-jsonurl attribute in this HTML:

<div id="catalog-meetings" data-jsonurl="/-/api/MeetingApi/Meetings/{2 +696BF1A-2A62-4A62-AFF5-020652874F14}"></div>

In reply to Re: Scraping SVG. Scalable vector graphics by Corion
in thread Scraping SVG. Scalable vector graphics by Jacob_Kold

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.