Ejemplo n.º 1
0
 def test_unstruct2grid_break(self):
     coords = [(10.5, 10.1),
               (10.1, 15.1),
               (15.2, 20.2)]
     quantity = [1, 2]
     cellsize = 1.0
     with pytest.raises(ValueError):
         particle_track.unstruct2grid(coords, quantity, cellsize,
                                      k_nearest_neighbors=1)
Ejemplo n.º 2
0
def test_unstruct2grid_k3():
    coords = [(1.5, 1.1), (0.1, 2.1), (1.2, 2.2)]
    quantity = [1, 2, 3]
    cellsize = 1.0
    interp_func, gridd = particle_track.unstruct2grid(coords,
                                                      quantity,
                                                      cellsize,
                                                      k_nearest_neighbors=3)
    assert pytest.approx(gridd == np.array([[
        2.13911589, 2.26676874, 2.1792037
    ], [2., 2.68254467, 2.10026059], [1.96968263, 1.6122416, 1.65818041]]))
Ejemplo n.º 3
0
def test_unstruct2grid_bounds():
    coords = [(10.5, 10.1), (10.1, 15.1), (15.2, 20.2)]
    quantity = [1, 2, 3]
    cellsize = 1.0
    boundary = [[12, 12], [12, 19], [15, 19], [15, 12]]
    interp_func, gridd = particle_track.unstruct2grid(coords,
                                                      quantity,
                                                      cellsize,
                                                      k_nearest_neighbors=1,
                                                      boundary=boundary,
                                                      crop=True)
    assert np.all(gridd == np.array([[2., 3., 3.], [2., 2., 3.], [2., 2., 2.],
                                     [2., 2., 2.], [2., 2., 2.], [2., 2., 2.],
                                     [1., 1., 1.]]))
Ejemplo n.º 4
0
def test_unstruct2grid_k1():
    coords = [(10.5, 10.1), (10.1, 15.1), (15.2, 20.2)]
    quantity = [1, 2, 3]
    cellsize = 1.0
    interp_func, gridd = particle_track.unstruct2grid(coords,
                                                      quantity,
                                                      cellsize,
                                                      k_nearest_neighbors=1)
    assert np.all(gridd == np.array(
        [[3., 3., 3., 3., 3., 3., 3.], [2., 3., 3., 3., 3., 3., 3.],
         [2., 2., 3., 3., 3., 3., 3.], [2., 2., 2., 3., 3., 3., 3.],
         [2., 2., 2., 2., 3., 3., 3.], [2., 2., 2., 2., 2., 3., 3.],
         [2., 2., 2., 2., 2., 2., 3.], [2., 2., 2., 2., 2., 2., 2.],
         [2., 2., 2., 2., 2., 2., 2.], [1., 1., 1., 1., 1., 1., 1.],
         [1., 1., 1., 1., 1., 1., 1.], [1., 1., 1., 1., 1., 1., 1.]]))