Ignore:
Timestamp:
Aug 21, 2006, 4:10:14 PM (18 years ago)
Author:
duncan
Message:

Hi all,
I'm doing a change in the anuga structure, moving the code to

\anuga_core\source\anuga

After you have done an svn update, the PYTHONPATH has to be changed to;
PYTHONPATH = anuga_core/source/

This is part of changes required to make installation of anuga quicker and reducing the size of our sandpits.

If any imports are broken, try fixing them. With adding anuga. to them for example. If this seems to have really broken things, email/phone me.

Cheers
Duncan

File:
1 edited

Legend:

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

    r3351 r3514  
    88import tempfile
    99
    10 from geospatial_data import *
    11 from coordinate_transforms.geo_reference import Geo_reference, TitleError
    12 from coordinate_transforms.redfearn import degminsec2decimal_degrees
     10from anuga.geospatial_data.geospatial_data import *
     11from anuga.coordinate_transforms.geo_reference import Geo_reference, TitleError
     12from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees
    1313
    1414
     
    2424        """Basic points
    2525        """
    26         from coordinate_transforms.geo_reference import Geo_reference
     26        from anuga.coordinate_transforms.geo_reference import Geo_reference
    2727       
    2828        points = [[1.0, 2.1], [3.0, 5.3]]
     
    4949
    5050    def test_2(self):
    51         from coordinate_transforms.geo_reference import Geo_reference
     51        from anuga.coordinate_transforms.geo_reference import Geo_reference
    5252        points = [[1.0, 2.1], [3.0, 5.3]]
    5353        attributes = [2, 4]
     
    6161
    6262    def test_get_attributes_1(self):
    63         from coordinate_transforms.geo_reference import Geo_reference
     63        from anuga.coordinate_transforms.geo_reference import Geo_reference
    6464        points = [[1.0, 2.1], [3.0, 5.3]]
    6565        attributes = [2, 4]
     
    8484        """
    8585       
    86         from coordinate_transforms.geo_reference import Geo_reference
     86        from anuga.coordinate_transforms.geo_reference import Geo_reference
    8787        points = [[1.0, 2.1], [3.0, 5.3]]
    8888        attributes = {'a0': [0, 0], 'a1': [2, 4], 'a2': [79.4, -7]}
     
    162162        """
    163163       
    164         from coordinate_transforms.geo_reference import Geo_reference
     164        from anuga.coordinate_transforms.geo_reference import Geo_reference
    165165        points = [[1.0, 2.1], [3.0, 5.3]]
    166166        attributes = {'a0': [0, 0], 'a1': [2, 4], 'a2': [79.4, -7]}
     
    196196        """
    197197
    198         from coordinate_transforms.geo_reference import Geo_reference
     198        from anuga.coordinate_transforms.geo_reference import Geo_reference
    199199       
    200200        points = [[1.0, 2.1], [3.0, 5.3]]
Note: See TracChangeset for help on using the changeset viewer.