Skip to content

JSON format

Hyemi Jeong edited this page May 21, 2018 · 17 revisions
CellSpace

{
   “type” : ”CellSpace”,
   “id” : “c1”,
   “parentId” : “psf1”,
   “docId” : “doc1”,
   “geometry” : {
      “type” : “Solid|Surface”,
      “coordinates” : [] | “wkt”,
      “properties” : {
         “id” : “cg1”,
         “extrude” : “true|false”,
         “height” : “1”,
      }
   },
   “properties” : {
      “name” : “cell1”,
      “description”: “blah blah blah”,
      “partialboundedBy” : [“cb1”, “cb2”,”cb3”]
   }
}

CellSpaceBoundary
{ 
    “type” : “CellSpaceBoundary”,
    “id” : “csb1”,
    “parentId” : “psf1”,
    “docId” : “doc1”,
    “geometry” : {
        “type” : “Surface|LineString”,
         “coordinates” : [],
         “properties” : {
         “id” : “cgb1”,
         “extrude” : “true|false”,
         “height” : “value1” //the height of the door
       }
    },
    “properties” : {
        “name” : “CellBoundary1”,
        “description” : “cellspaceboundary of cell1”
        “duality” : “T1”,       
    }
}
State
{
   “type”:”State”,
   “id” : “s1”,
   “parentId” : “n1”,
   “docId” : “doc1”,
   “geometry” : {
      “type” : “Point”,
      “coordinates” : [],
      “properties” : {
         “id” : “sg1”
      }
   },
   “properties” : {
      “name” : “s1”,
      “description” : “state”,
      “duality” : “c1”,
      “connected” : [“t1”, “t2”]
   }
}

Clone this wiki locally