I want to get certain data from an open-access XML file on a remote server.
These are Open Data files of AEMET. The idea is to read the xml and extract some information. I want to do it using javascript, so that I can visualize in a web this data obtained from the xml file. As an example one of the files is;
I understand how to do it in Python; I create a variable with the content of the XML and then with BeautifulSoup or any other scrapper I read the DOM data from the xml. I have no idea how to start javascritp. How do I read the remote xml? from there I think I understand how I can get the data for each label.
I have looked how to do it and everything I find seems oriented to Ajax, but I did not find how to do it by reading directly the remote xml.