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 = knowledge
Datacurator استضافت حاليًا على Github
# 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 ) )إذا كنت ترغب في الحصول على المكونات حسب العنوان بدلاً من المعرف ، يمكنك استخدام:
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 ) )