这些坐标系的中文名称是啥?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了这些坐标系的中文名称是啥?相关的知识,希望对你有一定的参考价值。

B1950坐标系
ECF坐标系
ECI坐标系
MOD坐标系
TOD坐标系
前三个我已经知道了,急文后两个!
另外“东北天坐标系”的英文是什么?

东北天坐标系---NEU坐标系 参考技术A 地心惯性坐标系(ECI)
地心旋转坐标系(ECEF)
ECEF是地固系
J2000,TEMDofDate,TOD是三个惯性系。J2000是2000历元的平赤道平春分点惯性系,TEMEofDate是某个时刻(Date)的真赤道平春分点坐标系,TOD是某个时刻的真赤道真春分点坐标系。它们之间区别主要跟岁差和章动有关。说白了就是赤道平面不是固定的,春分点不是固定的,就要指定哪个时刻的春分点和赤道平面。
找本书看看,不难的。

基于类的vue组件的标签名称是啥

【中文标题】基于类的vue组件的标签名称是啥【英文标题】:What is the tag name of class based vue component基于类的vue组件的标签名称是什么 【发布时间】:2017-09-27 22:17:06 【问题描述】:

参考下面的链接,我们可以使用 TypeScript 编写的基于类的 vue 组件。 使用这些自定义组件的正确方法是什么?

例如,下面的 Es5 代码定义了一个组件,它可以在其他组件的模板中使用,例如 <my-component></my-component>,因为我们将名称 'my-component' 作为 Vue.component 方法的参数。 如何在 typescript 中实现这一点?

Vue.component('my-component', 
  template: '<span> message </span>',
  data: 
    message: 'hello'
  
)

Vue.component('parent-component', 
  template: '<my-component></my-component>'
)

https://vuejs.org/v2/guide/typescript.html#Class-Style-Vue-Components https://alligator.io/vuejs/typescript-class-components/

基于类的 Vue 组件 这个组件的标签名是什么,可以在其他组件的模板字符串中使用?

import Vue from 'vue'
import Component from 'vue-class-component'
// The @Component decorator indicates the class is a Vue component
@Component(
  // All component options are allowed in here
  template: '<button @click="onClick">Click!</button>'
)
export default class MyComponent extends Vue 
  // Initial data can be declared as instance properties
  message: string = 'Hello!'
  // Component methods can be declared as instance methods
  onClick (): void 
    window.alert(this.message)
  

【问题讨论】:

【参考方案1】:

您仍然可以像不使用 Typescript 一样注册组件:

// MyComponent.ts

import Vue from 'vue'
import Component from 'vue-class-component'

@Component(
  template: '<button @click="onClick">Click!</button>'
)
export default class MyComponent extends Vue 
  message: string = 'Hello!'
  onClick (): void 
    window.alert(this.message)
  


// Register the component globally
Vue.component('my-component', MyComponent)

由于上面的代码是从模块中导出组件,你可能不应该全局注册它(除非它是一个通用组件)。最好的方法是将组件导入到将要使用它的其他组件的模块中:

// App.ts

import Vue from 'vue'
import MyComponent from './MyComponent'

new Vue(
  el: '#app',
  components: 
    MyComponent  // will register as <my-component> in #app's template
  
)

【讨论】:

你能告诉我这段代码是如何工作的吗?对我来说没有。它告诉我,该组件未找到,因此未注册。我按照您上面的所有步骤进行操作。 您采取了哪种方法,第一种还是第二种?如果是第一个(全局注册组件),您是否确保在您的主组件实例化之前注册了该组件? 好吧,我两个都拿了,因为第一个是类组件,第二个是主 vue 实例。 好吧,你是对的。我现在只使用第一个,它可以工作:-)

以上是关于这些坐标系的中文名称是啥?的主要内容,如果未能解决你的问题,请参考以下文章

金属中使用的坐标系是啥?

这个geojson例子的坐标是啥格式

找到某个坐标在某个周长内的最快方法是啥?

城市坐标系是啥,和北京坐标系一样吗?

屏幕坐标跟窗口坐标的区别是啥?

Android 获取所有地点的名称和坐标(类似于google places)