Thursday, September 18, 2014

How to display the MesoWest weather stations in Leaflet.js?

1 Comment
Snippet to display MesoWest weather stations in Leaflet.
 //Hold markers group  
 var mesoMarkersGroup=new L.LayerGroup();   
 //Get weather information from Mesowest for the state VA  
 $.getJSON('http://api.mesowest.net/stations?callback=?',  
      {  
           state:'va',                   
           latestobs:1,  
           token:'demoToken'  
      },   
      function (data)   
      {  //Loop through all the weather stations  
        for(var i=0;i<data.STATION.length;i++)  
           {  
            try{  
                 var stn = data.STATION[i];  
                 var dat = stn.OBSERVATIONS;  
                 var stnInfo =stn.NAME.toUpperCase();  
                 var elev=parseInt(stn.ELEVATION);            
                 stnInfo = "<b>Air Temp:&nbsp;</b>"+Math.round(dat.air_temp[1])+"&deg;F"+ "</br><b>Wind Speed:&nbsp;</b>"+Math.round(dat.wind_speed[1]* 1.150)+"MPH"+"</br>  
                 +<b>Wind Direction:&nbsp;</b>"+getCardinalDirection(Math.round(dat.wind_direction[1]))+"</br><b>Relative Humidity:&nbsp;</b>"+dat.relative_humidity[1]+"%"+"</br>  
                 +<b>Elevation:&nbsp;</b>"+elev+"&prime;";       
                 //Add stations into Leaflet markers group  
                 L.marker(L.latLng(stn.LATITUDE,stn.LONGITUDE),{title:stn.NAME.toUpperCase()}).bindPopup(stnInfo).addTo(mesoMarkersGroup);  
            }    
            catch(e)  
            {  
                alert("Error! "+ e);  
            }  
           }   
  })       
 .done(function()  
 {  
 })  
 .fail(function()  
 {       
      alert("Could not access the MesoWest!");  
 });  
 //Add markers group to the Map  
 map.addLayer(mesoMarkersGroup);  

Where are my streets Chrome? Google Maps bug on Chrome or vice-versa

Be The First To Comment
I was checking the route for nearest police station from my office around 3 PM MT using the Chrome. The  Google Map's street looks so funny and floppy. All the street lines and highways lines were wiped out. The interstate has some brown points, if you zoom in them the point looks like half circle. Which has the bug Google Maps or Chrome? Click on images for bigger picture !

(Missing roads)

                                                                 (Missing roads on zoom)

                                                                         (More zoom in...)
(Looks good in  the Firefox though)

Wednesday, September 17, 2014

The Manager's Guide to PostGIS - Paul Ramsey at FOOSS4G 2014 PDX

Be The First To Comment
Interesting talk by Paul Ramsey about the decision process to adopt PostGIS vs other spatial databases at FOOSS4G 2014 Portland, OR. Ramsey, "what do managers need to know before they can get comfortable with the idea of making the move."

Sunday, August 31, 2014

National Geodetic Survey plans to release future Geodetic Datums in 2022

Be The First To Comment
National Geodetic Survey (NGS) developed videos to give you a better understanding of NGS' plans to release new datums in 2022. If you use mapping products or other geo-spatial tools, these videos should also help you find out how you can prepare for the new datums. . It’s a number of years off - but the links explain the changes and provide some initial knowledge that may help you prepare for their advent…

This series of short videos, produced in collaboration between NOAA's National Geodetic Survey and The COMET Program, a part of UCAR's Community Programs, provides an introduction to geodetic datums for anyone who uses mapping products or other geo-spatial tools.

 In the first video, "What are Geodetic Datums?" (4:36), explains the basic concepts behind geodetic datums, where they are used, and why it is important to know about and use the correct datums.


Friday, August 29, 2014

Leaflet TypeError: t is null

2 Comments
There are may be several reasons for TypeError:t is null, but I solved my problem by changing-
 L.marker(LATITUDE,LONGITUDE).bindPopup("Info").addTo(map);  
 to  
 L.marker(L.latLng(LATITUDE,LONGITUDE)).bindPopup("Info").addTo(map);  

Tuesday, August 26, 2014

Job Title: GIS Parcel Maintenance & Election Systems Tech

Be The First To Comment
Job Summary:
Incumbent provides general and technical support services as necessary for maintenance and support of the Scott County Geographic Information Systems (GIS). Primary responsibilities include the following for GIS: updating digital cadastral database, editing existing parcels, mapping new subdivisions and surveys, providing map production and creation of reports, maintaining spatial datasets and databases. For election systems: maintaining electronic poll books; training election officials on use of electronic poll books; preparing various items of election data for production of ballots and programming of election tabulators and voter assistance terminals.

