6 # Is this node within -90 >= latitude >= 90 and -180 >= longitude >= 180
9 return false if self.lat < -90 or self.lat > 90
10 return false if self.lon < -180 or self.lon > 180
14 def self.find_by_area(minlat, minlon, maxlat, maxlon, options)
15 self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do
16 return self.find(:all, options)
21 self.tile = QuadTile.tile_for_point(lat, lon)
25 self.latitude = (l * 10000000).round
29 self.longitude = (l * 10000000).round
32 # Return WGS84 latitude
34 return self.latitude.to_f / 10000000
37 # Return WGS84 longitude
39 return self.longitude.to_f / 10000000
42 # Potlatch projections
43 def lon_potlatch(baselong,masterscale)
44 (self.lon-baselong)*masterscale
47 def lat_potlatch(basey,masterscale)
48 -(lat2y(self.lat)-basey)*masterscale
54 180/Math::PI * Math.log(Math.tan(Math::PI/4+a*(Math::PI/180)/2))