Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

Search
    English

      point()

      Function point() assembles two numbers representing latitude and longitude into geographical coordinates of point type.

      Arguments:

      • object of latitude & longitude <object>

      Returns:

      • geographical coordinates <point>

      Comman Usage

      Example: Convert Beijing (39.9° N 116.3° E) to geographical coordinates

      return point({latitude:39.9, longitude:116.3})
      

      POINT(39.900000 116.300000)
      

      Example: Convert each row of an alias into geographical coordinates

      uncollect [{latitude:39.9, longitude:116.3},{latitude:31.2, longitude:121.5}] as a
      return point(a)
      

      POINT(39.900000 116.300000)
      POINT(31.200000 121.500000)
      

      Analysis: The input parameter of function point() is an object, not the latitude and longitude in decimal form.

      Sample graph: (to be used for the following examples)

      Run below UQLs one by one in an empty graphset to create graph data:
      create().node_property(@default, "name").node_property(@default, "lat_long", point)
      insert().into(@default).nodes([{_id:"L001", _uuid:1, name:"New York", lat_long:point({latitude:40.7, longitude:-74.0})}, {_id:"L002", _uuid:2, name:"Paris", lat_long:point({latitude:48.5, longitude:2.2})}, {_id:"L003", _uuid:3, name:"Sydney", lat_long:point({latitude:-33.9, longitude:150.9})}, {_id:"L004", _uuid:4, name:"Beijing", lat_long:point({latitude:39.9, longitude:116.3})}])
      

      Example: Insert node Shanghai (31.2° N 121.5° E) into @location

      insert().into(@default).nodes({name: "Shanghai", lat_long: point({latitude: 31.2, longitude: 121.5}), _id: "L005", _uuid: 5}) as n
      return n{*}
      

      |  _id  | _uuid |    name    |           lat_long          |
      |-------|-------|------------|-----------------------------|
      | L005  |   5   |  Shanghai  | POINT(31.200000 121.500000) |
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写