convert_meters_to_merc_pixel_width(meters, lon, lat,
min_lon
,
max_lon
,
img_width
,
min_width
)
meters
: Distance in meters in a longitudinal direction to convert to pixel units.lon
: Longitude coordinate of the center point to size from.lat
: Latitude coordinate of the center point to size from.min_lon
: Minimum longitude coordinate of the mercator-projected view.max_lon
: Maximum longitude coordinate of the mercator-projected view.img_width
: The width in pixels of the view.min_width
: Clamps the returned pixel size to be at least this width.convert_meters_to_merc_pixel_height(meters, lon, lat,
min_lat
,
max_lat
,
img_height
,
min_height
)
meters
: Distance in meters in a longitudinal direction to convert to pixel units.lon
: Longitude coordinate of the center point to size from.lat
: Latitude coordinate of the center point to size from.min_lat
: Minimum latitude coordinate of the mercator-projected view.max_lat
: Maximum latitude coordinate of the mercator-projected view.img_height
: The height in pixels of the view.min_height
: Clamps the returned pixel size to be at least this height.convert_meters_to_pixel_width(meters,
pt
,
min_lon
,
max_lon
,
img_width
,
min_width
)
meters
: Distance in meters in a latitudinal direction to convert to pixel units.pt
: The center POINT to size from. The point must be defined in the EPSG:4326 spatial reference system.min_lon
: Minimum longitude coordinate of the mercator-projected view.max_lon
: Maximum longitude coordinate of the mercator-projected view.img_width
: The width in pixels of the view.min_width
: Clamps the returned pixel size to be at least this width.convert_meters_to_pixel_height(meters, pt,
min_lat
,
max_lat
,
img_height
,
min_height
)
meters
: Distance in meters in a longitudinal direction to convert to pixel units.pt
: The center POINT to size from. The point must be defined in the EPSG:4326 spatial reference system.min_lat
: Minimum latitude coordinate of the mercator-projected view.max_lat
: Maximum latitude coordinate of the mercator-projected view.img_height
: The height in pixels of the view.min_height
: Clamps the returned pixel size to be at least this height.is_point_in_merc_view(lon, lat,
min_lon
,
max_lon
,
min_lat
,
max_lat
)
min_lon
/max_lon
, min_lat
/max_lat
.lon
: Longitude coordinate of the point.lat
: Latitude coordinate of the point.min_lon
: Minimum longitude coordinate of the mercator-projected view.max_lon
: Maximum longitude coordinate of the mercator-projected view.min_lat
: Minimum latitude coordinate of the mercator-projected view.max_lat
: Maximum latitude coordinate of the mercator-projected view.min_lon
/max_lon
, min_lat
/max_lat
; otherwise, false.is_point_size_in_merc_view(lon, lat,
meters
,
min_lon
,
max_lon
,
min_lat
,
max_lat
)
min_lon
/max_lon
, min_lat
/max_lat
.lon
: Longitude coordinate of the point.lat
: Latitude coordinate of the point.meters
: Distance in meters to offset the point by, in any direction.min_lon
: Minimum longitude coordinate of the mercator-projected view.max_lon
: Maximum longitude coordinate of the mercator-projected view.min_lat
: Minimum latitude coordinate of the mercator-projected view.max_lat
: Maximum latitude coordinate of the mercator-projected view.min_lon
/max_lon
, min_lat
/max_lat
; otherwise, false.is_point_in_view(pt,
min_lon
,
max_lon
,
min_lat
,
max_lat
)
min_lon
/max_lon
, min_lat
/max_lat
.pt
: The POINT to check. Must be defined in EPSG:4326 spatial reference system.min_lon
: Minimum longitude coordinate of the mercator-projected view.max_lon
: Maximum longitude coordinate of the mercator-projected view.min_lat
: Minimum latitude coordinate of the mercator-projected view.max_lat
: Maximum latitude coordinate of the mercator-projected view.min_lon
/max_lon
, min_lat
/max_lat
; otherwise, false.is_point_size_in_view(pt, meters,
min_lon
,
max_lon
,
min_lat
,
max_lat
)
min_lon
/max_lon
, min_lat
/max_lat
.pt
: The POINT to check. Must be defined in EPSG:4326 spatial reference system.meters
: Distance in meters to offset the point by, in any direction.min_lon
: Minimum longitude coordinate of the mercator-projected view.max_lon
: Maximum longitude coordinate of the mercator-projected view.min_lat
: Minimum latitude coordinate of the mercator-projected view.max_lat
: Maximum latitude coordinate of the mercator-projected view.min_lon
/max_lon
, min_lat
/max_lat
; otherwise, false.