Commit b05a26b
authored
🗺️ v3.1.4 Add ESRI CRS (#225)
# v3.1.4
- **Add support for ESRI CRS for `geometry` columns.**
In addition to EPSG projections, pipes with geometry data may now sync shapefiles with ESRI (or other authorities, default EPSG) projections.
```python
import meerschaum as mrsm
pipe = mrsm.Pipe(
'demo', 'geometry', 'esri',
columns={'primary': 'id'},
dtypes={'geo': 'geometry[esri:102003]'}
)
pipe.sync([{'id': 1, 'geo': 'POINT (0 0)'}])
gdf = pipe.get_data()
print(gdf.crs.to_authority())
# ('ESRI', '102003')
```
- **Add `Pipe.metric` and `Pipe.location` aliases.**
Like `Pipe.connector_keys`, the keys `metric_key` and `location_key` may now be accessed via `metric` and `location`:
```python
import meerschaum as mrsm
pipe = mrsm.Pipe('demo', 'aliases', target='{{ self.metric }}')
print(pipe.target)
# aliases
```
- **Remove `None` return for `Pipe.connector` with invalid keys.**
Rather than returning `None` for pipes with invalid connectors, return the verbatim connector keys string instead.
```python
import meerschaum as mrsm
pipe = mrsm.Pipe('demo', 'keys')
print(f"{pipe.connector=}")
# pipe.connector='demo'
```
- **Fix `api_key` login schemes for `api` connectors.**
An issue with `api` connectors using the `api_key` login scheme has been fixed.
- **Fix client credentials for remote jobs.**
When executing a remote action or job using an `api` connector with client credentials (`client_id` and `client_secret`), scopes are now correctly evaluated.1 parent 7f04b5d commit b05a26b
File tree
5,705 files changed
+319
-408179
lines changed- docs/mkdocs/news
- meerschaum/api
- dash
- callbacks
- resources/static/css/fontawesome
- css
- js
- metadata
- scss
- sprites-full
- sprites
- svgs-full
- brands
- regular
- solid
- svgs/brands
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
5,705 files changed
+319
-408179
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 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 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
7 | 54 | | |
8 | 55 | | |
9 | 56 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 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 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
7 | 54 | | |
8 | 55 | | |
9 | 56 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
291 | 291 | | |
292 | 292 | | |
293 | 293 | | |
| 294 | + | |
| 295 | + | |
294 | 296 | | |
295 | 297 | | |
296 | 298 | | |
297 | | - | |
| 299 | + | |
298 | 300 | | |
299 | 301 | | |
300 | 302 | | |
| |||
Lines changed: 0 additions & 165 deletions
This file was deleted.
0 commit comments