diff --git a/examples/README.md b/examples/README.md index 85282a7e..959d7700 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,5 +1,5 @@ # Examples -This directory contains example configs that can be used with CartoPhi. Please make sure you have CartoPhi properly installed before attempting to run these examples. +This directory contains example configs that can be used with MeshiPhi. Please make sure you have MeshiPhi properly installed before attempting to run these examples. You will also need GeoPlot installed to run the `plot_mesh` command, however it is not necessary if all you need is the ability to generate meshes. See `https://github.com/antarctica/geoplot` for more instructions. To run PolarRoute, choose one config out of each directory and execute this command in a terminal: diff --git a/meshiphi/utils.py b/meshiphi/utils.py index cfcd950b..1d2a3192 100644 --- a/meshiphi/utils.py +++ b/meshiphi/utils.py @@ -1,5 +1,5 @@ """ -Miscellaneous utility functions that may be of use throughout CartograPhi +Miscellaneous utility functions that may be of use throughout MeshiPhi """ import logging diff --git a/tests/unit_tests/test_boundary.py b/tests/unit_tests/test_boundary.py index 58e7330c..ad061065 100644 --- a/tests/unit_tests/test_boundary.py +++ b/tests/unit_tests/test_boundary.py @@ -2,7 +2,7 @@ import unittest import json -from cartographi.mesh_generation.boundary import Boundary +from meshiphi.mesh_generation.boundary import Boundary class TestBoundary (unittest.TestCase): def setUp(self): self.boundary = Boundary([-85,-84.9], [-135,-134.9], ['1970-01-01','2021-12-31']) diff --git a/tests/unit_tests/test_mesh_validator.py b/tests/unit_tests/test_mesh_validator.py index 2390a914..0186fcc1 100644 --- a/tests/unit_tests/test_mesh_validator.py +++ b/tests/unit_tests/test_mesh_validator.py @@ -2,10 +2,9 @@ import unittest -from cartographi.mesh_validation.sampler import Sampler -from cartographi.mesh_validation.mesh_validator import MeshValidator +from meshiphi.mesh_validation.sampler import Sampler +from meshiphi.mesh_validation.mesh_validator import MeshValidator -from cartographi.mesh_generation.boundary import Boundary class TestMeshValidator(unittest.TestCase):