{"id":13794673,"url":"https://github.com/densitydesign/raw","last_synced_at":"2025-05-12T21:31:59.777Z","repository":{"id":41550157,"uuid":"243494337","full_name":"densitydesign/raw","owner":"densitydesign","description":"The missing link between spreadsheets and data visualization","archived":false,"fork":true,"pushed_at":"2023-05-20T20:10:55.000Z","size":22023,"stargazers_count":333,"open_issues_count":1,"forks_count":51,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-11-18T09:33:07.391Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://rawgraphs.io/","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"rawgraphs/rawgraphs-app","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/densitydesign.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-27T10:39:08.000Z","updated_at":"2024-09-30T21:36:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/densitydesign/raw","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/densitydesign%2Fraw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/densitydesign%2Fraw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/densitydesign%2Fraw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/densitydesign%2Fraw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/densitydesign","download_url":"https://codeload.github.com/densitydesign/raw/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253825142,"owners_count":21970139,"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-08-03T23:00:45.726Z","updated_at":"2025-05-12T21:31:59.059Z","avatar_url":"https://github.com/densitydesign.png","language":null,"funding_links":[],"categories":["Framework or Library","Web前端"],"sub_categories":["Graphics or data visualization","Web服务器性能/压力测试工具/负载均衡器"],"readme":"![raw header](imgs/raw_header.jpg)\n\n## About\n\n**RAWGraphs** is an open web tool to create custom vector-based visualizations on top of the amazing [d3.js](https://github.com/mbostock/d3) library by [Mike Bostock](http://bost.ocks.org/mike/).\nIt has been developed by [DensityDesign Research Lab](http://www.densitydesign.org/) ([Politecnico di Milano](http://www.polimi.it/)) and [Calibro](http://calib.ro/), and sustained through a corporate stewardship by [ContactLab](http://contactlab.com/it/).\n\nPrimarily conceived as a tool for designers and vis geeks, RAWGraphs aims at providing a missing link  between spreadsheet applications (e.g. Microsoft Excel, Apple Numbers, Google Docs, OpenRefine, …) and vector graphics editors (e.g. Adobe Illustrator, Inkscape, …).\n\nRAWGraphs works with [tabular data](https://en.wikipedia.org/wiki/Table_(information)) (e.g. spreadhseets and comma-separated values) as well as with copied-and-pasted texts from other applications (e.g. Microsoft Excel, TextWrangler, TextEdit, …). Based on the [SVG](http://en.wikipedia.org/wiki/Svg) format, visualizations can be easily edited with vector graphics applications for further refinements, or directly embedded into web pages.\n\nKnowing the need of working with sensitive information, the data injected into RAWGraphs is processed only by the web browser: **no server-side operations or storages are performed** and no one will see, touch or copy your data!\n\nRAWGraphs is also highly customizable and extensible, accepting new custom layouts defined by users. For more information about how to add or edit layouts, see the [Developer Guide](https://github.com/rawgraphs/raw/wiki/Developer-Guide).\n\n- App page: [app.rawgraphs.io](http://app.rawgraphs.io)\n- Project official page: [rawgraphs.io](http://rawgraphs.io)\n- Documentation: [github.com/rawgraphs/raw/wiki](https://github.com/rawgraphs/raw/wiki)\n- Google group: [groups.google.com/forum/#!forum/densitydesign-raw](https://groups.google.com/forum/#!forum/densitydesign-raw)\n\n\n## Usage\nThe easiest way to use RAWGraphs is by accessing the most updated version on the **[official app page](http://app.rawgraphs.io)**. However, RAWGraphs can also run locally on your machine: see the installation instructions below to know how.\n\n## Installation\nIf you want to run your instance of RAWGraphs locally on your machine, be sure you have the following requirements installed.\n\n### Requirements\n\n- [git](http://git-scm.com/book/en/Getting-Started-Installing-Git)\n- [Bower](http://bower.io/#installing-bower)\n\n### Instructions\n\nClone RAWGraphs from the command line:\n\n``` sh\n$ git clone https://github.com/rawgraphs/raw.git\n```\n\nbrowse to RAWGraphs root folder:\n\n``` sh\n$ cd raw\n```\n\ninstall client-side dependencies:\n\n``` sh\n$ bower install\n```\n\nadd analytics script:\n\n``` sh\n$ cp js/analytics.sample.js js/analytics.js\n```\n\nopen the file ```js/analytics.js``` and add your analytics code (if any), otherwise leave the file as is.\n\nYou can now run RAWGraphs from your local web server. For example, you can run Python's built-in server:\n\n``` sh\n$ python -m SimpleHTTPServer 4000\n```\n\nor for Python 3+\n\n``` sh\n$ python -m http.server 4000\n```\n\nOnce this is running, go to [http://localhost:4000/](http://localhost:4000/).\n\nTroubles with the installation? Maybe a look at the [issues](https://github.com/rawgraphs/raw/issues) page can solve your problem, otherwise join the [Google group](https://groups.google.com/forum/#!forum/densitydesign-raw).\n\n\n## Documentation and Support\n\nDocumentation and FAQs about how to use RAWGraphs can be found on the [wiki](https://github.com/rawgraphs/raw/wiki/).\n\n## Charts\n\nInformation about the available charts can be found [here](https://github.com/rawgraphs/raw/wiki/Available-Charts). Adding new charts is very easy in RAWGraphs, see how [here](https://github.com/rawgraphs/raw/wiki/Adding-New-Charts)!\n\nIf you have any suggestion or request about new layouts to include, please let us know! If you have already created new charts and you would like to see them included into Raw, please send us a [pull request](https://github.com/rawgraphs/raw/pulls).\n\n## Libraries\n\n**RAWGraphs** has been developed using a lot of cool stuff found out there:\n\n[angular.js](https://github.com/angular/angular.js)\n\n[angular-bootstrap-colorpicker](https://github.com/buberdds/angular-bootstrap-colorpicker)\n\n[angular-ui](https://github.com/angular-ui)\n\n[bootstrap](https://github.com/twbs/bootstrap)\n\n[bootstrap-colorpicker](http://www.eyecon.ro/bootstrap-colorpicker/)\n\n[Bower](https://github.com/bower/bower)\n\n[canvas-toBlob.js](https://github.com/eligrey/canvas-toBlob.js)\n\n[CodeMirror](https://github.com/marijnh/codemirror)\n\n[d3.js](https://github.com/mbostock/d3)\n\n[d3-legend](https://github.com/susielu/d3-legend)\n\n[FileSaver.js](https://github.com/eligrey/FileSaver.js)\n\n[is.js](http://is.js.org/)\n\n[jQuery](https://github.com/jquery/jquery)\n\n[jQuery UI Touch Punch](https://github.com/furf/jquery-ui-touch-punch/)\n\n[NG file upload](https://github.com/danialfarid/ng-file-upload)\n\n[Sheet JS](https://github.com/SheetJS)\n\n[ZeroClipboard](https://github.com/zeroclipboard/zeroclipboard)\n\n## Core Team\n\n**RAWGraphs** is maintained by [DensityDesign Research Lab](http://www.densitydesign.org/) and [Calibro](http://calib.ro/).\n\nIf you want to know more about RAWGraphs, how it works and future developments, please visit the [official website](http://rawgraphs.io). For any specific request or comment we suggest you to use Github or the [Google group](https://groups.google.com/forum/#!forum/densitydesign-raw). If none of these worked for you, you can write us at \u003chello@rawgraphs.io\u003e.\n\n## Contributing\n\nWant to contribute to RAWGraphs's development? You are more than welcome! Start by forking the repository (the \"Fork\" button at the top-right corner of this page) and follow the instructions above to clone it and install dependencies. Then you can use Github's issues and pull requests to discuss and share your work.\nYou will need to sign a [Contributor License Agreement (CLA)](https://en.wikipedia.org/wiki/Contributor_License_Agreement) before making a submission. We adopted CLA to be sure that the project will remain open source. For more information, write us: \u003chello@rawgraphs.io\u003e.\n\n## Publications / Citing RAWGraphs\nIf you have found RAWGraphs useful in your research, or if you want to reference it in your work, please consider to cite the paper we presented at [CHItaly 2017](http://sites.unica.it/chitaly2017/).\n\nyou can read the full article in Green Open Access at the following link:\n\n![oa icon](http://dl.acm.org/images/oa.gif) [RAWGraphs: A Visualisation Platform to Create Open Outputs](http://rawgraphs.io/about/#cite)\n\nCite RAWGraphs:\n\n\u003e Mauri, M., Elli, T., Caviglia, G., Uboldi, G., \u0026 Azzi, M. (2017). RAWGraphs: A Visualisation Platform to Create Open Outputs. In *Proceedings of the 12th Biannual Conference on Italian SIGCHI Chapter* (p. 28:1–28:5). New York, NY, USA: ACM. https://doi.org/10.1145/3125571.3125585\n\nBibtex:\n```\n@inproceedings{Mauri:2017:RVP:3125571.3125585,\n author = {Mauri, Michele and Elli, Tommaso and Caviglia, Giorgio and Uboldi, Giorgio and Azzi, Matteo},\n title = {RAWGraphs: A Visualisation Platform to Create Open Outputs},\n booktitle = {Proceedings of the 12th Biannual Conference on Italian SIGCHI Chapter},\n series = {CHItaly '17},\n year = {2017},\n isbn = {978-1-4503-5237-6},\n location = {Cagliari, Italy},\n pages = {28:1--28:5},\n articleno = {28},\n numpages = {5},\n url = {http://doi.acm.org/10.1145/3125571.3125585},\n doi = {10.1145/3125571.3125585},\n acmid = {3125585},\n publisher = {ACM},\n address = {New York, NY, USA},\n keywords = {Visualization tools, data visualization, open output, visual interface},\n}\n```\n\n## Authors\n**RAWGraphs** has been originally developed by:\n\n* Giorgio Caviglia \u003cgiorgio.caviglia@gmail.com\u003e\n* Michele Mauri \u003cmikimauri@gmail.com\u003e\n* Giorgio Uboldi \u003cgiorgio@calib.ro\u003e\n* Matteo Azzi \u003cmatteo@calib.ro\u003e\n\n## License\n\nRAWGraphs is provided under the [Apache License 2.0](https://github.com/rawgraphs/raw/blob/master/LICENSE):\n\n\tCopyright (c), 2013-2019 DensityDesign Lab, Giorgio Caviglia, Michele Mauri, Giorgio Uboldi, Matteo Azzi\n\n\t\u003cinfo@densitydesign.org\u003e\n\t\u003cgiorgio.caviglia@gmail.com\u003e\n\t\u003cmikimauri@gmail.com\u003e\n\t\u003cgiorgio@calib.ro\u003e\n\t\u003cmatteo@calib.ro\u003e\n\n\tLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n\n\t\thttp://www.apache.org/licenses/LICENSE-2.0\n\n\tUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdensitydesign%2Fraw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdensitydesign%2Fraw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdensitydesign%2Fraw/lists"}