项目作者: pattrn-project

项目描述 :
Data-driven, participatory fact-mapping
高级语言: JavaScript
项目地址: git://github.com/pattrn-project/pattrn.git
创建时间: 2015-11-30T15:06:04Z
项目社区:https://github.com/pattrn-project/pattrn

开源协议:GNU Affero General Public License v3.0

下载


Pattrn

Pattrn is a web platform for data-driven,
participatory fact mapping.
Its focus is on rapid deployment in the following contexts:

  • conflict monitoring
  • investigative journalism
  • human rights
  • citizen science
  • research and analysis

Quick start

For researchers and data scientists

Please see the Pattrn user manual: https://docs.pattrn.co/getting-started/index.html

For developers

Pattrn can be built via Gulp from its source tree; this allows to easily and
automatically package together the Pattrn app and the data you wish to visualise,
if this is packaged as a
Pattrn data package.

In order to build Pattrn from source, you will need Node.js (the current
Node.js LTS release is recommended as
Pattrn is mainly developed and tested with this version) and
Yarn.

In order to build Pattrn:

  • Clone this repository or download a Pattrn v2.0 release as zip or tar.gz file

  • Install all the required Node packages:

yarn install

  • Modify the source-data-packages.json file (which is configured to use a
    sample dataset) to instruct the Pattrn build script to download and use
    the Pattrn data package configured; the content of this file should be as
    in the following example (replace pattrn-data-where-the-drones-strike
    with the name of your Pattrn data package, if using a different one):
  1. {
  2. "source_data_packages": [
  3. {
  4. "package": "pattrn-data-where-the-drones-strike",
  5. "source": "https://gitlab.com/pattrn-data/pattrn-data-where-the-drones-strike.git#pattrn-data"
  6. }
  7. ]
  8. }
  • Build the Pattrn application: this will download and use the data package
    configured in the previous step, and build all the assets needed for the
    live Pattrn instance:

yarn run gulp build

If you run into a build error related to the node-sass package, running
yarn install --force && yarn run gulp build should fix the issue (see
https://github.com/sass/node-sass/issues/1579#issuecomment-227663782 for
details).

  • Start a local web server to test the Pattrn app:

yarn start

This command will display some messages while the web server is started,
such as:

  1. > pattrn@2.0.0-beta1 start /root/pattrn
  2. > http-server dist/
  3. Starting up http-server, serving dist/
  4. Available on:
  5. http:127.0.0.1:8080
  6. http:10.2.200.149:8080
  7. Hit CTRL-C to stop the server

You can now open the Pattrn app in a web browser; if no other service is using port
8080 on the computer, the address to use will be http://localhost:8080.
If the messages above include a number other than 8080 (e.g. 8081), change
the address accordingly (e.g. http://localhost:8081).

Authors and contributors

The PATTRN project was initiated thanks to a Proof-of-Concept Grant from the
European Research Council, awarded to
Prof. Eyal Weizman, in the framework of
Forensic Architecture (2014-2015).

Pattrn v2.0

Pattrn v1.0

All new contributors to the PATTRN project will be duly credited.

License

Pattrn is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Pattrn is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Pattrn. If not, see http://www.gnu.org/licenses.