{"id":20956069,"url":"https://github.com/try2code/iconplot","last_synced_at":"2026-03-15T09:50:29.984Z","repository":{"id":2370613,"uuid":"3335020","full_name":"Try2Code/iconPlot","owner":"Try2Code","description":"Plot data from the ICON Climate model","archived":false,"fork":false,"pushed_at":"2018-09-09T10:40:06.000Z","size":194,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-20T07:39:43.545Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://code.zmaw.de/projects/cdo/wiki/ram#ICON-plot","language":"NCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"workmad3/acts_as_xapian_gem","license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Try2Code.png","metadata":{"files":{"readme":"README.rdoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-02-02T13:43:43.000Z","updated_at":"2021-12-08T15:16:54.000Z","dependencies_parsed_at":"2022-09-18T08:31:57.376Z","dependency_job_id":null,"html_url":"https://github.com/Try2Code/iconPlot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Try2Code%2FiconPlot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Try2Code%2FiconPlot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Try2Code%2FiconPlot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Try2Code%2FiconPlot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Try2Code","download_url":"https://codeload.github.com/Try2Code/iconPlot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243351858,"owners_count":20276911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T01:24:07.945Z","updated_at":"2025-12-26T09:27:19.987Z","avatar_url":"https://github.com/Try2Code.png","language":"NCL","readme":"= iconPlot - General purpose plot script for the ICON climate model\n\nThis package contains a plotscript for: \n  * contour and vector/streamline plots\n  * overlay of both\n  * vertical sections\n  * representing the ICON grid\n\n== Installation\n\nDownload and run icon_plot.ncl directly with ncl\n\n   ncl icon_plot.ncl altLibDir='\".\"'\n\nor use nclsh from the contrib directory for easyer command line options\n\n   nclsh icon_plot.ncl -altLibDir=.\n\nNote that a config file $HOME/.icon_plot.rc is read in if available. Any \ncommandline options can be set here. This is especially usefull for setting the altLibDir.\n\n== Requirements\n\nNCL 6.0 and CDO 1.5.x are required\n\n== Usage\n=== Basic Usage:\n  ncl   icon_plot.ncl 'iFile=\"path/file.nc\"' 'varName=\"ELEV\"' 'oFile=\"test\"' timeStep=1  levIndex=1\n  nclsh icon_plot.ncl -iFile=path/file.nc    -varName=ELEV    -oFile=test   -timeStep=1 -levIndex=1\n\n=== Select an special area of the globe with mapLLC (LowerLeftCorner) and mapURC (UpperRightCorner)   \n  ncl   icon_plot.ncl 'iFile=\"path/file.nc\"' 'varName=\"W\"' 'mapLLC=(/35.0, -8/)' 'mapURC=(/55, 8/)'\n  nclsh icon_plot.ncl -iFile=path/file.nc    -varName=W    -mapLLC=35.0,-8       -mapURC=55,8\n\n=== Masking:\n  ncl icon_plot.ncl 'iFile=\"oce_aqua_planet_O.R2B04L4_0001.nc\"' 'varName=\"ELEV\"' 'maskName=\"wet_c\"' \n  ncl icon_plot.ncl 'iFile=\"oce.nc\"' 'varName=\"W\"' 'maskName=\"topo\"' 'maskFile=\"icon_mask.nc\"' \n\n=== Vectorplot:\n  ncl icon_plot.ncl 'iFile=\"oce.nc\"' 'vecVars=\"u-veloc v-veloc\"' 'oFile=\"test\"'\n\n=== Vertical cross section:\n  ncl icon_plot.ncl 'iFile=\"iconOutput.nc\"' 'secLC=(/ 0.0,-90.0 /)' 'secRC=(/ 0.0,90.0/)' 'oType=\"png\"' 'rStrg=\"\"' 'tStrg=\"ICON coupled aqual planet\"'\n\n=== Overlay plot (vectors over contour plot)\n  ncl   icon_plot.ncl  'iFile=\"iconOutput.nc\"' 'varName=\"T\"' 'vecVars=\"u-veloc v-veloc\"'\n  nclsh icon_plot.ncl  -iFile=iconOutput.nc    -varName=T    -vecVars=u-veloc,v-veloc\nsame for current atmo input\n  ncl icon_plot.ncl  'iFile=\"atm.nc\"' 'varName=\"T\"' 'vecVars=\"U V\"'\n\n=== Atmosphere input plotted on the 3rd height level\n  ncl icon_plot.ncl  'iFile=\"atm.nc\"' 'varName=\"T\"' 'atmLev=\"h\"' levIndex=2\nsame but on pressure level\n  ncl icon_plot.ncl  'iFile=\"atm.nc\"' 'varName=\"T\"' 'atmLev=\"p\"' levIndex=2\n\nOptions can be combined execept showGrid=True (with nclsh: -showGrid) with vector and overlay plots\n\n== Recommendations\n\nUse the provided ncl wrapper script nclsh:\n  ncl icon_plot.ncl 'iFile=\"iconOutput.nc\"' 'secLC=(/ 0.0,-90.0 /)' 'secRC=(/ 0.0,90.0/)' 'oType=\"png\"' 'varName=\"T\"' vecVars='\"u v\"'\nbecomes\n  nclsh icon_plot.ncl -iFile=iconOutput.nc -secLC=0.0,-90.0 -secRC=0.0,90.0 -oType=png -varName=T -vecVars=u,v\nThis is useful for write script which call other NCL application.\n\n\n== Support, Issues, Bugs, ...\n\n  write an issue or use mail\n\n== License\n\niconPlot uses the GPLv2 License\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftry2code%2Ficonplot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftry2code%2Ficonplot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftry2code%2Ficonplot/lists"}