The minimum or smallest bounding or enclosing box is a term used in geometry. For a point set in N dimensions, it refers to the box with the smallest measure (area, volume, or hypervolume in higher dimensions) within which all the points lie. When other kinds of measure are used, the minimum box is ...

learn more… | top users | synonyms

1
vote
1answer
35 views

Python - GDAL: spatial filter

Is there a way with GDAL (Python) to set a spatial filter (bounding-box) on a raster before I process it? I want to read it as an array. BandReadAsArray(band, xoff=0, yoff=0, win_xsize=None, ...
0
votes
0answers
19 views

EPSG 4267 (NAD27) boundaries

I need the bounding box coordinates for NAD27 (EPSG/SRID 4267) to check the user's coordinate input. http://spatialreference.org/ref/epsg/4267/ shows the area that doesn't cover North America at ...
1
vote
1answer
27 views

Find items within a Bounding Box

Not 100% sure if this is the correct place to ask my question so I apologise if it isn't. Also, I have very limited experience with GIS systems, so please pardon my ignorance if some of my terminology ...
0
votes
1answer
60 views

How to calculate the size a bounding box?

What formula could I use to calculate the size in Kilometres of a bounding box based on a given Southwest latitude/longitude and a Northeast latitude/longitude points? The bounding box format is ...
5
votes
2answers
140 views

How to calculate a new bounding box that is 80% of the actual bounding box returned by google map?

I need to show a marker for each user that falls within the visible portion of google map. To do so, I get the bounding box from google map, and send it down to the database and I receive a list of ...
4
votes
1answer
64 views

Error in Min. Bounding Geometry results

I'm getting consistent, weird results from using Minimum Bounding Geometry to make circle polygons. I'm not sure if a datum issue, but I'm leaning more towards something wrong with Minimum Bounding ...
0
votes
0answers
15 views

Calculate bounding box of complete image from reference points within the image [duplicate]

I have some images (raster charts in RNC format) which give me a series of reference points within the image which relate the pixel position to the geographic coordinates. The charts are Mercator ...
3
votes
1answer
278 views

Clip Spatial object to bounding box in R

Given a Spatial object in R, how do I clip all of its elements to lie within a bounding box? There are two things I'd like to do (ideally I'd know how to do both, but either is an acceptable solution ...