io utilities for reading in .asc and .zmap grids
Project description
pygridsio
Introduction
This is a python submodule containing IO functionality for reading and writing .asc and .zmap grids.
Usage
from pygridsio.pygridsio import *
To read a grid file into the custom grid class:
grid = read_grid(filename)
To read a grid file into an xarray, with dimensions x, y:
grid = read_grid_to_xarray(filename)
Or if you want to read multiple grids into an xarray provide a list of filenames, with dimensions x, y, grids:
grids = read_grids_to_xarray([file1, file2])
You can optionally provide labels for each grid:
grids = read_grids_to_xarray([file1, file2], labels=["grid1","grid2"])
If you have grids with different dimensions you can provide the filename of a template_grid, which will resample the other grids to have the same geometry as the template_grid.
For example:
grids = read_grids_to_xarray([file1, file2], labels=["grid1","grid2"],template_grid=file1)
will resample file2 to have the same geometry as file1.
When writing out grids, you can write out grids to a netcdf raster (.nc) which can be read easily by xarray, or QGIS or ArcGIS, .asc and .zmap are also supported:
write_grid(grid,filename)
If the grid is in the format of a xr.DataArray or xr.Dataset then only output to .nc is supported.
The code will discern which filetype to write out to by the file extension in filename.
There is some plotting functionality built into pygridsio using the pygridsio.grid_plotting module:
The method pygridsio.grid_plotting.plot_grid allows you to plot a custom Grid class, or xr.DataArray with multiple options. See the description of the method for more detail.
The method pygridsio.grid_plotting.plotplot_grid_comparison Creates a plot comparing two grids values against eachother. See the description of the method for more detail.
Installation to Develop the code further
Anaconda
Create/update anaconda environment
The file environment.yml can be used to create a working development python environment with the needed packages.
For this open an Anaconda Prompt and:
conda env create -f environment.yml
Or to update the existing anaconda environment (with an updated version of theenvironment.ymlfile :
conda env update -n pygridsio -f environment.yml
Export (updated) anaconda environment
The environment.yml file needs to be updated when new packages are added:
conda env export --from-history -n pygridsio > environment.yml
Use anaconda environment in PyCharm
To connect the anaconda environment to Pycharm you can go to File , Settings, Project, Python Interpreter, add interpreter, add local interpreter, conda environment and then select the environment you created using the above steps.
Poetry
Poetry is becoming the new way to manage your python projects and dependencies. Install poetry here: https://python-poetry.org/docs/ (note: if you can't run poetry from your terminal, ensure that the poetry.exe is in your environment variables).
Then after cloning this repo to your local machine, run:
poetry install
Which will install a virtual environment in the gitlab repo. This can also be done using the Pycharm Python Interpreter interface.
Verify Installation
You can verify the installation of the different python packages by running the tests stored in tests.
In pycharm: Right click on the folder marked tests and click on Run python tests in test
publishing the project to ci.tno.nl/gitlab
To publish an updated version of the project to the pygridsio package registry I recommend using poetry.
First configure the connection between poetry and the gitlab package registry:
poetry config repositories.gitlab_pygridsio https://ci.tno.nl/gitlab/api/v4/projects/17422/packages/pypi
Add your own personal access token details (https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html):
poetry publish --repository gitlab_pygridsio -u"token name" -p "token value"
Then you can build and publish the project as a new deployment in the package registry:
poetry build
poetry publish
(make sure the version number you publish is unique)
How to import pygridsio into other python projects
Pip
The basic 0.0.1 version of the code is on the public PyPi repository:
pip install pygridsio
From TNO Gitlab
However, the most up to date versions are found in the TNO gitlab repo (https://ci.tno.nl/gitlab), to add this to your project you need to make a personal access token with API access: (see: https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html)
and then to pull the latest verion into your projects you can use:
pip install pygridsio --index-url https://__token__:<your_personal_token>@ci.tno.nl/gitlab/api/v4/projects/17422/packages/pypi/simple
Ensuring to replace the <your_personal_token> with the token you created in gitlab.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pygridsio-0.3.2.tar.gz.
File metadata
- Download URL: pygridsio-0.3.2.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.1 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f3725c16de6427a83f76d5a9b6c6c28b045a557770154bf4e79e2b34f8a7000
|
|
| MD5 |
32f9f6afb5a108f3f978640099641a92
|
|
| BLAKE2b-256 |
d5d47f5828b26dabcce85f63d7fb50c3e80adabeab813468c965c3a383946a5c
|
File details
Details for the file pygridsio-0.3.2-py3-none-any.whl.
File metadata
- Download URL: pygridsio-0.3.2-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.1 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa0e8f1ae94eb37d40bbec1c32e083cfa9c848fc2ee100369fb5c8888ae7364e
|
|
| MD5 |
359a93208656555d2303089a9ee28f61
|
|
| BLAKE2b-256 |
2e9bb604373c56e8eebe859dbd25a6678818aa8ef6bf015313ab0752363bbbf5
|