René's URL Explorer Experiment


Title: Show grid ticks on geographic plots · Issue #227 · proplot-dev/proplot · GitHub

Open Graph Title: Show grid ticks on geographic plots · Issue #227 · proplot-dev/proplot

X Title: Show grid ticks on geographic plots · Issue #227 · proplot-dev/proplot

Description: Description Currently, only grid_lines is supported for geographic plots. It would be useful to add the grid_ticks for cleaner plot. Steps to reproduce import proplot as plot fig, axs = plot.subplots(proj='cyl') axs.format(land=True, lab...

Open Graph Description: Description Currently, only grid_lines is supported for geographic plots. It would be useful to add the grid_ticks for cleaner plot. Steps to reproduce import proplot as plot fig, axs = plot.subplo...

X Description: Description Currently, only grid_lines is supported for geographic plots. It would be useful to add the grid_ticks for cleaner plot. Steps to reproduce import proplot as plot fig, axs = plot.subplo...

Opengraph URL: https://github.com/proplot-dev/proplot/issues/227

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Show grid ticks on geographic plots","articleBody":"### Description\r\n\r\nCurrently, only `grid_lines` is supported for geographic plots.\r\nIt would be useful to add the `grid_ticks` for cleaner plot.\r\n\r\n### Steps to reproduce\r\n\r\n```python\r\nimport proplot as plot\r\n\r\nfig, axs = plot.subplots(proj='cyl')\r\naxs.format(land=True,\r\n           labels=True,\r\n           lonlines=20,\r\n           latlines=20,\r\n           gridminor=True,\r\n           lonlim=(-140, 60),\r\n           latlim=(-10, 50))\r\n```\r\n\r\n**Expected behavior**: [What you expected to happen]\r\n\r\nTicks without gridlines.\r\n\r\nI found one example showing ticks with Gridlines:\r\n```\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\nimport matplotlib.ticker as mticker\r\nimport cartopy.crs as ccrs\r\nfrom cartopy.mpl.ticker import LongitudeFormatter, LatitudeFormatter\r\n\r\ndlon, dlat = 60, 30\r\nxticks = np.arange(0, 360.1, dlon)\r\nyticks = np.arange(-90, 90.1, dlat)\r\n\r\nfig = plt.figure(figsize=(6,5))\r\nax = fig.add_subplot(1,1,1, projection=ccrs.PlateCarree(central_longitude=180))\r\nax.coastlines() #海岸线\r\n\r\ngl = ax.gridlines(crs=ccrs.PlateCarree(), draw_labels=False,linewidth=1, linestyle=':', color='k', alpha=0.8)\r\ngl.xlocator = mticker.FixedLocator(xticks)\r\ngl.ylocator = mticker.FixedLocator(yticks)\r\n\r\nax.set_xticks(xticks, crs=ccrs.PlateCarree())\r\nax.set_yticks(yticks, crs=ccrs.PlateCarree())\r\n\r\nax.xaxis.set_major_formatter(LongitudeFormatter(zero_direction_label=True))\r\nax.yaxis.set_major_formatter(LatitudeFormatter())\r\n```\r\n![image](https://user-images.githubusercontent.com/30388627/94339485-f0983500-002c-11eb-98e1-fcfee1c9500c.png)\r\n\r\n**Actual behavior**: [What actually happened]\r\nCan't let ticks show.\r\n![test_tick](https://user-images.githubusercontent.com/30388627/94339407-64860d80-002c-11eb-8b77-8b871b888e3b.png)\r\n\r\n\r\n\r\n### Proplot version\r\n\r\n`0.6.4`\r\n","author":{"url":"https://github.com/zxdawn","@type":"Person","name":"zxdawn"},"datePublished":"2020-09-26T11:19:56.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/227/proplot/issues/227"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:eefc8f65-3b15-e0f8-f46d-4de29d91972b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idEB1A:1663C8:6A19D5:8B165A:696B7383
html-safe-nonced4dc4b349e093d15b1ebadef05c2ed99b786ae5449f8e2881ffd9dede4f95be2
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFQjFBOjE2NjNDODo2QTE5RDU6OEIxNjVBOjY5NkI3MzgzIiwidmlzaXRvcl9pZCI6IjcwMzQ4MDg1MzE2NzU3MzkwMTEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac3598590eaadc315f52e13d5480d8ea177df572b7af78f24ec5c2b34a842aa2cc
hovercard-subject-tagissue:709519550
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/proplot-dev/proplot/227/issue_layout
twitter:imagehttps://opengraph.githubassets.com/043a630b6bce6adaeb671fd3db279a03e75205ffc73f4fd9cbdd43feaff346d2/proplot-dev/proplot/issues/227
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/043a630b6bce6adaeb671fd3db279a03e75205ffc73f4fd9cbdd43feaff346d2/proplot-dev/proplot/issues/227
og:image:altDescription Currently, only grid_lines is supported for geographic plots. It would be useful to add the grid_ticks for cleaner plot. Steps to reproduce import proplot as plot fig, axs = plot.subplo...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamezxdawn
hostnamegithub.com
expected-hostnamegithub.com
None5f99f7c1d70f01da5b93e5ca90303359738944d8ab470e396496262c66e60b8d
turbo-cache-controlno-preview
go-importgithub.com/proplot-dev/proplot git https://github.com/proplot-dev/proplot.git
octolytics-dimension-user_id108025793
octolytics-dimension-user_loginproplot-dev
octolytics-dimension-repository_id113293661
octolytics-dimension-repository_nwoproplot-dev/proplot
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id113293661
octolytics-dimension-repository_network_root_nwoproplot-dev/proplot
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release82560a55c6b2054555076f46e683151ee28a19bc
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/proplot-dev/proplot/issues/227#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fproplot-dev%2Fproplot%2Fissues%2F227
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fproplot-dev%2Fproplot%2Fissues%2F227
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=proplot-dev%2Fproplot
Reloadhttps://github.com/proplot-dev/proplot/issues/227
Reloadhttps://github.com/proplot-dev/proplot/issues/227
Reloadhttps://github.com/proplot-dev/proplot/issues/227
proplot-dev https://github.com/proplot-dev
proplothttps://github.com/proplot-dev/proplot
Notifications https://github.com/login?return_to=%2Fproplot-dev%2Fproplot
Fork 98 https://github.com/login?return_to=%2Fproplot-dev%2Fproplot
Star 1.1k https://github.com/login?return_to=%2Fproplot-dev%2Fproplot
Code https://github.com/proplot-dev/proplot
Issues 88 https://github.com/proplot-dev/proplot/issues
Pull requests 7 https://github.com/proplot-dev/proplot/pulls
Discussions https://github.com/proplot-dev/proplot/discussions
Actions https://github.com/proplot-dev/proplot/actions
Projects 0 https://github.com/proplot-dev/proplot/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/proplot-dev/proplot/security
Please reload this pagehttps://github.com/proplot-dev/proplot/issues/227
Insights https://github.com/proplot-dev/proplot/pulse
Code https://github.com/proplot-dev/proplot
Issues https://github.com/proplot-dev/proplot/issues
Pull requests https://github.com/proplot-dev/proplot/pulls
Discussions https://github.com/proplot-dev/proplot/discussions
Actions https://github.com/proplot-dev/proplot/actions
Projects https://github.com/proplot-dev/proplot/projects
Security https://github.com/proplot-dev/proplot/security
Insights https://github.com/proplot-dev/proplot/pulse
New issuehttps://github.com/login?return_to=https://github.com/proplot-dev/proplot/issues/227
New issuehttps://github.com/login?return_to=https://github.com/proplot-dev/proplot/issues/227
#253https://github.com/proplot-dev/proplot/pull/253
Show grid ticks on geographic plotshttps://github.com/proplot-dev/proplot/issues/227#top
#253https://github.com/proplot-dev/proplot/pull/253
featurehttps://github.com/proplot-dev/proplot/issues?q=state%3Aopen%20label%3A%22feature%22
Version 0.11https://github.com/proplot-dev/proplot/milestone/4
https://github.com/zxdawn
https://github.com/zxdawn
zxdawnhttps://github.com/zxdawn
on Sep 26, 2020https://github.com/proplot-dev/proplot/issues/227#issue-709519550
https://user-images.githubusercontent.com/30388627/94339485-f0983500-002c-11eb-98e1-fcfee1c9500c.png
https://user-images.githubusercontent.com/30388627/94339407-64860d80-002c-11eb-8b77-8b871b888e3b.png
featurehttps://github.com/proplot-dev/proplot/issues?q=state%3Aopen%20label%3A%22feature%22
Version 0.11No due datehttps://github.com/proplot-dev/proplot/milestone/4
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.