1
Fork 0

Modified limits of bathy export

This commit is contained in:
Edgar P. Burkhart 2022-03-14 13:34:21 +01:00
parent 1c930431fe
commit c6ecf287ea
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
2 changed files with 4 additions and 3 deletions

View File

@ -9,6 +9,8 @@ root=out
sub=bathy_sub.npy
out=bathy.npy
step=1
left=0
right=150
[artha]
lat=43.398450

View File

@ -3,7 +3,6 @@ import configparser
import logging
import pathlib
import matplotlib.pyplot as plt
import numpy as np
from scipy import interpolate
@ -51,8 +50,8 @@ buoy = np.asarray(projection.cartesian(*buoy_curvi))
D = np.diff(np.stack((artha, buoy)), axis=0)
x = np.arange(
-150,
np.sqrt((D**2).sum()) + 150,
config.getfloat("out", "left", fallback=0),
np.sqrt((D**2).sum()) + config.getfloat("out", "right", fallback=0),
config.getfloat("out", "step", fallback=1),
)
theta = np.angle(D.dot((1, 1j)))