Developer Deskside | Creating Map Based Workflows with Workshop in Palantir Foundry

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ส.ค. 2024
  • In Palantir Foundry, developers can build operational workflows from data ingestion to interactive application in under an hour.
    In this video, we’ll start from ingesting public datasets, creating an Ontology, and building a workshop application, resulting in an interactive map based workflow.
    0:00 Introduction
    2:57 Project Creation
    3:39 Data Upload
    7:20 create data schema for Issues
    9:57 Data cleaning in Code Workbooks
    16:16 Cleaning data in Pipeline Builder
    20:09 Object Type Creation
    27:21 Link Type Creation
    28:38 Workshop creation
    42:43 Action Creation
    50:40 Assigning actions to buttons
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 14

  • @xyzphd122
    @xyzphd122 ปีที่แล้ว

    any chance we can get the data to play with? thx

    • @user-pe4qb3mf3h
      @user-pe4qb3mf3h 5 หลายเดือนก่อน

      you can find them in google

  • @madfiskmad5904
    @madfiskmad5904 ปีที่แล้ว

    In Ontology form:
    Assuming the form have two date fields and "X_to" and "B_from". How to automatically set "X_to" to be five years based on the date in B_from

    • @christophergreene7394
      @christophergreene7394 ปีที่แล้ว

      if you can not do it through a code repo. I believe you would have to do it through a TypeScript Function

    • @madfiskmad5904
      @madfiskmad5904 ปีที่แล้ว

      @@christophergreene7394 thx. I belive I can do it in code repo, but will be great if there is a funtion in Ontology to support it. I'am new to TypeScript, can you point me the direction on how I can start? Thx in advance

    • @christophergreene7394
      @christophergreene7394 ปีที่แล้ว

      @@madfiskmad5904 Give me a day or 2 to work it out and hopefully I can get you a script to run for it. if you do not hear back by April 20th around 12CST please ping me again. Thank you

    • @madfiskmad5904
      @madfiskmad5904 ปีที่แล้ว

      @@christophergreene7394 Great thanks.

    • @christophergreene7394
      @christophergreene7394 ปีที่แล้ว

      @@madfiskmad5904 Hopefully this will help you.
      @Function()
      public addFollowUpDate(followup: Timestamp): Timestamp {
      return followup.plusYears(5);
      }