I'm new to GIS, I've been working with maps plotting points with Latitude, Longitude coordinates over a map. I would like to build a spatial 500 m square grid over a map, to later intersect the points with this new spatial constraint. The output should be in .shp file.
So far I've been using the basemap package to read easily and plotting some already made grids in the form:
Code minx miny maxx maxy
stating for each square (Code), the coordinates of its vertices. I can't figured out how to make a new grid, given a selected space region as:
# Projection CYL Cylindrical Equal Distance Projections (PlateCarree)
m = Basemap(projection='cyl',
llcrnrlat=41.1905,urcrnrlat=41.5404,
llcrnrlon=1.9144,urcrnrlon=2.6628,
resolution='c')
Any help would be appreciated.