-
Notifications
You must be signed in to change notification settings - Fork 390
Add Lambert Equal Area Projection #619
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
lib/cartopy/tests/crs/test_lambert_azimuthal_equal_area.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| # (C) British Crown Copyright 2015, Met Office | ||
| # | ||
| # This file is part of cartopy. | ||
| # | ||
| # cartopy is free software: you can redistribute it and/or modify it under | ||
| # the terms of the GNU Lesser General Public License as published by the | ||
| # Free Software Foundation, either version 3 of the License, or | ||
| # (at your option) any later version. | ||
| # | ||
| # cartopy is distributed in the hope that it will be useful, | ||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| # GNU Lesser General Public License for more details. | ||
| # | ||
| # You should have received a copy of the GNU Lesser General Public License | ||
| # along with cartopy. If not, see <http://www.gnu.org/licenses/>. | ||
|
|
||
| from __future__ import (absolute_import, division, print_function) | ||
|
|
||
| import unittest | ||
|
|
||
| import numpy as np | ||
| from numpy.testing import assert_almost_equal | ||
| from nose.tools import assert_equal | ||
|
|
||
| import cartopy.crs as ccrs | ||
|
|
||
|
|
||
| class TestLambertAzimuthalEqualArea(unittest.TestCase): | ||
| def test_default(self): | ||
| crs = ccrs.LambertAzimuthalEqualArea() | ||
| expected = ('+ellps=WGS84 +proj=laea +lon_0=0.0 ' | ||
| '+lat_0=0.0 +x_0=0.0 +y_0=0.0 +no_defs') | ||
| assert_equal(crs.proj4_init, expected) | ||
|
|
||
| assert_almost_equal(np.array(crs.x_limits), | ||
| [-12755636.1863, 12755636.1863], | ||
| decimal=4) | ||
| assert_almost_equal(np.array(crs.y_limits), | ||
| [-12727770.598700099, 12727770.598700099], | ||
| decimal=4) | ||
|
|
||
| def test_eccentric_globe(self): | ||
| globe = ccrs.Globe(semimajor_axis=1000, semiminor_axis=500, | ||
| ellipse=None) | ||
| crs = ccrs.LambertAzimuthalEqualArea(globe=globe) | ||
| expected = ('+a=1000 +b=500 +proj=laea +lon_0=0.0 +lat_0=0.0 ' | ||
| '+x_0=0.0 +y_0=0.0 +no_defs') | ||
| assert_equal(crs.proj4_init, expected) | ||
|
|
||
| assert_almost_equal(np.array(crs.x_limits), | ||
| [-1999.9, 1999.9], decimal=1) | ||
| assert_almost_equal(np.array(crs.y_limits), | ||
| [-1380.17298647, 1380.17298647], decimal=4) | ||
|
|
||
| def test_offset(self): | ||
| crs = ccrs.LambertAzimuthalEqualArea() | ||
| crs_offset = ccrs.LambertAzimuthalEqualArea(false_easting=1234, | ||
| false_northing=-4321) | ||
| expected = ('+ellps=WGS84 +proj=laea +lon_0=0.0 +lat_0=0.0 ' | ||
| '+x_0=1234 +y_0=-4321 +no_defs') | ||
| assert_equal(crs_offset.proj4_init, expected) | ||
| assert_equal(tuple(np.array(crs.x_limits) + 1234), | ||
| crs_offset.x_limits) | ||
| assert_equal(tuple(np.array(crs.y_limits) - 4321), | ||
| crs_offset.y_limits) | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| import nose | ||
| nose.runmodule(argv=['-s', '--with-doctest'], exit=False) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No check for
y_limitshere also?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(If you add the y check here, the name of the test method could do with changing, e.g.
test_offsets.)