Featured Post

Python map() and lambda() Use Cases and Examples

Image
 In Python, map() and lambda functions are often used together for functional programming. Here are some examples to illustrate how they work. Python map and lambda top use cases 1. Using map() with lambda The map() function applies a given function to all items in an iterable (like a list) and returns a map object (which can be converted to a list). Example: Doubling Numbers numbers = [ 1 , 2 , 3 , 4 , 5 ] doubled = list ( map ( lambda x: x * 2 , numbers)) print (doubled) # Output: [2, 4, 6, 8, 10] 2. Using map() to Convert Data Types Example: Converting Strings to Integers string_numbers = [ "1" , "2" , "3" , "4" , "5" ] integers = list ( map ( lambda x: int (x), string_numbers)) print (integers) # Output: [1, 2, 3, 4, 5] 3. Using map() with Multiple Iterables You can also use map() with more than one iterable. The lambda function can take multiple arguments. Example: Adding Two Lists Element-wise list1 = [ 1 , 2 , 3 ]

IoT Architecture for very new developers: part 1 of 6

What is the architecture of internet of things-The three-layer DCM classification is more about the IoT value chain than its system architecture at run time.

I hope you enjoyed with my previous post-5 on IOT.

For system architecture, some have divided the IoT system into as many as nine layers, from bottom to top:
  • devices
  • connectivity
  • data collection
  • communication
  • device management.
  • data rules
  • administration
  • applications
  • integration
While large companies such as IBM, Oracle, Microsoft, and others have comprehensive solutions, products, and services that cover almost the entire value chain.


Recommendation for you:  Part-2 | Part-1

Broadly IOT architecture can be classified as three layers:


  • Device Layer
  • Communication Layer
  • Mangement Layer
Device Layer: Devices or assets can be categorized as two groups: those that have inherent intelligence such as electric meters or heating, ventilation, and air-conditioning (HVAC) controllers, and those that are inert and must be enabled to become smart devices (e.g., RFID tagged) such as furniture or animals that can be electronically tracked and monitored—things that "talk."

Communication Layer: The communications layer is the foundational infrastructure of IoT. There are two major communication technologies: wireless and wired (or wireline). Each category has broadband and narrowband, packet and circuit switched, as well as short-range and long-range communications. The penetration and traffic of U.S. wireless data subscribers in 2013 will reach the same level of broadband wired household usage in 2008.

The mobile Internet is catching up quickly, thanks to the development of the Internet of Things and the flexibility of wireless communications.

Management Layer: This is the are where mining of data carried out to get business intelligence ideas
  • In the current customer-driven, technology-based environment, it is no longer enough to offer a service or product and expect it to satisfy your customers. Even if you have the best customer service in the industry, you have to be able to extend out your offerings to meet current demand to keep the customers satisfied. 
  • The Internet of Things brings enormous possibilities and potentials for creating new business value and generating new revenue ecosystems with data processing and managing rules that combine intelligence from remote assets unreachable before with your intelligent enterprise systems.
  • Examples: Disruptive applications beyond current imagination will appear. Smart grid, connected car, fleet control, mobile surveillance, and remote monitoring are listed as the top five disruptive applications out of a total of 65 identified, according to reports from the Boston Consulting Group.
All of the top five are IoT applications. For example, with the wide use of telematics, things like total vehicle life cycle management, refined used car price estimate, Pay as You Drive insurance policy, neighbor-to-neighbor car-sharing business such as those provided by startup RelayRides become possible, and the list goes on and on.

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

SQL Query: 3 Methods for Calculating Cumulative SUM

Python placeholder '_' Perfect Way to Use it