Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
EODMS RAPI Client is a Python3 package used to access the REST API service provided by the Earth Observation Data Management System (EODMS) from Natural Resources Canada.
EODMS RAPI Client is a Python3 package used to access the REST API service provided by the Earth Observation Data Management System (EODMS) from Natural Resources Canada.
The package can be installed using pip:
pip install py-eodms-rapi -U
Here are a few examples on how to use the EODMS RAPI Client (EODMSRAPI
). For full documentation, visit https://py-eodms-rapi.readthedocs.io/en/latest/
from eodms_rapi import EODMSRAPI
# Create the EODMSRAPI object
rapi = EODMSRAPI('eodms-username', 'eodms-password')
# Add a point to the search
feat = [('intersects', "POINT (-96.47 62.4)")]
# Create a dictionary of query filters for the search
filters = {'Beam Mnemonic': ('=', ['16M11', '16M13']),
'Incidence Angle': ('>=', '35')}
# Set a date range for the search
dates = [{"start": "20200513_120000", "end": "20200613_150000"}]
# Submit the search to the EODMSRAPI, specifying the Collection
rapi.search("RCMImageProducts", filters=filters, features=feat, dates=dates)
# Get the results from the search
res = rapi.get_results('full')
# Print results
rapi.print_results()
Using the results from the previous example:
# Submit an order using results
order_res = rapi.order(res)
# Specify a folder location to download the images
dest = "C:\\temp\\py_eodms_rapi"
# Download the images from the order
dn_res = rapi.download(order_res, dest)
Some code in this package is based off the EODMS API Client designed by Mike Brady.
If you have any questions or require support, please contact the EODMS Support Team at eodms-sgdot@nrcan-rncan.gc.ca.
MIT License
FAQs
EODMS RAPI Client is a Python3 package used to access the REST API service provided by the Earth Observation Data Management System (EODMS) from Natural Resources Canada.
We found that py-eodms-rapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.