Skip to main content

National Symposium on Remote Sensing and Geoinformatics in Infrastructure Development and Management

            With the focus of the nation shifting towards infrastructure development, through national programs like JNRUM, IRDP, and the participation of private players in infrastructure development, it is projected that annual investments to the tune of Rs. 1,000 Billion will be made in the country across the next 5-7 years. The efficacy of Geoinformatics and Remote Sensing in Infrastructure planning, development and management is well recognized and promoted by the Department of Space and other governmental agencies. In this context, the National Symposium and ISRS Annual Convention is organized on the topic "GIS AND REMOTE SENSING IN INFRASTRUCTURE DEVELOPMENT" from the 29th of November, 2010 to 4th December, 2010.

           The Symposium will expose the frontline developments in remote sensing and Geoinformatics to the infrastructural developers, enabling the latter to appreciate the cost-saving and accuracy enabled by the technology. It is expected that the Symposium will provide a forum for a direct interaction between the space scientists and Geoinformatics technologists on one side and infrastructure managers and administrators on the other.

           The Indian Society of Remote Sensing, Pune Chapter is hosting the ISRS Annual Convention for the second time after 1996.The Symposium venue is located at the hill station of Lonavala, known as the "Jewel of the Sahyadris" is famed for the scenic landscape, milky waterfalls, lush greenery and pleasant cool winds on the slopes of Sahyadri mountains, straddling the Mumbai-Pune highway; about 50km west of Pune. Various educational institutions, research and scientific organizations from government as well as private sector, namely, Sinhgad Educational Institutes, University of Pune - STP, C-DAC, CWPRS, NWA, Symbiosis institute of Geomatics and Kalyani group of companies are combinedly hosting the program.

           The theme of this symposium is the role of Geoinformatics and Remote sensing in Infrastructure development. The role of Geospatial technology in disaster management, natural resource management, environment and forest, archeology, etc. will also be discussed!

            For more details about the symposium please visit the ISRS Pune Chapter's website. It is really such a great thing that Pune is hosting such a huge Geoinformatics event!

Comments

Recommended for You

The Bicycling Layer...

    Recreational cyclists and bike commuters alike can plot cycle-friendly routes, find trails, and avoid snarling traffic with Google Map's Bicycle layer. Map's bike-friendly, green-toned map layer is very eye-pleasing. The Google Maps API allows you to add bicycle information to your maps using the BicyclingLayer object.     The BicyclingLayer renders a layer of bike paths, suggested bike routes and other overlays specific to bicycling usage on top of the given map. Additionally, the layer alters the style of the base map itself to emphasize streets supporting bicycle routes and de-emphasize streets inappropriate for bicycles.     Let us have a look at the following example. The code has a map which is centered at Pune, India. There are very few cycle tracks in Pune and so you will see just a few dark green lines on the map. But if you would change the latitude-longitude values in the code and center the map at USA, then you will see a...

Google Map's Real-Time Traffic Layer...

    You can now check the traffic condition on the road before you leave for work, or a party or to your friend's place. Google's Traffic layer shows the traffic conditions in your area - LIVE!!! Live traffic data is available in major cities in the United States, France, Britain, Canada and Australia, with new cities and countries frequently added. The Google Maps API allows you to add real-time traffic information (where supported) to your maps using the TrafficLayer object. Traffic information is provided for the time at which the request is made. Consult this spreadsheet to determine traffic coverage support.     Let us now have a look at the Google Maps API - Trafiic Layer example. Copy the following code in a simple text file and save it as html. Click on this html file and it will open in your default browser. You will then see the traffic conditions in your area - LIVE...     The output of the above code looks as seen in the r...

Form info window

         Today we will look at a Google Maps API v3 example to add a form in the information bubble! This is usually required when we wish to accept some data/information from the user! This data can be saved to a server in the form of an XML file or a database! The information can then be retrieved back at a later stage, when necessary!          In this example we will only look at form in the information bubble! The connectivity part with the server will be discussed in another post! So, today's code snippet is as seen below! <html> <head> <title> Google Maps API v3 - Adding marker and info window on Click and creating a form in the infowindow with the lat-lng information in it. </title> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> var map;    //When using ev...

On-click polyline

    Following up on the last example where we saw how to add a hard-coded polyline to our map, today we will see a more user interactive polyline example. In this example we will discuss on-click polyline! What you need to do is, copy the following code into a txt file and save it with dot html (.html) extension and then view it in your browser. So here goes the code!     The output of the above code will be a map centred at Mysore. Click on the map for the first time and a marker will appear there. On the next click, another marker will appear with a polyline between the 2 markers. This will continue for all further clicks and here you have your "On-click polyline" running! The map looks something like seen in the image below!     The next step to this code will be creating a polygon. We will see examples to create polygons on the map at a later stage! If you have any queries or suggestion, please drop a comment here or feel free to ...

Material UI, Google Polymer & Web Components

    Google introduced Material UI during the Google I/O a few days back. Since then the web is all abuzz with articles about material UI and what Polymer is and how these 2 fit together. In this article today, I will try and helps us all to get a better understanding of these new concepts.     So, let's start with Material UI first. Google has for long been trying to bridge the gap between the Web and the Android worlds with a unified user interface and Google's Material UI is a big step towards this. The new design philosophy is about dynamically adjusting the elements according to screen size, add more white space between elements, provide a lot of user feedback using animations, make use of bold UI colors and be flat and 3D about the design at the same time. Now that sounds really cool, isn't it? Well, actually it is and you will actually appreciate and enjoy it all the more when you watch the following video from this year's Google I/O.   ...