Last active
March 17, 2026 02:16
-
-
Save skorasaurus/a4882378409af0caf118 to your computer and use it in GitHub Desktop.
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
| [ | |
| { | |
| "where": "Layer", | |
| "if": { | |
| "Datasource.type": "postgis" | |
| }, | |
| "then": { | |
| "Datasource.dbname": "hdmht", | |
| "Datasource.user": "skors", | |
| "Datasource.host": "localhost" | |
| } | |
| }, | |
| { | |
| "where": "Layer", | |
| "if": { | |
| "id": "land-high" | |
| }, | |
| "then": { | |
| "Datasource.file": "/home/skors/Documents/MapBox/project/shared/land-polygons-split-3857-shapeindex/land_polygons.shp" | |
| } | |
| }, | |
| { | |
| "where": "Layer", | |
| "if": { | |
| "id": "hillshade" | |
| }, | |
| "then": { | |
| "Datasource.file": "/home/skors/Documents/MapBox/project/HDM-CartoCSS/DEM/data/hillshade.vrt" | |
| } | |
| }, | |
| { | |
| "where": "Layer", | |
| "if": { | |
| "id": "contour_line" | |
| }, | |
| "then": { | |
| "Datasource.file": "/home/skors/Documents/MapBox/project/HDM-CartoCSS/DEM/data/contour-25m.shp" | |
| } | |
| }, | |
| { | |
| "where": "Layer", | |
| "if": { | |
| "id": "land-low" | |
| }, | |
| "then": { | |
| "Datasource.file": "/home/skors/Documents/MapBox/project/shared/simplified-land-polygons-complete-3857-shapeindex/simplified_land_polygons.shp" | |
| } | |
| } | |
| ] |
Hjvvccbnjz
How will you
14424765724
14424765724
14424765724
postgis
- ### ****
cara update ff astute Beta
cara update ff astute Beta
cara update ff astute Beta
localconfig.json
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Basic writing and formatting syntax
Create sophisticated formatting for your prose and code on GitHub with simple syntax.
Headings
To create a heading, add one to six # symbols before your heading text. The number of # you use will determine the hierarchy level and typeface size of the heading.
When you use two or more headings, GitHub automatically generates a table of contents that you can access by clicking the "Outline" menu icon within the file header. Each heading title is listed in the table of contents and you can click a title to navigate to the selected section.
Styling text
You can indicate emphasis with bold, italic, strikethrough, subscript, or superscript text in comment fields and
.mdfiles.** **or__ __**This is bold text*** *or_ __This text is italicized_~~ ~~or~ ~~~This was mistaken text~~This was mistaken text** **and_ _**This text is _extremely_ important***** ******All this text is important***<sub> </sub>This is a <sub>subscript</sub> text<sup> </sup>This is a <sup>superscript</sup> text<ins> </ins>This is an <ins>underlined</ins> textQuoting text
You can quote text with a >.
Text that is not a quote > Text that is a quoteQuoted text is indented with a vertical line on the left and displayed using gray type.
Note
When viewing a conversation, you can automatically quote text in a comment by highlighting the text, then typing R. You can quote an entire comment by clicking , then Quote reply. For more information about keyboard shortcuts, see Keyboard shortcuts.
Quoting code
You can call out code or a command within a sentence with single backticks. The text within the backticks will not be formatted. You can also press the Command+E (Mac) or Ctrl+E (Windows/Linux) keyboard shortcut to insert the backticks for a code block within a line of Markdown.
To format code or text into its own distinct block, use triple backticks.
For more information, see Creating and highlighting code blocks.
If you are frequently editing code snippets and tables, you may benefit from enabling a fixed-width font in all comment fields on GitHub. For more information, see About writing and formatting on GitHub.
Supported color models
In issues, pull requests, and discussions, you can call out colors within a sentence by using backticks. A supported color model within backticks will display a visualization of the color.
Here are the currently supported color models.
`#RRGGBB``#0969DA``rgb(R,G,B)``rgb(9, 105, 218)``hsl(H,S,L)``hsl(212, 92%, 45%)`Note
Links
You can create an inline link by wrapping link text in brackets
[ ], and then wrapping the URL in parentheses( ). You can also use the keyboard shortcut Command+K to create a link. When you have text selected, you can paste a URL from your clipboard to automatically create a link from the selection.You can also create a Markdown hyperlink by highlighting the text and using the keyboard shortcut Command+V. If you'd like to replace the text with the link, use the keyboard shortcut Command+Shift+V.
This site was built using [GitHub Pages](https://pages.github.com/).Note
GitHub automatically creates links when valid URLs are written in a comment. For more information, see Autolinked references and URLs.
Section links
You can link directly to any section that has a heading. To view the automatically generated anchor in a rendered file, hover over the section heading to expose the icon and click the icon to display the anchor in your browser.
If you need to determine the anchor for a heading in a file you are editing, you can use the following basic rules:
-). Any other whitespace or punctuation characters are removed._italics_becomesitalics).For more detailed information on the requirements of URI fragments, see RFC 3986: Uniform Resource Identifier (URI): Generic Syntax, Section 3.5.
The code block below demonstrates the basic rules used to generate anchors from headings in rendered content.
Note
If you edit a heading, or if you change the order of headings with "identical" anchors, you will also need to update any links to those headings as the anchors will change.
Relative links
You can define relative links and image paths in your rendered files to help readers navigate to other files in your repository.
A relative link is a link that is relative to the current file. For example, if you have a README file in root of your repository, and you have another file in docs/CONTRIBUTING.md, the relative link to CONTRIBUTING.md in your README might look like this:
GitHub will automatically transform your relative link or image path based on whatever branch you're currently on, so that the link or path always works. The path of the link will be relative to the current file. Links starting with
/will be relative to the repository root. You can use all relative link operands, such as./and../.Your link text should be on a single line. The example below will not work.
Relative links are easier for users who clone your repository. Absolute links may not work in clones of your repository - we recommend using relative links to refer to other files within your repository.
Custom anchors
You can use standard HTML anchor tags (
<a name="unique-anchor-name"></a>) to create navigation anchor points for any location in the document. To avoid ambiguous references, use a unique naming scheme for anchor tags, such as adding a prefix to thenameattribute value.Note
Custom anchors will not be included in the document outline/Table of Contents.
You can link to a custom anchor using the value of the
nameattribute you gave the anchor. The syntax is exactly the same as when you link to an anchor that is automatically generated for a heading.For example:
Tip
Custom anchors are not considered by the automatic naming and numbering behavior of automatic heading links.
Line breaks
If you're writing in issues, pull requests, or discussions in a repository, GitHub will render a line break automatically:
However, if you are writing in an .md file, the example above would render on one line without a line break. To create a line break in an .md file, you will need to include one of the following:
Include two spaces at the end of the first line.
Include a backslash at the end of the first line.
This example\ Will span two linesInclude an HTML single line break tag at the end of the first line.
This example<br/> Will span two linesIf you leave a blank line between two lines, both .md files and Markdown in issues, pull requests, and discussions will render the two lines separated by the blank line:
Images
You can display an image by adding ! and wrapping the alt text in
[ ]. Alt text is a short text equivalent of the information in the image. Then, wrap the link for the image in parentheses().GitHub supports embedding images into your issues, pull requests, discussions, comments and
.mdfiles. You can display an image from your repository, add a link to an online image, or upload an image. For more information, see Uploading assets.Note
When you want to display an image that is in your repository, use relative links instead of absolute links.
Here are some examples for using relative links to display an image.
.mdfile on the same branch/assets/images/electrocat.png.mdfile on another branch/../main/assets/images/electrocat.png../blob/main/assets/images/electrocat.png?raw=true.mdfile in another repository/../../../../github/docs/blob/main/assets/images/electrocat.png../../../github/docs/blob/main/assets/images/electrocat.png?raw=trueNote
The last two relative links in the table above will work for images in a private repository only if the viewer has at least read access to the private repository that contains these images.
For more information, see Relative Links.
The Picture element
The
<picture>HTML element is supported.Lists
You can make an unordered list by preceding one or more lines of text with -, *, or +.
To order your list, precede each line with a number.
Nested Lists
You can create a nested list by indenting one or more list items below another item.
To create a nested list using the web editor on GitHub or a text editor that uses a monospaced font, like Visual Studio Code, you can align your list visually. Type space characters in front of your nested list item until the list marker character (- or *) lies directly below the first character of the text in the item above it.
Note
In the web-based editor, you can indent or dedent one or more lines of text by first highlighting the desired lines and then using Tab or Shift+Tab</