Magarpatta

Magarpatta (Marathi: मगरपट्टा lit. Land of Magar family) is a 450 acre, privately owned gated community in the Hadapsar area of Pune, India. It has a commercial area, residential area, hospital with several specialisations, shopping malls, restaurants, a gym, Aditi Garden (a 25-acre park) and schools. 30% of the area is made up of green space. There is a commercial complex named "Destination Centre" located herein. Construction began in 2001 and continues to develop itself with newer housing societies.

Magarpatta
gated community
Magarpatta CyberCity towers as seen from Aditi Garden.
Coordinates: 18.515729°N 73.927195°E / 18.515729; 73.927195
CountryIndia
StateMaharashtra
CityPune
WebsiteOfficial Website
Satish Magar
Magarpatta residential zone

Management

Magarpatta was originally a farmland in Hadapsar, owned by the Magar family. They live in Hadapsar. Satish Magar is the chairman & managing director of the township.[1]

Companies

CyberCity
TowerCompanies
1Avaya, Sybase, WNS Global Services, EXL Service, KET Infotech Pvt. Ltd, Yash Technologies
2Amdocs
3The Bank of New York Mellon, Avaya, Capgemini, Salesforce Training Academy
4Mphasis, Varian Medical Systems
5Accenture, SAS, Deutsche Bank, Reflexis Systems India Pvt Ltd, Cerillion
6Amdocs, The Bank of New York Mellon, Ocwen, Principal
7Amdocs, Dresser-Rand Group, Hitachi Consulting, HCL Technologies, MarketsandMarkets, Compucom, UPS solutions
8WNS Global Services, Capgemini, SpringerNature, Xento Systems, The Bank of New York Mellon, Systems Plus
9Teradata, Tata Elxsi, SpringerNature, Sutherland, Xento Systems,[2] EXL Service, The Bank of New York Mellon
10Red Hat, Capita, Preferred Engineering Pvt Ltd
11John Deere, Dar Al-Handasah, Avaya, Varian Medical Systems
12Amdocs, Appdirect India, Teradata, Sybase, EXL Service, Bentley Systems

16 principle

Pentagon
Tower Companies
3 Arnekt Solutions Pvt. Ltd.
3 Datafortune Software Solutions Pvt. Ltd.

Residential clusters

Magarpatta has various residential clusters for different needs and income groups. Names of these clusters are based on different flower species, and they are listed below in order from oldest to newest.

Apartment clusters
S.No.Residential Apartment Cluster
1Daffodils - 2 and 3 BHK society with 8 buildings, 4 with 6 floors and 4 with 11 floors.
2Grevillea - 2 and 3 BHK society with 14 buildings, 8 with 6 floors, 4 with 7 floors, and 2 with 11 floors.
3Heliconia - 1 BHK society with 24 buildings, 6 with 5 floors and 18 with 6 floors.
4Cosmos - 2 and 3 BHK society with 24 buildings, 13 with 7 floors, 10 with 9 floors, and 1 with 11 floors.
5Iris - 2 BHK society with 20 buildings, 12 with 9 floors and 8 with 11 floors.
6Jasminium - 2 and 3 BHK society with 31 buildings, 17 with 9 floors and 14 with 11 floors.
7Roystonea - 2 and 3 BHK society with 14 buildings, 8 with 9 floors and 6 with 11 floors.
8Laburnum Park - 3 and 4 BHK society with 16 buildings of 11 floors each.
9Sylvania - 2 and 3 BHK society with 8 buildings, 4 with 9 floors and 4 with 11 floors.
10Trillium - 2 and 3 BHK society with 14 buildings, 7 with 9 floors and 7 with 11 floors.
11Zinnia - 1 BHK society with 13 buildings of 5 floors each.
12Annexe - 1 and 2 BHK society with 7 buildings of 11 floors each.
Villa Clusters
S.No.Residential Villa Cluster
1Erica Row Houses
2Acacia Gardens Bungalows
3Mulberry Gardens Bungalows
4Zinnia Row Houses

Awards

  • Magarpatta won accolades at the Sydney World Congress of Metropolis in 2008. The Maharashtra Economic Development Council lists it among the Top 10 Success Stories of the State.[3]
  • Magarpatta Township won the Best Residential Property in India at the CNBC Awaaz-Crisil-Credai Real Estate Awards, 2009.[4]

Film

  • The climax scenes of the film Shivaji the Boss (a 2007 Indian Tamil masala film) was shot at the Magarpatta city SEZ towers.[5]
  • Mirchi (a 2013 Telugu action drama) was also shot in Magarpatta city.[6]
  • Andhadhun (a 2018 Hindi dark comedy thriller) was also shot in Magarpatta city.[7]

Tons of commercial advertisement have been shot in Magarpatta City. It has also been a host to a lot of movie stars.

Commercial

  • Tata Tigor 2018 commercial.[8]
gollark: Ah...
gollark: It should be okay with regexes or something non-turing-complete.
gollark: Hold on, I can probably make a much nicer one.
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```

See also

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.