Ignore:
Timestamp:
Oct 10, 2006, 4:06:12 PM (18 years ago)
Author:
sexton
Message:

incorporate test to add clipped Geospatial data objects - going to add to TRAC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/geospatial_data/test_geospatial_data.py

    r3723 r3733  
    476476
    477477
    478     def test_clip1_inside_outside(self):
     478    def no_test_clip1_inside_outside(self):
    479479        """test_clip1_inside_outside(self):
    480480       
     
    503503        new_points = [[0.2, 0.5], [0.4, 0.3], [0, 0]] +\
    504504                     [[-1, 4], [1.0, 2.1], [3.0, 5.3], [2.4, 3.3]]
    505        
     505
    506506        assert allclose((G1+G2).get_data_points(), new_points)
    507        
    508 
     507
     508        G = G1+G2
     509        FN = 'test_combine.pts'
     510        G.export_points_file(FN)
     511        os.remove(FN)
     512
     513       
    509514    def test_create_from_xya_file(self):
    510515        """Check that object can be created from a points file (.pts and .xya)
Note: See TracChangeset for help on using the changeset viewer.