Hi,
i am attempting to read data in XML format from URL:
https://danepubliczne.imgw.pl/api/data/synop/format/xml
Unfortunately I can't method presented below to work.
My code is following
filename imgw url 'https://danepubliczne.imgw.pl/api/data/synop/format/xml';
filename map 'C:\imgw_map.map';
libname imgw xmlv2 xmlmap=map access=readonly;
data xml;
set imgw.item;
run;
proc contents data=xml;quit;
imgw_map was created in SAS XML Mapper using 'AutoMap using XML' on a download data file.
Code doesn't return any errors, imgw library is created with 2 files, but unfortunately those sets are empty (no observations).
Surprisingly using nearly identical code, but for downloaded data gives correct results.
filename imgw 'C:\imgw_synop.xml';
filename map 'C:\imgw_map.map';
libname imgw xmlv2 xmlmap=map access=readonly;
data xml;
set imgw.item;
run;
proc contents data=xml;quit;Data set is frequently updated (weather data) and I would like my data to update itself automatically without manual downloads.
I am using SAS 9.4 in Enterprise Guide 7.11.
best regards.
The URL is a service returning the data which your browser is displaying.
To capture the data you have to use either proc http or proc soap.
I have added a code snippet for your reference.
filename resp "&WORKING_DIR./output.xml";
proc http
url="&URL_ADVERSE."
out=resp
METHOD='GET';
run;Please let us know if it worked for you.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.