You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If decimal degree are used for x_ and y_coord to map locations in the location_library, the check for plausibility fails since it misinterprets the values (as meter? dy does not match the distance in meter, though), raising an error.
Input from config file:
ValueError: Mapping problem detected for exmpl. Inferred data spacing is
dx = 0.0
dy = -2.6285714284313145e-06
dz = 0.0
total = 2.6285714284313145e-06
dLAF = [0.2542]
Including a flag to disable the check globally might be the easiest fix (if there is not already one that I am not aware of), else checking or asking for coordinate system.
The text was updated successfully, but these errors were encountered:
What sort of information would need to be included to provide a non-straight-line mapping like along a column? I haven't implemented a column geometry before. If we can get a prototype going I could see pyfocs directly mapping columns. If that turns out to be too complex to succinctly encapsulate in the config location library, I would instead make a flag for disabling the distance checking.
My issue was not about a column deployment but about a 'regular' geometry, just with x and y coordinates in decimal degree instead of UTM coordinates, which can't be directly interpreted as meter.
If a conversion for distance checking is beyond feasible I'm in favor of a flag to globally disable the distance check for the whole config file so that one does not need to add a line to each section, stating that it shall be skipped in the check.
But answering your question regarding the column:
I can't see a column distance check without the user handing over the diameter/circumference of the column and the distance between the coils so that pyfocs can convert the LAF into an effective vertical distance and compare it to dz.
I'm not sure, though, if that saves more effort than just checking the result manually. So I agree a flag might be the way to go.
If decimal degree are used for
x_
andy_coord
to map locations in thelocation_library
, the check for plausibility fails since it misinterprets the values (as meter?dy
does not match the distance in meter, though), raising an error.Input from config file:
Error:
Including a flag to disable the check globally might be the easiest fix (if there is not already one that I am not aware of), else checking or asking for coordinate system.
The text was updated successfully, but these errors were encountered: