{"id":20011288,"url":"https://github.com/pdlporters/pdl-graphics-plplot","last_synced_at":"2025-06-20T15:40:45.276Z","repository":{"id":32600706,"uuid":"36184876","full_name":"PDLPorters/pdl-graphics-plplot","owner":"PDLPorters","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-31T18:22:46.000Z","size":653,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-05-04T20:40:58.571Z","etag":null,"topics":["pdl","perl","plotting","plplot"],"latest_commit_sha":null,"homepage":"https://p3rl.org/PDL::Graphics::PLplot","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PDLPorters.png","metadata":{"files":{"readme":"README","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-05-24T17:51:12.000Z","updated_at":"2025-03-31T18:22:50.000Z","dependencies_parsed_at":"2024-04-21T20:16:51.325Z","dependency_job_id":"9d9913c0-fc86-4dda-8d23-84f34994a595","html_url":"https://github.com/PDLPorters/pdl-graphics-plplot","commit_stats":{"total_commits":183,"total_committers":18,"mean_commits":"10.166666666666666","dds":0.6229508196721312,"last_synced_commit":"f4818343537cc05093dee3ba79f45b622122b10f"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/PDLPorters/pdl-graphics-plplot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDLPorters%2Fpdl-graphics-plplot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDLPorters%2Fpdl-graphics-plplot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDLPorters%2Fpdl-graphics-plplot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDLPorters%2Fpdl-graphics-plplot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PDLPorters","download_url":"https://codeload.github.com/PDLPorters/pdl-graphics-plplot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PDLPorters%2Fpdl-graphics-plplot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260973213,"owners_count":23091076,"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":["pdl","perl","plotting","plplot"],"created_at":"2024-11-13T07:25:09.721Z","updated_at":"2025-06-20T15:40:40.256Z","avatar_url":"https://github.com/PDLPorters.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"PDL::Graphics::PLplot\n\nThis is a simple perl/PDL interface to the PLplot plotting library.\n\nhttp://plplot.sourceforge.net/\n\nI wrote this primarily for web graphics as an alternative to PDL::Graphics::PGPLOT.\n\nThe advantages of PLplot over PGPLOT are these:\n\n-- It is written all in (generally well structured, comprehensible) C\n   (so you don't need a FORTRAN compiler as for PGPLOT).\n-- It is in current development\n-- It has a simple autoconf installation with built-in PNG support\n\n(The disadvantage is that it is missing some of PGPLOT's many features).\n\nThe interface consists of two levels.  A low level interface which maps closely to\nthe PLplot C interface, and a high level, object-oriented interface which is easier to \nuse.\n\nExamples:\n\nuse PDL:\nuse PDL::Graphics::PLplot;\n\n# Line plot of two 1D PDLs $x and $y\nmy $pl = PDL::Graphics::PLplot-\u003enew (DEV =\u003e \"png\", FILE =\u003e \"test1.png\");\n$pl-\u003exyplot($x, $y, PLOTTYPE =\u003e 'LINE', COLOR =\u003e 'GREEN', \n\t            TITLE =\u003e 'Sample plot', XLAB =\u003e 'frobnitz', YLAB =\u003e 'widgets/sec');\n$pl-\u003eclose;\n\n# Shade plot of a 2D PDL in $z\nmy $pl = PDL::Graphics::PLplot-\u003enew (DEV =\u003e 'png', FILE =\u003e \"test2.png\");\n$pl-\u003eshadeplot ($z, $nsteps, BOX =\u003e [-1, 1, -1, 1], PALETTE =\u003e 'RAINBOW');\n$pl-\u003ecolorkey ($z, 'v', VIEWPORT =\u003e [0.93, 0.96, 0.15, 0.85]);\n$pl-\u003eclose;\n\nFor more examples, see the test suite in t/plplot.t.\n\nPREREQUISITES:\n\nperl 5.8 or higher\nPDL 2.3 or more recent\nPLplot 5.1.0 or later.  Last tested with version 5.9.7 SVN (4/29/2011).\n\n------------------------------------------------------------------------\nImportant:  plplot *must* be compiled --with-double so that all floating\n  point numbers used are doubles.  Install plplot similar to this:\n\n# ./configure --with-double\n# make\n# make install\n\nOn some systems (IRIX, for one) it may be necessary to compile plplot\nwithout fortran support:  --disable-f77.\n------------------------------------------------------------------------\n\nINSTALLATION:\n \nInstallation should be the normal:\n \nperl Makefile.PL\nmake\nmake test\n \n(as root)\nmake install\n \nBest of luck!\n \nDoug Hunt\ndhunt@ucar.edu\nSoftware Engineer III\nUCAR - GPS/MET\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdlporters%2Fpdl-graphics-plplot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpdlporters%2Fpdl-graphics-plplot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdlporters%2Fpdl-graphics-plplot/lists"}