Alan D. Snow

Results 87 issues of Alan D. Snow

Saw this warning: ``` multi_email_field/forms.py:10: RemovedInDjango40Warning: django.utils.translation.ugettext_lazy() is deprecated in favor of django.utils.translation.gettext_lazy(). message = _('Enter valid email addresses.') ```

What are your thoughts on adding optional `help_text` to the `FilterSet`. Here is an example of how we use it: ```pyhton class AttributeFilter(FilterSet): class Meta(object): model = Attribute fields =...

What are the current thoughts on using [pre-commit](https://github.com/pre-commit/pre-commit) for code linter support? The checks are run with each commit and can work as an as-you-go type thing. You can also...

Follow on from: https://github.com/OSGeo/PROJ/issues/2320 cc: @sgillies Would be nice to add: 1. The environment variable `GDAL_CURL_CA_BUNDLE` 2. Methods to set the bundle path for PROJ and GDAL. Thoughts?

Related: - https://github.com/OSGeo/PROJ/pull/2835 I noticed these flags to disable export to WKT: https://github.com/OSGeo/gdal/blob/514ddf589cdd9a01b527c6cf59baabf028555a5c/frmts/netcdf/netcdfdataset.cpp#L4543-L4591 I was wondering if it made sense to export to WKT2 instead of skipping the CRS WKT...

spatial_ref has been superseded by crs_wkt. See #4704.

WKT2 is the recommend format for CRS as it fully represents the CRS (https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems). When would be a good time to make it the default export format WKT2?

Related to: - #837 - https://github.com/pydata/xarray/pull/2844 - https://github.com/corteva/rioxarray/pull/284 - https://github.com/corteva/rioxarray/issues/282 Apparently it is not CF-compliant to store the CRS `grid_mapping` as a coordinate. However, it is desirable to keep it...

pinned

https://github.com/opendatacube/datacube-core/blob/bdf459949ce18689a3be87350919f406e3376157/datacube/api/core.py#L137-L140 If [rioxarray.open_rasterio](https://corteva.github.io/rioxarray/stable/rioxarray.html#rioxarray-open-rasterio) we added a [mask_and_scale](https://github.com/corteva/rioxarray/blob/ba6c3f6e84772ab8916c1e5b998893a727652475/rioxarray/_io.py#L159-L168) option for loading in data. It is also something supported by [xarray.open_dataset()](http://xarray.pydata.org/en/stable/generated/xarray.open_dataset.html) and is useful to have. Thoughts on adding the option to...

loading data
pinned
v2