Home
last modified time | relevance | path

Searched refs:llbbox (Results 1 – 6 of 6) sorted by relevance

/dports/misc/py-kartograph/kartograph.py-0.6.8/kartograph/proj/azimuthal/
H A Dazimuthal.py53 def world_bounds(self, bbox, llbbox=(-180, -90, 180, 90)): argument
54 if llbbox == (-180, -90, 180, 90):
59 bbox = super(Azimuthal, self).world_bounds(bbox, llbbox)
62 def sea_shape(self, llbbox=(-180, -90, 180, 90)): argument
64 if llbbox == (-180, -90, 180, 90) or llbbox == [-180, -90, 180, 90]:
72 out = super(Azimuthal, self).sea_shape(llbbox)
/dports/misc/py-kartograph/kartograph.py-0.6.8/kartograph/proj/
H A Dbase.py125 def world_bounds(self, bbox, llbbox=(-180, -90, 180, 90)): argument
126 sea = self.sea_shape(llbbox)
131 def bounding_geometry(self, llbbox=(-180, -90, 180, 90), projected=False): argument
142 minLon = llbbox[0]
143 maxLon = llbbox[2]
144 minLat = max(self.minLat, llbbox[1])
145 maxLat = min(self.maxLat, llbbox[3])
H A Dpseudocylindrical.py400 def world_bounds(self, bbox, llbbox=(-180, -90, 180, 90)): argument
401 if llbbox == (-180, -90, 180, 90):
406 bbox = super(PseudoCylindrical, self).world_bounds(bbox, llbbox)
409 def sea_shape(self, llbbox=(-180, -90, 180, 90)): argument
411 if llbbox == (-180, -90, 180, 90) or llbbox == [-180, -90, 180, 90]:
418 out = super(PseudoCylindrical, self).sea_shape(llbbox)
/dports/astro/opencpn/OpenCPN-5.2.4/src/
H A DLLRegion.cpp61 LLRegion::LLRegion( const LLBBox& llbbox ) in LLRegion() argument
63 InitBox(llbbox.GetMinLat(), llbbox.GetMinLon(), llbbox.GetMaxLat(), llbbox.GetMaxLon()); in LLRegion()
H A DglChartCanvas.cpp2167 LLBBox llbbox = vp.GetBBox(); in GridDraw() local
2168 nlat = llbbox.GetMaxLat(); in GridDraw()
2169 slat = llbbox.GetMinLat(); in GridDraw()
2170 elon = llbbox.GetMaxLon(); in GridDraw()
2171 wlon = llbbox.GetMinLon(); in GridDraw()
/dports/astro/opencpn/OpenCPN-5.2.4/include/
H A DLLRegion.h67 LLRegion( const LLBBox& llbbox );