Posts

Parcel Boundary Implementation for Android Applications

Image
Parcel Boundary Implementation for Android Applications Parcel Boundary Implementation for Android Applications Parcel boundaries are the precise GIS (Geographic Information System) coordinates of a piece of property. Overlaid on top of a satellite or aerial image, they show a mapped image of the exact boundaries of a lot. They allow a potential real estate buyer to "walk" the boundaries of a piece of property from an online map, seeing its proximity to streets and highways, distance from neighboring homes, and access to green space, streams and wooded areas. Below diagram represents how parcel boundaries are plotted on the map. Parcel boundaries do more than just provide a "bird’s eye view" of a piece of property. Once the GIS coordinates of a property are loaded into a map-based platform, they can be combined with additional data sets like school districts, neighborhood demographics and other location information. Governments use par...

Clustering Environment with Tomcat

Image
Configuring Clustering Environment in Tomcat7 What is Clustering : Connecting two or more computers together in such ways that they behave like a single computer. Clustering is used for parallel processing, load balancing and fault tolerance. Clustering is a popular strategy for implementing parallel processing applications because it enables companies to leverage the investment already made in PCs and workstations. In addition, it's relatively easy to add new CPUs simply by adding a new PC to the network. There are two types of clustering is possible 1.        Vertical Clustering 2.        Horizontal Clustering Vertical Clustering: installing multiple Java application servers on a single physical machine Horizontal Clustering: Horizontal clustering involves running multiple Java application servers that are run on two or more separate physical ma...