fiona package¶
Subpackages¶
- fiona.fio package
- Submodules
- fiona.fio.bounds module
- fiona.fio.calc module
- fiona.fio.cat module
- fiona.fio.collect module
- fiona.fio.distrib module
- fiona.fio.dump module
- fiona.fio.env module
- fiona.fio.filter module
- fiona.fio.helpers module
- fiona.fio.info module
- fiona.fio.insp module
- fiona.fio.load module
- fiona.fio.ls module
- fiona.fio.main module
- fiona.fio.options module
- fiona.fio.rm module
- Module contents
Submodules¶
fiona.collection module¶
- class fiona.collection.BytesCollection(bytesbuf, **kwds)¶
Bases:
fiona.collection.CollectionBytesCollection takes a buffer of bytes and maps that to a virtual file that can then be opened by fiona.
- close()¶
Removes the virtual file associated with the class.
- class fiona.collection.Collection(path, mode='r', driver=None, schema=None, crs=None, encoding=None, layer=None, vsi=None, archive=None, enabled_drivers=None, crs_wkt=None, ignore_fields=None, ignore_geometry=False, **kwargs)¶
Bases:
objectA file-like interface to features of a vector dataset
Python text file objects are iterators over lines of a file. Fiona Collections are similar iterators (not lists!) over features represented as GeoJSON-like mappings.
- property bounds¶
Returns (minx, miny, maxx, maxy).
- close()¶
In append or write mode, flushes data to disk, then ends access.
- property closed¶
Falseif data can be accessed, otherwiseTrue.
- property crs¶
Returns a Proj4 string.
- property crs_wkt¶
Returns a WKT string.
- property driver¶
Returns the name of the proper OGR driver.
- filter(*args, **kwds)¶
Returns an iterator over records, but filtered by a test for spatial intersection with the provided
bbox, a (minx, miny, maxx, maxy) tuple or a geometrymask.Positional arguments
stoporstart, stop[, step]allows iteration to skip over items or stop at a specific item.Note: spatial filtering using
maskmay be inaccurate and returning all features overlapping the envelope ofmask.
- flush()¶
Flush the buffer.
- get(item)¶
- guard_driver_mode()¶
- items(*args, **kwds)¶
Returns an iterator over FID, record pairs, optionally filtered by a test for spatial intersection with the provided
bbox, a (minx, miny, maxx, maxy) tuple or a geometrymask.Positional arguments
stoporstart, stop[, step]allows iteration to skip over items or stop at a specific item.Note: spatial filtering using
maskmay be inaccurate and returning all features overlapping the envelope ofmask.
- keys(*args, **kwds)¶
Returns an iterator over FIDs, optionally filtered by a test for spatial intersection with the provided
bbox, a (minx, miny, maxx, maxy) tuple or a geometrymask.Positional arguments
stoporstart, stop[, step]allows iteration to skip over items or stop at a specific item.Note: spatial filtering using
maskmay be inaccurate and returning all features overlapping the envelope ofmask.
- property meta¶
Returns a mapping with the driver, schema, crs, and additional properties.
- next()¶
Returns next record from iterator.
- property profile¶
Returns a mapping with the driver, schema, crs, and additional properties.
- property schema¶
Returns a mapping describing the data schema.
The mapping has ‘geometry’ and ‘properties’ items. The former is a string such as ‘Point’ and the latter is an ordered mapping that follows the order of fields in the data file.
- validate_record(record)¶
Compares the record to the collection’s schema.
Returns
Trueif the record matches, elseFalse.
- validate_record_geometry(record)¶
Compares the record’s geometry to the collection’s schema.
Returns
Trueif the record matches, elseFalse.
- values(*args, **kwds)¶
Returns an iterator over records, but filtered by a test for spatial intersection with the provided
bbox, a (minx, miny, maxx, maxy) tuple or a geometrymask.Positional arguments
stoporstart, stop[, step]allows iteration to skip over items or stop at a specific item.Note: spatial filtering using
maskmay be inaccurate and returning all features overlapping the envelope ofmask.
- write(record)¶
Stages a record for writing to disk.
- writerecords(records)¶
Stages multiple records for writing to disk.
- fiona.collection.get_filetype(bytesbuf)¶
Detect compression type of bytesbuf.
ZIP only. TODO: add others relevant to GDAL/OGR.
fiona.compat module¶
fiona.crs module¶
Coordinate reference systems and functions
PROJ.4 is the law of this land: http://proj.osgeo.org/. But whereas PROJ.4 coordinate reference systems are described by strings of parameters such as
+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs
here we use mappings:
{‘proj’: ‘longlat’, ‘ellps’: ‘WGS84’, ‘datum’: ‘WGS84’, ‘no_defs’: True}
- fiona.crs.from_epsg(code)¶
Given an integer code, returns an EPSG-like mapping.
Note: the input code is not validated against an EPSG database.
- fiona.crs.from_string(prjs)¶
Turn a PROJ.4 string into a mapping of parameters.
Bare parameters like “+no_defs” are given a value of
True. All keys are checked against theall_proj_keyslist.
- fiona.crs.to_string(crs)¶
Turn a parameter mapping into a more conventional PROJ.4 string.
Mapping keys are tested against the
all_proj_keyslist. Values ofTrueare omitted, leaving the key bare: {‘no_defs’: True} -> “+no_defs” and items where the value is otherwise not a str, int, or float are omitted.
fiona.drvsupport module¶
fiona.env module¶
Fiona’s GDAL/AWS environment
- class fiona.env.Env(session=None, **options)¶
Bases:
objectAbstraction for GDAL and AWS configuration
The GDAL library is stateful: it has a registry of format drivers, an error stack, and dozens of configuration options.
Fiona’s approach to working with GDAL is to wrap all the state up using a Python context manager (see PEP 343, https://www.python.org/dev/peps/pep-0343/). When the context is entered GDAL drivers are registered, error handlers are configured, and configuration options are set. When the context is exited, drivers are removed from the registry and other configurations are removed.
Example:
- with fiona.Env(GDAL_CACHEMAX=512) as env:
# All drivers are registered, GDAL’s raster block cache # size is set to 512MB. # Commence processing… … # End of processing.
# At this point, configuration options are set to their # previous (possible unset) values.
A boto3 session or boto3 session constructor arguments aws_access_key_id, aws_secret_access_key, aws_session_token may be passed to Env’s constructor. In the latter case, a session will be created as soon as needed. AWS credentials are configured for GDAL as needed.
- credentialize()¶
Get credentials and configure GDAL
Note well: this method is a no-op if the GDAL environment already has credentials, unless session is not None.
None
- classmethod default_options()¶
Default configuration options
None
dict
- drivers()¶
Return a mapping of registered drivers.
- classmethod from_defaults(session=None, **options)¶
Create an environment with default config options
- sessionoptional
A Session object.
- **optionsoptional
A mapping of GDAL configuration options, e.g., CPL_DEBUG=True, CHECK_WITH_INVERT_PROJ=False.
Env
The items in kwargs will be overlaid on the default values.
- property is_credentialized¶
Test for existence of cloud credentials
bool
- class fiona.env.GDALVersion(major=0, minor=0)¶
Bases:
objectConvenience class for obtaining GDAL major and minor version components and comparing between versions. This is highly simplistic and assumes a very normal numbering scheme for versions and ignores everything except the major and minor components.
- at_least(other)¶
- major¶
- minor¶
- classmethod parse(input)¶
Parses input tuple or string to GDALVersion. If input is a GDALVersion instance, it is returned.
input: tuple of (major, minor), string, or instance of GDALVersion
GDALVersion instance
- classmethod runtime()¶
Return GDALVersion of current GDAL runtime
- class fiona.env.NullContextManager¶
Bases:
object
- class fiona.env.ThreadEnv¶
Bases:
_thread._local
- fiona.env.defenv(**options)¶
Create a default environment if necessary.
- fiona.env.delenv()¶
Delete options in the existing environment.
- fiona.env.ensure_env(f)¶
A decorator that ensures an env exists before a function calls any GDAL C functions.
- ffunction
A function.
A function wrapper.
If there is already an existing environment, the wrapper does nothing and immediately calls f with the given arguments.
- fiona.env.ensure_env_with_credentials(f)¶
Ensures a config environment exists and has credentials.
- ffunction
A function.
A function wrapper.
The function wrapper checks the first argument of f and credentializes the environment if the first argument is a URI with scheme “s3”.
If there is already an existing environment, the wrapper does nothing and immediately calls f with the given arguments.
- fiona.env.env_ctx_if_needed()¶
Return an Env if one does not exist
Env or a do-nothing context manager
- fiona.env.getenv()¶
Get a mapping of current options.
- fiona.env.hascreds()¶
- fiona.env.hasenv()¶
- fiona.env.require_gdal_version(version, param=None, values=None, is_max_version=False, reason='')¶
A decorator that ensures the called function or parameters are supported by the runtime version of GDAL. Raises GDALVersionError if conditions are not met.
Examples:
@require_gdal_version(‘2.2’) def some_func():
calling some_func with a runtime version of GDAL that is < 2.2 raises a GDALVersionErorr.
@require_gdal_version(‘2.2’, param=’foo’) def some_func(foo=’bar’):
calling some_func with parameter foo of any value on GDAL < 2.2 raises a GDALVersionError.
@require_gdal_version(‘2.2’, param=’foo’, values=(‘bar’,)) def some_func(foo=None):
calling some_func with parameter foo and value bar on GDAL < 2.2 raises a GDALVersionError.
version: tuple, string, or GDALVersion param: string (optional, default: None)
If values are absent, then all use of this parameter with a value other than default value requires at least GDAL version.
- values: tuple, list, or set (optional, default: None)
contains values that require at least GDAL version. param is required for values.
- is_max_version: bool (optional, default: False)
if True indicates that the version provided is the maximum version allowed, instead of requiring at least that version.
- reason: string (optional: default: ‘’)
custom error message presented to user in addition to message about GDAL version. Use this to provide an explanation of what changed if necessary context to the user.
wrapped function
- fiona.env.setenv(**options)¶
Set options in the existing environment.
fiona.errors module¶
- exception fiona.errors.CRSError¶
Bases:
fiona.errors.FionaValueErrorWhen a crs mapping has neither init or proj items.
- exception fiona.errors.DataIOError¶
Bases:
OSErrorIO errors involving driver registration or availability.
- exception fiona.errors.DatasetDeleteError¶
Bases:
OSErrorFailure to delete a dataset
- exception fiona.errors.DriverError¶
Bases:
fiona.errors.FionaValueErrorEncapsulates unsupported driver and driver mode errors.
- exception fiona.errors.DriverIOError¶
Bases:
OSErrorA format specific driver error.
- exception fiona.errors.DriverSupportError¶
Bases:
fiona.errors.DriverIOErrorDriver does not support schema
- exception fiona.errors.EnvError¶
Bases:
fiona.errors.FionaErrorEnvironment Errors
- exception fiona.errors.FeatureWarning¶
Bases:
UserWarningA warning about serialization of a feature
- exception fiona.errors.FieldNameEncodeError¶
Bases:
UnicodeEncodeErrorFailure to encode a field name.
- exception fiona.errors.FionaDeprecationWarning¶
Bases:
UserWarningA warning about deprecation of Fiona features
- exception fiona.errors.FionaError¶
Bases:
ExceptionBase Fiona error
- exception fiona.errors.FionaValueError¶
Bases:
ValueErrorFiona-specific value errors
- exception fiona.errors.GDALVersionError¶
Bases:
fiona.errors.FionaErrorRaised if the runtime version of GDAL does not meet the required version of GDAL.
- exception fiona.errors.GeometryTypeValidationError¶
Bases:
fiona.errors.FionaValueErrorTried to write a geometry type not specified in the schema
- exception fiona.errors.SchemaError¶
Bases:
fiona.errors.FionaValueErrorWhen a schema mapping has no properties or no geometry.
- exception fiona.errors.TransactionError¶
Bases:
RuntimeErrorFailure relating to GDAL transactions
- exception fiona.errors.UnsupportedGeometryTypeError¶
Bases:
KeyErrorWhen a OGR geometry type isn’t supported by Fiona.
fiona.inspector module¶
- fiona.inspector.main(srcfile)¶
fiona.io module¶
Classes capable of reading and writing collections
- class fiona.io.MemoryFile(file_or_bytes=None, filename=None, ext='')¶
Bases:
fiona.ogrext.MemoryFileBaseA BytesIO-like object, backed by an in-memory file.
This allows formatted files to be read and written without I/O.
A MemoryFile created with initial bytes becomes immutable. A MemoryFile created without initial bytes may be written to using either file-like or dataset interfaces.
- open(driver=None, schema=None, crs=None, encoding=None, layer=None, vfs=None, enabled_drivers=None, crs_wkt=None, **kwargs)¶
Open the file and return a Fiona collection object.
If data has already been written, the file is opened in ‘r’ mode. Otherwise, the file is opened in ‘w’ mode.
Note well that there is no path parameter: a MemoryFile contains a single dataset and there is no need to specify a path.
Other parameters are optional and have the same semantics as the parameters of fiona.open().
- class fiona.io.ZipMemoryFile(file_or_bytes=None)¶
Bases:
fiona.io.MemoryFileA read-only BytesIO-like object backed by an in-memory zip file.
This allows a zip file containing formatted files to be read without I/O.
- open(path=None, driver=None, encoding=None, layer=None, enabled_drivers=None, **kwargs)¶
Open a dataset within the zipped stream.
- pathstr
Path to a dataset in the zip file, relative to the root of the archive.
A Fiona collection object
fiona.logutils module¶
Logging helper classes.
- class fiona.logutils.FieldSkipLogFilter(name='')¶
Bases:
logging.FilterFilter field skip log messges.
At most, one message per field skipped per loop will be passed.
- filter(record)¶
Pass record if not seen.
- class fiona.logutils.LogFiltering(logger, filter)¶
Bases:
object
fiona.ogrext module¶
- class fiona.ogrext.FeatureBuilder¶
Bases:
objectBuild Fiona features from OGR feature pointers.
No OGR objects are allocated by this function and the feature argument is not destroyed.
- class fiona.ogrext.ItemsIterator¶
Bases:
fiona.ogrext.Iterator
- class fiona.ogrext.Iterator¶
Bases:
objectProvides iterated access to feature data.
- class fiona.ogrext.KeysIterator¶
Bases:
fiona.ogrext.Iterator
- class fiona.ogrext.MemoryFileBase¶
Bases:
objectBase for a BytesIO-like class backed by an in-memory file.
- close()¶
Close and tear down VSI file and directory.
- exists()¶
Test if the in-memory file exists.
- bool
True if the in-memory file exists.
- getbuffer()¶
Return a view on bytes of the file, or None.
- read()¶
Read size bytes from MemoryFile.
- seek()¶
- tell()¶
- write()¶
Write data bytes to MemoryFile
- class fiona.ogrext.OGRFeatureBuilder¶
Bases:
objectBuilds an OGR Feature from a Fiona feature mapping.
Allocates one OGR Feature which should be destroyed by the caller. Borrows a layer definition from the collection.
- class fiona.ogrext.Session¶
Bases:
object- get()¶
Provides access to feature data by FID.
Supports Collection.__contains__().
- get_crs()¶
Get the layer’s CRS
CRS
- get_crs_wkt()¶
- get_driver()¶
- get_extent()¶
- get_feature()¶
Provides access to feature data by FID.
Supports Collection.__contains__().
- get_fileencoding()¶
DEPRECATED
- get_length()¶
- get_schema()¶
- has_feature()¶
Provides access to feature data by FID.
Supports Collection.__contains__().
- isactive()¶
- start()¶
- stop()¶
- class fiona.ogrext.TZ(minutes)¶
Bases:
datetime.tzinfo- utcoffset(dt)¶
datetime -> timedelta showing offset from UTC, negative values indicating West of UTC
- class fiona.ogrext.WritingSession¶
Bases:
fiona.ogrext.Session- start()¶
- sync()¶
Syncs OGR to disk.
- writerecs()¶
Writes buffered records to OGR.
- fiona.ogrext.buffer_to_virtual_file()¶
Maps a bytes buffer to a virtual file.
ext is empty or begins with a period and contains at most one period.
- fiona.ogrext.featureRT()¶
- fiona.ogrext.remove_virtual_file()¶
fiona.ogrext module¶
- class fiona.ogrext.FeatureBuilder¶
Bases:
objectBuild Fiona features from OGR feature pointers.
No OGR objects are allocated by this function and the feature argument is not destroyed.
- class fiona.ogrext.ItemsIterator¶
Bases:
fiona.ogrext.Iterator
- class fiona.ogrext.Iterator¶
Bases:
objectProvides iterated access to feature data.
- class fiona.ogrext.KeysIterator¶
Bases:
fiona.ogrext.Iterator
- class fiona.ogrext.MemoryFileBase¶
Bases:
objectBase for a BytesIO-like class backed by an in-memory file.
- close()¶
Close and tear down VSI file and directory.
- exists()¶
Test if the in-memory file exists.
- bool
True if the in-memory file exists.
- getbuffer()¶
Return a view on bytes of the file, or None.
- read()¶
Read size bytes from MemoryFile.
- seek()¶
- tell()¶
- write()¶
Write data bytes to MemoryFile
- class fiona.ogrext.OGRFeatureBuilder¶
Bases:
objectBuilds an OGR Feature from a Fiona feature mapping.
Allocates one OGR Feature which should be destroyed by the caller. Borrows a layer definition from the collection.
- class fiona.ogrext.Session¶
Bases:
object- get()¶
Provides access to feature data by FID.
Supports Collection.__contains__().
- get_crs()¶
Get the layer’s CRS
CRS
- get_crs_wkt()¶
- get_driver()¶
- get_extent()¶
- get_feature()¶
Provides access to feature data by FID.
Supports Collection.__contains__().
- get_fileencoding()¶
DEPRECATED
- get_length()¶
- get_schema()¶
- has_feature()¶
Provides access to feature data by FID.
Supports Collection.__contains__().
- isactive()¶
- start()¶
- stop()¶
- class fiona.ogrext.TZ(minutes)¶
Bases:
datetime.tzinfo- utcoffset(dt)¶
datetime -> timedelta showing offset from UTC, negative values indicating West of UTC
- class fiona.ogrext.WritingSession¶
Bases:
fiona.ogrext.Session- start()¶
- sync()¶
Syncs OGR to disk.
- writerecs()¶
Writes buffered records to OGR.
- fiona.ogrext.buffer_to_virtual_file()¶
Maps a bytes buffer to a virtual file.
ext is empty or begins with a period and contains at most one period.
- fiona.ogrext.featureRT()¶
- fiona.ogrext.remove_virtual_file()¶
fiona.path module¶
Dataset paths, identifiers, and filenames
- class fiona.path.ParsedPath(path, archive, scheme)¶
Bases:
fiona.path.PathResult of parsing a dataset URI/Path
- pathstr
Parsed path. Includes the hostname and query string in the case of a URI.
- archivestr
Parsed archive path.
- schemestr
URI scheme such as “https” or “zip+s3”.
- archive¶
- classmethod from_uri(uri)¶
- property is_local¶
Test if the path is a local URI
- property is_remote¶
Test if the path is a remote, network URI
- property name¶
The parsed path’s original URI
- path¶
- scheme¶
- class fiona.path.Path¶
Bases:
objectBase class for dataset paths
- class fiona.path.UnparsedPath(path)¶
Bases:
fiona.path.PathEncapsulates legacy GDAL filenames
- pathstr
The legacy GDAL filename.
- property name¶
The unparsed path’s original path
- path¶
- fiona.path.parse_path(path)¶
Parse a dataset’s identifier or path into its parts
- pathstr or path-like object
The path to be parsed.
ParsedPath or UnparsedPath
When legacy GDAL filenames are encountered, they will be returned in a UnparsedPath.
- fiona.path.vsi_path(path)¶
Convert a parsed path to a GDAL VSI path
- pathPath
A ParsedPath or UnparsedPath object.
str
fiona.rfc3339 module¶
- class fiona.rfc3339.FionaDateTimeType¶
Bases:
strDates and times.
- class fiona.rfc3339.FionaDateType¶
Bases:
strDates without time.
- class fiona.rfc3339.FionaTimeType¶
Bases:
strTimes without dates.
- fiona.rfc3339.parse_date(text)¶
Given a date, returns a datetime tuple
text: string to be parsed
- (int, int , int, int, int, int, int, int):
datetime tuple: (year, month, day, hour, minute, second, microsecond, utcoffset in minutes or None)
- fiona.rfc3339.parse_datetime(text)¶
Given a datetime, returns a datetime tuple
text: string to be parsed
- (int, int , int, int, int, int, int, int):
datetime tuple: (year, month, day, hour, minute, second, microsecond, utcoffset in minutes or None)
- fiona.rfc3339.parse_time(text)¶
Given a time, returns a datetime tuple
text: string to be parsed
- (int, int , int, int, int, int, int, int):
datetime tuple: (year, month, day, hour, minute, second, microsecond, utcoffset in minutes or None)
fiona.schema module¶
- fiona.schema.normalize_field_type()¶
Normalize free form field types to an element of FIELD_TYPES
- ftypestr
A type:width format like ‘int:9’ or ‘str:255’
- str
An element from FIELD_TYPES
fiona.schema module¶
- fiona.schema.normalize_field_type()¶
Normalize free form field types to an element of FIELD_TYPES
- ftypestr
A type:width format like ‘int:9’ or ‘str:255’
- str
An element from FIELD_TYPES
fiona.session module¶
Abstraction for sessions in various clouds.
- class fiona.session.AWSSession(session=None, aws_unsigned=False, aws_access_key_id=None, aws_secret_access_key=None, aws_session_token=None, region_name=None, profile_name=None, requester_pays=False)¶
Bases:
fiona.session.SessionConfigures access to secured resources stored in AWS S3.
- property credentials¶
The session credentials as a dict
- get_credential_options()¶
Get credentials as GDAL configuration options
dict
- class fiona.session.DummySession(*args, **kwargs)¶
Bases:
fiona.session.SessionA dummy session.
- credentialsdict
The session credentials.
- get_credential_options()¶
Get credentials as GDAL configuration options
dict
- class fiona.session.GSSession(google_application_credentials=None)¶
Bases:
fiona.session.SessionConfigures access to secured resources stored in Google Cloud Storage
- property credentials¶
The session credentials as a dict
- get_credential_options()¶
Get credentials as GDAL configuration options
dict
- classmethod hascreds(config)¶
Determine if the given configuration has proper credentials
- clsclass
A Session class.
- configdict
GDAL configuration as a dict.
bool
- class fiona.session.Session¶
Bases:
objectBase for classes that configure access to secured resources.
- credentialsdict
Keys and values for session credentials.
This class is not intended to be instantiated.
- static from_foreign_session(session, cls=None)¶
Create a session object matching the foreign session.
- sessionobj
A foreign session object.
- clsSession class, optional
The class to return.
Session
- static from_path(path, *args, **kwargs)¶
Create a session object suited to the data at path.
- pathstr
A dataset path or identifier.
- argssequence
Positional arguments for the foreign session constructor.
- kwargsdict
Keyword arguments for the foreign session constructor.
Session
- get_credential_options()¶
Get credentials as GDAL configuration options
dict
fiona.transform module¶
Coordinate and geometry warping and reprojection
- fiona.transform.transform(src_crs, dst_crs, xs, ys)¶
Transform coordinates from one reference system to another.
- src_crs: str or dict
A string like ‘EPSG:4326’ or a dict of proj4 parameters like {‘proj’: ‘lcc’, ‘lat_0’: 18.0, ‘lat_1’: 18.0, ‘lon_0’: -77.0} representing the coordinate reference system on the “source” or “from” side of the transformation.
- dst_crs: str or dict
A string or dict representing the coordinate reference system on the “destination” or “to” side of the transformation.
- xs: sequence of float
A list or tuple of x coordinate values. Must have the same length as the
ysparameter.- ys: sequence of float
A list or tuple of y coordinate values. Must have the same length as the
xsparameter.
- xp, yp: list of float
A pair of transformed coordinate sequences. The elements of
xpandypcorrespond exactly to the elements of thexsandysinput parameters.
>>> transform('EPSG:4326', 'EPSG:26953', [-105.0], [40.0]) ([957097.0952383667], [378940.8419189212])
- fiona.transform.transform_geom(src_crs, dst_crs, geom, antimeridian_cutting=False, antimeridian_offset=10.0, precision=- 1)¶
Transform a geometry obj from one reference system to another.
- src_crs: str or dict
A string like ‘EPSG:4326’ or a dict of proj4 parameters like {‘proj’: ‘lcc’, ‘lat_0’: 18.0, ‘lat_1’: 18.0, ‘lon_0’: -77.0} representing the coordinate reference system on the “source” or “from” side of the transformation.
- dst_crs: str or dict
A string or dict representing the coordinate reference system on the “destination” or “to” side of the transformation.
- geom: obj
A GeoJSON-like geometry object with ‘type’ and ‘coordinates’ members.
- antimeridian_cutting: bool, optional
Trueto cut output geometries in two at the antimeridian, the default is ``False`.- antimeridian_offset: float, optional
A distance in decimal degrees from the antimeridian, outside of which geometries will not be cut.
- precision: int, optional
Optional rounding precision of output coordinates, in number of decimal places.
- obj
A new GeoJSON-like geometry with transformed coordinates. Note that if the output is at the antimeridian, it may be cut and of a different geometry
typethan the input, e.g., a polygon input may result in multi-polygon output.
>>> transform_geom( ... 'EPSG:4326', 'EPSG:26953', ... {'type': 'Point', 'coordinates': [-105.0, 40.0]}) {'type': 'Point', 'coordinates': (957097.0952383667, 378940.8419189212)}
fiona.vfs module¶
Implementation of Apache VFS schemes and URLs.
- fiona.vfs.is_remote(scheme)¶
- fiona.vfs.parse_paths(uri, vfs=None)¶
Parse a URI or Apache VFS URL into its parts
- Returns: tuple
(path, scheme, archive)
- fiona.vfs.valid_vsi(vsi)¶
Ensures all parts of our vsi path are valid schemes.
- fiona.vfs.vsi_path(path, vsi=None, archive=None)¶
Module contents¶
Fiona is OGR’s neat, nimble API.
Fiona provides a minimal, uncomplicated Python interface to the open source GIS community’s most trusted geodata access library and integrates readily with other Python GIS packages such as pyproj, Rtree and Shapely.
How minimal? Fiona can read features as mappings from shapefiles or other GIS vector formats and write mappings as features to files using the same formats. That’s all. There aren’t any feature or geometry classes. Features and their geometries are just data.
A Fiona feature is a Python mapping inspired by the GeoJSON format. It has id, ‘geometry`, and properties keys. The value of id is a string identifier unique within the feature’s parent collection. The geometry is another mapping with type and coordinates keys. The properties of a feature is another mapping corresponding to its attribute table. For example:
- {‘id’: ‘1’,
‘geometry’: {‘type’: ‘Point’, ‘coordinates’: (0.0, 0.0)}, ‘properties’: {‘label’: u’Null Island’} }
is a Fiona feature with a point geometry and one property.
Features are read and written using objects returned by the
collection function. These Collection objects are a lot like
Python file objects. A Collection opened in reading mode serves
as an iterator over features. One opened in a writing mode provides
a write method.
Usage¶
Here’s an example of reading a select few polygon features from a shapefile and for each, picking off the first vertex of the exterior ring of the polygon and using that as the point geometry for a new feature writing to a “points.shp” file.
>>> import fiona
>>> with fiona.open('docs/data/test_uk.shp', 'r') as inp:
... output_schema = inp.schema.copy()
... output_schema['geometry'] = 'Point'
... with collection(
... "points.shp", "w",
... crs=inp.crs,
... driver="ESRI Shapefile",
... schema=output_schema
... ) as out:
... for f in inp.filter(
... bbox=(-5.0, 55.0, 0.0, 60.0)
... ):
... value = f['geometry']['coordinates'][0][0]
... f['geometry'] = {
... 'type': 'Point', 'coordinates': value}
... out.write(f)
Because Fiona collections are context managers, they are closed and (in
writing modes) flush contents to disk when their with blocks end.
- fiona.bounds(ob)¶
Returns a (minx, miny, maxx, maxy) bounding box.
The
obmay be a feature record or geometry.
- fiona.listlayers(fp, vfs=None)¶
List layer names in their index order
- fpURI (str or pathlib.Path), or file-like object
A dataset resource identifier or file object.
- vfsstr
This is a deprecated parameter. A URI scheme such as “zip://” should be used instead.
- list
A list of layer name strings.
- fiona.open(fp, mode='r', driver=None, schema=None, crs=None, encoding=None, layer=None, vfs=None, enabled_drivers=None, crs_wkt=None, **kwargs)¶
Open a collection for read, append, or write
In write mode, a driver name such as “ESRI Shapefile” or “GPX” (see OGR docs or
ogr2ogr --helpon the command line) and a schema mapping such as:- {‘geometry’: ‘Point’,
- ‘properties’: [(‘class’, ‘int’), (‘label’, ‘str’),
(‘value’, ‘float’)]}
must be provided. If a particular ordering of properties (“fields” in GIS parlance) in the written file is desired, a list of (key, value) pairs as above or an ordered dict is required. If no ordering is needed, a standard dict will suffice.
A coordinate reference system for collections in write mode can be defined by the
crsparameter. It takes Proj4 style mappings like- {‘proj’: ‘longlat’, ‘ellps’: ‘WGS84’, ‘datum’: ‘WGS84’,
‘no_defs’: True}
short hand strings like
EPSG:4326
or WKT representations of coordinate reference systems.
The drivers used by Fiona will try to detect the encoding of data files. If they fail, you may provide the proper
encoding, such as ‘Windows-1252’ for the Natural Earth datasets.When the provided path is to a file containing multiple named layers of data, a layer can be singled out by
layer.The drivers enabled for opening datasets may be restricted to those listed in the
enabled_driversparameter. This and thedriverparameter afford much control over opening of files.# Trying only the GeoJSON driver when opening to read, the # following raises
DataIOError: fiona.open(‘example.shp’, driver=’GeoJSON’)# Trying first the GeoJSON driver, then the Shapefile driver, # the following succeeds: fiona.open(
‘example.shp’, enabled_drivers=[‘GeoJSON’, ‘ESRI Shapefile’])
- fpURI (str or pathlib.Path), or file-like object
A dataset resource identifier or file object.
- modestr
One of ‘r’, to read (the default); ‘a’, to append; or ‘w’, to write.
- driverstr
In ‘w’ mode a format driver name is required. In ‘r’ or ‘a’ mode this parameter has no effect.
- schemadict
Required in ‘w’ mode, has no effect in ‘r’ or ‘a’ mode.
- crsstr or dict
Required in ‘w’ mode, has no effect in ‘r’ or ‘a’ mode.
- encodingstr
Name of the encoding used to encode or decode the dataset.
- layerint or str
The integer index or name of a layer in a multi-layer dataset.
- vfsstr
This is a deprecated parameter. A URI scheme such as “zip://” should be used instead.
- enabled_driverslist
An optional list of driver names to used when opening a collection.
- crs_wktstr
An optional WKT representation of a coordinate reference system.
- kwargsmapping
Other driver-specific parameters that will be interpreted by the OGR library as layer creation or opening options.
Collection
- fiona.prop_type(text)¶
Returns a schema property’s proper Python type.
Example:
>>> prop_type('int') <class 'int'> >>> prop_type('str:25') <class 'str'>
- fiona.prop_width(val)¶
Returns the width of a str type property.
Undefined for non-str properties. Example:
>>> prop_width('str:25') 25 >>> prop_width('str') 80