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
| SELECT TOP 700 [geom_id] | |
| ,[object_id] | |
| ,[num_coords] | |
| ,[parent_id] | |
| ,[ext_max] | |
| , geometry::STPolyFromWKB( | |
| CONVERT( | |
| [varbinary](512), |
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
| .lateral-hover { | |
| padding-left: 23px; | |
| } | |
| .lateral-hover:hover { | |
| text-decoration: underline; | |
| } | |
| .lateral-hover:before { | |
| content: ""; | |
| position: absolute; | |
| display: block; |
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
| <script> | |
| function length(obj) { | |
| var length = 0; | |
| for (var i in obj) | |
| length++; | |
| return length; | |
| } | |
| function clone(obj) { | |
| obj = JSON.parse(JSON.stringify(obj)); |
NewerOlder