Wednesday, August 13, 2014

Jquery Multiple Range Slider With Floating Points

Be The First To Comment
I was working on a GIS project, which required four range sliders with floating points to set LCLU change threshold. I finally find out a nice jQuery based multiple range slider at http://jsfiddle.net/q5WEe/1/   The compiled fiddle as a web page source is shown in the Part 1.

Then, my goal was to put floating points on the slider bar value display, but the native jQuery slider bar doesn't support the floating point. jQuery always roundup the floating values to the nearest integer. To display the floating point (for example,0.5 break), I multiplied the max  and values with two and divided the display value with two (Part 2) and then I got jQuery slider bar with floating value as below.





Thursday, April 10, 2014

New Version of the National Land Cover Database (NLCD 2011) Release :Webinar Announcement

Be The First To Comment
The latest version of the National Land Cover Database (NLCD) for the conterminous United States will be publicly released on April 4, 2014. NLCD 2011 is the most up-to-date and extensive iteration of the National Land Cover Database, the definitive Landsat-based, 30-meter resolution land cover database for the Nation. NLCD 2011 products are completely integrated with those of previous versions (2001, 2006), providing a 10-year record of change for the Nation. Products include 16 classes of land cover, the percent of imperviousness in urban areas, and the percent of tree canopy cover. NLCD is constructed by the 10-member federal interagency Multi-Resolution Land Characteristics (MRLC) Consortium. This seminar will highlight the new features of NLCD 2011 and the related applications.

Friday, February 28, 2014

Convert TRRM Real Time Binary File into ESRI ASCII

Be The First To Comment
Seven simple steps for converting TRMM binary to ASCII grid using MATLAB

Step1:
 %Open TRMM realtime binary file

trmmFile = fopen('E:\TrmmBinary Processing\3B42RT.2012.03.27.09z.bin', 'rb');  

Step2:
%Move file pointer to the begining of  file

frewind(trmmFile);

Step3:
%Read TRMM value from the binary file having 1140 rows and 480 columns

precipitation = fread(trmmFile, [1440,480], 'float32','b');

Step4:
%Shift precipitation by 90 degree to relate data with equator

precipitation = rot90(precipitation);

 Step5:
%Assign ESRI ASCII GRID HEADER
%After rotaion by 90 degree ncols changed into 1440 from 480 and nrows
%changed into 480 from 1440

Tuesday, February 11, 2014

We will miss the "father of GIS"

Be The First To Comment
Dr. Roger Tomlinson has passed away. Tomlinson is generally recognized as the "father of GIS.” He is the visionary geographer who conceived and developed the first GIS for use by the Canada Land Inventory in the early 1960s.  This and continuing contributions led the Canadian government to give him its highest civilian award, the Order of Canada, in 2001.  Text for that award reads, “he pioneered its uses worldwide to collect, manage, and manipulate geographical data, changing the face of geography as a discipline.”

Tomlinson tells the story of how this came to be.  In the early 1960s he was working as a photo interpreter for Spartan Air Services in Canada.  They had a contract to identify the best location for a tree plantation in Kenya.  They turned to their young geographer Tomlinson and asked him to develop a methodology.  He tried various manual methods for overlaying various environmental, cultural, and economic variables, but all were too costly.  He turned to computers and found the solution.  Subsequently he sold this approach to the Canada Land Inventory that had the responsibility of using data to assist the government in its land use planning activities.  His GIS approach reduced the task from three years and eight million Canadian dollars to several weeks and two million dollars.
 
He went on to serve the community in many ways.  He chaired the International Geographical Union’s GIS Commission for 12 years, where he pioneered the concepts of worldwide geographical data availability. He is a past president of the Canadian Association of Geographers a recipient of its rare Canadian Award for Service to the Profession.
 
Other awards followed including the James R. Anderson Medal of Honor for Applied Geography (1995) and the Robert T. Aangeenbrug Distinguished Career Award (2005) from the American Association of Geographers.  He was the first recipient of the Aangeenbrug award and also the first recipient of ESRI’s Lifetime Achievement Award (1997). National Geographic gave him its rare Alexander Graham Bell Award for exceptional contributions to geographic research (2010). He is an Honorary Fellow of the Royal Geographical Society and the recipient of multiple honorary doctorates – in addition to his own PhD from University College London.  
 

© 2011 GIS and Remote Sensing Tools, Tips and more .. ToS | Privacy Policy | Sitemap

About Me