Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

legacy-pipe2 #2768

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const workspace: Workspace<WorkspaceState> = {
{
id: HIGHLIGHT_DATAVIEW_INSTANCE_ID,
config: {
datasets: ['public-global-fishing-effort:v3.0'],
datasets: ['public-global-fishing-effort:v20231026'],
},
dataviewId: FISHING_DATAVIEW_SLUG,
},
Expand Down
12 changes: 6 additions & 6 deletions apps/fishing-map/data/workspaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ export const FAO_AREAS_DATAVIEW_SLUG = 'fao-areas'
export const FAO_AREAS_DATAVIEW_INSTANCE_ID = 'context-layer-fao-areas'

// Workspaces dataviews
export const FISHING_DATAVIEW_SLUG = 'apparent-fishing-effort-v-3'
export const CLUSTER_ENCOUNTER_EVENTS_DATAVIEW_SLUG = 'encounter-cluster-events-v-3'
export const VIIRS_MATCH_DATAVIEW_SLUG = 'viirs-match-v-3'
export const SAR_DATAVIEW_SLUG = 'sar-v-3'
export const PRESENCE_DATAVIEW_SLUG = 'presence-activity-v-3'
export const FISHING_DATAVIEW_SLUG = 'apparent-fishing-effort'
export const CLUSTER_ENCOUNTER_EVENTS_DATAVIEW_SLUG = 'encounter-cluster-events'
export const VIIRS_MATCH_DATAVIEW_SLUG = 'viirs-match'
export const SAR_DATAVIEW_SLUG = 'sar'
export const PRESENCE_DATAVIEW_SLUG = 'presence-activity'
export const TEMPLATE_USER_TRACK_SLUG = 'user-track'
export const TEMPLATE_VESSEL_DATAVIEW_SLUG = 'fishing-map-vessel-track-v-3'
export const TEMPLATE_VESSEL_DATAVIEW_SLUG = 'fishing-map-vessel-track'
export const TEMPLATE_CONTEXT_DATAVIEW_SLUG = 'default-context-layer'
export const TEMPLATE_POINTS_DATAVIEW_SLUG = 'default-points-layer'
export const TEMPLATE_ENVIRONMENT_DATAVIEW_SLUG = 'default-environmental-layer'
Expand Down
2 changes: 1 addition & 1 deletion apps/fishing-map/features/vessel/vessel.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { IdentityVesselData } from 'features/vessel/vessel.slice'
import { VesselProfileState } from 'types'

export const DEFAULT_VESSEL_IDENTITY_DATASET = 'public-global-vessel-identity'
export const DEFAULT_VESSEL_IDENTITY_VERSION = 'v3.0'
export const DEFAULT_VESSEL_IDENTITY_VERSION = 'v20231026'
export const DEFAULT_VESSEL_IDENTITY_ID = `${DEFAULT_VESSEL_IDENTITY_DATASET}:${DEFAULT_VESSEL_IDENTITY_VERSION}`

export const DEFAULT_VESSEL_STATE: VesselProfileState = {
Expand Down
Loading