DataCurator
1.0.0
複雑なプロジェクトの共同リアルタイム計画アプリケーション。以下の機能のサブセットを統合します。
datacurator.orgで詳細を確認したり、マップのサンプルをご覧ください。
データは、私たちが操作するSupabaseアカウントに保存されます。将来的には、独自のデータや同等のもので自分のデータをより簡単にホストできるようにすることをお勧めします。
$ git clone [email protected]:centerofci/DataCurator.git
cd app/frontend
pnpm install
cd app/frontend
npm start
次に、http:// localhost:8080/app#wcomponents/&view = nokingeにアクセスしてください
現在、GithubでホストされているDatacurator
# Clone into adjacent directory
git clone [email protected]:AJamesPhillips/data-curator-build.git
現在、2023-09-05の時点で壊れています
./build.sh
cd ../data-curator-build
git commit
git push
知識ビューに移動し、開発者コンソールを開き、次のスクリプトを使用して、接続されたコンポーネントのマトリックスを取得できます。
current_visible_graph = window . console_api . get_current_visible_graph ( )
connection_matrix = current_visible_graph . get_connection_matrix ( )
console . log ( window . console_api . matrix_to_csv ( connection_matrix ) )IDの代わりにタイトルごとにコンポーネントを取得する場合は、次のことができます。
connection_matrix_using_titles = window . console_api . matrix_component_ids_to_titles ( window . console_api . get_wcomponents_by_id ( ) , connection_matrix )
console . log ( window . console_api . matrix_to_csv ( connection_matrix_using_titles ) )レーベルの複合材と使用できる順序でコンポーネントを取得したい場合は、次のことです。
component_id_to_label_names_map = current_visible_graph . get_component_id_to_label_names_map ( )
connection_matrix_using_label_names = window . console_api . matrix_component_ids_to_labels ( component_id_to_label_names_map , connection_matrix )
console . log ( window . console_api . matrix_to_csv ( connection_matrix_using_label_names ) )