- support gis (datum wgs84)
- support glob 3d earth
- map tms wms(local vector maps raster)
- train hight (tms wms)
- gis basic tools (ppi los roller)
Postman | API Development Environment https://www.getpostman.com
Insomnia REST Client - https://insomnia.rest/
| Features | Insomnia | Postman | Notes |
|---|---|---|---|
| Create and send HTTP requests | x | x | |
| Authorization header helpers | x | x | Can create "Authorization" header for you for different authentication schemes: Basic, Digest, OAuth, Bearer Token, HAWK, AWS |
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
| /** | |
| * Include the PrivateDependencyModuleNames entry below in your project build target configuration: | |
| * // Depend on WebSockets library from UE4 (UE4 WebSockets implementation is built upon the libwebsockets library). | |
| * PrivateDependencyModuleNames.AddRange(new string[] { "WebSockets" }); | |
| */ | |
| #include "WebSocketsModule.h" | |
| #include "IWebSocket.h" | |
| { |
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
| #!/env/bin/python | |
| from P4 import P4, P4Exception | |
| import json | |
| p4 = P4() | |
| p4.user = "charz" | |
| p4.password = "mypassword" | |
| p4.port = "tcp:192.168.1.2:1666" | |
| p4.client = "auto-build" |
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
| import subprocess | |
| process = subprocess.Popen(['git', 'rev-parse', 'HEAD'], shell=False, stdout=subprocess.PIPE) | |
| git_head_hash = process.communicate()[0].strip() |