-
-
Notifications
You must be signed in to change notification settings - Fork 592
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
Fix __repr__ for unknown coordinate systems #3569
Conversation
Thanks for the pull request @dstansby! Everything looks great! |
1 similar comment
Thanks for the pull request @dstansby! Everything looks great! |
Out of curiosity, in what context do you have an unknown coordinate system? |
@Cadair's original example was when |
c6a04b1
to
932fc06
Compare
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub.
git fetch
# Create new working tree.
git worktree add .worktrees/backport 1.0
# Navigate to the new directory.
cd .worktrees/backport
# Cherry-pick all the commits of this pull request and resolve the likely conflicts.
git cherry-pick 3064b35e5562edd3c182d63cd242539c5451f4c8 932fc06717948815678c1135021c580e8a43c528
# Create a new branch with these backported commits.
git checkout -b backport-3569-to-1.0
# Push it to GitHub.
git push --set-upstream origin backport-3569-to-1.0
# Go back to the original working tree.
cd ../..
# Delete the working tree.
git worktree remove .worktrees/backport Then, create a pull request where the |
Fixes #2452