Newer
Older
import numpy as np
from .Ordinate import Ordinate
from .Absolute import Absolute
class Calculate(object):
"""
Class object for performing calculations.
Contains the following:
angle: average angle across a measurement type
residual: average residual across a measurement type
hs: Multiplier for inclination claculations. +1 if measurment was taken in northern hemisphere, -1 if measurement was taken in the southern hemishpere.
ordinate: Variometer data. Ordinate object(contains a datapoint for H, E, Z, and F)
ud: Multiplier for inclination calculations. +1 if instrument is oriented upward, -1 if instrument if oriented downward.
shift: Degree shift in inclination measurements.
"""
def __init__(
self,
angle: float = None,
Cain, Payton David
committed
residual: float = None,
ordinate: Ordinate = None,
baseline: float = None,
Cain, Payton David
committed
hs: int = None,
ud: int = None,
shift: int = None,
):
self.angle = angle
Cain, Payton David
committed
self.residual = residual
self.ordinate = ordinate
self.baseline = baseline
Cain, Payton David
committed
self.hs = hs
self.ud = ud
Cain, Payton David
committed
self.shift = shift
def calculate(Reading):
# get average ordinate values across h, e, z, and f
# FIXME: call this mean
Cain, Payton David
committed
inclination_ordinates = [
o
for o in Reading.ordinates
if "South" in o.measurement_type.capitalize()
or "North" in o.measurement_type.capitalize()
]
mean = average_ordinate(inclination_ordinates, None)
# calculate inclination
inclination, f = calculate_I(
Reading.measurement_index(),
Cain, Payton David
committed
inclination_ordinates,
Reading.ordinate_index(),
mean,
Reading.metadata,
)
# calculate absolutes
# FIXME: change to self.pier_correction
Habs, Zabs, Fabs = calculate_absolutes(
f, inclination, Reading.metadata["pier_correction"]
)
# calculate baselines
Hb, Zb = calculate_baselines(Habs, Zabs, mean)
# calculate scale value for declination
scale_measurements = Reading.measurement_index()["NorthDownScale"]
scale = calculate_scale(
f, scale_measurements, inclination, Reading.metadata["pier_correction"]
)
# calculate declination and
Db, Dabs = calculate_D(
Cain, Payton David
committed
Reading.ordinate_index(),
Reading.measurements,
Reading.measurement_index(),
Reading.metadata["mark_azimuth"],
Hb,
)
# return results as a set of Absolute objects along with the calculated scale value
resultH = Absolute(element="H", baseline=Hb, absolute=Habs)
resultD = Absolute(element="D", baseline=Db, absolute=Dabs)
resultZ = Absolute(element="Z", baseline=Zb, absolute=Zabs)
resultF = Absolute(element="F", baseline=None, absolute=Fabs)
result = [resultH, resultD, resultZ, resultF]
return result
def calculate_I(measurements, ordinates, ordinates_index, mean, metadata):
Cain, Payton David
committed
"""
Calculate inclination angles from measurements, ordinates,
average ordinates from every measurement, and metadata.
Returns inclination angle and calculated average f
"""
# get first inclination angle, assumed to be southdown
Iprime = measurements["SouthDown"][0].angle
if Iprime >= 90:
Iprime -= 180
Iprime = np.deg2rad(Iprime)
Cain, Payton David
committed
# get multiplier for hempisphere the observatory is located in
# 1 if observatory is in northern hemisphere
# -1 if observatory is in southern hemisphere
hs = metadata["hemisphere"]
# gather calculation objects for each measurement type
# FIXME: create calculation objects inline
southdown = Calculate(
Cain, Payton David
committed
shift=-180,
ud=-1,
hs=hs,
angle=average_angle(measurements, "SouthDown"),
residual=average_residual(measurements, "SouthDown"),
ordinate=average_ordinate(ordinates_index, "SouthDown"),
southup = Calculate(
Cain, Payton David
committed
shift=180,
ud=1,
hs=hs,
angle=average_angle(measurements, "SouthUp"),
residual=average_residual(measurements, "SouthUp"),
ordinate=average_ordinate(ordinates_index, "SouthUp"),
northup = Calculate(
Cain, Payton David
committed
shift=0,
ud=1,
hs=hs,
angle=average_angle(measurements, "NorthUp"),
residual=average_residual(measurements, "NorthUp"),
ordinate=average_ordinate(ordinates_index, "NorthUp"),
)
northdown = Calculate(
Cain, Payton David
committed
shift=0,
ud=-1,
hs=hs,
angle=average_angle(measurements, "NorthDown"),
residual=average_residual(measurements, "NorthDown"),
ordinate=average_ordinate(ordinates_index, "NorthDown"),
)
Cain, Payton David
committed
# gather measurements into array
measurements = [southdown, southup, northdown, northup]
# Get average inclination from measurments
inclination = np.average(
[calculate_measurement_inclination(i, mean.f) for i in measurements]
)
Cain, Payton David
committed
# iterate calculations until the difference in the resultant inclination angle is less than 0.0001
# intialize inclination for current step to be outside threshold specified in condition
Inclination = inclination + 1
while abs(inclination - Inclination) >= 0.0001:
# establish the inclination angle as the previously calculated average inclination angle
Inclination = inclination
# calculate average f component from each measurement
f_avg = np.average([calculate_f(i, mean, Inclination) for i in ordinates])
Cain, Payton David
committed
# update ordinate's f value as the average f component
# used in next iterations f_avg calculation
mean.f = f_avg
Cain, Payton David
committed
# re-calculate inclination for measurement types
inclination = np.average(
[calculate_measurement_inclination(i, mean.f) for i in measurements]
# transfer inclination angle from degrees to radians
inclination = np.deg2rad(inclination)
return inclination, mean.f
def calculate_D(ordinates_index, measurements, measurements_index, AZ, Hb):
Cain, Payton David
committed
"""
Calculate declination absolute and declination baseline from
ordinates, measurements, measurement_index(dictionary), azimuth and H baseline
Returns absolute and baseline for declination.
"""
# compute average angle from marks
average_mark = np.average(
[m.angle for m in measurements if "mark" in m.measurement_type.capitalize()]
)
# gather calculation objects for each measurement type
westdown = Calculate(
Cain, Payton David
committed
baseline=Hb,
angle=average_angle(measurements_index, "WestDown"),
residual=average_residual(measurements_index, "WestDown"),
Cain, Payton David
committed
ordinate=average_ordinate(ordinates_index, "WestDown"),
Cain, Payton David
committed
)
westup = Calculate(
Cain, Payton David
committed
baseline=Hb,
angle=average_angle(measurements_index, "WestUp"),
residual=average_residual(measurements_index, "WestUp"),
Cain, Payton David
committed
ordinate=average_ordinate(ordinates_index, "WestUp"),
Cain, Payton David
committed
)
eastdown = Calculate(
Cain, Payton David
committed
baseline=Hb,
angle=average_angle(measurements_index, "EastDown"),
residual=average_residual(measurements_index, "EastDown"),
Cain, Payton David
committed
ordinate=average_ordinate(ordinates_index, "EastDown"),
Cain, Payton David
committed
)
eastup = Calculate(
Cain, Payton David
committed
baseline=Hb,
angle=average_angle(measurements_index, "EastUp"),
residual=average_residual(measurements_index, "EastUp"),
Cain, Payton David
committed
ordinate=average_ordinate(ordinates_index, "EastUp"),
Cain, Payton David
committed
)
# gather measurements into array
measurements = [westdown, westup, eastdown, eastup]
Cain, Payton David
committed
# get average meridian angle from measurement types
meridian = np.average([calculate_meridian_term(i) for i in measurements])
# add average mark, meridian, and azimuth angle to get declination baseline
Cain, Payton David
committed
Db = (average_mark + meridian + AZ) * 60
# calculate declination absolute
Dabs = Db + np.arctan(westdown.ordinate.e / (Hb + westdown.ordinate.h)) * (
Cain, Payton David
committed
10800 / np.pi
)
Cain, Payton David
committed
return Db, Dabs
Cain, Payton David
committed
def calculate_absolutes(f, inclination, pier_correction):
"""
Calculate absolutes for H, Z and F from computed
average f value(from inclination computations),
calculated inclination angle, and pier correction(metadata).
Returns baselines for H, Z, and F
"""
i = np.deg2rad(inclination)
Fabs = f + pier_correction
Habs = Fabs * np.cos(i)
Zabs = Fabs * np.sin(i)
return Habs, Zabs, Fabs
def calculate_baselines(Habs, Zabs, mean):
Cain, Payton David
committed
"""
Calculate baselines with H and Z absolutes, and
average ordinates across all measurements.
Returns H and Z baselines
"""
Hb = np.sqrt(Habs ** 2 - mean.e ** 2) - mean.h
Zb = Zabs - mean.z
return Hb, Zb
# FIXME: call in scaling measurements rather than all measurements
Cain, Payton David
committed
def calculate_scale(f, measurements, inclination, pier_correction):
"""
Calculate scale value from calulated f(from inclination computations),
calculated inclination, and pier correction(metadata)
"""
i = np.deg2rad(inclination)
angle_diff = np.diff([m.angle for m in measurements]) / f
A = np.cos(i) * angle_diff
B = np.sin(i) * angle_diff
delta_f = np.rad2deg(A - B)
Cain, Payton David
committed
detla_r = abs(np.diff([m.residual for m in measurements]))[0]
time_delta = abs(np.diff([m.time for m in measurements]))[0]
delta_b = delta_f + (time_delta / 60.0)
Cain, Payton David
committed
scale_value = f * np.deg2rad(delta_b / detla_r)
return scale_value
def average_angle(measurements, type):
Cain, Payton David
committed
"""
Compute average angle from a dictionary of
measurements and specified measurement type.
"""
# FIXME: change repetitive checks
return np.average([m.angle for m in measurements[type]])
def average_residual(measurements, type):
Cain, Payton David
committed
"""
Compute average residual from a dictionary
of measurements and specified measurement type.
"""
# FIXME: change repetitive checks
return np.average([m.residual for m in measurements[type]])
Cain, Payton David
committed
"""
Compute average ordinate from a dictionary
of ordinates and specified measurement type.
"""
# FIXME: change repetitive checks
if type is not None:
o = Ordinate(measurement_type=type)
avgs = np.average([[o.h, o.e, o.z, o.f] for o in ordinates], axis=0,)
o.h, o.e, o.z, o.f = avgs
return o
def calculate_f(ordinate, mean, inclination):
Cain, Payton David
committed
"""
calculate f for a measurement type using a measurement's
average ordinates, average ordinate across all measurements,
and calculated inclination.
"""
# get channel means form all ordinates
# FIXME: don't unpack ordinates
# calculate f using current step's inclination angle
f = (
mean.f
+ (ordinate.h - mean.h) * np.cos(inclination)
+ (ordinate.z - mean.z) * np.sin(inclination)
+ ((mean.e) ** 2 - (mean.e) ** 2) / (2 * mean.f)
)
return f
def calculate_measurement_inclination(calc, f):
Cain, Payton David
committed
"""
Calculate a measurement's inclination value using
Calculate items' elements.
"""
return (
calc.shift
+ calc.angle
+ calc.ud * np.rad2deg(calc.hs * np.sin(calc.residual / f))
)
Cain, Payton David
committed
def process_type(
measurements,
ordinates,
type,
mean=None,
Cain, Payton David
committed
shift=None,
ud=None,
inclination=None,
baseline=None,
hs=None,
):
"""
Create a Calculation object for each
measurement within a measurement type.
"""
c.angle = average_angle(measurements, type)
c.residual = average_residual(measurements, type)
c.ordinate = average_ordinate(ordinates, type)
Cain, Payton David
committed
c.hs = hs
c.ud = ud
c.shift = shift
return c
def calculate_meridian_term(calculation):
Cain, Payton David
committed
"""
Calculate meridian value from a measurement type
using a Calculate object and H's baseline value.
"""
calculation.residual
/ np.sqrt(
(calculation.ordinate.h + calculation.baseline) ** 2
+ (calculation.ordinate.e) ** 2
)
)
A2 = np.arctan(
calculation.ordinate.e / (calculation.ordinate.h + calculation.baseline)
)
A1 = np.rad2deg(A1)
A2 = np.rad2deg(A2)
meridian_term = calculation.angle - A1 - A2
return meridian_term