Replies: 3 comments 5 replies
-
Hi @rt84ro, This is currently not possible because the XML reading code is embedded in the methods that download the BRO data directly. It should be fairly simple to separate the the downloading and parsing of XML results (given that the API and manual download produce the same files), but we haven´t done that yet. I'll create an issue to track this request. In the meantime you could try to download the well data you manually downloaded from BROLoket automatically using hydropandas: import hydropandas as hpd
# download a single head observation using the groundwater monitoring ID
o = hpd.GroundwaterObs.from_bro("GMW000000041261", 1)
# or download all head observations within an extent
oc = hpd.read_bro(extent=(xmin, xmax, ymin, ymax)) Hope that helps, Davíd |
Beta Was this translation helpful? Give feedback.
-
Dear david, oc = hpd.read_bro(extent=(93000, 95000, 444000, 446000)) |
Beta Was this translation helpful? Give feedback.
-
Hi @rt84ro, I recommend you just try to extract the data you require from the DataFrames and use Hope that helps! Davíd |
Beta Was this translation helpful? Give feedback.
-
Hi every one,
I have downloaded some wells from the BROloket website but their format is .xml. I want to read them using the HydroPandas but actually I do not know how I should open these files. could you please let me know how to read them?
Beta Was this translation helpful? Give feedback.
All reactions