Feature

class aeronet.dataset.vector.Feature(geometry, properties=None, crs='EPSG:4326')[source]

Bases: object

Proxy class for shapely geometry, include crs and properties of feature

apply(func)[source]
geojson
geometry
reproject(dst_crs)[source]
reproject_to_utm()[source]
shape

FeatureCollection

class aeronet.dataset.vector.FeatureCollection(features, crs='EPSG:4326')[source]

Bases: object

A set of Features with the same CRS

append(feature)[source]
apply(func)[source]

Applies a given function to all the Features of this FeatureColletion

Parameters:func – A function to be applied to the Features. Must take and return shapely.geometry
Returns:A new FeatureCollection with modified Features
bounds_intersection(feature)[source]
extend(fc)[source]
filter(func)[source]
geojson
intersection(feature)[source]
classmethod read(fp)[source]
reproject(dst_crs)[source]
reproject_to_utm()[source]
save(fp)[source]