Skip to content

Commit

Permalink
Remove last references to old name
Browse files Browse the repository at this point in the history
  • Loading branch information
gecoombs committed Nov 30, 2023
1 parent b33c03c commit 232777f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion meshiphi/utils.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/test_boundary.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down
5 changes: 2 additions & 3 deletions tests/unit_tests/test_mesh_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):


Expand Down

0 comments on commit 232777f

Please sign in to comment.