Skip to main content

Environmental data retrieval API query parser

Project description

Environmental Data Retrieval Query Parser

The OGC Environmental Data Retrieval API query parser makes it easy to parse and use the API query.

Python package

Example

Initiate

from edr_query_parser.edr_query_parser import EDRQueryParser

edr_query = EDRQueryParser('https://somewhere.com/collections/my_collection/position?coords=POINT(57.819 '
                           '-3.966)&datetime=2019-09-07T15:50-04:00/2019-09-07T15:50-05:00&parameter-name=parameter1,'
                           'parameter2&f=geoJSON&crs=crs86')

Get the collection name

edr_query.get_collection_name()

returns string of the requested collection

Get the query type

edr_query.get_query_type())

returns string of the query type

Get the requested output format

edr_query.get_format()

returns string of the requested output format

Get the parameter names

edr_query.get_parameter_name()

returns list of requested parameters

Get the datetime

if edr.is_datetime_interval():
    edr.get_datetime_from()
    edr.get_datetime_to()
else:
    edr.get_datetime()

returns datetime object of the requested datetime

Get the get coords type

edr.get_coords_type()

returns the well-know text coords type

Get the coords coordinates

edr.get_coords_coordinates()

returns the well know text coordinates request

Get the coords dictionary

edr.get_coords_dic()

returns dictionary of the well known text query request

Get the CRS

edr.get_crs()

returns string for the requested CRS

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edr query parser-0.1.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

edr_query_parser-0.1-py3-none-any.whl (15.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page