The Wayback Machine - https://web.archive.org/web/20211229230810/https://github.com/topics/closember
Skip to content
#

closember

Here are 44 public repositories matching this topic...

yurzo
yurzo commented Nov 15, 2021

For regular lists:

In [11]: list(range(50))
Out[11]: 
[0,
 1,
 2,
 3,
 4,
...
 46,
 47,
 48,
 49]

However:

In [13]: collections.UserList(range(50))
Out[13]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49]
pelican
djhoese
djhoese commented Dec 13, 2021

One option to check for duplicate keys in the YAML files loaded/used by Satpy would be to add a custom constructor/loader as described in this gist:

https://gist.github.com/pypt/94d747fe5180851196eb

This wouldn't help the pre-commit in this PR, but at least the pre-commit is checking syntax.

_Originally posted by @djhoese in pytroll/satpy#1935 (comment)

kloczek
kloczek commented May 17, 2021
$ PYTHONPATH=$PWD sphinx-build -b man -d traitlets docs/source .
Running Sphinx v3.5.4
Initializing GitHub plugin
loading intersphinx inventory from https://docs.python.org/objects.inv...
intersphinx inventory has moved: https://docs.python.org/objects.inv -> https://docs.python.org/3/objects.inv
building [mo]: targets for 0 po files that are out of date
building [man]: all manpa
yarikoptic
yarikoptic commented Aug 12, 2021

During local tests got following test failure

======================================================================
ERROR: datalad.downloaders.tests.test_s3.test_restricted_bucket_on_NDA('s3://NDAR_Central_4/submission_23075/README', 'error', 'BIDS')
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.9/url
djhoese
djhoese commented Feb 22, 2021

Code Sample, a minimal, complete, and verifiable piece of code

from pyresample.boundary import Boundary
b = Boundary(my_lons, my_lats)
print(b.contour_poly.area())

Problem description

The above code doesn't fail if the provided lons/lats are 2D (not sure on 3D+), but the class and all functions/utilities underneath it assume 1D arrays. The end results are incor

radis
dcmvdbekerom
dcmvdbekerom commented Oct 19, 2021

🎯 Todo

For the parsers in io.hitran, only groups 1-2 and classes 1, 4-6 are implemented.
Notably, group 6 and class 3 are missing which are needed for linear diatomic molecules.
But this is surprising to me as I never had issues with this... am I missing something?

How they should be parsed can be found in the HITRAN2004 paper:
https://hitran.org/media/refs/HITRAN-2004.pdf
tables 3 & 4

Improve this page

Add a description, image, and links to the closember topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the closember topic, visit your repo's landing page and select "manage topics."

Learn more