See the JSDoc comment at the top of index.ts for details
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Creates PowerShell scripts to modify the conda environment indicator at | |
| the command prompt, so it doesn't display the lengthy absolute path of | |
| the environment. | |
| """ | |
| from pathlib import Path, PurePath | |
| from sys import stderr | |
| from typing import Annotated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 70.5310735 | House property | |
|---|---|---|
| 141.062147 | Houses (1) | |
| 282.124294 | Houses (2) | |
| 564.248588 | Houses (3) | |
| 1128.497176 | Building | |
| 2256.994353 | Buildings | |
| 4513.988705 | City Block | |
| 9027.977411 | Streets | |
| 18055.954822 | Neighborhood | |
| 36111.909643 | Town |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @typedef SpatialReference | |
| * @property {number} wkid | |
| * @property {?number} latestWkid | |
| */ | |
| /** | |
| * @typedef Field | |
| * @property {string} name | |
| * @property {string} type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Try the following command sequence: | |
| git lfs uninstall | |
| git reset --hard | |
| git lfs install | |
| git lfs pull | |
| # In case if this is not working (because this was not working for me), the following hack may work: | |
| git rm --cached -r . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Tests if a command exists. | |
| function commandExists($commandName) { | |
| return $null -ne (Get-Command $commandName -ErrorAction SilentlyContinue) | |
| } | |
| # Tests to see if a module is installed on the computer. | |
| function moduleExists($moduleName) { | |
| return $null -ne (Get-Module $moduleName -ListAvailable) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Black": "#000000", | |
| "White": "#FFFFFF", | |
| "Red": "#880000", | |
| "Cyan": "#AAFFEE", | |
| "Violet / purple": "#CC44CC", | |
| "Green": "#00CC55", | |
| "Blue": "#0000AA", | |
| "Yellow": "#EEEE77", | |
| "Orange": "#DD8855", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pip list --outdated --format json | ConvertFrom-Json | foreach { $_.name } | Out-File outdated.txt | |
| pip install -r .\outdated.txt --update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <link rel="stylesheet" href="min.css"> | |
| <meta charset="utf-8" /> | |
| <meta | |
| name="viewport" | |
| content="initial-scale=1,maximum-scale=1,user-scalable=no" | |
| /> | |
| <!-- | |
| ArcGIS API for JavaScript, https://js.arcgis.com |
NewerOlder