Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. GeoLocation - To Store GeoLocation

    Code Block
    languagexml
    titleGeoLocation Type
    linenumberstrue
    <Def Name="GeoLocation">
      <Number Name="latitude"/>
      <Number Name="longitude"/>
    </Def>	
  2. BoundingBox - To Store Geo Boundary of Zone, etc

    Code Block
    languagexml
    titleBoundingBox Type
    linenumberstrue
    <Def Name="BoundingBox">
      <GeoLocation Name="Vertex1"/>
      <GeoLocation Name="Vertex2"/>
      <GeoLocation Name="Vertex3"/>
      <GeoLocation Name="Vertex4"/>
    </Def>
  3. EnvInfo - Capture all the important environment related information like temperature, humidity, light, pressuue

    Code Block
    languagexml
    titleBoundingBox EnvInfo Type
    linenumberstrue
    <Def Name="EnvInfo">
          <Number Name="Temperature"/>
          <Number Name="Humidity"/>
          <Number Name="Light"/>
          <Number Name="Pressure"/>
          <Number Name="SoilMoisture"/>
          <Number Name="Wind"/>
          <String Name="LastUpdatedByProvider"/>
    </Def>

...