- 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)
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
| template<typename TStructType> | |
| static bool TSerializeStructAsJsonObject(const TStructType& InStruct,TSharedPtr<FJsonObject>& OutJsonObject) | |
| { | |
| SCOPED_NAMED_EVENT_TEXT("TSerializeStructAsJsonObject",FColor::Red); | |
| if(!OutJsonObject.IsValid()) | |
| { | |
| OutJsonObject = MakeShareable(new FJsonObject); | |
| } | |
| bool bStatus = FJsonObjectConverter::UStructToJsonObject(TStructType::StaticStruct(),&InStruct,OutJsonObject.ToSharedRef(),0,0); | |
| return bStatus; |
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 os | |
| import sys | |
| import argparse | |
| import subprocess | |
| g_text_exts = ["txt","lua", "ini", "json", "uproject", "uplugin"] | |
| DEFAULT_EOL_FMT = "lf" | |
| def git_attr_fmt(extension, fmt="crlf"): | |
| return f"*.{extension} text eol={fmt}" |
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 hashlib | |
| import re | |
| import random | |
| import string | |
| import time | |
| import requests | |
| import os | |
| import csv | |
| import secrets | |
| import string |
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
| // 数据来源:和风天气(https://www.qweather.com/) | |
| //接收传递过来的参数 | |
| const key = input.key; | |
| let city = input.city; | |
| let days = input.days; | |
| let addDesc = input.addDesc; | |
| let onlyToday = input.onlyToday; | |
| let headerLevel = input.headerLevel; | |
| let anotherCity = input.anotherCity; |
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 time | |
| import sys | |
| import os | |
| g_engineBuildBat = 'Engine\Build\BatchFiles\Build.bat' | |
| g_engineRunUATBat = 'Engine\Build\BatchFiles\RunUAT.bat' | |
| g_generateProjectBat = 'Engine\Build\BatchFiles\GenerateProjectFiles.bat' | |
| g_bg_installed_build_win64_xml = "Engine\Build\InstalledEngineBuild.xml" | |
| g_bg_build_tools_target_name = "\"Build Tools %s\" " |
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
| // CustomK2Node.h | |
| // Fill out your copyright notice in the Description page of Project Settings. | |
| #pragma once | |
| #include "CoreMinimal.h" | |
| #include "K2Node.h" | |
| #include "Classes/K2Node.h" | |
| #include "K2Node_CallFunction.h" | |
| #include "KismetCompiler.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
| # begin build properties | |
| # autogenerated by buildinfo.sh | |
| ro.build.id=NGI77B | |
| ro.build.display.id=user-358570.9320.0 | |
| ro.build.version.incremental=3585700093200000 | |
| ro.build.version.sdk=25 | |
| ro.build.version.preview_sdk=0 | |
| ro.build.version.codename=REL | |
| ro.build.version.all_codenames=REL | |
| ro.build.version.release=7.1.1 |
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
| #pragma once | |
| #include "HAL/Runnable.h" | |
| #include "HAL/RunnableThread.h" | |
| class FThread : public FRunnable | |
| { | |
| public: | |
| using FCallback = TFunction<void()>; | |
| explicit FThread(const TCHAR *pThreadName, const FCallback& pCallback) | |
| :mCallback(pCallback) |
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 <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <stdbool.h> | |
| #define MAX_NUM 512 | |
| void remove_suffix(const char* filename,char* resault); | |
| void append_string(char* base_string,const char* append_string); | |
| void replace_char(char* base_string,char origin,char target); |
NewerOlder